/*
 * Shipping and Payment page specific styles - desktop version
 */
/*
 * Styles, which don't generate any output and can be safely imported from
 * all root level stylesheets
 */
/*
 * Paths
 */
/**
 * Animation & transition settings
 */
/*
 * Color Palette
 */
/*
 * Form color palette
 */
/*
 * Footer color palette
 */
/*
 * Settings for the `<body>` element
 */
/*
 * Text
 *
 * Settings for text, fonts, sizes
 */
/**
 * Text sizes
 *
 * Resolution specific font sizes, line height, etc.
 * All styles cascade up
 *
 * For each style is generated "%text--size-NAME" placeholder selector
 * Each style can also be used included using mixin "@include text--size(NAME);"
 *
 * See extends/_text-styles.scss
 */
/**
 * Link styles
 *
 * Settings for the anchor elements
 * For each link style is generated "%link--style-NAME" placeholder selector
 *
 * See extends/_links.scss
 *
 * @demo
 *   @extend %link--style-heading;
 */
/**
 * Grid
 *
 * Grid system settings
 * All resolution styles cascade up from mobile to desktop
 *
 * @demo
 *   <div class="row row--pad">...</div>
 *   <div class="row row--pad-small">...</div>
 */
/**
 * For each grid container is generated ".container--NAME" classname, except
 * for "default", for which ".container" classname is generated
 *
 * @demo
 *   <div class="container"></div>
 *   <div class="container container--footer"></div>
 */
/**
 * Spacing
 *
 * Settings for spacing between most of the elements
 *
 * @demo
 *   @include margins($spacing);
 *   @include margins($spacing-medium);
 */
/**
 * Breakpoints for devices / orientations / screens
 * Following already are default values, uncomment if needed
 */
/**
 * Minimal body width
 */
/**
 * Returns nth property from css property list
 *
 * @property {map} $list List
 * @property {number} $index Item index
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @code
 *     $spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
 *     $spacer-top-only:    pick-css-nth($spacer, 1); // => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
 *     $spacer-bottom-only: pick-css-nth($spacer, 3); // => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
 */
/**
 * @function map-deep-get Deep get for sass maps
 * @author https://css-tricks.com/snippets/sass/deep-getset-maps/
 * @description
 * Returns deeply nested property from a map
 *
 *     $paddings: map-deep-get($grid-containers, default, paddings, xs);
 */
/**
 * Mixin for object-fit plugin
 *
 * @see https://github.com/bfred-it/object-fit-images
 * @see components/_background.scss
 * @example
 *   @include object-fit(contain);
 *   @include object-fit(cover, top);
 */
/**
 * Converts SVG into data url so that this SVG could be used as a
 * background image
 *
 * @demo
 *     background-image: svg-to-data-url('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>');
 */
/**
 * Selectors to target specific browsers without affecting specificity or
 * limiting use in media queries
 *
 * Pros:
 *   - Works with media queries
 *
 * Conts:
 *   - Can't be used with @extend as that will invalidate other selectors
 *
 * See http://browserstrangeness.bitbucket.org/css_hacks.html
 */
/**
 * Target Internet Explorer, but not Edge
 *
 * @demo
 *     div {
 *       @include browser-ie () {
 *         // ...
 *       }
 *     }
 */
/**
 * Target Edge
 */
/**
 * Target Firefox
 */
/**
 * Target Safari
 */
/**
 * Target all WebKit browsers
 */
/**
 * Breakpoints for devices / orientations / screens
 *
 * @code
 *     @include media-breakpoint (lg-up) {
 *         // ...
 *     }
 */
/**
 * Returns if media query name is valid and values exist
 */
/**
 * Output content in a media query
 *
 * @code
 *     .icon {
 *         @include media-breakpoint (sm-down) {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in retina display media query
 *
 * @code
 *     .icon {
 *         @include media-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in non-retina display media query
 *
 * @code
 *     .icon {
 *         @include media-non-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Image rendering quality
 * In Chrome background image quality is not the best when using background-size
 */
/**
 * @function placeholder Set input placeholder styles
 * @demo
 *     input {
 *         @include placeholder () {
 *             color: #000;
 *         }
 *     }
 */
/**
 * Margins mixin
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @demo
 *     @include padding(inherit 20px);
 *
 * @demo
 *     @include padding((
 *         xs: inherit 20px,
 *         md: inherit 40px
 *     ));
 */
/*
 * Grid generator mixins
 */
/**
 * Mixin to generate grid container classnames
 *
 * @property {map} $containers Containers
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixins to generate content for grid container classname
 *
 * @property {map} $container Container
 * @property {map} $container.max-width List of max-widths
 * @property {map} $container.paddings  List of paddings
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixin to generate column classnames for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 */
/**
 * Mixin to generate column paddings for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 * @property {number?} $gutter      Gutter between columns
 */
/*
 * 1. Fix for IE where paddings are not taken into account even with box-sizing
 * 2. Fix for Firefox
 */
/*
 * Button normal state style mixin
 *
 * Sets styles to button normal state
 * 1. We overwrite disabled state too because if classname is used, then :hover, :active will take precedent
 */
/*
 * Button hover state style mixin
 *
 * Sets styles to button hover, focused states
 */
/*
 * Button active state style mixin
 *
 * Sets styles to active state
 */
/*
 * Button hover + active state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Active button state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Button disabled state style mixin
 */
/*
 * Button style
 *
 * Sets hover, active, focus, disabled styles
 */
/*
 * Button size
 *
 * Sets different size for different breakpoints
 */
/*
 * Square button modifier mixin
 */
/*
 * Text size
 *
 * Sets different size for different breakpoints
 */
/*
 * Link normal state style mixin
 *
 * Sets styles to link normal state
 */
/*
 * Link hover state style mixin
 *
 * Sets styles to link hover and focused states
 */
/*
 * Link active state style mixin
 *
 * Sets styles to link active state
 */
/*
 * Link hover and active state style mixin
 *
 * Sets styles to link hover, focused and active states
 */
/*
 * Link disabled state style mixin
 *
 * Sets styles to link disabled state
 */
/*
 * Image icon generator mixin
 */
/*
 * Retina image for icon
 */
/**
 * Animations
 *
 * Enables transition for all properties for elements
 *
 * @demo
 *     div { @extend %transition; }
 */
.data-table__order:after, .tooltip-icon, .form-range__list li a:before, .form-range__marker {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99); }

/**
 * Layout component mixin and placeholder classname, which is above other components
 *
 * @demo
 *     .lightbox { @extend %layout-order-above-top; }
 *     .header { @extend %layout-order-top; }
 *
 *     .lightbox { @include layout-order-above-top(); }
 *     .header { @include layout-order-top(); }
 */
.tooltip {
  z-index: 6; }

/**
 * Layout component mixin and placeholder classname which covers parent
 *
 * @demo
 *     .btn-large:before { @extend %layout-position-overlay; }
 *     .btn-small:before { @extend %layout-position-overlay-extended; }
 *
 *     .btn-large:before { @include layout-position-overlay(); }
 *     .btn-small:before { @include layout-position-overlay-extended(); }
 */
.tooltip-icon:before {
  display: block;
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px; }

/**
 * Text style mixin and placeholder classnames
 *
 * Used to keep all standard text and all headings consistent without code
 * duplication / to improve maintainability
 *
 * See settings/_text.scss
 *
 * @demo
 *     body  { @extend %text--default; }
 *     h1    { @extend %text--heading; }
 *
 *     body  { @include text--default(); }
 *     h1    { @include text--heading(); }
 */
.form-control-select--large.nice-select, select.form-control-select--large, .btn--switch-input {
  font-family: "Museo Sans Cyrl", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-transform: none;
  color: #333333; }

.shipping__calculator .form-label {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #333333; }
  .ui-footer .shipping__calculator .form-label, .shipping__calculator .ui-footer .form-label {
    color: #ffffff; }

/**
 * Text size / style mixin and placeholder classname generator
 * For each style is generated "%text--size-NAME" placeholder selector
 *
 * See settings/_text.scss
 *
 * @demo
 *     .class { @extend %text--size-h1; }
 *
 *     .class { @include text--size(h1); }
 *
 *     .class {
 *         @include text--size((
 *             xs:  ( 'font-size': 1.4rem,  'line-height': 24 / 14 * 1em )
 *         ));
 *     }
 */
.shipping__calculator .form-label {
  font-size: 1.4rem;
  line-height: 1.42857em; }

.form-range__list li a {
  font-size: 1.2rem;
  line-height: 1.33333em; }

.data-table tbody th, .form-control-select--large.nice-select, select.form-control-select--large, .shipping-table td {
  font-size: 1.6rem;
  line-height: 1.3125em; }

/**
 * Link style mixin and placeholder classname generator
 *
 * For each link theme defined in settings/_colors.scss creates
 * a %link--style-NAME placeholder classname
 *
 * See settings/_links.scss
 *
 * @demo
 *     a     { @extend %link--style-default; }
 *     nav a { @extend %link--style-text; }
 *
 *     a     { @include link--style(default); }
 *     nav a { @include link--style(text); }
 */
.data-table__order {
  color: #90989f; }
  .has-hover .data-table__order:focus, .has-hover .data-table__order:hover {
    color: #333333; }
  .data-table__order:active, .is-active.data-table__order {
    color: #333333; }

/**
 * Data table
 *
 * @demo
 *    <table class="data-table">
 *        <thead><tr>
 *            <td>Heading</td>
 *            <td>Heading</td>
 *        </tr></thead>
 *        <tbody>
 *            <tr>
 *                <td>Content</td>
 *                <td>Content</td>
 *            </tr>
 *        </tbody>
 *    </table>
 */
.data-table {
  width: 100%;
  border-spacing: 0; }
  .data-table td,
  .data-table th {
    font-weight: 500;
    text-align: left;
    border-top: 1px solid #edeef0;
    padding: 17px 0 17px 20px; }
    .data-table td:first-child,
    .data-table th:first-child {
      padding-left: 0; }
    .data-table td.text--right,
    .data-table th.text--right {
      text-align: right; }
  .data-table tr:first-child td,
  .data-table tr:first-child th {
    border-top: 0; }
  .data-table thead th {
    color: #90989f;
    border-bottom: 1px solid #edeef0;
    border-top: 0;
    padding-top: 10px;
    padding-bottom: 16px; }
  .data-table thead b {
    color: #333333; }
  .data-table td {
    color: #90989f; }
  .data-table tbody th {
    color: #333333; }

/**
 * Sorting arrows
 *
 * @demo
 *     <a class="data-table__order data-table__order--asc">Ascending</a>
 *     <a class="data-table__order data-table__order--desc">Descending</a>
 *     <a class="data-table__order">Unsorted</a>
 */
.data-table__order {
  display: inline-block;
  position: relative;
  padding-right: 22px; }
  .data-table__order:after {
    content: "";
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2390989f' d='M8.9,7.5C8.7,7.2,8.4,7,8,7H7V1c0-0.6-0.4-1-1-1S5,0.4,5,1v6H4C3.6,7,3.3,7.2,3.1,7.5c-0.2,0.3-0.2,0.7,0,1l2,3 C5.4,11.8,5.7,12,6,12s0.6-0.2,0.8-0.4l2-3C9,8.2,9.1,7.9,8.9,7.5z'/%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
    opacity: 0;
    transform: rotate(-180deg);
    transition-property: opacity, transform; }
  .data-table__order--asc:after, .data-table__order--desc:after {
    opacity: 1; }
  .data-table__order--asc:after {
    transform: rotate(0deg); }

/*
 * Selectable row
 */
.data-table__selectable {
  cursor: pointer; }
  .has-hover .data-table__selectable:focus, .has-hover .data-table__selectable:hover {
    background: #f7f9fc; }

/*
 * Adjust button position so that even without it table row
 * would take the same space
 */
.data-table .btn {
  margin-top: -16px;
  margin-bottom: -12px; }

.tooltip {
  width: 320px;
  border-radius: 0;
  padding: 20px;
  background: #f6f9fc;
  color: #333333;
  pointer-events: none;
  box-shadow: 0 2px 3px rgba(18, 42, 96, 0.1); }
  .tooltip--large {
    width: 540px; }
  .tooltip__content {
    white-space: normal; }
    .tooltip__content__list > div {
      padding: 18px 0;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .tooltip__content__list > div:first-child {
        padding-top: 0; }
      .tooltip__content__list > div:last-child {
        padding-bottom: 0; }
      .tooltip__content__list > div + div {
        border-top: 1px solid #e5e6ea; }

.tooltip[x-placement="top"] .tooltip__arrow,
.tooltip[x-placement="top-start"] .tooltip__arrow {
  bottom: -15px;
  margin-left: 17px;
  border-width: 15px 15px 0 0;
  border-color: #f6f9fc transparent transparent transparent; }

.tooltip[x-placement="top-end"] .tooltip__arrow {
  bottom: -15px;
  margin-left: -5px;
  border-width: 0 15px 15px 0;
  border-color: transparent #f6f9fc transparent transparent; }

.tooltip[x-placement="bottom"] .tooltip__arrow,
.tooltip[x-placement="bottom-start"] .tooltip__arrow {
  top: -15px;
  margin-left: 17px;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #f6f9fc transparent; }

/*
 * Icon with tooltip
 */
.tooltip-icon {
  color: #c2cbd2;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  z-index: 1;
  cursor: help;
  transition-property: border-color; }
  .tooltip-icon .icon {
    vertical-align: top;
    pointer-events: none; }
  .tooltip-icon:before {
    content: ""; }
  .has-hover .tooltip-icon:focus, .has-hover .tooltip-icon:hover, .tooltip-icon:active, .tooltip-icon.is-active {
    color: #acb5bb; }

/**
 * Large input style
 *
 * Using jquery-nice-select library for dropdowns
 */
.form-control-select--large.nice-select {
  height: 60px;
  padding-left: 20px;
  padding-right: 42px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  font-weight: 500;
  line-height: 60px; }
  .form-control-select--large.nice-select:after,
  .form-control-select--large.nice-select li:first-child:after {
    right: 20px;
    top: 28px;
    border-width: 7px 3.5px 0 3.5px; }
  .form-control-select--large.nice-select:hover, .form-control-select--large.nice-select:active, .form-control-select--large.nice-select:focus {
    border-color: #acb5bb; }
  .form-control-select--large.nice-select.open > .list {
    transform: translateY(0); }
  .form-control-select--large.nice-select.open:after {
    z-index: 7; }
  .form-control-select--large.nice-select .list {
    background-color: #ffffff;
    border-radius: 4px 4px;
    box-shadow: 0 10px 20px rgba(18, 42, 96, 0.12);
    border: 1px solid #c2cbd2;
    color: #90989f;
    box-sizing: content-box;
    transform: translateY(-30px);
    left: -1px;
    top: -1px; }
    .form-control-select--large.nice-select .list .list {
      box-shadow: none;
      border: 0;
      transform: none !important;
      left: auto;
      top: auto; }
  .form-control-select--large.nice-select ul.list {
    padding-bottom: 14px; }
  .form-control-select--large.nice-select .option {
    line-height: 40px;
    min-height: 40px;
    padding-left: 20px;
    padding-right: 42px; }
    .form-control-select--large.nice-select .option:hover, .form-control-select--large.nice-select .option.focus, .form-control-select--large.nice-select .option.selected.focus {
      background-color: #ffffff; }
    .form-control-select--large.nice-select .option.focus {
      color: #306bf5; }
    .form-control-select--large.nice-select .option.selected, .has-hover .form-control-select--large.nice-select .option:hover {
      color: #333333; }
    .form-control-select--large.nice-select .option.disabled, .has-hover .form-control-select--large.nice-select .option.disabled:hover {
      background-color: transparent;
      color: #90989f; }
    .form-control-select--large.nice-select .option:first-child {
      line-height: 60px;
      min-height: 60px;
      border-bottom: 1px solid #c2cbd2;
      margin-bottom: 8px; }

.form-control-select--large.form-control-select--placeholder {
  color: #90989f; }

select[required] + .form-control-select--large.form-control-select--placeholder .current:after {
  content: " *";
  color: #de2152; }

/**
 * Fallback
 */
select.form-control-select--large {
  -moz-appearance: button;
  -webkit-appearance: button;
  height: 60px;
  padding-left: 20px;
  padding-right: 10px;
  border: 0;
  background-color: #ffffff;
  background-position: right 16px top 27px;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  line-height: 58px; }

/**
 * Range control
 *
 * Not included in "global" as other input type styles
 * and must be imported separatelly.
 */
.form-control--range {
  user-select: none;
  -webkit-tap-highlight-color: transparent; }
  .form-control--range input {
    width: 100%; }

.js .form-control--range input {
  position: absolute;
  left: -9000px; }

/**
 *
 */
.form-range {
  position: relative;
  padding-top: 1px;
  padding-bottom: 13px; }

/**
 * Range input list of items
 */
.form-range__list {
  display: flex;
  height: 35px;
  margin-top: 15px;
  position: relative;
  border-top: 2px solid #c2cbd2;
  user-select: none; }
  .form-range__list li {
    position: relative;
    flex: 2; }
    .form-range__list li:first-child, .form-range__list li:last-child {
      flex: 1; }
    .form-range__list li a {
      color: #90989f;
      line-height: 2rem;
      text-align: center;
      white-space: nowrap;
      display: block;
      position: absolute;
      width: 100%;
      padding: 12px 0 0;
      left: 0;
      top: 0; }
      .form-range__list li a:before {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 50%;
        content: "";
        display: block;
        width: 0;
        height: 7px;
        border-left: 1px solid #c2cbd2; }
      .form-range__list li a:after {
        content: "";
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        top: -20px;
        bottom: -40px; }
    .form-range__list li:first-child a {
      margin-left: -1px;
      text-align: left; }
      .form-range__list li:first-child a:before {
        left: 1px; }
    .form-range__list li:last-child a {
      margin-right: -1px;
      left: auto;
      right: 0;
      display: flex;
      justify-content: flex-end;
      text-align: right; }
      .form-range__list li:last-child a:before {
        left: auto;
        right: 1px; }

/**
 * Range input line, which is shown instead of list
 */
/*
.form-range__line {
    &-marker {

    }
}
*/
/*
 * Marker
 */
.form-range__marker {
  position: absolute;
  z-index: 1;
  margin-left: -11px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: #306bf5;
  cursor: pointer; }

.has-hover .form-range:focus .form-range__marker, .has-hover .form-range:hover .form-range__marker {
  background: darkne(#306bf5, 8%); }

.form-range--dragging .form-range__marker {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2) inset; }

/**
 * Buttons
 * Switch input button style
 *
 * @demo
 *     <a class="btn btn--switch-input">Normal state</a>
 *     <a class="btn btn--switch-input is-active">Active state</a>
 *     <a class="btn btn--switch-input is-disabled">Disabled state</a>
 */
.btn--switch-input {
  border: 1px solid;
  height: 60px;
  padding: 2px 20px 0;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 60px; }
  .has-hover .btn--switch-input:active {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2) inset; }
  .btn--switch-input.is-active {
    pointer-events: none;
    cursor: default;
    z-index: 1; }
  .has-hover .btn--switch-input:hover, .has-hover .btn--switch-input:focus {
    color: #333333;
    background-color: #f5f7fa; }
  .btn--switch-input:active, .has-hover .btn--switch-input:active, .btn--switch-input.is-active {
    color: #333333;
    background-color: #f5f7fa;
    border-color: #306bf5; }
  .btn--switch-input, .btn--switch-input.is-disabled, .btn--switch-input:disabled, .btn--switch-input[disabled] {
    color: #333333;
    background-color: #ffffff;
    border-color: #c2cbd2; }
  .btn--switch-input.is-disabled, .btn--switch-input:disabled, .btn--switch-input[disabled] {
    color: #333333;
    background-color: #ffffff; }
  .btn--switch-input.loading {
    color: transparent !important; }
  .btn--switch-input.is-disabled, .btn--switch-input:disabled, .btn--switch-input[disabled] {
    opacity: 1; }
  .btn--switch-input .btn__content {
    margin-top: -2px;
    padding-top: 2px;
    height: 60px; }

.group .btn + .btn--switch-input {
  margin-left: -1px; }

.shipping .section,
.payment .section,
.warning .section {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(18, 42, 96, 0.06); }
  .shipping .section__heading,
  .payment .section__heading,
  .warning .section__heading {
    padding: 3.3rem 4rem 2rem; }
    .shipping .section__heading__more .icon,
    .payment .section__heading__more .icon,
    .warning .section__heading__more .icon {
      margin-top: -2px; }
    .shipping .section__heading__title .icon,
    .payment .section__heading__title .icon,
    .warning .section__heading__title .icon {
      display: block; }
  .shipping .section__content,
  .payment .section__content,
  .warning .section__content {
    padding-left: 4rem;
    padding-right: 4rem; }
  .shipping .section__footer,
  .payment .section__footer,
  .warning .section__footer {
    border-top: 1px solid #edeef0;
    padding: 4rem; }

.payment,
.warning {
  margin-top: 4rem; }

.shipping__calculator form,
.payment__calculator form {
  margin-top: 4.6rem;
  margin-bottom: 4.6rem; }
  .shipping__calculator form:first-child,
  .payment__calculator form:first-child {
    margin-top: 0; }
  .shipping__calculator form:last-child,
  .payment__calculator form:last-child {
    margin-bottom: 0; }
.shipping__calculator .form-control-select--large.nice-select,
.payment__calculator .form-control-select--large.nice-select {
  color: #333333; }
.shipping__calculator__result,
.payment__calculator__result {
  margin: 0 -4rem -4rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 2.3rem 0 2.6rem; }
  .shipping__calculator__result__price,
  .payment__calculator__result__price {
    font-size: 3.6rem;
    line-height: 0.83333em;
    text-transform: uppercase;
    font-weight: 900;
    padding-top: 8px; }
.shipping__calculator__disclaimer,
.payment__calculator__disclaimer {
  color: #90989f;
  text-align: center;
  margin: 1rem 0 0;
  padding: 0 0 1rem; }

.shipping__calculator .form-label {
  margin-bottom: 1rem; }

.payment .section__content {
  padding-left: 0;
  padding-right: 0; }
.payment__method {
  border-top: 1px solid #edeef0;
  border-right: 1px solid #edeef0; }
  .payment__method:nth-child(3n + 3) {
    border-right: none; }
  .payment__method__inner {
    padding: 3rem 3.6rem;
    height: 100%; }
  .payment__method h3 {
    line-height: 1.375em; }
  .payment__method p {
    color: #90989f; }

.warning .section__content {
  padding-bottom: 2rem; }
.warning ol {
  counter-reset: warning-cotent;
  columns: 2;
  column-gap: 50px; }
  .warning ol > li {
    counter-increment: warning-cotent;
    position: relative;
    padding: 1.6rem 0 1.6rem 30px;
    font-size: 1.6rem;
    line-height: 1.5em;
    break-inside: avoid; }
    .warning ol > li:nth-child(3) {
      break-after: always; }
@-moz-document url-prefix() {
  .warning ol > li:nth-child(3) {
    page-break-after: always; } }
    .warning ol > li:before {
      content: counter(warning-cotent);
      display: block;
      position: absolute;
      left: 0;
      top: 1.6rem;
      color: #ffd600;
      font-size: 2.4rem;
      line-height: inherit;
      font-weight: 900; }

.shipping-table b, .shipping-table strong {
  font-weight: 900; }
.shipping-table td {
  padding-top: 44px;
  padding-bottom: 44px;
  color: #333333; }
.shipping-table tr:nth-child(2n+1) td {
  padding-bottom: 0; }
.shipping-table tr:nth-child(2n) td {
  padding-top: 0;
  border-top: 0; }
.shipping-table .accordion__content p {
  padding: 35px 0 0 26px; }

/*# sourceMappingURL=shipping-payment.css.map */


.shipping-cost {
  width: 400px;
  margin: 0 auto;
}
.accordion__content .shipping-cost p {
  padding-left: 0;
  text-align: center;
}
.shipping-cost table {
  background: #F7F9FC;
  padding: 10px 15px;
}
.shipping-cost table td {
  padding-bottom: 0;
  text-align: right;
}
.shipping-cost table tr td:nth-child(1) {
  text-align: left;
}