@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        visibility: hidden
    }
    100% {
        opacity: 1;
        visibility: visible
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes draw-stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes draw-stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes checkmark-fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 30px #1773b0;
        box-shadow: inset 0px 0px 0px 30px #1773b0
    }
}

@keyframes checkmark-fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 30px #1773b0;
        box-shadow: inset 0px 0px 0px 30px #1773b0
    }
}

@-webkit-keyframes scale-up-bounce {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up-bounce {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scale-up-bounce-spring {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
    20% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up-bounce-spring {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
    20% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scale-down-bounce {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
}

@keyframes scale-down-bounce {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(23, 115, 176, 0.5);
        box-shadow: 0 0 0 0 rgba(23, 115, 176, 0.5)
    }
    50% {
        -webkit-box-shadow: 0 0 0 15px rgba(23, 115, 176, 0);
        box-shadow: 0 0 0 15px rgba(23, 115, 176, 0)
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(23, 115, 176, 0.5);
        box-shadow: 0 0 0 0 rgba(23, 115, 176, 0.5)
    }
    50% {
        -webkit-box-shadow: 0 0 0 15px rgba(23, 115, 176, 0);
        box-shadow: 0 0 0 15px rgba(23, 115, 176, 0)
    }
}

@-webkit-keyframes wobble {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
}

@keyframes wobble {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
}

@-webkit-keyframes modal-open {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible
    }
}

@keyframes modal-open {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible
    }
}

@-webkit-keyframes modal-close {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
}

@keyframes modal-close {
    0% {
        opacity: 1;
        visibility: visible
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }
}

@media (max-width: 999px) {
    .quirks-fix--ios-instagram {
        height: auto;
        min-height: 100%;
        padding-bottom: 250px
    }
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    overflow-x: hidden
}

iframe {
    margin: 0;
    padding: 0;
    border: 0
}

b,
strong {
    font-weight: 500
}

small {
    font-size: .875em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
    line-height: 1em
}

p {
    margin: 0
}

sub,
sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none
}

img {
    border: 0;
    max-width: 100%
}

figure {
    margin: 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

form {
    margin: 0
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-font-smoothing: inherit;
    border: none;
    background: transparent;
    line-height: normal
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer
}

button:-moz-focusring,
input[type="button"]:-moz-focusring,
input[type="reset"]:-moz-focusring,
input[type="submit"]:-moz-focusring {
    outline: 1px dotted
}

button[disabled],
input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

select::-ms-expand {
    display: none
}

optgroup {
    font-weight: bold
}

option {
    background-color: #fff;
    color: #000
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em
}

td,
th {
    padding: 0;
    font-weight: normal
}

body {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.3em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-font-smoothing: subpixel-antialiased
}

.text-container>*+* {
    margin-top: 0.5714285714em
}

.text-container *+.heading-1,
.text-container *+.heading-2,
.text-container *+.heading-3 {
    margin-top: 1.4285714286em
}

a,
.link {
    text-decoration: none;
    color: #1773b0;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out
}

a:hover,
.link:hover {
    color: #135e90
}

.link--muted {
    color: inherit;
    text-decoration: underline
}

h1,
.heading-1 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 1.7142857143em;
    line-height: 1.3em
}

@media (min-width: 750px) {
    h1,
    .heading-1 {
        font-size: 2em
    }
}

h2,
.heading-2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 1.2857142857em;
    line-height: 1.3em
}

.main h2,
.main .heading-2 {
    color: #333333
}

.sidebar h2,
.sidebar .heading-2 {
    color: #313131
}

.content-box h2,
.content-box .heading-2 {
    color: #333333
}

.default-background h2,
.default-background .heading-2 {
    color: #333333
}

h3,
.heading-3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.3em
}

.main h3,
.main .heading-3 {
    color: #333333
}

.sidebar h3,
.sidebar .heading-3 {
    color: #313131
}

.content-box h3,
.content-box .heading-3 {
    color: #333333
}

.default-background h3,
.default-background .heading-3 {
    color: #333333
}

p {
    line-height: 1.5em
}

.emphasis {
    font-weight: 500
}

.main .emphasis {
    color: #333333
}

.sidebar .emphasis {
    color: #313131
}

.content-box .emphasis {
    color: #333333
}

.default-background .emphasis {
    color: #333333
}

.main .small-text .emphasis {
    color: #545454
}

.sidebar .small-text .emphasis {
    color: #515151
}

.content-box .small-text .emphasis {
    color: #545454
}

.default-background .small-text .emphasis {
    color: #545454
}

.small-text {
    font-size: 0.8571428571em
}

.main .small-text {
    color: #737373
}

.sidebar .small-text {
    color: #6e6e6e
}

.content-box .small-text {
    color: #737373
}

.default-background .small-text {
    color: #737373
}

.address {
    font-style: normal;
    line-height: 1.5em
}

.address--tight {
    line-height: inherit
}

.pickup-instructions {
    width: 200px;
    white-space: initial
}

@media (max-width: 749px) {
    .hide-on-mobile {
        display: none
    }
}

@media (min-width: 750px) {
    .show-on-mobile {
        display: none
    }
}

.layout-flex {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -0.2857142857rem
}

.layout-flex.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.layout-flex--wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.layout-flex--tight-vertical {
    margin-bottom: -0.1428571429rem;
    margin-top: -0.1428571429rem
}

.layout-flex--tight-vertical .layout-flex__item {
    padding-bottom: 0.1428571429rem;
    padding-top: 0.1428571429rem
}

.layout-flex--loose-horizontal {
    margin-left: -0.5714285714rem;
    margin-right: -0.5714285714rem
}

.layout-flex--loose-horizontal .layout-flex__item {
    padding-left: 0.5714285714rem;
    padding-right: 0.5714285714rem
}

.layout-flex__item {
    padding: 0.1428571429rem
}

.layout-flex__item--stretch {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor
}

.icon-symbols {
    display: none
}

.icon-svg--block {
    display: block
}

.icon-svg--color-accent {
    color: #1773b0;
    fill: currentColor
}

.icon-svg--color-black {
    color: #000;
    fill: currentColor
}

.icon-svg--color-blue {
    color: #1990c6;
    fill: currentColor
}

.icon-svg--color-gray {
    color: #9b9b9b;
    fill: currentColor
}

.icon-svg--color-gray-dark {
    color: #595959;
    fill: currentColor
}

.icon-svg--color-gray-light {
    color: #959595;
    fill: currentColor
}

.icon-svg--color-red {
    color: #ce4549;
    fill: currentColor
}

.icon-svg--color-white {
    color: #fff;
    fill: currentColor
}

.icon-svg--color-yellow {
    color: #e7a321;
    fill: currentColor
}

.main .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.sidebar .icon-svg--color-adaptive-lighter {
    color: #8c8c8c;
    fill: currentColor
}

.content-box .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.default-background .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.btn .icon-svg--color-adaptive-lighter,
.sp-modal-toggle .icon-svg--color-adaptive-lighter {
    color: #a2c7df;
    fill: currentColor
}

.main .field__icon .icon-svg--color-adaptive-lighter,
.main .field__caret .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.sidebar .field__icon .icon-svg--color-adaptive-lighter,
.sidebar .field__caret .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.content-box .field__icon .icon-svg--color-adaptive-lighter,
.content-box .field__caret .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.default-background .field__icon .icon-svg--color-adaptive-lighter,
.default-background .field__caret .icon-svg--color-adaptive-lighter {
    color: #919191;
    fill: currentColor
}

.main .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.sidebar .icon-svg--color-adaptive-light {
    color: #6e6e6e;
    fill: currentColor
}

.content-box .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.default-background .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.btn .icon-svg--color-adaptive-light,
.sp-modal-toggle .icon-svg--color-adaptive-light {
    color: #a2c7df;
    fill: currentColor
}

.main .field__icon .icon-svg--color-adaptive-light,
.main .field__caret .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.sidebar .field__icon .icon-svg--color-adaptive-light,
.sidebar .field__caret .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.content-box .field__icon .icon-svg--color-adaptive-light,
.content-box .field__caret .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.default-background .field__icon .icon-svg--color-adaptive-light,
.default-background .field__caret .icon-svg--color-adaptive-light {
    color: #737373;
    fill: currentColor
}

.icon-svg--size-10 {
    width: 10px;
    height: 10px
}

.icon-svg--size-12 {
    width: 12px;
    height: 12px
}

.icon-svg--size-14 {
    width: 14px;
    height: 14px
}

.icon-svg--size-16 {
    width: 16px;
    height: 16px
}

.icon-svg--size-18 {
    width: 18px;
    height: 18px
}

.icon-svg--size-24 {
    width: 24px;
    height: 24px
}

.icon-svg--size-32 {
    width: 32px;
    height: 32px
}

.icon-svg--size-48 {
    width: 48px;
    height: 48px
}

.icon-svg--size-64 {
    width: 64px;
    height: 64px
}

.icon-svg--size-184 {
    width: 184px;
    height: 184px
}

.icon-svg--rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.icon-svg--inline-before {
    margin-right: 0.2857142857em
}

.icon-svg--inline-after {
    margin-left: 0.2857142857em
}

.icon-svg--flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.icon-svg--flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.icon {
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block
}

.icon-background--payment-gateways {
    fill: #d9d9d9
}

.icon-svg--spinner-button {
    width: 20px;
    height: 20px
}

.icon--free-tag {
    width: 94px;
    height: 46px;
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/free-tag-small-0b5b0bd323a659646bc9658a36f248a009e8c3fbe8d4c80e432bbe93dc4e748f.png);
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/free-tag-small-5439598929990a936b18a6bf65080248b85b7ae7eca0e37b8b365b6b5138db38.svg), none
}

@media (min-width: 750px) {
    .icon--free-tag {
        width: 152px;
        height: 80px;
        background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/free-tag-01eada06411c810acde0b7b2e80bf685ef11114c53f1174a31db3c33630354f1.png);
        background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/free-tag-c2dd504ac09e85e0958c656eb3b00e9bedc4fbaeaaa6031c81b045674cc6b7eb.svg), none
    }
}

.icon--shopify-pay-primary {
    width: 55px;
    height: 16px
}

.icon--shopify-pay {
    width: 59px !important;
    height: 14px !important
}

.icon--shopify-pay--dark {
    fill: #000
}

.icon--shopify-pay--light {
    fill: #fff
}

.icon--gift-card {
    width: 16px;
    height: 16px;
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/gift-card-3f705a7f5ab8f68839696031900f9c18875ac75c5cd15a555cc6c2b811ae7b67.png);
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/gift-card-a262d4faf79983ea2372d68228388158c727c7b71b918807c0d8c49eedc632b9.svg), none
}

.icon--offsite {
    width: 102px;
    height: 52px;
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/offsite-small-1aef3deb72624297720a67a04d67168c5d9b5681b6e1dd2b54f5c0d1525d3a64.png);
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/offsite-small-0d8fd34431b27358e5c54a5ad660f76f8d628fad88320450d799287a8654982f.svg), none
}

@media (min-width: 750px) {
    .icon--offsite {
        width: 163px;
        height: 81px;
        background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/offsite-10a01ff26c11926aa7884c0f90d76850c43764bbf414ce3c25ba2f3771333cff.png);
        background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/offsite-908d79d8d532f6af67d7cc99244ede733729c29379c349ee015fbcea71fd8274.svg), none
    }
}

.icon-svg--re-order {
    width: 20px;
    height: 16px
}

.icon-svg--spinner {
    -webkit-animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite;
    animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite
}

.icon-svg--clickable {
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out
}

.icon-svg--clickable:hover {
    color: #135e90
}

.icon-svg--center {
    position: absolute;
    left: 50%;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.logo {
    display: block;
    vertical-align: middle
}

.logo__text {
    color: #333333
}

.logo__image {
    display: inline-block
}

.logo--right {
    text-align: right
}

.logo--center {
    text-align: center
}

.logo__image--small {
    max-height: 2.1428571429em
}

.logo__image--medium {
    max-height: 2.8571428571em
}

.logo__image--large {
    max-height: 3.5714285714em
}

@media (min-width: 1000px) {
    .logo__image--small {
        max-height: 2.8571428571em
    }
    .logo__image--medium {
        max-height: 4.2857142857em
    }
    .logo__image--large {
        max-height: 5.7142857143em
    }
}

body {
    color: #545454;
    background: white
}

.content {
    overflow: hidden
}

.wrap {
    display: block;
    margin: 0 auto;
    max-width: 40em;
    zoom: 1
}

.wrap:after,
.wrap:before {
    content: "";
    display: table
}

.wrap:after {
    clear: both
}

.flex {
    display: flex;
    flex-wrap: wrap;
    clear: both
}

.flex .field {
    width: 40%;
    min-width: 200px;
    flex: 1;
}

.payment-icon {
    opacity: 0.5;
    filter: grayscale(100%);
}

.payment-icon.enabled {
    opacity: 1;
    filter: none;
}

.form-floating>.form-control.error {
    border: solid red 1px !important;
}

.form-floating>.form-control.error:focus {
    box-shadow: red 0 0 0 1px;
}

.error-for {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

@media (max-width: 999px) {
    .wrap {
        width: 100%;
        max-width: 600px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 2.1em
    }
}

@media (min-width: 1000px) {
    .wrap {
        padding: 0 5%;
        width: 90%;
        max-width: 100em;
    }
}

@media (max-width: 999px) {
    .no-js .content .wrap {
        display: table
    }
    .no-js .content .wrap .main {
        display: table-footer-group
    }
    .no-js .content .wrap .sidebar {
        display: table-header-group
    }
    .no-js .content .wrap .sidebar::after {
        display: none
    }
}

@media (min-width: 1000px) {
    .main {
        width: 52%;
        width: 52%;
        padding-right: 6%;
        float: left
    }
}

.main .logo {
    display: none
}

@media (min-width: 1000px) {
    .page--logo-main .main .logo {
        display: block
    }
}

.main__emphasis {
    font-weight: 500;
    color: #333333
}

.main__small-text {
    font-size: 0.8571428571em;
    color: #737373
}

.sidebar {
    position: relative;
    color: #515151
}

.no-js .sidebar,
.no-generatedcontent .sidebar {
    background: #f5f5f5
}

@media (min-width: 1000px) {
    .sidebar {
        width: 38%;
        padding-left: 4%;
        background-position: left top;
        float: right
    }
}

.sidebar::after {
    content: "";
    display: block;
    width: 300%;
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    background: #f5f5f5;
    z-index: -1;
    -webkit-box-shadow: 0 -1px 0 #dddddd inset;
    box-shadow: 0 -1px 0 #dddddd inset
}

@media (min-width: 1000px) {
    .sidebar::after {
        left: 0;
        background-position: left top;
        -webkit-box-shadow: 1px 0 0 #dddddd inset;
        box-shadow: 1px 0 0 #dddddd inset
    }
}

.sidebar__header {
    margin-bottom: 2.5em;
    display: none
}

@media (min-width: 1000px) {
    .page--logo-sidebar .sidebar__header {
        display: block
    }
}

.anyflexbox body,
.anyflexbox .content,
.anyflexbox .content .wrap,
.anyflexbox .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.anyflexbox .content .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.anyflexbox .main__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.anyflexbox .banner {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (min-width: 1000px) {
    .anyflexbox .content .wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.page--hidden-breadcrumbs .breadcrumb,
.page--hidden-main-header .main__header {
    display: none
}

@media (max-width: 749px) {
    .main {
        padding-top: 1.5em
    }
    .main__content {
        padding-bottom: 1.5em
    }
}

@media (min-width: 750px) {
    .main {
        padding-top: 1.5em
    }
    .main__content {
        padding-bottom: 4em
    }
}

@media (max-width: 999px) {
    .breadcrumb {
        padding-bottom: 1.5em
    }
}

@media (min-width: 1000px) {
    .page--no-banner .main,
    .page--no-banner .sidebar {
        padding-top: 4em
    }
    .page--banner .main,
    .page--banner .sidebar {
        padding-top: 2em
    }
    .main__header {
        padding-bottom: 2em
    }
    .sidebar__logo {
        margin-bottom: 2em
    }
    .page--logo-main .breadcrumb {
        margin-top: 1em
    }
}

table {
    width: 100%
}

td,
th {
    padding-left: 1em
}

td:first-child,
th:first-child {
    padding-left: 0;
    text-align: left
}

td:last-child,
th:last-child {
    text-align: right
}

.product-table th,
.product-table td {
    padding-top: 0;
    padding-bottom: 0
}

.product-table__header th {
    white-space: nowrap;
    font-weight: 500;
    color: #333333
}

.product-table--loose th,
.product-table--loose td {
    padding-top: 1.1428571429em;
    padding-bottom: 1.1428571429em
}

.product-table--extra-loose th,
.product-table--extra-loose td {
    padding-top: 1.7142857143em;
    padding-bottom: 1.7142857143em
}

.product-table--bordered td,
.product-table--bordered th {
    border-bottom: 1px solid #e6e6e6
}

.product-table--bordered tr:last-child td {
    border-bottom: 0
}

.banner {
    padding: 1.5em 0;
    background: transparent;
    background-size: cover;
    display: none
}

.page--logo-sidebar .banner {
    background: transparent
}

@media (max-width: 999px) {
    .banner {
        display: block
    }
}

.page--banner .banner {
    display: block
}

@media (min-width: 1000px) {
    .page--banner .banner {
        padding-top: 6em;
        padding-bottom: 2em
    }
}

.btn,
.sp-modal-toggle {
    cursor: pointer;
    display: inline-block;
    background-color: #1773b0;
    background-clip: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px transparent solid;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    padding: 1.4em 1.7em;
    text-align: center;
    position: relative;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out
}

.btn:hover,
.sp-modal-toggle:hover {
    background-color: #115683;
    color: white
}

.btn:active,
.sp-modal-toggle:active {
    outline: none
}

@media (max-width: 749px) {
    .btn,
    .sp-modal-toggle {
        width: 100%;
        padding-top: 1.75em;
        padding-bottom: 1.75em
    }
}

.btn--size-small {
    padding: 0.9285714286em
}

.btn--subdued {
    background-color: transparent;
    border-color: rgba(179, 179, 179, 0.5);
    color: #1773b0;
    font-weight: normal
}

.btn--subdued:hover {
    background-color: rgba(23, 115, 176, 0.06);
    color: #135e90
}

.btn--subdued:focus,
.btn--subdued:active {
    border-color: #115683;
    -webkit-box-shadow: 0 0 0 1px #115683 inset;
    box-shadow: 0 0 0 1px #115683 inset
}

.btn--loading {
    pointer-events: none;
    cursor: default
}

.btn--loading .btn__content,
.btn--loading .btn__icon {
    opacity: 0
}

.btn--loading .btn__spinner {
    -webkit-animation: rotate 0.5s linear infinite;
    animation: rotate 0.5s linear infinite;
    opacity: 1
}

.js .main .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none
}

.js .sidebar .btn--disabled {
    cursor: default;
    background: #c4c4c4;
    -webkit-box-shadow: none;
    box-shadow: none
}

.js .content-box .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none
}

.js .default-background .btn--disabled {
    cursor: default;
    background: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn__content {
    position: relative;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out
}

.btn__content--subtitle {
    font-size: 0.8571428571em;
    color: #737373
}

.button-group__button--active .btn__content--subtitle {
    color: #1773b0
}

.btn__icon {
    margin-top: -0.2857142857em;
    margin-bottom: -0.0714285714em
}

.btn__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    opacity: 0
}

.step__footer {
    z-index: 2;
    position: relative;
    margin-top: 1em
}

.no-js .step__footer,
.no-anyflexbox .step__footer {
    zoom: 1
}

.no-js .step__footer:after,
.no-js .step__footer:before,
.no-anyflexbox .step__footer:after,
.no-anyflexbox .step__footer:before {
    content: "";
    display: table
}

.no-js .step__footer:after,
.no-anyflexbox .step__footer:after {
    clear: both
}

@media (min-width: 750px) {
    .step__footer {
        margin-top: 1.5em
    }
}

.step__footer__previous-link-content {
    vertical-align: middle
}

.step__footer__previous-link,
.step__footer__info {
    display: block
}

@media (max-width: 749px) {
    .step__footer__previous-link,
    .step__footer__info {
        padding-top: 1.5em;
        text-align: center
    }
}

@media (min-width: 750px) {
    .step__footer__previous-link,
    .step__footer__info {
        float: right
    }
}

.previous-link__icon {
    -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    margin-right: 0.25em
}

.step__footer__previous-link:hover .previous-link__icon {
    fill: #135e90;
    -webkit-transform: translateX(-5px) "";
    transform: translateX(-5px) ""
}

@media (min-width: 750px) {
    .step__footer__continue-btn {
        float: left
    }
}

.step__footer__continue-btn:focus-visible {
    outline-offset: 3px;
    outline: 2px solid #1773b0
}

.step__footer__continue-btn-text {
    clear: both;
    padding-top: 0.75em
}

@media (max-width: 749px) {
    .step__footer__continue-btn-text {
        text-align: center
    }
}

@media (min-width: 750px) {
    .anyflexbox .step__footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .anyflexbox .step__footer__previous-link,
    .anyflexbox .step__footer__info {
        margin-right: 1em
    }
    .anyflexbox .step__footer__review-notice-text {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        text-align: right
    }
}

.edit-link {
    display: block;
    margin-top: 0.75em
}

.section--express-checkout-selection-group-test {
    display: table;
    width: 100%
}

@media (min-width: 750px) {
    .section--express-checkout-selection-group-test .section--contact-information {
        display: table-header-group
    }
}

@media (min-width: 750px) {
    .section--express-checkout-selection-group-test .section--express-checkout-selection {
        padding-top: 3em !important;
        display: block
    }
}

.section--express-checkout-selection-group-control {
    display: table;
    width: 100%
}

.section--express-checkout-selection-group-control .section--contact-information {
    display: table-header-group
}

.section--express-checkout-selection-group-control .section--express-checkout-selection {
    padding-top: 3em !important
}

.notice+.step__sections {
    margin-top: 1.5em
}

@media (min-width: 750px) {
    .notice+.step__sections {
        margin-top: 2.5em
    }
}

.step__sections+form {
    padding-top: 2em
}

@media (min-width: 1000px) {
    .step__sections+form {
        padding-top: 0
    }
}

.section__delivery-option-group {
    padding-top: 3em
}

.section__delivery-option-group:first-child {
    padding-top: 0
}

.section {
    position: relative;
    padding-top: 2em
}

@media (min-width: 750px) {
    .section {
        padding-top: 3em
    }
}

.section:first-child {
    padding-top: 0
}

.section--half-spacing-top,
.section--half-spacing-bottom+.section {
    padding-top: 1em
}

@media (min-width: 750px) {
    .section--half-spacing-top,
    .section--half-spacing-bottom+.section {
        padding-top: 1.5em
    }
}

.section__header {
    position: relative;
    margin-bottom: 1em
}

@media (min-width: 750px) {
    .section__header {
        margin-bottom: 1.5em
    }
}

.section__title {
    color: #333333
}

.section__text {
    margin-top: 0.25em
}

.section__hanging-icon {
    margin-bottom: 1em
}

@media (min-width: 750px) and (max-width: 999px) {
    .section__hanging-icon {
        position: absolute;
        right: 100%;
        top: -0.4em;
        margin-right: 1.5em
    }
}

@media (min-width: 1300px) {
    .section__hanging-icon {
        position: absolute;
        right: 100%;
        top: -0.4em;
        margin-right: 1.5em
    }
}

.section__content {
    zoom: 1
}

.section__content:after,
.section__content:before {
    content: "";
    display: table
}

.section__content:after {
    clear: both
}

.section__content__text {
    margin-top: 0.75em
}

.section__content__policy {
    margin-top: 1em
}

.section__content__column {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 2em
}

.section__content__column:first-of-type {
    margin-top: 0
}

@media (min-width: 750px) {
    .section__content__column {
        margin-top: 0;
        float: left
    }
}

@media (min-width: 750px) {
    .section__content__column--half {
        padding: 0 0.75em;
        width: 50%
    }
    .section__content__column--half:first-child {
        padding-left: 0
    }
    .section__content__column--half:last-child {
        padding-right: 0
    }
}

@media (min-width: 750px) {
    .section__content__column--thirds {
        padding: 0 0.75em;
        width: 33.3333333333%
    }
    .section__content__column--thirds:first-child {
        padding-left: 0
    }
    .section__content__column--thirds:last-child {
        padding-right: 0
    }
}

.section__footer {
    zoom: 1;
    margin-top: 1em
}

.section__footer:after,
.section__footer:before {
    content: "";
    display: table
}

.section__footer:after {
    clear: both
}

@media (min-width: 750px) {
    .section__footer {
        margin-top: 1.5em
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .section--page-title {
        margin-top: 1em
    }
}

.section--subscription-agreement .field--error input {
    border-color: #dd1d1d;
    -webkit-box-shadow: 0 0 0 1px #dd1d1d;
    box-shadow: 0 0 0 1px #dd1d1d
}

.has-modal body {
    overflow: hidden
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.js .modal-backdrop {
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out
}

.modal-backdrop.modal-backdrop--centered-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.modal-backdrop.modal-backdrop--is-closing.modal-backdrop--fade-out-white {
    background-color: rgba(255, 255, 255, 0.8)
}

.modal-backdrop--is-visible {
    visibility: visible;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1
}

.modal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    color: #545454;
    min-height: auto;
    visibility: hidden;
    height: 100%
}

@media (min-width: 750px) {
    .modal {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 8px;
        margin: 4em auto;
        max-width: 60em;
        min-height: initial;
        max-height: calc(100vh - 8em);
        width: 90%
    }
}

.modal.modal--centered {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.modal-backdrop--is-visible .modal {
    -webkit-animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}

.no-cssanimations .modal-backdrop--is-visible .modal {
    visibility: visible
}

.modal-backdrop--is-closing .modal {
    -webkit-animation: modal-close 0.25s ease-in-out;
    animation: modal-close 0.25s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.modal__header {
    padding: 1.5em
}

@media (min-width: 750px) {
    .modal__header {
        padding: 1.5em 2.5em
    }
}

.modal__header {
    border-bottom: 1px solid #e6e6e6;
    zoom: 1
}

.modal__header:after,
.modal__header:before {
    content: "";
    display: table
}

.modal__header:after {
    clear: both
}

.display-table .modal__header {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.modal__header__title {
    color: #333333
}

.display-table .modal__header__title {
    display: table-cell;
    width: 100%
}

.display-table .modal__header__title:only-child {
    display: block
}

.no-js .modal__header__title,
.no-display-table .modal__header__title {
    float: left
}

.modal__content {
    padding: 1.5em;
    height: 100%;
    overflow-y: auto
}

@media (min-width: 750px) {
    .modal__content {
        padding: 2.5em;
        overflow-y: auto
    }
    .modal__content p {
        font-size: 1.1428571429em
    }
}

.modal__content.iframe_container {
    padding: 1.5em;
    height: 100%;
    overflow-y: clip
}

.modal__iframe {
    width: 100%;
    height: 100%
}

.modal__loading-icon {
    display: block;
    margin: 1em auto
}

.modal__close {
    position: relative;
    -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    vertical-align: middle;
    padding-left: 0.75em;
    white-space: nowrap
}

.display-table .modal__close {
    display: table-cell
}

.no-js .modal__close,
.no-display-table .modal__close {
    float: right
}

.modal__close-button {
    color: #737373
}

.modal__close-button:hover {
    color: #545454
}

.fieldset {
    margin: -0.4285714286em;
    zoom: 1
}

.fieldset:after,
.fieldset:before {
    content: "";
    display: table
}

.fieldset:after {
    clear: both
}

.fieldset--inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.fieldset--inline .field {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media (max-width: 749px) {
    .fieldset--inline {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.fieldset--inline .btn,
.fieldset--inline .sp-modal-toggle {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0.4285714286em;
    width: auto
}

@media (min-width: 750px) {
    .anyflexbox .fieldset--inline .btn,
    .anyflexbox .fieldset--inline .sp-modal-toggle {
        padding-top: 0;
        padding-bottom: 0
    }
}

.fieldset-description {
    margin-top: 0.9285714286em
}

.field {
    width: 100%;
    float: left;
    padding: 0.4285714286em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (min-width: 750px) {
    .floating-labels .field--third {
        width: 33.3333333333%
    }
    .floating-labels .field--two-thirds {
        width: 66.6666666667%
    }
    .floating-labels .field--half {
        width: 50%
    }
    .floating-labels .field--three-eights {
        width: 37.5%
    }
    .floating-labels .field--quarter {
        width: 25%
    }
}

.field__message {
    line-height: 1.3em;
    margin: 0.5714285714em 0 0.2857142857em
}

.field__message--error {
    display: none;
    color: #dd1d1d
}

.field--error .field__message--error {
    display: block
}

.field__message__icon {
    margin-right: 0.25em;
    vertical-align: -3px
}

.field__label {
    text-align: left;
    font-weight: 500;
    margin: 0.5em 0;
    display: none
}

.main .field__label {
    color: #333333
}

.floating-labels .main .field__label {
    color: #737373
}

.sidebar .field__label {
    color: #313131
}

.floating-labels .sidebar .field__label {
    color: #737373
}

.content-box .field__label {
    color: #333333
}

.floating-labels .content-box .field__label {
    color: #737373
}

.default-background .field__label {
    color: #333333
}

.floating-labels .default-background .field__label {
    color: #737373
}

.main .field--active .field__label {
    color: #545454
}

.sidebar .field--active .field__label {
    color: #545454
}

.content-box .field--active .field__label {
    color: #545454
}

.default-background .field--active .field__label {
    color: #545454
}

.no-js .field__label {
    display: block
}

.floating-labels .field__label {
    font-size: 0.8571428571em;
    font-weight: normal;
    position: absolute;
    top: 0;
    width: 100%;
    margin-top: 0.4285714286em;
    margin-left: 1px;
    padding: 0 0.9166666667em;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0
}

.floating-labels .field--show-floating-label .field__label {
    -webkit-transform: none;
    transform: none;
    opacity: 1
}

.floating-labels .field__input-wrapper--icon-left .field__label {
    padding-left: 2.8571428571rem
}

.floating-labels .field__input-wrapper--icon-right .field__label {
    padding-right: 2.8571428571rem
}

.animate-floating-labels .field__label {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out
}

.field__label--visible {
    display: block
}

.info__message {
    font-size: 0.8571428571em;
    line-height: 1.3333333em
}

.main .info__message {
    color: #737373
}

.sidebar .info__message {
    color: #6e6e6e
}

.content-box .info__message {
    color: #737373
}

.default-background .info__message {
    color: #737373
}

.field__input-wrapper {
    position: relative
}

.field__input {
    border: 1px transparent solid;
    background-clip: padding-box;
    border-radius: 5px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0.9285714286em 0.7857142857em;
    word-break: normal;
    line-height: inherit
}

.main .field__input {
    background-color: white;
    color: #333333;
    border-color: #d9d9d9
}

.main .field__input::-webkit-input-placeholder {
    color: #737373
}

.main .field__input:-moz-placeholder {
    color: #737373;
    opacity: 1
}

.main .field__input::-moz-placeholder {
    color: #737373;
    opacity: 1
}

.main .field__input:-ms-input-placeholder {
    color: #737373
}

.main .field__input:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.sidebar .field__input {
    background-color: white;
    color: #333333;
    border-color: #d0d0d0
}

.sidebar .field__input::-webkit-input-placeholder {
    color: #737373
}

.sidebar .field__input:-moz-placeholder {
    color: #737373;
    opacity: 1
}

.sidebar .field__input::-moz-placeholder {
    color: #737373;
    opacity: 1
}

.sidebar .field__input:-ms-input-placeholder {
    color: #737373
}

.sidebar .field__input:disabled {
    background-color: #f0f0f0;
    border-color: #c4c4c4
}

.content-box .field__input {
    background-color: white;
    color: #333333;
    border-color: #d9d9d9
}

.content-box .field__input::-webkit-input-placeholder {
    color: #737373
}

.content-box .field__input:-moz-placeholder {
    color: #737373;
    opacity: 1
}

.content-box .field__input::-moz-placeholder {
    color: #737373;
    opacity: 1
}

.content-box .field__input:-ms-input-placeholder {
    color: #737373
}

.content-box .field__input:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.default-background .field__input {
    background-color: white;
    color: #333333;
    border-color: #d9d9d9
}

.default-background .field__input::-webkit-input-placeholder {
    color: #737373
}

.default-background .field__input:-moz-placeholder {
    color: #737373;
    opacity: 1
}

.default-background .field__input::-moz-placeholder {
    color: #737373;
    opacity: 1
}

.default-background .field__input:-ms-input-placeholder {
    color: #737373
}

.default-background .field__input:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.animate-floating-labels .field__input {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out
}

.floating-labels .field--show-floating-label .field__input {
    padding-top: 1.5em;
    padding-bottom: 0.3571428571em
}

.floating-labels .field--show-floating-label .field__input::-webkit-input-placeholder {
    color: transparent
}

.floating-labels .field--show-floating-label .field__input:-moz-placeholder {
    color: transparent;
    opacity: 1
}

.floating-labels .field--show-floating-label .field__input::-moz-placeholder {
    color: transparent;
    opacity: 1
}

.floating-labels .field--show-floating-label .field__input:-ms-input-placeholder {
    color: transparent
}

.field__input:focus,
.field__input-wrapper--flag-focus .field__input {
    outline: none;
    border-color: #1773b0;
    -webkit-box-shadow: 0 0 0 1px #1773b0;
    box-shadow: 0 0 0 1px #1773b0
}

@media (-ms-high-contrast: active) {
    .field__input:focus,
    .field__input-wrapper--flag-focus .field__input {
        background-color: highlight
    }
}

.field--error .field__input {
    border-color: #dd1d1d;
    -webkit-box-shadow: 0 0 0 1px #dd1d1d;
    box-shadow: 0 0 0 1px #dd1d1d
}

.field__input-wrapper--icon-left .field__input {
    padding-left: 2.8571428571rem
}

.field__input-wrapper--icon-right .field__input {
    padding-right: 2.8571428571rem
}

.field__input-wrapper--flag-right .field__input {
    padding-right: 4.7142857143rem
}

.field__input[data-expanding] {
    height: 2.8571428571rem;
    resize: none;
    overflow: hidden;
    -webkit-transition: none;
    transition: none
}

.field__additional-info {
    line-height: 1.3em;
    margin: 0.75em 0 0.25em
}

.main .field__additional-info {
    color: #333333
}

.sidebar .field__additional-info {
    color: #313131
}

.content-box .field__additional-info {
    color: #333333
}

.default-background .field__additional-info {
    color: #333333
}

.chrome .card-fields-container .field__label {
    will-change: transform
}

.field__input--iframe-container {
    border-color: #fafafa;
    min-height: 3.1428571429em;
    overflow: hidden;
    padding: 0;
    position: relative
}

.floating-labels .field--show-floating-label .field__input--iframe-container {
    padding-bottom: 0;
    padding-top: 0
}

.field__input--iframe-container::after,
.field__input--iframe-container::before {
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.field__input--iframe-container::before {
    background: #e6e6e6;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    width: 100%
}

.field__input--iframe-container::after {
    -webkit-animation: load 1s infinite ease-in-out both;
    animation: load 1s infinite ease-in-out both;
    background: #fafafa;
    border-radius: 8px;
    height: 1em;
    margin-top: -0.5em;
    top: 50%;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out
}

.card-fields-container--loaded .field__input--iframe-container {
    height: auto
}

.card-fields-container--loaded .field__input--iframe-container::after,
.card-fields-container--loaded .field__input--iframe-container::before {
    opacity: 0
}

.card-fields-container--loaded .field__input--iframe-container::after {
    left: 100%
}

.card-fields-container--transitioned .field__input--iframe-container::after,
.card-fields-container--transitioned .field__input--iframe-container::before {
    content: none
}

.card-fields-container--loaded .field--active .field__input--iframe-container {
    outline: none;
    border-color: #1773b0;
    -webkit-box-shadow: 0 0 0 1px #1773b0;
    box-shadow: 0 0 0 1px #1773b0
}

.card-fields-container--loaded .field--error .field__input--iframe-container {
    border-color: #dd1d1d;
    -webkit-box-shadow: 0 0 0 1px #dd1d1d;
    box-shadow: 0 0 0 1px #dd1d1d
}

@-webkit-keyframes load {
    0% {
        left: 1em;
        width: 0
    }
    50% {
        left: 1em;
        width: calc(100% - 2em)
    }
    100% {
        left: calc(100% - 1em);
        width: 0
    }
}

@keyframes load {
    0% {
        left: 1em;
        width: 0
    }
    50% {
        left: 1em;
        width: calc(100% - 2em)
    }
    100% {
        left: calc(100% - 1em);
        width: 0
    }
}

.card-fields-iframe {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    color: inherit;
    display: block;
    font: inherit;
    -webkit-font-smoothing: inherit;
    height: 3.1428571429em;
    line-height: normal;
    width: 100%
}

.card-fields-styling-options {
    display: none;
    position: relative;
    background-color: white;
    color: #333333;
    z-index: 22
}

.field__input--zip {
    text-transform: uppercase
}

.field__input--zip::-webkit-input-placeholder {
    text-transform: none
}

.field__input--zip:-moz-placeholder {
    text-transform: none;
    opacity: 1
}

.field__input--zip::-moz-placeholder {
    text-transform: none;
    opacity: 1
}

.field__input--zip:-ms-input-placeholder {
    text-transform: none
}

.field__prefix {
    display: none;
    pointer-events: none;
    position: absolute;
    border: 1px transparent solid;
    padding-top: 1.5em;
    padding-left: 0.7857142857em
}

.field--with-prefix .field__input {
    -webkit-transition: initial;
    transition: initial
}

.field--show-currency .field__input {
    padding-left: 2em
}

.field--show-currency .field__prefix {
    display: block
}

.field__input--select {
    padding-right: 2.0714285714em;
    white-space: nowrap
}

.field__input--select:-moz-focusring {
    color: transparent;
    -moz-transition: color 0ms;
    transition: color 0ms
}

.main .field__input--select:-moz-focusring {
    text-shadow: 0 0 0 #333333
}

.sidebar .field__input--select:-moz-focusring {
    text-shadow: 0 0 0 #333333
}

.content-box .field__input--select:-moz-focusring {
    text-shadow: 0 0 0 #333333
}

.default-background .field__input--select:-moz-focusring {
    text-shadow: 0 0 0 #333333
}

.field__input--select.field__input--select-disabled {
    pointer-events: none;
    background-color: #fafafa;
    color: #737373
}

.field__caret {
    display: block;
    width: 2.1428571429em;
    height: 43%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%)
}

.main .field__caret {
    border-left: 1px rgba(179, 179, 179, 0.5) solid
}

.sidebar .field__caret {
    border-left: 1px rgba(179, 179, 179, 0.5) solid
}

.content-box .field__caret {
    border-left: 1px rgba(179, 179, 179, 0.5) solid
}

.default-background .field__caret {
    border-left: 1px rgba(179, 179, 179, 0.5) solid
}

.field__caret-svg {
    position: absolute;
    margin-left: -2px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.field__icon {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 2.8571428571rem
}

.field__icon:focus {
    outline: none
}

.field__input-wrapper--icon-right .field__icon {
    right: 0
}

.field__input-wrapper--icon-left .field__icon {
    left: 0
}

.field__icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.anyflexbox .field__input-btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.anyflexbox .field__input-btn-wrapper .field__input-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.anyflexbox .field__input-btn {
    width: auto;
    margin-left: 0.8571428571em;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0
}

.no-js .field__input-btn,
.no-anyflexbox .field__input-btn {
    margin-top: 0.8571428571em;
    padding: 1em 1.5em
}

.combo-box {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px rgba(2, 2, 2, 0.15) solid;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.23);
    box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.23);
    margin-top: 0.4285714286em;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    z-index: 3
}

.combo-box--hidden {
    display: none
}

.combo-box--with-footer .combo-box__options {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.combo-box--with-footer .combo-box__option:last-child {
    border-radius: 0
}

.combo-box__options {
    display: block;
    overflow-y: auto;
    max-height: 230px
}

.combo-box__option {
    color: #545454;
    cursor: pointer
}

.combo-box__option:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.combo-box__option--selected {
    background-color: rgba(0, 0, 0, 0.08);
    border: 1px transparent solid
}

.combo-box__option--selected .combo-box__content {
    margin: -1px
}

.combo-box__content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
    padding: 0.9285714286em 0.7857142857em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.combo-box__content * {
    pointer-events: none
}

.combo-box__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.7857142857em
}

.combo-box__header__title {
    font-size: 0.8571428571em;
    font-weight: 400;
    line-height: 1.3em;
    margin: 0;
    text-transform: uppercase
}

.main .combo-box__header__title {
    color: #737373
}

.sidebar .combo-box__header__title {
    color: #737373
}

.content-box .combo-box__header__title {
    color: #737373
}

.default-background .combo-box__header__title {
    color: #737373
}

.combo-box__header__button {
    color: #737373;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    padding: 0.7857142857em;
    margin: -0.7857142857em
}

.combo-box__header__button:hover {
    color: #545454
}

.combo-box__footer {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 0.7428571429em 0.7857142857em;
    position: relative;
    z-index: 4;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.content-box {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid;
    border-radius: 5px;
    color: #545454
}

.main .content-box {
    border-color: #d9d9d9
}

.content-box .content-box {
    border-color: #d9d9d9
}

.content-box.split-shipping .split-shipping-line {
    margin-bottom: 0.8571428571em
}

.content-box.split-shipping .merchandise-line {
    padding: 0.1428571429rem;
    margin-left: 0.8571428571em
}

.content-box,
.content-box-spacing {
    margin-top: 1em
}

.content-box:first-of-type,
.content-box-spacing:first-of-type {
    margin-top: 0
}

.content-box__emphasis {
    font-weight: 500;
    color: #333333
}

.content-box__small-text {
    font-size: 0.8571428571em;
    color: #737373
}

.content-box__sub-content {
    padding-top: 0.2857142857em;
    font-size: 1em;
    color: #737373
}

.content-box__no-border {
    border: 0
}

.content-box__row {
    padding: 1.1428571429em;
    position: relative;
    zoom: 1
}

.content-box__row~.content-box__row {
    border-top: 1px solid #d9d9d9
}

.content-box__row:after,
.content-box__row:before {
    content: "";
    display: table
}

.content-box__row:after {
    clear: both
}

.display-table .content-box__row {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.content-box__row:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.content-box__row:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.content-box__row--main-content {
    display: table-row
}

.content-box__row--main-content .apple-pay-logo {
    height: 19px;
    width: 47px;
    background-color: white;
    display: block;
    background-image: -webkit-named-image(apple-pay-logo-black)
}

.content-box__row--sub-content {
    display: table-row
}

.content-box__row--tight-spacing-vertical {
    padding-top: 0.8571428571em;
    padding-bottom: 0.8571428571em
}

.content-box__row--secondary {
    background-color: #fafafa
}

.content-box__row--no-border {
    padding-bottom: 0
}

.content-box__row+.content-box__row--no-border {
    border-top: none;
    padding-top: 0
}

.content-box__row--no-border+.content-box__row {
    border-top: none
}

.content-box__row--no-padding {
    padding: 0
}

.content-box__row--with-footer {
    padding-bottom: 0.8571428571em
}

.content-box__panel {
    padding: 1.1428571429em;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #fafafa
}

.content-box__row--details {
    margin-left: 2em
}

.content-box__row--details+.content-box__row--details {
    margin-top: 0.8571428571em
}

.content-box__row--details p {
    line-height: 1.75em
}

.display-table .content-box__row__stretch {
    display: table-cell;
    width: 100%
}

.display-table .content-box__row__stretch:only-child {
    display: block
}

.no-js .content-box__row__stretch,
.no-display-table .content-box__row__stretch {
    float: left
}

.content-box__row__right {
    padding-left: 0.75em;
    white-space: nowrap
}

.display-table .content-box__row__right {
    display: table-cell
}

.no-js .content-box__row__right,
.no-display-table .content-box__row__right {
    float: right
}

.content-box__hr {
    border: 0;
    border-bottom: 1px solid #e6e6e6;
    margin: 1.1428571429em 0
}

.content-box__hr--tight {
    margin: 0.8571428571em 0
}

.content-box--applied-reduction-code-list {
    margin-top: 0.8571428571em;
    background-color: #fafafa
}

.content-box__header {
    zoom: 1
}

.content-box__header:after,
.content-box__header:before {
    content: "";
    display: table
}

.content-box__header:after {
    clear: both
}

.display-table .content-box__header {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.content-box__header~.content-box__header {
    margin-top: 1.1428571429em
}

.display-table .content-box__header__title {
    display: table-cell;
    width: 100%
}

.display-table .content-box__header__title:only-child {
    display: block
}

.no-js .content-box__header__title,
.no-display-table .content-box__header__title {
    float: left
}

.content-box__footer {
    border-top: 1px solid #e6e6e6;
    padding-top: 0.8571428571em;
    margin-top: 0.8571428571em
}

.subscription-shipping-rate-options {
    text-align: right
}

.branded-promise-logo__svg {
    margin-top: 0.2857142857em
}

.branded-promise-logo__svg {
    fill: none;
    height: 16px;
    width: 78px;
    vertical-align: middle
}

.split-cart-delivery-presentment-title {
    color: #333333
}

.content-box__row.duties-selector__no-border {
    border-top: none
}

.tooltip {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 80%;
    right: -0.3333333333em;
    width: 180px;
    margin: 0 0 5px 0;
    padding: 0.75em 1em;
    border-radius: 4px;
    white-space: normal;
    font-size: 0.8571428571em;
    font-style: normal;
    text-align: center;
    color: #fff;
    display: block;
    z-index: 200;
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    -webkit-transform: rotateX(20deg) scale(0.8);
    transform: rotateX(20deg) scale(0.8);
    -webkit-transform-origin: 90% 120%;
    transform-origin: 90% 120%;
    -webkit-backface-visibility: hidden;
    background-color: rgba(51, 51, 51, 0.9);
    visibility: hidden;
    opacity: 0
}

.tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 18px;
    width: 0;
    border: 6px solid transparent;
    border-top-color: rgba(51, 51, 51, 0.9)
}

@media (min-width: 750px) {
    .tooltip {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px
    }
    .tooltip:after {
        right: 50%;
        margin-right: -6px
    }
}

.has-tooltip {
    cursor: pointer
}

.tooltip-container {
    position: relative;
    height: 100%;
    width: 100%
}

.tooltip-container .tooltip-control {
    position: absolute;
    height: 100%;
    width: 100%
}

.tooltip-container.show-tooltip .tooltip,
.tooltip-container:hover .tooltip,
.tooltip-container:focus .tooltip,
.has-tooltip.show-tooltip .tooltip,
.has-tooltip:hover .tooltip,
.has-tooltip:focus .tooltip {
    -webkit-transform: rotateX(0deg) scale(1);
    transform: rotateX(0deg) scale(1);
    pointer-events: auto;
    visibility: visible;
    opacity: 1
}

.tooltip--right-align {
    right: -130px;
    bottom: 108%
}

.tooltip--right-align:after {
    right: 130px
}

@media (min-width: 750px) {
    .tooltip--right-align {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px
    }
    .tooltip--right-align:after {
        right: 50%;
        margin-right: -6px
    }
}

.tooltip--vertical-align {
    margin-top: -3px
}

@media (max-width: 999px) {
    .order-summary--transition,
    .order-summary--is-collapsed {
        overflow: hidden
    }
}

@media (max-width: 999px) {
    .js .order-summary--is-collapsed {
        height: 0;
        visibility: hidden
    }
}

.order-summary--transition {
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1)
}

.order-summary__section {
    padding-top: 1.5em;
    padding-bottom: 1.5em
}

.order-summary__section~.order-summary__section {
    border-top: 1px solid rgba(172, 172, 172, 0.34)
}

@media (min-width: 1000px) {
    .order-summary__section {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
    .order-summary__section:first-child {
        padding-top: 0
    }
}

@media (min-width: 1000px) {
    .order-summary__sections {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: calc(100vh - 8em);
        width: 100%
    }
    .no-js .order-summary__sections,
    .no-anyflexbox .order-summary__sections {
        height: auto
    }
    .order-summary__section--product-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        min-height: 7em;
        overflow: hidden;
        padding: 0;
        position: relative
    }
    .order-summary__section--product-list+.order-summary__section {
        border: 0
    }
    .order-summary__section--product-list::before,
    .order-summary__section--product-list::after {
        content: "";
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        -webkit-transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
        transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
        width: 100%;
        z-index: 4
    }
    .order-summary__section--product-list::before {
        background-color: transparent;
        top: 0
    }
    .order-summary__section--product-list::after {
        background-color: rgba(172, 172, 172, 0.34);
        bottom: 0
    }
    .order-summary__section--product-list .product-table {
        margin-top: 0.75em;
        margin-bottom: 1.5em;
        position: relative;
        z-index: 1
    }
    .order-summary__section--has-scroll::before {
        background-color: rgba(172, 172, 172, 0.34)
    }
    .order-summary__section__content {
        min-width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }
    .no-js .order-summary__section__content,
    .no-touchevents .order-summary__section__content {
        overflow: hidden
    }
    .no-js .order-summary__section__content:hover,
    .no-js .order-summary__section__content:focus,
    .no-touchevents .order-summary__section__content:hover,
    .no-touchevents .order-summary__section__content:focus {
        overflow-y: auto
    }
}

.order-summary__scroll-indicator {
    background-color: rgba(49, 49, 49, 0.85);
    border-radius: 2em;
    bottom: 1.5em;
    color: #f5f5f5;
    font-size: 0.8571428571em;
    left: 50%;
    opacity: 0;
    padding: 0.6em 1.2em;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(100%) rotateZ(360deg);
    transform: translateX(-50%) translateY(100%) rotateZ(360deg);
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    white-space: nowrap;
    z-index: 2
}

.order-summary__section--is-scrollable .order-summary__scroll-indicator {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) rotateZ(360deg);
    transform: translateX(-50%) translateY(0) rotateZ(360deg)
}

.order-summary__section--has-scroll .order-summary__scroll-indicator {
    -webkit-transform: translateX(-50%) translateY(-100%) rotateZ(360deg);
    transform: translateX(-50%) translateY(-100%) rotateZ(360deg)
}

.order-summary__scroll-indicator .icon-svg {
    margin-left: 0.2142857143em;
    margin-top: -0.2142857143em
}

.order-summary__emphasis {
    font-weight: 500
}

.sidebar .order-summary__emphasis {
    color: #313131
}

.content-box .order-summary__emphasis {
    color: #333333
}

.order-summary__small-text {
    font-size: 0.8571428571em
}

.sidebar .order-summary__small-text {
    color: #6e6e6e
}

.content-box .order-summary__small-text {
    color: #737373
}

.sidebar .order-summary__price {
    color: #313131
}

.content-box .order-summary__price {
    color: #333333
}

.total-savings th,
.total-savings td {
    padding-top: 0.5em;
    text-align: left
}

.total-savings__label {
    text-transform: capitalize
}

.total-line th,
.total-line td {
    padding-top: 0.75em
}

.total-line:first-child th,
.total-line:first-child td {
    padding-top: 0
}

.content-box .total-line__name {
    color: #737373
}

.total-line__name .reduction-code {
    margin-left: 0.5714285714em
}

.total-line__name--top-aligned {
    vertical-align: top
}

.total-line__price {
    padding-left: 1.5em;
    text-align: right;
    white-space: nowrap
}

.total-line--shipping-policy-link {
    padding-top: 0.25em
}

.total-line__duties-container {
    position: relative;
    display: inline
}

.total-line-table__tbody+.total-line-table__tbody .total-line:first-child th,
.total-line-table__tbody+.total-line-table__tbody .total-line:first-child td,
.total-line-table__tbody+.total-line-table__footer .total-line:first-child th,
.total-line-table__tbody+.total-line-table__footer .total-line:first-child td {
    padding-top: 3em;
    position: relative
}

.total-line-table__tbody+.total-line-table__tbody .total-line:first-child th::before,
.total-line-table__tbody+.total-line-table__tbody .total-line:first-child td::before,
.total-line-table__tbody+.total-line-table__footer .total-line:first-child th::before,
.total-line-table__tbody+.total-line-table__footer .total-line:first-child td::before {
    content: "";
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 100%;
    height: 1px
}

.sidebar .total-line-table__tbody+.total-line-table__tbody .total-line:first-child th::before,
.sidebar .total-line-table__tbody+.total-line-table__tbody .total-line:first-child td::before,
.sidebar .total-line-table__tbody+.total-line-table__footer .total-line:first-child th::before,
.sidebar .total-line-table__tbody+.total-line-table__footer .total-line:first-child td::before {
    background-color: rgba(172, 172, 172, 0.34)
}

.content-box .total-line-table__tbody+.total-line-table__tbody .total-line:first-child th::before,
.content-box .total-line-table__tbody+.total-line-table__tbody .total-line:first-child td::before,
.content-box .total-line-table__tbody+.total-line-table__footer .total-line:first-child th::before,
.content-box .total-line-table__tbody+.total-line-table__footer .total-line:first-child td::before {
    background-color: rgba(179, 179, 179, 0.34)
}

.payment-due-label__total {
    font-size: 1.1428571429em
}

.sidebar .payment-due-label__total {
    color: #313131
}

.content-box .payment-due-label__total {
    color: #333333
}

.payment-due-label__taxes {
    display: block
}

.sidebar .payment-due-label__taxes {
    color: #6e6e6e
}

.content-box .payment-due-label__taxes {
    color: #737373
}

.payment-due__price {
    font-size: 1.7142857143em;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1em
}

.sidebar .payment-due__price {
    color: #313131
}

.content-box .payment-due__price {
    color: #333333
}

.payment-due__currency {
    font-size: 0.8571428571em;
    vertical-align: 0.2em;
    margin-right: 0.5em
}

.sidebar .payment-due__currency {
    color: #6e6e6e
}

.content-box .payment-due__currency {
    color: #737373
}

.total-line--shipping-details,
.total-line--recurring-total,
.total-line--recurring-total-details {
    color: #6e6e6e
}

.shipping_details__controls {
    outline: none
}

.recurring_total__controls {
    cursor: pointer
}

.shipping_details__controls.expand svg,
.recurring_total__controls.expand .recurring_total__chevron-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.shipping_details__controls.collapse svg,
.recurring_total__controls.collapse .recurring_total__chevron-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.recurring-total-label {
    white-space: normal;
    vertical-align: top
}

.recurring-total-label-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.recurring-total-product-name,
.recurring-total-detail {
    white-space: normal;
    vertical-align: top
}

.recurring-total-detail {
    width: 50%
}

.recurring-total-tooltip-wrapper {
    display: block;
    width: 1.4285714286rem
}

.recurring-total-tooltip-wrapper .tooltip {
    right: inherit;
    left: -3.3333333333em;
    -webkit-transform-origin: 15% 90%;
    transform-origin: 15% 90%;
    margin-bottom: 1.1428571429rem
}

.recurring-total-tooltip-wrapper .tooltip:after {
    left: 2.8571428571rem
}

@media (min-width: 750px) {
    .recurring-total-tooltip-wrapper .tooltip {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px;
        left: inherit
    }
    .recurring-total-tooltip-wrapper .tooltip:after {
        right: 50%;
        margin-right: -6px
    }
    .recurring-total-tooltip-wrapper .tooltip:after {
        left: inherit
    }
}

.duties-included__container {
    padding-top: 3em;
    position: relative
}

.duties-included__container::before {
    content: "";
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 100%;
    height: 1px
}

.sidebar .duties-included__container::before {
    background-color: rgba(172, 172, 172, 0.34)
}

.content-box .duties-included__container::before {
    background-color: rgba(179, 179, 179, 0.34)
}

.reduction-code__icon {
    margin-right: 0.1428571429em;
    vertical-align: top
}

.reduction-code__text {
    font-size: 0.8571428571em
}

.sidebar .reduction-code__text {
    color: #313131
}

.content-box .reduction-code__text {
    color: #333333
}

.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: white;
    color: #545454
}

.full-page-overlay__wrap {
    margin: auto;
    width: 100%;
    padding: 10% 0
}

.full-page-overlay__title {
    color: #333333;
    margin-bottom: 0.5em
}

.full-page-overlay__content {
    margin: 0 auto;
    max-width: 36em;
    padding-left: 1em;
    padding-right: 1em;
    zoom: 1
}

.full-page-overlay__content:after,
.full-page-overlay__content:before {
    content: "";
    display: table
}

.full-page-overlay__content:after {
    clear: both
}

.full-page-overlay__content form {
    margin: 1.5em 0
}

.full-page-overlay__content:focus {
    outline: 0
}

.full-page-overlay__icon {
    margin-bottom: 1.5em
}

.full-page-overlay__illustration {
    margin-bottom: 1.5em
}

.full-page-overlay__action {
    margin-top: 1.5em
}

.tooltip {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 80%;
    right: -0.3333333333em;
    width: 180px;
    margin: 0 0 5px 0;
    padding: 0.75em 1em;
    border-radius: 4px;
    white-space: normal;
    font-size: 0.8571428571em;
    font-style: normal;
    text-align: center;
    color: #fff;
    display: block;
    z-index: 200;
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    -webkit-transform: rotateX(20deg) scale(0.8);
    transform: rotateX(20deg) scale(0.8);
    -webkit-transform-origin: 90% 120%;
    transform-origin: 90% 120%;
    -webkit-backface-visibility: hidden;
    background-color: rgba(51, 51, 51, 0.9);
    visibility: hidden;
    opacity: 0
}

.tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 18px;
    width: 0;
    border: 6px solid transparent;
    border-top-color: rgba(51, 51, 51, 0.9)
}

@media (min-width: 750px) {
    .tooltip {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px
    }
    .tooltip:after {
        right: 50%;
        margin-right: -6px
    }
}

.has-tooltip {
    cursor: pointer
}

.tooltip-container {
    position: relative;
    height: 100%;
    width: 100%
}

.tooltip-container .tooltip-control {
    position: absolute;
    height: 100%;
    width: 100%
}

.tooltip-container.show-tooltip .tooltip,
.tooltip-container:hover .tooltip,
.tooltip-container:focus .tooltip,
.has-tooltip.show-tooltip .tooltip,
.has-tooltip:hover .tooltip,
.has-tooltip:focus .tooltip {
    -webkit-transform: rotateX(0deg) scale(1);
    transform: rotateX(0deg) scale(1);
    pointer-events: auto;
    visibility: visible;
    opacity: 1
}

.tooltip--right-align {
    right: -130px;
    bottom: 108%
}

.tooltip--right-align:after {
    right: 130px
}

@media (min-width: 750px) {
    .tooltip--right-align {
        -webkit-transform-origin: center 120%;
        transform-origin: center 120%;
        right: 50%;
        margin-right: -90px
    }
    .tooltip--right-align:after {
        right: 50%;
        margin-right: -6px
    }
}

.tooltip--vertical-align {
    margin-top: -3px
}

.breadcrumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.breadcrumb__item {
    display: inline;
    font-size: 0.8571428571em;
    color: #737373
}

.anyflexbox .breadcrumb__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.breadcrumb__item--current {
    font-weight: 500;
    color: #333333
}

.breadcrumb__chevron-icon {
    margin: 0 0.6428571429em
}

.breadcrumb--center {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.main__footer {
    padding: 1em 0;
    border-top: 1px solid #e6e6e6
}

.copyright-text {
    font-size: 0.8571428571em;
    color: #737373
}

.copyright-text--left {
    text-align: left
}

.copyright-text--center {
    text-align: center
}

.copyright-text--right {
    text-align: right
}

.policy-list {
    zoom: 1;
    text-align: center
}

.policy-list:after,
.policy-list:before {
    content: "";
    display: table
}

.policy-list:after {
    clear: both
}

.policy-list__item {
    float: left;
    font-size: 0.8571428571em;
    margin-right: 1.5em;
    margin-bottom: 0.5em
}

.policy-list__item--left {
    float: left;
    margin-right: 1.5em
}

.policy-list__item--center {
    display: inline;
    float: none;
    margin-left: 0.75em;
    margin-right: 0.75em
}

.policy-list__item--right {
    float: right;
    margin-left: 1.5em;
    margin-right: 0
}

.input-checkbox,
.input-radio {
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    vertical-align: -4px;
    border: 1px solid
}

.main .input-checkbox,
.main .input-radio {
    border-color: #d9d9d9;
    background-color: white
}

.main .input-checkbox:hover,
.main .input-radio:hover {
    border-color: #cccccc
}

.main .input-checkbox:disabled,
.main .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.sidebar .input-checkbox,
.sidebar .input-radio {
    border-color: #d0d0d0;
    background-color: white
}

.sidebar .input-checkbox:hover,
.sidebar .input-radio:hover {
    border-color: #c4c4c4
}

.sidebar .input-checkbox:disabled,
.sidebar .input-radio:disabled {
    background-color: #f0f0f0;
    border-color: #c4c4c4
}

.content-box .input-checkbox,
.content-box .input-radio {
    border-color: #d9d9d9;
    background-color: white
}

.content-box .input-checkbox:hover,
.content-box .input-radio:hover {
    border-color: #cccccc
}

.content-box .input-checkbox:disabled,
.content-box .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.default-background .input-checkbox,
.default-background .input-radio {
    border-color: #d9d9d9;
    background-color: white
}

.default-background .input-checkbox:hover,
.default-background .input-radio:hover {
    border-color: #cccccc
}

.default-background .input-checkbox:disabled,
.default-background .input-radio:disabled {
    background-color: #fafafa;
    border-color: #cccccc
}

.input-checkbox:focus,
.input-radio:focus {
    border-width: 2px;
    border-color: #1773b0
}

.input-checkbox:checked,
.input-radio:checked {
    border-color: #1773b0
}

.input-checkbox:checked:hover,
.input-radio:checked:hover {
    border-color: #1773b0
}

.input-radio {
    border-radius: 50%
}

.input-radio:checked {
    border-width: 7px
}

.input-checkbox {
    border-radius: 4px
}

.input-checkbox:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    width: 10px;
    height: 8px;
    margin-left: -5px;
    margin-top: -4px;
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/checkbox-tick-2c901b63941d686f2a265e50a2b47acb4d130cdbfdf2561c01fdc953f651a1ce.png);
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/checkbox-tick-66a9a39f70a44a226223ef4c61a701d2d10afaa73ba8846a509fbe58a82f3f36.svg), none
}

.input-checkbox:checked {
    border-width: 9px
}

.input-checkbox:checked:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 1
}

.radio-wrapper,
.checkbox-wrapper {
    zoom: 1;
    margin-bottom: 1em
}

.radio-wrapper:after,
.radio-wrapper:before,
.checkbox-wrapper:after,
.checkbox-wrapper:before {
    content: "";
    display: table
}

.radio-wrapper:after,
.checkbox-wrapper:after {
    clear: both
}

.display-table .radio-wrapper,
.display-table .checkbox-wrapper {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.radio-wrapper:last-child,
.checkbox-wrapper:last-child {
    margin-bottom: 0
}

.radio-wrapper.content-box__row,
.checkbox-wrapper.content-box__row {
    margin-bottom: 0
}

.radio__input,
.checkbox__input {
    padding-right: 0.75em;
    white-space: nowrap
}

.display-table .radio__input,
.display-table .checkbox__input {
    display: table-cell
}

.no-js .radio__input,
.no-display-table .radio__input,
.no-js .checkbox__input,
.no-display-table .checkbox__input {
    float: left
}

.radio__label,
.checkbox__label {
    cursor: pointer;
    vertical-align: middle
}

.display-table .radio__label,
.display-table .checkbox__label {
    display: table-cell;
    width: 100%
}

.display-table .radio__label:only-child,
.display-table .checkbox__label:only-child {
    display: block
}

.no-js .radio__label,
.no-display-table .radio__label,
.no-js .checkbox__label,
.no-display-table .checkbox__label {
    float: left
}

.radio__label--active {
    color: #1773b0
}

.radio__label--inactive {
    cursor: default
}

.radio__label__primary {
    cursor: inherit;
    font-family: inherit;
    vertical-align: top
}

.display-table .radio__label__primary {
    display: table-cell;
    width: 100%
}

.display-table .radio__label__primary:only-child {
    display: block
}

.no-js .radio__label__primary,
.no-display-table .radio__label__primary {
    float: left
}

.radio__label__accessory {
    text-align: right;
    padding-left: 0.75em;
    white-space: nowrap
}

.display-table .radio__label__accessory {
    display: table-cell
}

.no-js .radio__label__accessory,
.no-display-table .radio__label__accessory {
    float: right
}

.checkout-sms-info {
    font-size: 12px;
    color: #757575
}

.payment-method-wrapper .radio__label__accessory {
    vertical-align: middle
}

@media (max-width: 749px) {
    .payment-method-wrapper .radio-wrapper {
        display: block
    }
    .payment-method-wrapper .radio__label,
    .payment-method-wrapper .radio__label__accessory {
        display: block;
        padding-left: 0;
        text-align: left
    }
    .payment-method-wrapper .radio__label__primary::after {
        content: '';
        display: block;
        height: 0.65em
    }
}

.payment-icon {
    display: inline-block;
    width: 38px;
    height: 24px;
    -webkit-transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
    transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
    -webkit-backface-visibility: hidden
}

.blank-slate .payment-icon {
    vertical-align: middle
}

.payment-icon--acima-leasing {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/acima_leasing-8cf6e804e95652f5cad7ebb9c85580c32d0594c6c5a348a1e7394166facc55a6.svg), none
}

.payment-icon--acuotaz {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/acuotaz-16f2138e95e8e3ba81ab9e3a2260cc7af3ecdc5e1cc05a271947eabf04d1279a.svg), none
}

.payment-icon--ada {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ada-7f447f66cf3223f6420f880b5d52b8d5beabbdeceba9fad6fa0c9d5a2ca56b73.svg), none
}

.payment-icon--addi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/addi-8677f14b1c39d11d8f68cd1be545fcd493c5be7b413cd7e4d8c135d789aaca35.svg), none
}

.payment-icon--aeropay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aeropay-87f7f1a427e48288ec10cb385ea14ce5687849af09ba17f2082e3414f8ffb903.svg), none
}

.payment-icon--affinbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/affinbank-08c01bb1dae96d1ad1951d339d7e08c56bb400dbc0f7d631a273f9e99411bc7d.svg), none
}

.payment-icon--affirm {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/affirm-01c74a53d8dba3f47a254b617c80fff80968cfef323f9d2f7000adf38e6f10db.svg), none
}

.payment-icon--aftee {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aftee-529760c30a054bda208cde45686d42b710ad3cc3b597cc5936a53bc39788dff8.svg), none
}

.payment-icon--afterpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/afterpay-c814f73b45b605f4c618ce52eb8c67427d3ae3cb8addb872e621dfbabae0b5f0.svg), none
}

.payment-icon--afterpay-paynl-version {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/afterpay_paynl_version-92ce6cbe49f8691c9f397731b08225859c06a2488c46bff78e9fe99b4d3d2778.svg), none
}

.payment-icon--airtel-money {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/airtel_money-ba47466e863909cc190c6f7143887fc86bcbad8246a1fd788a5a1e0f5a42cc87.svg), none
}

.payment-icon--airteltigo-mobile-money {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/airteltigo_mobile_money-a27fcf304fac6a38d4ea290c69ce2a538d92491a75324806c532634f47223b42.svg), none
}

.payment-icon--aktia {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aktia-7f4199ca804ab165ea75991a221b75f662373d76c07cfbc00120f2619f83ba9f.svg), none
}

.payment-icon--akulaku {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/akulaku-f2f5faf360fdda9742b7b5e3ef1fb705715488d204235b385d6f1509b84746d6.svg), none
}

.payment-icon--akulakupaylater {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/akulakupaylater-cc80167356f9cb523589025b1f2e397a41f821b4be17f6d7f6a34803097d8d1b.svg), none
}

.payment-icon--alandsbanken {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alandsbanken-e70755db2d227a4e7d02f50fb2b91e1a879feb88d6fb3936a92bd8138740538c.svg), none
}

.payment-icon--alfamart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alfamart-0e2af778cccea1d57c8694748076f3a2ca2f84db8333fae0c60b9deac65b356d.svg), none
}

.payment-icon--alfamidi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alfamidi-3c6453be71d7d83f56fb94f6c8bb827972bd0190efd7e1b0a95cb86f37a06ec7.svg), none
}

.payment-icon--alipay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alipay-6fc03147a0db525e1617dd147c40e1b7c6588a79461edc8db811adaa1cf85355.svg), none
}

.payment-icon--alipay-hk {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alipay_hk-d0e8325d855b0b78e7377ad25344fd710ab0e211dd9fa759ff1beb3076f21c58.svg), none
}

.payment-icon--alipaypaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alipaypaynlversion-415f5fad77d259e4b84e91b0db0770b2befd0bc03f0992997dc67de5271ad072.svg), none
}

.payment-icon--alliancebank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alliancebank-03ee35cdcaaea35415333cf04da6f72042f57b67e8721c6555d36125ef7f1ed5.svg), none
}

.payment-icon--alma {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/alma-059feb4c8759f34aed31d541869fc421114245186860522c9f62e1223944032b.svg), none
}

.payment-icon--aman {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aman-2315c1b651e5dbd8c000cf2bdd0f65dda7ef354ae5d5422afc6c826aba22994a.svg), none
}

.payment-icon--amazon {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/amazon-92e856f82cae5a564cd0f70457f11af4d58fa037cf6e5ab7adf76f6fd3b9cafe.svg), none
}

.payment-icon--ambank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ambank-89ecb816f616894547157ab3af4ee1cad2242784a27bc1ce4a4ca909b017845b.svg), none
}

.payment-icon--american-express {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/american_express-12858714bc10cdf384b62b8f41d20f56d8c32c1b8fed98b662f2bfc158dcbcf0.svg), none
}

.payment-icon--anyday {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/anyday-dd5c066c2790a25fbcdd3a9ab32185a6180ee13e3406bacf6e56c6bbd9c7efa8.svg), none
}

.payment-icon--apecoin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/apecoin-61c7de3be83e6dd146438ac5703ae47fcffea6742cbc5decf34809f189513f55.svg), none
}

.payment-icon--aplazo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aplazo-4574c29d5df7f2b1b0d1e2cacc1238c513231bc492da7fa0d748db870e24d8f0.svg), none
}

.payment-icon--apple-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/apple_pay-f6db0077dc7c325b436ecbdcf254239100b35b70b1663bc7523d7c424901fa09.svg), none
}

.payment-icon--aqsat {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aqsat-1b3f96fa29e2e1d86b4b7676376f230987ed91f0a33199b64376467f38297d25.svg), none
}

.payment-icon--arbitrum {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/arbitrum-45b085e693d11923109eee13b8cfcbe94d6191e03517bbbb5a9acff9f9dc9484.svg), none
}

.payment-icon--arhaus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/arhaus-030a95b00ca6f1202b029c9eb0726f741d81f0e69ab6fe7db7d9eef9fdbd66aa.svg), none
}

.payment-icon--arvato {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/arvato-7a38b4b987355cc4f1d96ddb32865b5dfd8a1d461d9b52c4b5ba885729e3dfec.svg), none
}

.payment-icon--ask {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ask-bc6ae56b263b7fe4a5707d74a0cbd19e7d23a743160e4df05aa216b68cb4be19.svg), none
}

.payment-icon--astrapay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/astrapay-c612dd5d34ca4872586138bf23b80a5104f78669513fddd3267f9c332b749d19.svg), none
}

.payment-icon--atmbersama {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/atmbersama-8078539ce0166704414fcfe94ba36e1fbdbe0f5c51b9d7635ee9941f4b467f97.svg), none
}

.payment-icon--atobaraidotcom {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/atobaraidotcom-5952a8e00924ee5aeaa698211e620dd3a4c6018af34b00fb9dd5b02d422886f9.svg), none
}

.payment-icon--atome {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/atome-ebd890d59a33f9fc9106fbc097a14a3bd8a8f0627259cd06b93d9082c48f0c03.svg), none
}

.payment-icon--atone {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/atone-8bf0ab8afb24df42a877e7dee75500626555b1768433fe28b7c47d7dda1d988d.svg), none
}

.payment-icon--atrato {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/atrato-cc8bcfd99c4ad9b6eb8cb1311010d65fc7f128077a9dee74ba0fea36a94f125a.svg), none
}

.payment-icon--au-kantan-kessai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/au_kantan_kessai-4b626f71606119d1fdbd14ad228c8e574520ad792bb8ae9bde915a7dfad8607b.svg), none
}

.payment-icon--aupay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/aupay-dc63ac000c668dcf51b3028022f188ca2b4c2e364ff8397d02b8416ee2dbe358.svg), none
}

.payment-icon--avalanche {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/avalanche-4357c095ed17ce55d71ba6f817b067ff538500c7e51839bde4b398e75f779381.svg), none
}

.payment-icon--axs {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/axs-1a4ddedcfc69afb470f7e1300f109c75b2f7b3ac5ec7312cbc1f0e83c2fdb486.svg), none
}

.payment-icon--bancnet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bancnet-843b4601d6aedcc483b8cfee40a687c1ec6af043e6fe67785d3f2e563202f165.svg), none
}

.payment-icon--bancomat {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bancomat-44bd77023e4db9db5399880860dcc6b1240aff67dada97408d7c9fb022c1e7b0.svg), none
}

.payment-icon--bancontact {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bancontact-5025a18e9848062fdad79279079e840ec3ea36bd223dc3a77b7b3074efa8d638.svg), none
}

.payment-icon--bangkokbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bangkokbank-0858d4c8e4b6e6fe609060333a0f7dfc303f6fe562f55ad7f4e9be02540cdcc7.svg), none
}

.payment-icon--bankislam {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bankislam-e10fbd52ffd9bd7afe3287e8f5531ad5372992e4652e2bc0917e92d6ef84e3ed.svg), none
}

.payment-icon--bankmuamalat {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bankmuamalat-378020832b19d5c83332d1b381f6974744b6432be7c96f0a49339e42004c0735.svg), none
}

.payment-icon--bankrakyat {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bankrakyat-8887b435cf6e13a36972038a1c3e5d81a1e6cb47229b1fd39ea4b435fdedd500.svg), none
}

.payment-icon--base {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/base-4f8c04458d0f00188033dbfc0662e6cbb9c6f87b371ffe7a5980b8ae0cb486bc.svg), none
}

.payment-icon--bbvacie {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bbvacie-a4be9361de6c84bc1a66acc9640c43adeea5bc2332690ffb15b7b654d1fe2c45.svg), none
}

.payment-icon--bc-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bc_card-291cba646568cc2fc39c8f3ec04ffe3193a77e6323af8173e29b48ab422562bf.svg), none
}

.payment-icon--bca {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bca-847683bf0b4df5183c1667c547fec695ccde8fff3799c4975445a6374a451deb.svg), none
}

.payment-icon--bcaklikpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bcaklikpay-ebcc0b1ae6681348a0a428966fd9c8b6db89a22e60a93a5bd5ad0ba549c0cf2d.svg), none
}

.payment-icon--bdo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bdo-246949f2b5f41934b772c4464e664275a6c6f5cfdba1f158bc53d45a01f6f46c.svg), none
}

.payment-icon--belfius {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/belfius-8b2b5dd319c79afe6dbe9aaeece6193d89d1a30232e53fa1394ba3978f1e79b4.svg), none
}

.payment-icon--benefit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/benefit-22e571923c4b2de66723758244e9549becb7e69bcda44b09f3f82e0876f616d7.svg), none
}

.payment-icon--bestbuycard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bestbuycard-32815d57d159052224f59a7f2675b3aa55d28b0461b8b227fc253b632e5c006c.svg), none
}

.payment-icon--bierchequepaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bierchequepaynlversion-431c67a865e914a7e2513da59466211a782048769b835da992f64c95bd743d43.svg), none
}

.payment-icon--bigc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bigc-42a9c37cbbecc31fb403a35b085d66ea18daac035a562e7f0b1cf7b011a98214.svg), none
}

.payment-icon--billease {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/billease-54669d23b38bfa29713c0a1bf6ebad9a9a73fb03b0c48443d39a325fc67a0438.svg), none
}

.payment-icon--billerpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/billerpaynlversion-a75bae709d28a91e019459a2649949ce9b89daf048dfc9f349bde0740de1b7b2.svg), none
}

.payment-icon--billie {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/billie-6749d9f56a9758e83297cee19ef0fb0c238c1d7b56c9465ebddabfdcfa3a5f01.svg), none
}

.payment-icon--billink {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/billink-8d269a50b524be530eea52946a9a85a054e717037743e37579d99dbbc457ff3e.svg), none
}

.payment-icon--billinkmethod {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/billinkmethod-50ac6be1f460cc097dc12e81e606af47bd40970f8b7b2b5d2f9c1ce0ca153325.svg), none
}

.payment-icon--bitcoin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bitcoin-e41278677541fc32b8d2e7fa41e61aaab2935151a6048a1d8d341162f5b93a0a.svg), none
}

.payment-icon--bitcoin-cash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bitcoin_cash-5bcc0af0a5ebe647f8da2aae1f8382d7854796dc3bc2450985a9da832d4d2bbc.svg), none
}

.payment-icon--bizum {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bizum-c0a89a277054b854eb0a8eebb8e8b3ab8c241253cbaf20194ea2255adb755b98.svg), none
}

.payment-icon--blik {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/blik-39d5ec5cd0447f852cbf4ea6e98b88c503cedf1f6026a3eb36ea1617c08b09b4.svg), none
}

.payment-icon--bnbchain {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bnbchain-2890abed159d44c2f70d82f4c9b44a0e3b6ce320bf203d78bcd7fa59da469db5.svg), none
}

.payment-icon--bni {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bni-c98e0f595f7bdda4814dbd2608ec75c7603f157919ba4748b0432f1e8962cdf1.svg), none
}

.payment-icon--bogus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bogus-13c83bc142b1d1b69905f99e38a897f75581e477a1233254ce01e64b3e3ae2b8.svg), none
}

.payment-icon--bogus-app-coin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bogus_app_coin-36cbb31f29677280f9883cd115a79a9f5d4a2e8e4427b298a48ea69a1bf8d176.svg), none
}

.payment-icon--boleto {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/boleto-50666ca3aee193c64e41a2803fe4a6d6c5e1a27d03c5e44ce97e3aa82fb6deb2.svg), none
}

.payment-icon--boodil {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/boodil-0628ff713ee7a0b25501c8d4d3b36a06369e106019199b0ffc9fdc2e476e8eb6.svg), none
}

.payment-icon--boost {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/boost-d537f5ce62467149d4a36c678de3ecafc8c5321eb0b2beb83384c3dd964059ad.svg), none
}

.payment-icon--bpi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bpi-fb71452e7dc550025134bd80a4b2b70551b417b66d42a50a66ee70b370977662.svg), none
}

.payment-icon--bread {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bread-960e45c88dc6042693ee96b09b5e2add4930cc5a3d6bc4d6ff78f96fc8501bc0.svg), none
}

.payment-icon--breadpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/breadpay-65fc2df3fe9e9e4b4dd3ee409fef41d291ebf6c2a3a9cd2bae6ff3b4624280ac.svg), none
}

.payment-icon--bri {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bri-8ee8c6fe5fd5500f54fa0dcf07052d341f10fc709357b6d54a9f1411e9ea798e.svg), none
}

.payment-icon--bri-direct-debit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bri_direct_debit-7fbdc0108aec7a8c41cc5c9c31edec5e41c20fcd19042cb5208c5790e68d9aac.svg), none
}

.payment-icon--brimo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/brimo-05d60c8f5fc2ac46b91b3ff1888cfc038ba6ea12e97fc5ad0540308e235bb0b5.svg), none
}

.payment-icon--bsi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bsi-ff23efc710270639c62609e92f9ddfae3ff0c7afe65240cacfedc0a26b328f9b.svg), none
}

.payment-icon--bsn {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bsn-36050d9c33fc6343488c656ed26f1212729cc297e704f92a09c63bf26a8c49a8.svg), none
}

.payment-icon--bss {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/bss-0445e7cf6220008fb10df749e57729decb9bfc64fa125edfa46e5322f4ed41e7.svg), none
}

.payment-icon--busd {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/busd-b15248167cd2fabad6cb40e44307c2e85fc5ddc01c11a16cf5abf8218fbcd012.svg), none
}

.payment-icon--careempay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/careempay-f041f96daf0446aea2608d798c73b396aab365aca8267ae2f9042fa00d50000d.svg), none
}

.payment-icon--cartes-bancaires {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cartes_bancaires-ad50cf789d5354f733fea24cf4d0a73b4a2843080e3b5607a6f05445c2cd206b.svg), none
}

.payment-icon--cash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cash-6536c587582689566e943aee8abd84c8b882c9b372940abb53b004a6c24736d8.svg), none
}

.payment-icon--cashapppay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cashapppay-7649e119b4375db049b61b07a86fd127923b2c183cd8d2cd69460b119d50a572.svg), none
}

.payment-icon--cashew {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cashew-2428ad11d379f1c958d5f82deca57a9b8858ae139fc10f99cb0b5de21940af32.svg), none
}

.payment-icon--cashinvoicelatinamerica {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cashinvoicelatinamerica-6d80fc94af697ec01aa3aeb9a2bab1ba95e6fa5bc3828c5cfdf4fabeeb67aa9d.svg), none
}

.payment-icon--catchpayments {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/catchpayments-ea675977f281007db7376f3c8ef68d008fdf5d5a9a3d0fbbd649f14f4bdca41f.svg), none
}

.payment-icon--cebuana {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cebuana-4503ec0c953714be5bf3d20dc131f684fd9c773d91b6afce98fb9b66061bde3d.svg), none
}

.payment-icon--centi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/centi-4c8c046d898708fb83caba04d6a14ea7e3ab9532642770b6d3c093856866842f.svg), none
}

.payment-icon--cetelem {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cetelem-359f2adcc861a3ef42d724335e8d4b2a37c631aaab991c535f6315074fc27f1d.svg), none
}

.payment-icon--checkout-finance {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/checkout_finance-6f0a1ec28b7cfcc525e144c98864a983d42a28035a81253585f4403c21ba913a.svg), none
}

.payment-icon--chinabank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/chinabank-9f90bee77843d60b71b65023af8c5c5e52f0a081c6acebdf31bee62a5450b57d.svg), none
}

.payment-icon--cimb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cimb-c8c7c9d3f502553190be05539974f4dfd24307a5b1f6987f709e5c1299c18529.svg), none
}

.payment-icon--cimbclicks {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cimbclicks-5d4a2beaa6ef4f03b16a3a4acfb660faca5c17246b4cc5b450e5a8692adda071.svg), none
}

.payment-icon--circlek {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/circlek-58c13e0385bfa6b02cf8eceac9ac41af35d0c0e104cf438d6298e20fe68af1aa.svg), none
}

.payment-icon--citadele {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/citadele-aedbb863c63e9c2a30d7481b3195b6579b9895617a4179cd1172036c5dffd381.svg), none
}

.payment-icon--citipay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/citipay-dd320db826f881dff02dfbb2161a58ee9fb02aa4ff5883533cf543a5ef51f977.svg), none
}

.payment-icon--clavetelered {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/clavetelered-fc81836e181abd00196b60a427cc19cb8fe50275f3b606b8d598fc9d5abe27f3.svg), none
}

.payment-icon--clearpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/clearpay-0e8e2d6e48d0dabaccf0e181ecf01b19f0d479ab032f48682bedcfa138983bd6.svg), none
}

.payment-icon--clerq {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/clerq-b658cc37d82c6ef66f280eff4d19d3d52fc2cea9c7a5b71504c79a5b79e51da1.svg), none
}

.payment-icon--cleverpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cleverpay-f2f22efccd86a3c0ad3c3aba4416338a8b5e83fc10d5f2272d02f987efd45917.svg), none
}

.payment-icon--clip {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/clip-3d41914816d056958dea00d376c54f2e42133e5a6d539ce73889d8fee2ae47bc.svg), none
}

.payment-icon--cliq {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cliq-9411c61add9c9f967ac67d30eb9f56777c5f40951b7e27746bcfd79226ba7324.svg), none
}

.payment-icon--coinsph {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/coinsph-eea7ccd6c9bf7f03d0a483659404a532d0c2c1cfda5d391c18f58ee54010e53c.svg), none
}

.payment-icon--collector-bank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/collector_bank-83d197c8b12779b1f7e6d48462142c1c41885e135b4e9614584d5fdd4ceda31b.svg), none
}

.payment-icon--coop {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/coop-487cae323b681272e988a792e973eb29e31468904483c0ccd765577d98a40d2f.svg), none
}

.payment-icon--coppelpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/coppelpay-26149fca9d6afb7f31e438cf84b7f770a31da273d3f63df7003b2c8302748fd8.svg), none
}

.payment-icon--creditclickpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/creditclickpaynlversion-f9b3856a844b81bf65feb48a094cb8dce19459045384e23c203c209bab21fcfb.svg), none
}

.payment-icon--creditkey {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/creditkey-90853323a3a1e6095ea324b6836ef347567d08ab830186973f56154fa01f05a3.svg), none
}

.payment-icon--credix {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/credix-b00ba15df3c1a4895a250aa2bc754345983422e71a49b6102c853ffd01071d27.svg), none
}

.payment-icon--cuotas {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/cuotas-22d21a10e63a89a269ff1299aa9e393d3fc9c5b549b9ced116ec7824f3a96a68.svg), none
}

.payment-icon--d-barai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/d_barai-67c8337ed881cc9557f85cf1185761d8f9f6c4c297849a02a9d0fdee686455a8.svg), none
}

.payment-icon--dai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dai-58acead046f7352800bb5fda0893dfd8a044aa4611d18f0a654012dc9dda1a5b.svg), none
}

.payment-icon--dailyyamazaki {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dailyyamazaki-88b3c64ba4a2c6164c8ba5fc3de1f6f8f162594d76fa3698ec844619bcddd20d.svg), none
}

.payment-icon--dana {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dana-17dcb5b2f6a5b7554e5461db4a4abd30d5af7b1b7d8ff40267b9d1f93c996b88.svg), none
}

.payment-icon--danamononline {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/danamononline-35ec018e214f8b2d68b632d58d2f89a35de2f257b58e175f6bc4432dc0c5868c.svg), none
}

.payment-icon--dandan {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dandan-77616af9dcfe2a2c8a9a14d88feb21f67c74bc0d05a62b38bd0be889acb4f33e.svg), none
}

.payment-icon--dankort {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dankort-a92b320b417b7c123265e1e4fe134935ac76ec7e297be9b02a5ef76b182a29cc.svg), none
}

.payment-icon--danske-bank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/danske_bank-5d0229a9de7b776cef96ac84a78738697313e3056de46ad9f387a615492a2d38.svg), none
}

.payment-icon--dappmx {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dappmx-85427116ee238ad2904308d020b873e43eae83ad2a61f546645fb87660f264fc.svg), none
}

.payment-icon--dash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dash-79c6868e5d0012a312de5a0bc1e383d98a316f7ee0492d40124671c4d9994aca.svg), none
}

.payment-icon--decadeaukaart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/decadeaukaart-84c863aaee018c407f124c62f690f8ac611c3e838e7ddc32cdc38f8e04b47d9b.svg), none
}

.payment-icon--depay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/depay-a7fe94aac30d112beb92f7649a7cdaf3a069f7122bdfeb61c8ab2eff064800af.svg), none
}

.payment-icon--deutschebank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/deutschebank-be2a71b8906e970ff4598600e5e994aeedfb4f07eb0b67fde2596fb32f10c360.svg), none
}

.payment-icon--diners-club {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/diners_club-16436b9fb6dd9060edb51f1c7c44e23941e544ad798282d6aef1604319562fba.svg), none
}

.payment-icon--directa24 {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/directa24-1fc9755976e41de05df126b509aacac9e4a8c23f06fffd0594c5e7ba52b8f0f9.svg), none
}

.payment-icon--directbanktransferlatinamerica {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/directbanktransferlatinamerica-f6f0812c00e9d555a7c7af11b0361cf11150ad91075f27a8e1f1e36437842902.svg), none
}

.payment-icon--directpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/directpay-86700a3d16460eec9a297fea5a58745ad51da5e26ebdc088e74c8f65685fae15.svg), none
}

.payment-icon--discover {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/discover-cc9808e50193c7496e7a5245eb86d5e06f02e2476c0fe70f2c40016707d35461.svg), none
}

.payment-icon--divido {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/divido-f0e5561c9b095c7fef1012802e235241352c89b936fc01b670f3331b31c9a995.svg), none
}

.payment-icon--dnb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dnb-6447b501736e8323a9b3dec1ea6318d8c776dcf57e37f8ca003f55191ce2e1d4.svg), none
}

.payment-icon--docomo-barai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/docomo_barai-61fab4f51197d9bdefec40d0b8b5fd6d2ebe2668d39cfc75ae9be84e915251ba.svg), none
}

.payment-icon--dogecoin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dogecoin-40c07eb6559d1c47a2ac893d14a4d27cdfad770df3413fb3e49ab51a18c8961d.svg), none
}

.payment-icon--dropp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dropp-7382116201f3e9f4da64360974c181d9517a6a642b4f41e06e237d77b9d460c2.svg), none
}

.payment-icon--duitnow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/duitnow-db4caa0b27e7b0ca565afa64bf0d6addfa0cf150b33c5a512cbe282161026340.svg), none
}

.payment-icon--duologi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/duologi-c87796770339bf2e9815625e8b00676576f8f0efb3f5cb146554456a4c991317.svg), none
}

.payment-icon--dwolla {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/dwolla-afe7aa3f31ed9f5aaf470e495448ee3f17a139aa8692a50d117571174726ce8d.svg), none
}

.payment-icon--easywallet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/easywallet-b064fb35fe1222b7c13976a2c0b53331cb3da2323a2aacbf70e5ac3a3e678b20.svg), none
}

.payment-icon--ebucks {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ebucks-63afa150251c62442c41c61f059240808a4423e397bbb06dfccc871c8a35dafc.svg), none
}

.payment-icon--echelon-financing {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/echelon_financing-e82e025af3b89ca967dafa23259a9aab69c8a1b34c807b1a21a9e49d3df310ce.svg), none
}

.payment-icon--ecpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ecpay-393b90a5e28555079fc291a58a72e56a1fdc201d87ac2d171a52a548005992ef.svg), none
}

.payment-icon--edenred {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/edenred-474dbe0359dbde5bbe454c1f30340c9427d6d8d575af556d4f9564b978dc83b3.svg), none
}

.payment-icon--eft-secure {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/eft_secure-fd1c18f610b963c70bcbcf236b26221e0193cd9ba97e03200f62591ac10d758c.svg), none
}

.payment-icon--eghl {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/eghl-00e04bdf86ff5f2b795ed57dfd9b50917269719f27572a0a412f81a16627d51b.svg), none
}

.payment-icon--elo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/elo-bae665edd62be838e1d8ce585b4fbaa26bc3ab0acccbda0b00864d7298895d87.svg), none
}

.payment-icon--elv {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/elv-8dfb2600dc7fa9cfd33a33576542cdd929ed7b74d9f8ef6fb2862dfeb03342d7.svg), none
}

.payment-icon--enets {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/enets-7ea95d3aac6ed0dca6b6b801f6ed6ec52e753144a45234bf3de43c18e0b90259.svg), none
}

.payment-icon--eos {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/eos-93d1fb5eacb3370ff7121ee018cf7f6ff40766bb8bdb10e72d966975b1764c3b.svg), none
}

.payment-icon--epayments {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/epayments-74c4632fe81a845ca6a45dfa1224961618fedf06efecbcd878d78debf75848eb.svg), none
}

.payment-icon--epospay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/epospay-3a97328e3aa1c2917c20fceac849009c56002ce0aacbeb9482d18347c91fe88f.svg), none
}

.payment-icon--eps {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/eps-1da276d63cb986aff9d9c50ac1ea76c3d06670b5b32741399f080321c997386e.svg), none
}

.payment-icon--esr-paymentslip-switzerland {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/esr_paymentslip_switzerland-0e00cd25a6b2c0b0d39c22bc75c1d68065b22e5d8ea2d45afbd71db367d6e9e8.svg), none
}

.payment-icon--ethereum {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ethereum-5ddd16af409ae6bd61c9ebb5b3f1bbec913e7e92fa98d4b0330e192ee1531839.svg), none
}

.payment-icon--etika {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/etika-ecb263177d0aea481d269d68f828caa6edb7a0ee9bcf12758b9d457e5d8903c6.svg), none
}

.payment-icon--ewalletindonesia {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ewalletindonesia-3bb71ab83695aa775d6247cb9c05d25ac13c6d032330d5763216f0cc9875dd27.svg), none
}

.payment-icon--ewalletphilippines {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ewalletphilippines-24dfbd340766d6c58b2613c9d3ab21127b6dd71691043b94407d606edefcab47.svg), none
}

.payment-icon--ewalletsouthkorea {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ewalletsouthkorea-30de7864c6993b46e6fb7eb237f3d008bfb53ed8714502ae769a48f01167a5a9.svg), none
}

.payment-icon--facebook-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/facebook_pay-6dd2d5299387dd7ee76f136125a3dee928b3343af710c36b074192dd5ffe50b1.svg), none
}

.payment-icon--fairstonepayments {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fairstonepayments-a6965d5ed785035c85ef776ce5073eb30c426c51cef4243040eb7b83b4570b89.svg), none
}

.payment-icon--fam {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fam-7e5c0ea9f88d1a7cc0e1c2762a54a9cf9b6d97ca3e27328c232c86de9cb9a983.svg), none
}

.payment-icon--familymart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/familymart-8b7f2baff828541efeeeb9b934894bdb6a53561f1a5e2d0b24b2b9fec72b5cdb.svg), none
}

.payment-icon--fantom {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fantom-7d2bd261c68c55090b5c3d07f5b073579397a02aabdbe56ee78fcf92b581466d.svg), none
}

.payment-icon--farmlands {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/farmlands-cd6be987a5764a9006325d4ef293e3c2ce9fc74c283d218411951a82c2e86cbe.svg), none
}

.payment-icon--fashioncheque {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fashioncheque-3fe8f93e072b0a76124d74d922f7ed60bc31f6912a0636db9855f3877b70aedd.svg), none
}

.payment-icon--fashiongiftcardpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fashiongiftcardpaynlversion-bd0dbee91c2c15f09b2fb08df182d92a9b7995dbcfc683fcc387eae60f7a2840.svg), none
}

.payment-icon--favepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/favepay-0847bf078dc374fe2cb9505305f7928d60a81395f78213c2080db63e1edc7535.svg), none
}

.payment-icon--fawry {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fawry-8880fc8c1c02b38bdf465b6167a5cbfcae0e47b17da4f65a06404ad575bd5971.svg), none
}

.payment-icon--finloup {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/finloup-2509ff180ee2f64e60b0074d5359bb2b881ff7117d5c6465effe7ba4b0647e45.svg), none
}

.payment-icon--fintecture {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fintecture-44fd71a992a53692dc6909c6cd9c5a2afe5027007369db79e612329a951a40a5.svg), none
}

.payment-icon--fintoc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fintoc-94aff5bcc8f15920d3a937ef94f68fc54bfb15875223888014ac3dd7454236dd.svg), none
}

.payment-icon--flexiti {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/flexiti-605283301fc62da35fe5cb607b3d1dd25348f5bbe7a9a7723f5b55fa69e3deb2.svg), none
}

.payment-icon--floatpayments {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/floatpayments-052a44dd4ad546c23ca211c7db68ae10a23b3b7ffe86cfc9d973cc922f4fa2a0.svg), none
}

.payment-icon--forbrugsforeningen {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/forbrugsforeningen-99ffce51f2e166271aa285e1497d7feecec72a562c2b97298e6bc3504931f99d.svg), none
}

.payment-icon--forsa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/forsa-e4f7890a740af205a38fce47242fba8da2a969b343660682b5a9c958b254d2b8.svg), none
}

.payment-icon--fortiva {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fortiva-97511a6528cad127b531afffefad05f8d99b496784c6de3d9236c8197086a346.svg), none
}

.payment-icon--fps {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fps-3fc4ed1c97ed5226119629afd61f1c88fd516bfe778d8197b9ba2340c98864f5.svg), none
}

.payment-icon--fpx {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/fpx-ec7b2f24c5d2c9b50fa911379b2ea048cb29342ab1303e88c8984b0544603455.svg), none
}

.payment-icon--freecharge {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/freecharge-cda66ce4e67c8edc373c16b4697bdee48a929f4f346404e9654df4498da439f8.svg), none
}

.payment-icon--freedompay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/freedompay-db53fe188c46e3b4bdec9f0c481bfc3e9e68dd1cc020dd91eb101b3c0dcefd60.svg), none
}

.payment-icon--futurepaymytab {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/futurepaymytab-1f1f9b856a8ee199e7fc8ec24f08632a39c44cf95618f59c02909d06fe996fa7.svg), none
}

.payment-icon--gcash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gcash-86d9d0f432f0d3ad5dcd179237336b357936b75f1412239a78c8226bb5ec623d.svg), none
}

.payment-icon--generalfinancing {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/generalfinancing-b61c2e2a2135b7a89177afad3a23cfa4fee3cf22fa60b0508731ddbb1ff135ff.svg), none
}

.payment-icon--generic {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/generic-bfeecc5cc2d14154c4282166d726acdd723bebe3a16b54267520db3181397523.svg), none
}

.payment-icon--genoapay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/genoapay-e7d818c585c059b188bf7e9e15446067cec9ac782907b043ac83a7160c211d9e.svg), none
}

.payment-icon--gezondheidsbonpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gezondheidsbonpaynlversion-65c76410a72ef8e4e1933797df1243f6f8daa4bce68d0dbfcbfbbfd2350d56c9.svg), none
}

.payment-icon--gift-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gift-card-6bcf594fcab860241904dffdfa51c7c3dfdb906190aa946bdf108e3461261a42.svg), none
}

.payment-icon--giropay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/giropay-6f774866c639b913c0d455fbc0d166710e827f55aff48b1931f02862edfcc65b.svg), none
}

.payment-icon--givacard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/givacard-914276bb1fd2df55cf3665d497840d06961b23fe30914fb319c9e39963c357ae.svg), none
}

.payment-icon--glbepaypal {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/glbepaypal-ddbea2a93e73cb683e3fdf7dc5f51271c3ccd984f00a54fffcfa5ac99a1b01d9.svg), none
}

.payment-icon--glbeplus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/glbeplus-91751791c5b7068cf438b8f99e75638a49f126ae7588b85b42d93a48179cd98b.svg), none
}

.payment-icon--gmo-postpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gmo-postpay-c2fc292950708461e6eb2b8ad98f4ce883b5affee253d1cee6c9af4fd742a02d.svg), none
}

.payment-icon--gmobanktransfer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gmobanktransfer-de203615ea74ad6bb10e9ed5f74bd642b2a688f0dd2bfd9ad0efc49e35dd9196.svg), none
}

.payment-icon--gmovirtualaccount {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gmovirtualaccount-4cd3d3c169b0853616b567912958d7b69ffaf50831998d9f8092074d27cd55ba.svg), none
}

.payment-icon--gnosis {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gnosis-b05575be3e275e7b7414b2fcc0a02a1662098c6021bd9dba962e07845dfe0ccb.svg), none
}

.payment-icon--google-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/google_pay-c66a29c63facf2053bf69352982c958e9675cabea4f2f7ccec08d169d1856b31.svg), none
}

.payment-icon--google-wallet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/google_wallet-1fa0064d9dc27dbdb3330fdfb06e58da9410cc5645c9e08e1112f59c9ea80be0.svg), none
}

.payment-icon--gopay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gopay-22575260a597b52acd1335a1fa14f01ebf04e4052c03b8725f2c5fbc06990321.svg), none
}

.payment-icon--grabpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/grabpay-bb9ba1684c6366635458b0308ddc0e43edb032a02daa66f7bfcd93d231f9df57.svg), none
}

.payment-icon--grailpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/grailpay-f3362b4b4adf0b8e9679619ce89433ae04c73d5544ea987094b253a9a21e9742.svg), none
}

.payment-icon--gusd {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/gusd-0600c78d4e31a853d830a8c2d5b85adbf62dde89ab763ae820d0c180617efadc.svg), none
}

.payment-icon--hana-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hana_card-8d87b1bcdcff3252670f6a411c60e088f76da0f2e38f4575a6a4c8a355e92203.svg), none
}

.payment-icon--handelsbanken {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/handelsbanken-63f8e35751c498e5bf52832482ab4605d8ff304de21715cd915d22dabb27b1e9.svg), none
}

.payment-icon--happypay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/happypay-fce6fdf98e6d7a2f6c6e457d82c2670bb2c0528e8b161c03aca6c14dc54dc7b9.svg), none
}

.payment-icon--helloclever {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/helloclever-41a467c2d1838e8685a752aeb6eb1fa0c8f80129d3d903f2111b9173ba0aa5d8.svg), none
}

.payment-icon--hitrustpaytransfer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hitrustpaytransfer-17af0d6930c663be1ba56c9eec2b39343e8186d1e68396df15b74e05f3de0899.svg), none
}

.payment-icon--homecredit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/homecredit-6a67da6e2f90767a80baf131c4ac62076cd4eeb6aea3fa38faefaf02d8ce5249.svg), none
}

.payment-icon--hongleongbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hongleongbank-6ac878054de5397c8e6d42f507c2832cf77de8a60e833fa2907cf773bf9434d4.svg), none
}

.payment-icon--hongleongconnect {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hongleongconnect-00a9e776695315b6d8f14dbaa00ba1790c9909d61660058e682d89fa0a43e0fe.svg), none
}

.payment-icon--hsbc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hsbc-0ef60aaddbfefb706bcf08822673eb667f01ecb992669410c572dad893a01d14.svg), none
}

.payment-icon--huistuincadeau {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/huistuincadeau-a9b9cc4ef8ccf5afdecae521e09a417b83dd89ad9276500f116696c4ed40730b.svg), none
}

.payment-icon--humm {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/humm-5e5cfe4706be9e5d4c6eb347bad3cbe74e17b1bd8dc405352e9df0a210455758.svg), none
}

.payment-icon--hyper {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hyper-be73bbfeb6d6393ad95172d5b431c64539b161673c86f0cf62ac3946de8291f6.svg), none
}

.payment-icon--hypercard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hypercard-2ed68c576f3d6b5b34fecdbd700f8d5b95cfa18de92b51c3fcc6cc7e6bd3a6f0.svg), none
}

.payment-icon--hypercash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hypercash-499d5697156f7a66c74d36550f2bb2b564965895883d5076807434bce1a21b10.svg), none
}

.payment-icon--hyundai-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/hyundai_card-d9fc748b923387288cae15ec978741aca30f6d890bd6e9efc1075744cfadec5a.svg), none
}

.payment-icon--ibexpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ibexpay-8f0f34887c8d8a5c74567bdb2aca20c8c0320a36e5ea4e86a1c7c6edbe2933ca.svg), none
}

.payment-icon--ideal {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ideal-610ad2ac9df2cef44ab4f7e24c84c96c5b6e71cc35f9b9ba6c7b0be6672bae75.svg), none
}

.payment-icon--in3 {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/in3-5dc84767ed3f503ed0bd5a61eea832216b887815c606c7b2aa49844746bb1790.svg), none
}

.payment-icon--in3viaideal {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/in3viaideal-00a9596bc80e29ef03a70d0a606fc546e305d5bc26ae1a873a8d5923df16f0c8.svg), none
}

.payment-icon--inbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/inbank-4dbe47254e15046b7663e026080bbf332a952695bb7e5cd5b53b21ca4c8c9d45.svg), none
}

.payment-icon--indomaret {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/indomaret-eaa4aa194111743f3c1f0269d6de3fb4439c77951c9565ffcb8ca49b645b6df6.svg), none
}

.payment-icon--ing-homepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ing_homepay-a9db21bc556180f331d4afc657fcc4757863838d5c1193e0b931c77791c32910.svg), none
}

.payment-icon--interac {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/interac-1d5902001e368e264bc690113c9c1784b6a91876b38e478644c57e181b7c44fa.svg), none
}

.payment-icon--ivy {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ivy-f0804e02593be369d982a7a27c7cbc2229e840507571e5f44bc3f82db6acc474.svg), none
}

.payment-icon--iwocapaypaylater {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/iwocapaypaylater-0270e4edb23c608888f20fa727c2c2614df541770833966371803af54f37e54d.svg), none
}

.payment-icon--jcb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/jcb-ab0f5a1739704f1ab039f19ac8c28895af5c39a3f54ee9b748ea051986b0bd36.svg), none
}

.payment-icon--jenius {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/jenius-3506f67d87ed70a560204e0198836bce2267a2b81cd834cd6a7c73f5963265df.svg), none
}

.payment-icon--jko {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/jko-42ed8be8c54288fb4764eb3b1be9b31e4523b948830e8a7346e00dd0f80e02cf.svg), none
}

.payment-icon--jousto {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/jousto-494917e43495f11028696231f6159579677d776b0dcc986755af1fd1e78870f2.svg), none
}

.payment-icon--kakao-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kakao_pay-20e8010c7984aa5ffdfa5180a848bd83b4d3570b8b97e8e6893e5d7c0e76455e.svg), none
}

.payment-icon--kakebaraidotcom {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kakebaraidotcom-262f61d1b5f4dd79258b9f1d4fd41cb802aefbe6d35db2295bd2cd982e7789d5.svg), none
}

.payment-icon--kasikornbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kasikornbank-be5ffc844d62a37e8785d096c7324cf61cbaed4ed2380d0a602a6131c8af5a83.svg), none
}

.payment-icon--kasssh {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kasssh-3e34c86d649d7085332eae1a5cee2d1d597947714be2ff138dd9039006310c49.svg), none
}

.payment-icon--katapult {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/katapult-c76d09252c425db9bee46fc0f73acf08ea5e67326bd08b271572d3a79bf507c7.svg), none
}

.payment-icon--kb-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kb_card-580aa8e504583e1ced016482a78a4a2e85c9559572ea4c46b82b0fbb06c1f777.svg), none
}

.payment-icon--kbc-cbc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kbc_cbc-fa91cb17a1243415b94a9898bf019b0df9cf458f0780237551e4d36be21ed9bc.svg), none
}

.payment-icon--kfast {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kfast-8e0df79ffe96a8d72512690930df8d152d34de864567a8b4679d90b449e8856c.svg), none
}

.payment-icon--klarna-pay-later {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/klarna-pay-later-7c699d80da1c7d6efb9ddf7ba299166f88cf7fa615d667b06f45504b879e007a.svg), none
}

.payment-icon--klarna-pay-now {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/klarna-pay-now-2516bae6e2a318cb44e4d29b920d93544d06e2a4b5ebcb985ab39202a68885c4.svg), none
}

.payment-icon--klarna-slice-it {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/klarna-slice-it-6da293c1db517b9e895d4a5cf6e9a1621b942d7b71947788d38cacbbba5e0883.svg), none
}

.payment-icon--klarna {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/klarna-389801c6056cb5600b4f05f72ebc2c58e4947688c6c4f5e6ccea41f7973d3a28.svg), none
}

.payment-icon--knet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/knet-f4b9f176f8dc7c901da07f395055708d95b072105e0f8ab4dfea5bdafe7fe8ea.svg), none
}

.payment-icon--koalafi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/koalafi-855ec6f5d4e7ed2c788b4b17386e582c10fc3afff639a5d49f0317859e7d81e6.svg), none
}

.payment-icon--koin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/koin-d207c2d1ecae15d769fee4b415dc9f5c7fcb82ea3af93c2eec20fc426767791d.svg), none
}

.payment-icon--krediidipank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/krediidipank-51af4f784aecd8d3595e03999689f2c151d3f99d8ededb3c6fdc9dedc76d58a0.svg), none
}

.payment-icon--kredivo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kredivo-b9806b530d744341728c6d1d2d77451a4a2d4421dc347216ee8a46b7c3b01efb.svg), none
}

.payment-icon--krungsri {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/krungsri-90f4389d3583368f5db39fb1448e3f339df32c37ee829e673d85f2e52d2988c4.svg), none
}

.payment-icon--krungthaibank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/krungthaibank-2a4bb865790c4f492c937493e82056f3c008ca3dbb577ebdc76edf7bdba334cf.svg), none
}

.payment-icon--kueskipay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kueskipay-02956751521ce96466357263874f5c3b071c9df3ff63b7e5b30ec3c7404f5ea9.svg), none
}

.payment-icon--kunstencultuurcadeaukaart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kunstencultuurcadeaukaart-a0a15f8232ecef79d5978b568c621a590be483f9cc596ec9d78af460d2a05f9e.svg), none
}

.payment-icon--kuwaitfinancehouse {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/kuwaitfinancehouse-13c8f4ed8f08998e03057c89e0bd74612d58090675e8917197914065d2c5dd24.svg), none
}

.payment-icon--landbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/landbank-02bd8693dfabbed156acd877bb6cd5241be07778ba8b72aabeeda1692db8a27d.svg), none
}

.payment-icon--laser {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/laser-4e16350c611dc8bda5871718ba3b11010325ea8fba063529a64195e44e6242ec.svg), none
}

.payment-icon--latitude-creditline-au {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/latitude_creditline_au-156639ea695dd6d9e5b823cf91d7388e956a610425b73b69507b1f1fa999961c.svg), none
}

.payment-icon--latitude-gem-au {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/latitude_gem_au-f3eac6e72595378b49909966d98b37f62b99550452cb0d20d15b7d738cc2015f.svg), none
}

.payment-icon--latitude-gem-nz {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/latitude_gem_nz-1b8eb964203a0f5a74aad73c6f3eaf42c6bdf614236775ba65cbeb332e554d43.svg), none
}

.payment-icon--latitude-go-au {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/latitude_go_au-6c2f8feb616d4139fd77bd84ed2c8558126f2accefa87aa8508021173c9cd344.svg), none
}

.payment-icon--latitudepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/latitudepay-29af954908abcb01559748ff7a0e600e4a9b0469d4a1458bbb36b5429e3eb27e.svg), none
}

.payment-icon--lawson {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lawson-854e3a0217fd26bc17d75fed4ae85cc6850c1ae274634482e9c073ec76a1fac2.svg), none
}

.payment-icon--laybuy {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/laybuy-5c12ab49de1477417ebb0217414a0fd555695e1330be2ea7e3c6a691d980646b.svg), none
}

.payment-icon--laybuyheart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/laybuyheart-e15f38d34820490e7d5ea80e4b68c7112b74582a70984197bb5c2618252c872f.svg), none
}

.payment-icon--lbc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lbc-3dca2249b5facee7cba2025b635261913bec7117eca29026793905b550e04c50.svg), none
}

.payment-icon--lhv {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lhv-e179fe49401f7fa1c480fb60d48a50ec0865bee5bf48527f80a0068cbadf43ee.svg), none
}

.payment-icon--line-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/line_pay-1d09270cb1fd62880f17f0c2c28167663b2c42efaa7bb940e4d0a3b2266360e7.svg), none
}

.payment-icon--linkaja {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/linkaja-4eaf09604aacb5d4edbaaf4160913460d5e13bc152a832c515e7128afc3ab4c4.svg), none
}

.payment-icon--linkpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/linkpay-983ca0f37c1dba7f64b61bfb7a7732f811a4b61a4622bc349fc0fad474fb8d7c.svg), none
}

.payment-icon--litecoin {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/litecoin-06f10bf73578fe346f5b2817673102b77c19ea71ebe05b2839495975651657c0.svg), none
}

.payment-icon--lku {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lku-2f8735d63d03a4a71bde5a9d4fd1042ad21428d4d54c03301cb56989aa02fd41.svg), none
}

.payment-icon--lotte-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lotte_card-b6ee125035961e5f87da72fd25964dcd8bed572fa688dc49ebfd4ef6d0426438.svg), none
}

.payment-icon--lpb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lpb-6f15997d571f8c40002bbeaefa8f50f8efd183b46bfbe8c5fcd1c67d56772b79.svg), none
}

.payment-icon--luminor {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/luminor-a9f8c11f405c09bd69894ff82ff30a0cbd81961d8432fbf1b7fe940ac2d89b50.svg), none
}

.payment-icon--lunchcheck {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lunchcheck-47e129168cc3a9dbd61120fc7a4cd584b139e851f3898b680aaf46c289f5980d.svg), none
}

.payment-icon--lydia {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/lydia-407a449075b5337e948b735a88b6ab61a9aedd438670951186d0b83f82a768b6.svg), none
}

.payment-icon--mach {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mach-a51a9ca80f7159f0a3c1da7e6f4fc2507f668ed08041a690b23a1d2cfb60870a.svg), none
}

.payment-icon--mada {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mada-bd6d874050ad9db5e467d28bab17be1ab594a5ef19bfe7b560c94c89f28d5d82.svg), none
}

.payment-icon--maestro {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maestro-d2055c6b416c46cf134f393e1df6e0ba31722b623870f954afd392092207889c.svg), none
}

.payment-icon--mandiri {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mandiri-440e15e1749827cece818f4693d184b7ca345ddba4e9665cb2b6ec1973e676a6.svg), none
}

.payment-icon--mash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mash-0a6d9c501d7d275196826d26eee8dd9ff803d45467422edd9cae1808f5c64e00.svg), none
}

.payment-icon--master {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/master-173035bc8124581983d4efa50cf8626e8553c2b311353fbf67485f9c1a2b88d1.svg), none
}

.payment-icon--masterpass {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/masterpass-3e0704a3dea59fa0b28c2686d2c3f53576c0318cce8a95d045570ebfa486463b.svg), none
}

.payment-icon--maxima {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maxima-0633b56da6ed45cc1eb405a2c45ed84980e9a8dcbb890779738e5cdab672a01d.svg), none
}

.payment-icon--maya {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maya-c748decccebb06bb637afd4ef138c40719c12d2a1af78d11578416b188494e7a.svg), none
}

.payment-icon--mayabank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mayabank-332c54064f058d1e059270d605da38f7bcf013a5942f13113ad4757ba62704dc.svg), none
}

.payment-icon--maybank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maybank-22e74e2f92a10c2ff4916a5cdb120cf42e2d413fe805bce9db50224bb8764865.svg), none
}

.payment-icon--maybankm2u {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maybankm2u-8089332e6416b7b972078a9754862982f31ae49111662b9f01320be48aa4bbcf.svg), none
}

.payment-icon--maybankqrpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/maybankqrpay-7ca8a23f8e431aad22d242ba298282910739ea86032feeb84765c8066adcac5e.svg), none
}

.payment-icon--mb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mb-ab1ce2bc238edaf041ca8fb9c69f1fb967d7a1821986ae36372d7d4bc95c71ad.svg), none
}

.payment-icon--mbway {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mbway-f4b555a024354de18eda3eb8da1952a4c9559412f71668a53cc8627777c1dd06.svg), none
}

.payment-icon--mcash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mcash-a1a328f8531933ab279eba7a9020878608525bf2fd9d9a28de69626e0642638c.svg), none
}

.payment-icon--medicinosbankas {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/medicinosbankas-22b1a5d112c16b57d9d33f376d961e6fa8b904447b3e29fa10ff0bed858ce797.svg), none
}

.payment-icon--meeza {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/meeza-b4bb99dc08c2be34630f3c76dc57342a904f485e825f49fb330292cacaea5dd4.svg), none
}

.payment-icon--mercadocredito {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mercadocredito-d936e7b5f2b649650acae144789c0b9f3dc967a967c4f01189afee8079d50527.svg), none
}

.payment-icon--mercadopago {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mercadopago-6fe29c8c2e9f39468307257d45fe70ae48b17238d2fd408154d46abcb7292ebf.svg), none
}

.payment-icon--merpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/merpay-af26e4b3a3a6abf2dd7f617fc337de4642858e9d7d3452470014d9bde59cc489.svg), none
}

.payment-icon--metapay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/metapay-68da02f01a5d726d4b20e8248946d820b4573bf2f8bb06e6afc6d3eb04fac04d.svg), none
}

.payment-icon--metrobank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/metrobank-03b134628dfcae621c8a936e768dda14024d856f8ad815527518aa1057946c54.svg), none
}

.payment-icon--minicuotas {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/minicuotas-aeb5b3a69735eb7913fc852f00b6ba2735ce40c574360ac71d16173472ac09c5.svg), none
}

.payment-icon--ministop {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ministop-6d5c82e75851ed7c87c7312616759b9592b173cf7758f25d4aea8eb378510c2f.svg), none
}

.payment-icon--mobicred {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mobicred-82d30a02e5c7bc3a01e944ca904bbe5906193827ffa225b72206e33d1a6dcc07.svg), none
}

.payment-icon--mobikwik {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mobikwik-1badc6c3d0c5f99484fb2a2bd52090a88544a8949587162de411d9f288bf3f68.svg), none
}

.payment-icon--mobilepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mobilepay-8189c41b1722f6fcb30a138fbf543f2ea7c6eff901994c6dff22a31f432ab27e.svg), none
}

.payment-icon--mode {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mode-2088912f206f06c6a2ec7688aee4cab24f88849f8aac1bf1cb2aa9acb162ce33.svg), none
}

.payment-icon--mokka {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mokka-880975d1d48c21d7d081025d10ed9d0b337c662422a81475b517a2d27b1d5c1c.svg), none
}

.payment-icon--momopay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/momopay-21ad9751c38cf2b6a691a558bd8e6f39db2c65de143e558a1b94489caaa7ac15.svg), none
}

.payment-icon--mondido {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mondido-f9e5b390189b0070319136f0cc503fa2d40dc64be45bcdd9d6212cb35949b70e.svg), none
}

.payment-icon--monero {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/monero-3e92299bb919a4479f86d9101549077493b22713ce9cb0077d7aa9c92b6d3d0d.svg), none
}

.payment-icon--mpesa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mpesa-642adcc0f93adebecd77ab0309f964bef70cce8a49b4bef1f97c427bdcd3452e.svg), none
}

.payment-icon--mtn-mobile-money {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mtn_mobile_money-91a7c72d332bc7c7b829b504351d26518c6c07717282127de99113cd86d6255d.svg), none
}

.payment-icon--mybank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/mybank-0fda2b4e6f2ea2073a6519ebfaafdece692d1af567d29cedc824974b4972ad23.svg), none
}

.payment-icon--myfatoorah {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/myfatoorah-0cad100aed85e0de393b06d9b9625f581d365b46e22f2f8062db4b2fa7218abf.svg), none
}

.payment-icon--n26 {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/n26-9c85e8d846bcf7406d7313fc11ac57e7fc2e6d836d296937636cd02ab96038cf.svg), none
}

.payment-icon--naps {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/naps-fec76bf699af63bf5973f7be15eea049ead313333d891195f9a021af8cfc14c0.svg), none
}

.payment-icon--nationalebioscoopbon {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/nationalebioscoopbon-98449ec0b7217a9148af5dcfe5ced039e1b4bfee6294e6227f23b3ce1e3dac0f.svg), none
}

.payment-icon--nationaleentertainmentcard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/nationaleentertainmentcard-c83a3c29bf2c6130d0cffbdf7bb0d4aad4ecd3962d5cadcd63a72103343650d0.svg), none
}

.payment-icon--naver-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/naver_pay-cd50ec57804aa1981c606f6882d36812f15516bc05fcb48213d39a84d3159cf4.svg), none
}

.payment-icon--nelo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/nelo-517266c07bc5a19201306455ef74172a1da786e3a141e9889385350178c03d8b.svg), none
}

.payment-icon--netbanking {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/netbanking-7fea52e535bcab5f2b1b2c9705c838756cf1c218a56cc4bcfd2ce0bf6383e295.svg), none
}

.payment-icon--neteller {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/neteller-a767dc39a30ffeed565953469e45366f30f5f6142c42c310d192cbf4991df135.svg), none
}

.payment-icon--nh-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/nh_card-14aae201271659247194a5ecf71100860a95200980c8f2e3eb1822ba765cb418.svg), none
}

.payment-icon--nordea {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/nordea-9a07925a3956e9e0367338474d99749baf57ca402d3f8656ac26b0eac643dc3a.svg), none
}

.payment-icon--notyd {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/notyd-85ba69164a77d463324dd6b39017b2734d45c1ed9be5bfd0f89bbca80488390d.svg), none
}

.payment-icon--novuna {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/novuna-6e2b3e9e50c559b3db6a6e0545fcf7e6d38fa1f9b54e3c856172cd911c318c11.svg), none
}

.payment-icon--npatobarai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/npatobarai-bb912afd99eddcd6e33a379765f974411725228689b3ba63ddf20e735cd249d7.svg), none
}

.payment-icon--npkakebarai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/npkakebarai-84e8d768e533061595cf74ffeac519bb01bf0222eb5877328a0b69fb30638e81.svg), none
}

.payment-icon--oca {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/oca-da4b1e3ca04152a977231a313ac959ccb6cdc01f15b4897a994af397809536a9.svg), none
}

.payment-icon--ocbcbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ocbcbank-9524a05a9e3b29129ffa3666690850c47b24263b9160c65b7163ecd96b107ac1.svg), none
}

.payment-icon--octoclicks {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/octoclicks-28e77f1a361ee98223129593b52a738e043859aded20a363b0f12c30f4c7c728.svg), none
}

.payment-icon--octopus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/octopus-9d6fb4abd0c289b306a3accdf93de28b4364486e1e3c3844d16ee6dde026db0d.svg), none
}

.payment-icon--offlinebanktransferlatinamerica {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/offlinebanktransferlatinamerica-15e6bb33b5570f029ad8a215de670ae191c618cee1feb4e875b93c99e0908ced.svg), none
}

.payment-icon--ola-money {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ola_money-56c15887176a93ecce0a1737404effa4e659770e447fc270103a511d2f8458df.svg), none
}

.payment-icon--omannet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/omannet-7e17661caf3e3d43bbede9087460b389ca89d559fe9b580dfa45f1ad7119446b.svg), none
}

.payment-icon--omasp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/omasp-47ba7bae1b80ffba71f3502324a710ae3afd3fca38e666a9985be9740dd6992e.svg), none
}

.payment-icon--oney {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/oney-0209571ed72e61c1822cfaf4075dcd0937862d8bb1736966a151743c18abca52.svg), none
}

.payment-icon--onlinebanking {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/onlinebanking-ef7ea27c4bbe16b3a7ff276e179eee044f81a4db327939f89cc94ea05f46d37b.svg), none
}

.payment-icon--op {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/op-2396f2c15692f6439ec9e2b556322a7707b90d64c7a2bda30478e6ab0163a94a.svg), none
}

.payment-icon--opay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/opay-986ae36c5f8b43df599ec7727febdb679bead13edc0eced523dafe33f524ea9a.svg), none
}

.payment-icon--openpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/openpay-7f30653fc64aa0fb8a555e5f65cbaac0ae7202a0f3df41fc9a7c2b9d9ba0b641.svg), none
}

.payment-icon--optimism {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/optimism-63f7d4fdc28edf1c545640f267aafb7dc020bd4a51f081a98a62f4e988897a69.svg), none
}

.payment-icon--orangemobilemoney {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/orangemobilemoney-813d428d38cf7bb9b5dd754469241c8927f2a7efccb55738cfa34f1bb1622c1a.svg), none
}

.payment-icon--overstockciticobrand {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/overstockciticobrand-a7622e6dd2e6b06c2a005063f6395f42058520a984e00e77cd81e91cde801a9b.svg), none
}

.payment-icon--overstockcitiplcc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/overstockcitiplcc-6f4ac90f0ba3c18b6189680013e25ba10aa17750106a1227a5cc4ff8bbf02082.svg), none
}

.payment-icon--ovo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ovo-1d8b7567e68067bacdff98d95fc11db27216459dfb82326f54be0eea128b31ec.svg), none
}

.payment-icon--oxxo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/oxxo-34eb115c1ef026c870f9573cc2c9f4ba32c482c5d25c9f9fc4cd7f524e440c75.svg), none
}

.payment-icon--ozow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ozow-476acd3ae0e23a6869e16141afcce99d04f9728d7da70aa1c45b8b5b0f4392aa.svg), none
}

.payment-icon--pagoefectivo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pagoefectivo-c892d3f05ab3a44016bc82743d28cb61bed48884c7b27becd0b47e642a57ab7c.svg), none
}

.payment-icon--paid {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paid-1f910caad6af7711f6bcd7a46e33d50c593c2de777771594166cab70900c9b58.svg), none
}

.payment-icon--paidy {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paidy-f39e4a76f1d92206af70fec3a5e0a3aad5e002abadfd4547780bac63cc9b6038.svg), none
}

.payment-icon--palawa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/palawa-ee8debd26d277971ecfa7bec4d5e7c0764f3e9583a1824346eb53f25b09ae436.svg), none
}

.payment-icon--palawan {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/palawan-7ba042f3f833236e950a0c31857c0e1f8bff4610567436555a50a3b398df0e40.svg), none
}

.payment-icon--pastpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pastpay-3faec99667e91aaea0ea24eb584521910e512d9d9cee935fb74d6844c08d1ccc.svg), none
}

.payment-icon--pay-easy {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pay_easy-faf1f2460ddcc01b34069e26c6651e5c479acc6b2cf1a68afa1b17190fc984d1.svg), none
}

.payment-icon--pay-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pay_pay-1167872db2b6506aea25ac7248ddc9a56fd8db1934ea25ac56b13c75a40f3715.svg), none
}

.payment-icon--paybybank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paybybank-117a6e39ec07d7f3c62f1f91455cdb310077e8ea812a3f81d6292534f968aabd.svg), none
}

.payment-icon--paybybankus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paybybankus-e496051953dfbdfaedeaeda81dc488636f7023f71d5aa7e579550c2410dbf611.svg), none
}

.payment-icon--paybylink {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paybylink-63b3158e9b760e0dac4831a000798efb158f644b58c0d85fa8ac76b953c99b0e.svg), none
}

.payment-icon--paycash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paycash-07b75cec1a0a52132dceaaf7a28129f7f5359a924cf4ddbe405650ab7f756150.svg), none
}

.payment-icon--payco {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payco-10dfb12bfc1b4f7b3eceffb4f366da169d3453728b286b1abb448a1df32df3b1.svg), none
}

.payment-icon--payconiq {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payconiq-8a0213610a1bd7afc5f68e2932379155bc564ca8e6a0dece9934e83b523d592c.svg), none
}

.payment-icon--payd {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payd-b41b703c8cd1398db32e74641bd210176ba96f1c66e647a42daa3740e668255b.svg), none
}

.payment-icon--payfast-instant-eft {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payfast_instant_eft-51e3c7689a32673d7bb7f1ab97d7f9650ca9a50fc625c337a6d4e8d16dc25843.svg), none
}

.payment-icon--payflex {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payflex-4cea3e8ed3e0df9f8389dd799ec1b1c4226a8d1ac73883cc66d7ac56e4ab5d5e.svg), none
}

.payment-icon--payid {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payid-4caed6947288f67580c285cfaf9badf76d7764c5177dbc2e36f805a6e1c68259.svg), none
}

.payment-icon--payjustnow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payjustnow-5db356c4d7aee8eaf1cd4129778dd7390cae79e22bffcb47011d68f9016653f8.svg), none
}

.payment-icon--paymark-online-eftpos {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paymark_online_eftpos-c24e05f814d7c3bbe1d75f9333f85557e7155ca6b921d024c173a356c7d60f8b.svg), none
}

.payment-icon--paymaya {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paymaya-4b67168ccf4288e64f6ab593b37ca8781d06fac177e4af55b6f421f0deb31349.svg), none
}

.payment-icon--payme {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payme-8576dacb79b1ed9c542848687c36ac59ceff19eda7df6a3eb4e1e6f8c2b332e7.svg), none
}

.payment-icon--paynow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paynow-25a7173d016cec8ba3311eb8b9b55cd6e63a39f1b329f09e6116070c28bda123.svg), none
}

.payment-icon--paynowmbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paynowmbank-dabb291adc92cd248ecc0b421b77a24693c326ca9917f4ffa7851dcec0c20d29.svg), none
}

.payment-icon--payoo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payoo-3a28ffae36289c618cae3f9710bf29c3769d52f4f9465c181116668c1cf538f7.svg), none
}

.payment-icon--payooqr {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payooqr-cc880ff2b720d67624b695b3bb2fb00229d2686f82ceb37665cf9aa6803cb7e1.svg), none
}

.payment-icon--paypal {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paypal-49e4c1e03244b6d2de0d270ca0d22dd15da6e92cc7266e93eb43762df5aa355d.svg), none
}

.payment-icon--payplan {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payplan-aad49d54c6ad77ad2771c84896b2ae82f2dff891cbf6a93a377c21869f5c9109.svg), none
}

.payment-icon--paypo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paypo-46f6281b4b3226051a4cb01a42d5be052f090e055f82918ed16cd9d166c0bd36.svg), none
}

.payment-icon--payrexxbanktransfer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payrexxbanktransfer-1e2237d268e247d27e2d9fcd2cb6c6c3cfd3570f5bfbd57d28ce8cc48345607a.svg), none
}

.payment-icon--paysafecard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paysafecard-cc62ae9491e4a0150bc8623e46ea4e84df3b53f64e1bd59dc83fd77f151a08bc.svg), none
}

.payment-icon--paysafecardpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paysafecardpaynlversion-233b51004084f48990d51a57997eac1d1e313f4300c5a6c352babe58ea3a14ef.svg), none
}

.payment-icon--paysafecash {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paysafecash-fd75bda51c8e1e90cddf5524d2c8b7919a2d875a768012c563269870db6b00d0.svg), none
}

.payment-icon--paysera {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paysera-601eaa43a760feeb1cd243529f26dcbccc3bef33f3c9db4b948194fdbc84f2ed.svg), none
}

.payment-icon--paytm {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paytm-ea638dba9d6e858f0f6c38d0b744ab791cabe2016309511ada28a5da51140909.svg), none
}

.payment-icon--payto {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payto-ee6d71c5115b5777c43bc9d5270c14e446925a6f49f4552a5a2fc293d3409757.svg), none
}

.payment-icon--paytomorrow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/paytomorrow-a4aa626040847fa035802c051e6c27c0b28d7461d98d4e833116bde9d2d2408d.svg), none
}

.payment-icon--payu {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payu-6643a08ddf19a7cd6827aee69093e099d390c419f2f58f814c3c6d789e627404.svg), none
}

.payment-icon--payzapp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/payzapp-9276d25b935c69d0eb05b150d5112c4c8301c3e17898e8d4834edb8dfdc01dd3.svg), none
}

.payment-icon--pei {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pei-a11ad868a9a78f9c64f86daa01edb573c5efbc4f65eae9fd877fd8efc3e45b2c.svg), none
}

.payment-icon--perlasfinance {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/perlasfinance-776bcb7142a9b743e15a68af50f9d434008471ffbcc28de3e9fd35168964ddb9.svg), none
}

.payment-icon--permata {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/permata-58df93ff19babf0f646c6d3dba4807356439473202fb370865483ea340ea3dfb.svg), none
}

.payment-icon--pfpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pfpay-9495dbe1fe45ba67b519574589618594069c5d34098d778d16ad1a2752263a7a.svg), none
}

.payment-icon--pivo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pivo-142f29d84044778b0ec95e08f20ec5324220af7c3ce4d15d827561a92d01240b.svg), none
}

.payment-icon--pix {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pix-025fe17a00e68343f21763f5280f2e099ac454f83a0154ef011b9bbf31dec226.svg), none
}

.payment-icon--podiumcadeaukaart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/podiumcadeaukaart-d1543a23abd63d4ac550bbb512e1ac8f0f7220c6f9a6af9ddce06bc51d2923d4.svg), none
}

.payment-icon--poli {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/poli-e14624b5d198b4420ee09908c5fc7a2aeba5e1515ae62b1496945c6d4e25b4b1.svg), none
}

.payment-icon--polygon {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/polygon-5cdab10a6d608a115d2df6839896d55ae4e6891c2e9a60565cc70d58bb248cca.svg), none
}

.payment-icon--pop-pankki {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pop-pankki-2f700fd74667458f8301340f0e67e0bb07b2102ff05fbabdbec5089d7b23e874.svg), none
}

.payment-icon--postfinance-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/postfinance_card-d364f0a6a76c50ce6c40b3842b75681f89862ae1754feae9fd74e3cf4987775a.svg), none
}

.payment-icon--postfinance-efinance {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/postfinance_efinance-5e6804d38e739fddfd9ff0827c7443d1e26a39d232a1b742cfc2f16ea8e3f80c.svg), none
}

.payment-icon--postpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/postpay-92d340fda13f34bcfc0a64fb2b5763e68f786245cca0b7bde5b42f5170c92934.svg), none
}

.payment-icon--prepaysolutions {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/prepaysolutions-6935a76ccaa76e48b82c1b0fbfe05f27cc7d92a291845bde7989e3be98ef8d98.svg), none
}

.payment-icon--progressiveleasing {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/progressiveleasing-4463c7729c18d69b40386186cf303f4c2dbd16428a9d102d6126f66438bdbb61.svg), none
}

.payment-icon--przelewy24 {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/przelewy24-7e6db47d975c5f87fa8b8d61b1b76eab1bb0d26b1acdecb92827959c5d421bd1.svg), none
}

.payment-icon--przelewytwofourpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/przelewytwofourpaynlversion-25c9522a14b7e1a90326a329446fbb4b2e67c2be4ae214a79615ea5fce2e8ce6.svg), none
}

.payment-icon--pse {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/pse-a2b1e1c3a3c3cc0ce19c0c3de468947e8056bc04135924a5ad84363d578f67d0.svg), none
}

.payment-icon--publicbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/publicbank-4a3591d355f305e5988dfa25e39ad4eb4fa093fa8fa807317cc203aa1310dd08.svg), none
}

.payment-icon--publicbank-pbe {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/publicbank_pbe-bd87174b26dd2b4db98576a11eb7e60ac16075b479a51abc72f49690260e5933.svg), none
}

.payment-icon--qasitli {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/qasitli-3531fb1c631c7559b07eab127d2229eef4c462112574e9739a2a6363a1bd745b.svg), none
}

.payment-icon--qliro {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/qliro-5598a720bd610acfddd914d619d7c129cd71c841317fc3cd3623fb0501be978f.svg), none
}

.payment-icon--qr-promptpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/qr_promptpay-cf7f26e8e96533260b7ae6f83445a88bfaddcac10f8837cf9ceb1c7b20df7a13.svg), none
}

.payment-icon--qris {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/qris-76fe3044fb466ac59fdab12d40be2cc21a80513918e505a5e3761119fdefc755.svg), none
}

.payment-icon--qrph {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/qrph-37b5ace41efba0dc21e7076e1275929baf3bf1627e60f69ab45ae2a7c6eb641b.svg), none
}

.payment-icon--rabbitlinepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rabbitlinepay-17482da1f21701e4e492cccd22238da6208516e0c3b90041c6bf4cf039c9cbb6.svg), none
}

.payment-icon--rakuten-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rakuten_pay-d32813c452bcded28f01edd3da66c027b574e9998c420176ef72e72bce3bab16.svg), none
}

.payment-icon--rapidtransfer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rapidtransfer-bb30e17559a7972063db1d38d500e7720d5c8524dd11664ee41e9eed368b22a4.svg), none
}

.payment-icon--ratepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ratepay-67a2e1c2056a5fb641a9c76105978c238a3d6e70b192ad987b826bee9d21a4e5.svg), none
}

.payment-icon--ratypekao {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ratypekao-6318d57db2f20e12604e0db1dce4fad092f3eaccc056926f170f744417711c94.svg), none
}

.payment-icon--rcbc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rcbc-f9dba54d3b48d33510fe0da1ab9cc375a84669e081257cd2a68dfbfd1b77c13c.svg), none
}

.payment-icon--rcs {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rcs-6f3a5d563ec080a8f8c221ce9ca92ea9e62f234ce415a8754016f279842afa3d.svg), none
}

.payment-icon--reka {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/reka-90c8fe60fefc214356b24e22f6af29a3291bf5a6a5d903b18e2819599e728ea7.svg), none
}

.payment-icon--resolvepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/resolvepay-843d2715f0db7427d5ba9d28247ddd1034623dc09481fc75acd394c1eae23805.svg), none
}

.payment-icon--revolut {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/revolut-97b5c4dfc7aa4b2f29e22a2e7295989749291d2a465125c58670b407b4fcfb5b.svg), none
}

.payment-icon--rhbbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rhbbank-9245be5f04d60a3c78db12299175be69a875e1c1e8321c3a31abdd4bd5c7aa34.svg), none
}

.payment-icon--rhbnow {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rhbnow-304d62d057284fcb0e6751397f9316222174383254d0b86d76133f6b744dc813.svg), none
}

.payment-icon--rietumu {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rietumu-485a589f177e91fe698e1879e508f1a11778dad753cd5484c6550bd0166f7599.svg), none
}

.payment-icon--rivertypaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rivertypaynlversion-8f00caab1a78758fa86a9f992145d5a0515d861ea79a1bd6f06df6b2253625b0.svg), none
}

.payment-icon--rupay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/rupay-7dd8b2a3c63957a0174f9ad530376abbac88ed8baeb14d78e7887eec4208e63d.svg), none
}

.payment-icon--s-pankki {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/s-pankki-1a11e9eaaba888b1f13add3c4dc97c2ed8dc36bf8f9862a9f9dc0cb76343102b.svg), none
}

.payment-icon--saastopankki {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/saastopankki-f0f2523d562d52f82f1311b3034212777eda4f6ab05b232e21554e365f154dbc.svg), none
}

.payment-icon--sadad {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sadad-7839efd8a2db51f29d0775717b0adc5fa7dd968ae85ad82a9f0ea9b030013d01.svg), none
}

.payment-icon--sam {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sam-3b1465b372c03ea2923625d86e77782528675d7065d2b5ad10aee2cd7aeabfd0.svg), none
}

.payment-icon--samsung-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/samsung_card-928531ac9da3ec7be4b9d72f9a32e1064464a1de069a2d2ae43b156da0f80df9.svg), none
}

.payment-icon--samsung-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/samsung_pay-6e800a720c23e0340aee7513d11e58c04fbecd5fe761c26c5d609ed777d4d0a8.svg), none
}

.payment-icon--santander {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/santander-589d566d640572dfc3a5a2dfb15d145494157f417362e730868ec571e1a49319.svg), none
}

.payment-icon--satisfi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/satisfi-cb23f5c8b4e6210a8552251f5baf18b72161fee3e2d57e2b74f51eddfdfd62bc.svg), none
}

.payment-icon--satispay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/satispay-08515d0358457f2fec6f90dfffda4a231259b5d7cd3319ccd14bf45f3b0f943c.svg), none
}

.payment-icon--sbpl {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sbpl-89bb3665cdbe388006396b5a8d3e52c2003da51ba98045d58067623972a2b52d.svg), none
}

.payment-icon--scalapay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/scalapay-bedded63d621a2df21ca40e6c2436af745d36e0f35c3e798394b86d1be79be5d.svg), none
}

.payment-icon--seb {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/seb-3ac27e0653ef348ee9ad2be6dc7abbc2e0ceb16fdb91203221cf0ad18e4ff9f7.svg), none
}

.payment-icon--seicomart {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/seicomart-cf03dee3b5fe6143ad6d7de5e3ad7e402fa3679ca0d5549c54c461c3f81144b8.svg), none
}

.payment-icon--sepa-bank-transfer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sepa_bank_transfer-7de8159f39a7d31f4f32a8a2b3c0edceb91317a61750d0a9a13ea9e8adab812f.svg), none
}

.payment-icon--sepadirectdebit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sepadirectdebit-82beb6a249eee0439d95d94e25f677f51f0ddd70bfe21d70849413dd44a2b8bb.svg), none
}

.payment-icon--sequra {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sequra-fa91eb90c5a499e1cc87c3af9aa687f9e417925a656c0bc287881364ff2854ec.svg), none
}

.payment-icon--seveneleven {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/seveneleven-39d6ebfea597ef8176d01c90fe567e2789b9db797d67d6abc214dbf6c01a80f4.svg), none
}

.payment-icon--sezzle {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sezzle-c41c5e28a60ef8af76601da54dd342364adc552c1d7d6e0efd11857d49056b5b.svg), none
}

.payment-icon--shib {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/shib-cd4ebfc9281335de97977dd975267cfb1c7110e3932d8b4dc8068338391afe7d.svg), none
}

.payment-icon--shinhan-card {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/shinhan_card-9c6a454afb0842e929131f43581077456057425b56b2d59dfe4906b966155007.svg), none
}

.payment-icon--shopeepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/shopeepay-6055c0c78f9335a69ea21be86a2acfc9930d4bb096a76adb752b17def550f995.svg), none
}

.payment-icon--shopify-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/shopify_pay-957a48d1202dc65a7890b292de764ee886f7e64cea486ae82e291e9dc824c914.svg), none
}

.payment-icon--siamcommercial {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/siamcommercial-bbbad1ad1d0f4d780f7fd3f89b56609e240796980991a254231776d6a432cd98.svg), none
}

.payment-icon--siauliubankas {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/siauliubankas-533453998fb93d391d9b0ac62593735b5b6f07a7114900998dbdc6f9d3343646.svg), none
}

.payment-icon--siirto {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/siirto-c189cc57ab3d382fe544e5bf472d93269c709033848c237b08100124c68dd8b7.svg), none
}

.payment-icon--sika {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sika-dee70cca2e90f55ce33699f36246fd600dd2d2942ec2d501cfce0e9ddb941793.svg), none
}

.payment-icon--sikafsa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sikafsa-2215e025028f0a88bdc1cd5746538f25d7202f1876dd12e0382e2e505608558a.svg), none
}

.payment-icon--sikahsa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sikahsa-0f0356ae5af13e14a2c4adc308956590f5c204e377b94b4f1755a0cd8b3f15a8.svg), none
}

.payment-icon--simpl {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/simpl-e9d4bc85358987caeee48dd4e53c9a6106f56fff7471028a694a9717a739cc46.svg), none
}

.payment-icon--simplepay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/simplepay-4f0ec8bdafe276ee00f39f8fdecd966c91cc4e6b8fa709ac42bd3e66431e5955.svg), none
}

.payment-icon--sinpemovil {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sinpemovil-e2f32933423688312624a74edad5e7efef779799c3029c22c156d95789932f51.svg), none
}

.payment-icon--skeps {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/skeps-45ea89b907e4b069740aa9768f6ce318c6d171c904dd40eda1b03feb58708e6e.svg), none
}

.payment-icon--skrilldigitalwallet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/skrilldigitalwallet-bf3554f0aab8003c6ae0acafae2524cc7993d5d6ef50e149e46b6eaa51abbf59.svg), none
}

.payment-icon--slicefnbo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/slicefnbo-03dc2c98f0d881d44aff591ac70ef31cb629aa7a606c5aa3a852e56c2f6ae103.svg), none
}

.payment-icon--smartpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/smartpay-4dad7c256c46ba212e32cfb123b3148702998da8151c6398b63390fb5e47354e.svg), none
}

.payment-icon--snap-checkout {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/snap_checkout-b3934d1d9b1573f15d88df6c18fa55500fe7549c3d2ed5e1ac667373a09c52f8.svg), none
}

.payment-icon--snapmint {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/snapmint-10ed307965d1dc3959dd36c22c3fa269d8dff9c7f63e4ff6cd3810e2bb0381f6.svg), none
}

.payment-icon--sofort {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sofort-1878a1e07e646284b3d37f2f7026f3b1e21c359a4f0a6af5a2186748fe8d2f0d.svg), none
}

.payment-icon--softbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/softbank-5366b6081887afd3fe9ad1ecf90194086688abac9ecd528cf8def49c541f5021.svg), none
}

.payment-icon--solana {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/solana-ddee023d9c400965a47201ab0118634e5ee35383864305423d689cf3bf52990b.svg), none
}

.payment-icon--solanapay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/solanapay-a8aa624ac9e15f8b99647b6e759f8ba9f6a77f7cd4778d524e84674ab8fcb40c.svg), none
}

.payment-icon--souhoola {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/souhoola-289c1da77081ef2a2a33da25514cf4a29083770e8d8535f7c2097959b9c543db.svg), none
}

.payment-icon--spei {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/spei-037ec789863d2628554a9e891b8c1edabc6adae5f900711ef6e7b24769de1cc3.svg), none
}

.payment-icon--splitit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/splitit-8141f7c71723608dbcb25af9be108126f763ce78a28d9d6d5b15af56c85f5021.svg), none
}

.payment-icon--spotii {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/spotii-6d15ecf3cdbd32ccc6d12fa8594f76f2a70438fde3a017cf2dc08d769b152cb4.svg), none
}

.payment-icon--spraypay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/spraypay-12d6ef4b66ed80b995933c556ad3891c70f51caf4355b5440fa718b84a892238.svg), none
}

.payment-icon--standardchartered {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/standardchartered-ee4cef1708621d146ff695d1d117088955dde73ed7965c2be1896f5297afd51c.svg), none
}

.payment-icon--stcpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/stcpay-093d20fbe864e7fbae502daed1368ac8af6182b7eb1b128993ed44ecdc90b510.svg), none
}

.payment-icon--stoov {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/stoov-b77e484585e62d717e5f3ffaa0c9fda8ed4a3aabce426be48188dd276916197c.svg), none
}

.payment-icon--storecredit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/storecredit-19e8d2672328623ff2e113bd783c65404bc72c481b36dc07574307ad484b8bdc.svg), none
}

.payment-icon--sunkus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sunkus-6476dd340cb3b742ea86c590efa7afb5cc3adb7ca97dfb334653423d35e8aee5.svg), none
}

.payment-icon--superpayments {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/superpayments-a7be5224a910be7cab7500977ee64db3361f242cb852de4d769852da205801ec.svg), none
}

.payment-icon--sveab2bfaktura {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveab2bfaktura-8c13d75a59c53668dd37034c253b0d4c4fa70244d97e94518ff46eb7e2be4f8b.svg), none
}

.payment-icon--sveab2binvoice {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveab2binvoice-c529ac25eddc06b5f3768e71e57f46c9e335d9eecfa31ac373651d9da1af98bd.svg), none
}

.payment-icon--sveacheckout {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveacheckout-89d5c5c5fdec0be8170b6589162b1f39f3d7633a5cbd0c6f357075915aaaedc0.svg), none
}

.payment-icon--sveacreditaccount {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveacreditaccount-abc7cf8713ce030f00985ae04a97b0c8c24b75789399759cbf26cb91cb3f401a.svg), none
}

.payment-icon--sveadelbetalning {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveadelbetalning-874df7c3de58341419ab7391221afbefef2fd5a118d2b342c07b41ddf8ff9fa2.svg), none
}

.payment-icon--sveaeramaksu {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveaeramaksu-839555d652cf8be740c440ee5e976fa6bd42b5af8e2f59dff9cf3a2c50b4a989.svg), none
}

.payment-icon--sveafaktura {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveafaktura-1f7723a08cb15ec1a70b1942caac22d0a07b70cc29310d1ad8db5d24593e64cc.svg), none
}

.payment-icon--sveainvoice {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveainvoice-76efb959c0e1add5cebb60f3fc0c662127a648b55ada331cad1ba49761f4c088.svg), none
}

.payment-icon--svealasku {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/svealasku-4b15dbc3d2d81011c99e3f021abc8a1af9e7940cf3c0ec776e115ced9612d225.svg), none
}

.payment-icon--sveaostukonto {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveaostukonto-1c8f33836f2eaea67143d5a61fe683371036dfd00fcea319f96ea26ef0e4c050.svg), none
}

.payment-icon--sveapartpayment {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveapartpayment-0ecadc838453787b639c86bca5a9448399305e99bc7df811b3793693e54de4a7.svg), none
}

.payment-icon--sveayrityslasku {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sveayrityslasku-f3a8dbc69e331ffd3c17569da274e5d9a33fe648b75a870c5a5cf978e32fbe8c.svg), none
}

.payment-icon--swedbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/swedbank-810f6e65bc012b8060fabef3784b98dedf5195fa57ff4e8172735a2dd447eb85.svg), none
}

.payment-icon--swiftpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/swiftpay-3752b5a96dc57a0c6069371052d0ecee017a228c3fa111eeab0ee0823ae20c1e.svg), none
}

.payment-icon--swish {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/swish-750b64719addcbfdfc23813169078b025599d8e017606c6321fc6c9f2c04e84a.svg), none
}

.payment-icon--swissbilling {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/swissbilling-d7498fd4c0b2e8c281bcc528dd28bfdc1ffb9bbc4a79a34493953dbaf024439b.svg), none
}

.payment-icon--sympl {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/sympl-2ef9982ee614770492a9344fa5d4615110f7394eeb82d86adb7b4e289bac1011.svg), none
}

.payment-icon--synchrony {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/synchrony-86925695affd6d79c1731dc2ac340f0cca6a04b68666e26d242eccfc8152c229.svg), none
}

.payment-icon--synchrony-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/synchrony_pay-df69d53bb02297f2a807f7b8f2f5a8de2a5de8674726163db506b2c41bbecd01.svg), none
}

.payment-icon--tabby {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tabby-4f0c31398d115886fd8d71db7e81f6cb7499929d128ca42b748b70513a13ee21.svg), none
}

.payment-icon--tabit {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tabit-996443b469a121ee8b1c7761d2cb9662dba8b82b06a89d2c8c98437c74c6b40b.svg), none
}

.payment-icon--taly {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/taly-d06dbfedaa25a1b5071577690fbfd6f1033dc226e56639d5f61f4a66cedf7558.svg), none
}

.payment-icon--tamara {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tamara-c465a270f8377a13dc237df2b0bd09cb215e208165dd3e35c47327a0f10acf26.svg), none
}

.payment-icon--tandympayment {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tandympayment-18820e635d4c35cfc088eda213091f0329b29a6abf10c9b51ef917dc683f20e3.svg), none
}

.payment-icon--tasacero {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tasacero-2ed3e3f10a5153388e004fce1043d4d4030bddaa76e05bfe605b971324ae2163.svg), none
}

.payment-icon--tbibank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tbibank-6b250ad41a20f2d24a992a7f8d35a0419fd22841ee134f6b6be57cf0627fbf50.svg), none
}

.payment-icon--tcf {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tcf-9070b531a9561aa561fdaba5b5f4eae437008992bd6ce863f1c16f9b4509c55a.svg), none
}

.payment-icon--tendopay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tendopay-b9d6cdcc7cf02b4d7a8c77ea5c219f7cf7d6114acd17e17e176ca82784543ee9.svg), none
}

.payment-icon--tensile {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tensile-71e3e5637a5e1ac142f458191f343a9c872d523c8d6bd903baff04d958d0f5e6.svg), none
}

.payment-icon--tescolotus {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tescolotus-1eb6f6d13e078ea6bfb0a686af8892365b472cf6d1354adccfbbdf76b2e2cda2.svg), none
}

.payment-icon--thanachartbank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/thanachartbank-603f8df8e02f551519a74289da63bacf0e33f4a083901993fa76b2c753dedfcc.svg), none
}

.payment-icon--timepayment {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/timepayment-dae726875907bb934b91b6ea4f438a513924f0089b63e6acea5e0520a1724217.svg), none
}

.payment-icon--tiptop {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tiptop-2fe8c5485db43d07352c295af509b825bf9ae24eac5d07d0d70f1bfea4a68bcd.svg), none
}

.payment-icon--todopay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/todopay-f1ac45fe9db49534ef8920b21dea17a4e7230810076247f50212dc393eba38b9.svg), none
}

.payment-icon--toss {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/toss-8071fd2989acce986a6d7d49b9402d521c11184c6e924416935b18a6d7cdcd56.svg), none
}

.payment-icon--touchngo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/touchngo-d5f99bacc613da1e0c2777c4e26b1ba9850ffe6ffa33e29187762115fc604f90.svg), none
}

.payment-icon--tpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/tpay-c5f19165875442ccb61e56c8ba2b9ff767b3eaa7c95f3f8598b1d656e925d29f.svg), none
}

.payment-icon--trevipay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/trevipay-41e64581af1d8ab3be578660d3a72bdc4234dc5092ba898ab6814b32588652b8.svg), none
}

.payment-icon--truelayer {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/truelayer-aa163246276c82f74876d0b0e15793c61b23b9dee4cdc9493b899f7cb58e670f.svg), none
}

.payment-icon--truemoney-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/truemoney_pay-006bd2be96414a6a8275736f3a769f05f2a207edabbf0b08bbde18e3e5b3addb.svg), none
}

.payment-icon--trustly {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/trustly-c8fe8255e4f01e38694aac39da40c930eb23d710c00ed19b4834837e497ac744.svg), none
}

.payment-icon--twigpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/twigpay-9696b9e29b25d12732ec7a1ccf2c3fc4ec120e6fb02ca9165d816a52cb6d6a47.svg), none
}

.payment-icon--twint {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/twint-805455506f9dfb7b0b7029a0a20e4e06503402099a7368134c8d5c786506cae3.svg), none
}

.payment-icon--twoinvoice {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/twoinvoice-f8ae5dcff87968d1a2b36cbb27dc9236cbfef74b8d64d25430844d32ab669157.svg), none
}

.payment-icon--uaevisa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/uaevisa-d7e64c19ae2260e532d14013d3eed193f732e6fffb5bc071c13eb6cf268fffd8.svg), none
}

.payment-icon--uangme {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/uangme-c3a619f05b7c35d7103e4224ac13bc8a6650bb75f0ab6f3c2fd0f46b600ad27b.svg), none
}

.payment-icon--ubp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ubp-ebb50385c04d818b5a5cde136424c52b6de39834b7732dbdf5357c672f3fd34d.svg), none
}

.payment-icon--underpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/underpay-213c648e35d96e70d97e318bd9ad500d79e640930229219c38cc46b22052a80d.svg), none
}

.payment-icon--unionpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/unionpay-8aedb760a6bde56bc2e3bbfd40bc008f1b0967a9f5863ecfbe855d54bde81ea6.svg), none
}

.payment-icon--unipay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/unipay-60249e9da3927c24d1a6074598153940dd1f71eed38f2be31410c7edd1e66392.svg), none
}

.payment-icon--uob {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/uob-e015c92721bafa7bfc248d5e5eac8266990a874320df497e67a5f197b309e8a9.svg), none
}

.payment-icon--uobezpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/uobezpay-1e2a39a2252bc1d304a75e6468790cd0479349d2e4c95821a0bda9bedf472dd0.svg), none
}

.payment-icon--uobthai {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/uobthai-160cd4f516a56c10f1da06777962d603f61e212e0a89785d93d0c191d18e3979.svg), none
}

.payment-icon--upi {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/upi-cfcad01ffc22c9edd8f9c30feb4ae9d9423272669625ff218a6973768e552e6c.svg), none
}

.payment-icon--urbo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/urbo-1021cc4f6b5ff24bb89fe11f7d4872d84a47396e86beaab11f904dfc57dfd659.svg), none
}

.payment-icon--urpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/urpay-700c6ba7c1cdfb446172dd15289433dead4c2330fb1c2784ff37bb08f0eab434.svg), none
}

.payment-icon--usdc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/usdc-63db350e8676fc3cc704a1ec18c4159dcea077188db6df2a2f12d125b08f4653.svg), none
}

.payment-icon--usdp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/usdp-9b85beee449b18b07192dc3f56e1290d29c4ec2753f7d691a27f936b064fc7c4.svg), none
}

.payment-icon--v-pay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/v_pay-cb37f954adf03e4355001daf0613c3257cae3fcd14b4e51eb4802248220c14c8.svg), none
}

.payment-icon--valu {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/valu-ea0fa5aac68752913328247badba2624d125286e2260d60603b94c4b148ff800.svg), none
}

.payment-icon--venmo {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/venmo-e46496b4036966108664ea6a65bfeddd373275087df5f94cc3e5564fdb493eb0.svg), none
}

.payment-icon--viabill {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/viabill-50744eacab62ed4ee4eb8f209676a090df1437b7d729b49f5a103818ca2e81fc.svg), none
}

.payment-icon--vipps {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/vipps-728fbf0687f851629f7375f264ad1147cd28c0889c8a8aa14421221b8dd6f394.svg), none
}

.payment-icon--visa {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/visa-319d545c6fd255c9aad5eeaad21fd6f7f7b4fdbdb1a35ce83b89cca12a187f00.svg), none
}

.payment-icon--visaelectron {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/visaelectron-131aa567644ec0382c5762f24c751903c87a9ce4d2ffcfdb4be83be8e21d86b5.svg), none
}

.payment-icon--vvv-giftcard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/vvv_giftcard-842207b5684ddbcde3fa6775148f49e500fc50eb80e4fbeb10ab6c212bed4351.svg), none
}

.payment-icon--vvvcadeaukaartpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/vvvcadeaukaartpaynlversion-0647882eb2a8c9ea01acb02d42948439596ccee0ea829b5a76afaec06cbe6dff.svg), none
}

.payment-icon--waavepaybybank {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/waavepaybybank-494e76d1925e16d6f8c45846cf481b0ee4d984af0d878b9193a5ac6b91a0ba7f.svg), none
}

.payment-icon--wallet {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wallet-8819721f7a04961a225fb52fbc9f9ef29edca6e5e3f87641baeaf434c3805b04.svg), none
}

.payment-icon--walley {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/walley-55dde25bf06eb5e9a7abd5f5c230a7e5f3b9d0fc5aca0b61913512cfde92b602.svg), none
}

.payment-icon--wbtc {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wbtc-63df4e05b531fc415020f570da12eb3c83d8eef4d386d96042cc917a03a2ec59.svg), none
}

.payment-icon--webshopgiftcard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/webshopgiftcard-c5ebfbf3344d4653d1abaf4fa6dc6f9feb83f9a24c53e8b572ac723b023d38dc.svg), none
}

.payment-icon--wechatpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wechatpay-dd2bf2476057628209c6b0142cd8cc7a4b5af17bd02af04fba67326a8838056f.svg), none
}

.payment-icon--wechatpaynlversion {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wechatpaynlversion-545ab3099d852d719558493b1247519923c2c9c1df92b70d15bc5c6db3338206.svg), none
}

.payment-icon--wegetfinancing {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wegetfinancing-779ffd977f569b116c859b9b09caa18b976c8299160bee01c72a0d866cd29ad8.svg), none
}

.payment-icon--wise {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/wise-4410fddf71d659f8e7b1e422960a2506e1590e1ae5874c932eb0d5d7c7cf450c.svg), none
}

.payment-icon--xrp {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/xrp-e99e793cc515c36da5f9e6ef5b44add5d22c45b774962c935935af6a77798968.svg), none
}

.payment-icon--yappy {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/yappy-3f6c3f72b1a67e387e7f011b0ee1425ac7c81e8a7f9327793216b5b648a9ad66.svg), none
}

.payment-icon--ymobile {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/ymobile-1c54c59e750c79a00980914a141d58aab8f35e811190574895136bd8b56f9718.svg), none
}

.payment-icon--younitedpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/younitedpay-26a163eef373df8cc23496f4e560a6486acd5b6583d4682b5bffc4bfbc06e4ab.svg), none
}

.payment-icon--zalopay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zalopay-93ee105b13e3d738619fa4e9be3fd12b54eefd95dbbb13a61470fa1f5664116c.svg), none
}

.payment-icon--zapper {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zapper-b9587032b3d3c111782dcb3ebd143cbbc3299e0db7f377079f282c4f8cd00cda.svg), none
}

.payment-icon--zingala {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zingala-84aecaee4de9d2557dedabad554af1c36540d6467f712cf1b1d9b182250de8b6.svg), none
}

.payment-icon--zinia {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zinia-f781af0d41b33522a52e7e61a3d2286cbc4393dfd2908f462c390312dc87d997.svg), none
}

.payment-icon--zip {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zip-a5964b1b2a3263022ee48635c50e1f87ce360cb9ec09de65f2cead8ec4410877.svg), none
}

.payment-icon--zoodpay {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zoodpay-dd84f09fe1d540f2ef38a9fb2c42b554f1765dd3617e18cfb3a016f8cda73c13.svg), none
}

.payment-icon--zulilycreditcard {
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/payment_icons/zulilycreditcard-1615e323d98862bff98401af2e4ad348bc7c196215ee17f909e2ae17136b7724.svg), none
}

.payment-icon {
    border-radius: 0.2142857143em;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 2.7142857143em;
    height: 1.7142857143em
}

.radio__label__accessory .payment-icon {
    cursor: default;
    margin: -0.1428571429em 0 -0.4285714286em
}

.payment-icon--known {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.05)
}

.payment-icon--unknown {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5
}

.offsite-payment-gateway-logo {
    height: 24px;
    display: block;
    margin-top: -2px
}

.payment-method-list__item+.payment-method-list__item {
    margin-top: 0.5em
}

.payment-method-list__item-icon {
    vertical-align: middle;
    margin: -0.1em 0.25em 0 0
}

.payment-method-list__item-link {
    white-space: nowrap
}

.payment-icon-list__more {
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 0.25em;
    display: inline-block;
    cursor: default
}

.wallet-card-summary-logo {
    display: inline-block;
    height: 1.28em;
    vertical-align: middle;
    width: auto
}

.amazon-payments__widget {
    width: 100%;
    height: 400px
}

.amazon-payments__link {
    display: block;
    margin-top: 1.5em
}

.venmo__logo {
    width: 6.7857142857em;
    height: auto;
    margin: -2px;
    display: block
}

.currency-selector__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.currency-selector__label {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1em
}

.currency-selector__amount {
    font-weight: 500
}

.currency-selector__rate {
    font-size: 0.8571428571em;
    padding-top: 0.5em;
    color: #737373
}

.currency-selector__change-currency-row {
    padding-top: 1em;
    font-size: 0.8571428571em
}

.currency-selector__change-currency-link {
    cursor: pointer
}

.blank-slate {
    padding: 1.1428571429em;
    text-align: center
}

@media (min-width: 750px) {
    .blank-slate {
        padding-left: 4.5em;
        padding-right: 4.5em
    }
}

.blank-slate__title {
    display: block;
    margin-bottom: 0.5714285714em
}

.blank-slate__icon {
    margin-bottom: 1.1428571429em
}

.blank-slate__btn {
    margin-top: 1.1428571429em
}

.notice {
    position: relative;
    display: table;
    opacity: 1;
    margin-bottom: 1.4285714286em;
    padding: 1em;
    border-radius: 4px;
    border: 1px solid #d3e7f5;
    background-color: #eff8ff;
    color: #545454;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out
}

.step__sections+.notice {
    margin-top: 0.7142857143em
}

.notice+.step__footer {
    margin-top: 0
}

.notice .product-table {
    margin-top: 1.5em
}

.notice .product-table td {
    border-color: #d3e7f5
}

.notice .product-table tr:last-child td {
    padding-bottom: 0
}

.notice__content {
    display: table-cell;
    width: 100%;
    padding-right: 1.1428571429em
}

.notice__complementary {
    margin-top: 0.75em
}

.notice__action {
    margin-top: 1.5em;
    border-color: #d3e7f5;
    color: #545454
}

.notice__action:hover {
    background-color: rgba(211, 231, 245, 0.06);
    color: #545454
}

.notice__action:focus,
.notice__action:active {
    border-color: #d3e7f5;
    -webkit-box-shadow: 0 0 0 1px #d3e7f5 inset;
    box-shadow: 0 0 0 1px #d3e7f5 inset
}

.notice__icon {
    color: #1773b0;
    margin-top: -0.1428571429em;
    margin-right: 0.7142857143em
}

.notice__controls {
    position: relative;
    padding: 1.1428571429em;
    margin: -1.1428571429em;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out
}

.notice__controls:hover {
    color: #333333
}

.notice--success {
    border-color: #d1ecd4;
    background-color: #e9f8ec
}

.notice--success .notice__icon {
    color: #0ca227
}

.notice--success .notice__separator {
    border-color: #d1ecd4
}

.notice--success .notice__action {
    border-color: #d1ecd4
}

.notice--success .notice__action:hover {
    background-color: rgba(209, 236, 212, 0.06)
}

.notice--success .notice__action:focus,
.notice--success .notice__action:active {
    border-color: #d1ecd4;
    -webkit-box-shadow: 0 0 0 1px #d1ecd4 inset;
    box-shadow: 0 0 0 1px #d1ecd4 inset
}

.product-table td {
    border-color: #d1ecd4
}

.notice--warning {
    border-color: #f0e4bc;
    background-color: #fff8de
}

.notice--warning .notice__icon {
    color: #b88600
}

.notice--warning .notice__separator {
    border-color: #f0e4bc
}

.notice--warning .notice__action {
    border-color: #f0e4bc
}

.notice--warning .notice__action:hover {
    background-color: rgba(240, 228, 188, 0.06)
}

.notice--warning .notice__action:focus,
.notice--warning .notice__action:active {
    border-color: #f0e4bc;
    -webkit-box-shadow: 0 0 0 1px #f0e4bc inset;
    box-shadow: 0 0 0 1px #f0e4bc inset
}

.product-table td {
    border-color: #f0e4bc
}

.notice--error {
    border-color: #fad9d9;
    background-color: #ffebeb
}

.notice--error .notice__icon {
    color: #dd1d1d
}

.notice--error .notice__separator {
    border-color: #fad9d9
}

.notice--error .notice__action {
    border-color: #fad9d9
}

.notice--error .notice__action:hover {
    background-color: rgba(250, 217, 217, 0.06)
}

.notice--error .notice__action:focus,
.notice--error .notice__action:active {
    border-color: #fad9d9;
    -webkit-box-shadow: 0 0 0 1px #fad9d9 inset;
    box-shadow: 0 0 0 1px #fad9d9 inset
}

.product-table td {
    border-color: #fad9d9
}

.notice--hide {
    opacity: 0
}

.notice--collapsed .notice__complementary {
    display: none
}

.notice--collapsed .icon-svg--rotate-180 {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.product td {
    padding-top: 1em
}

.product:first-child td {
    padding-top: 0
}

.product-thumbnail {
    width: 4.6em;
    height: 4.6em;
    border-radius: 8px;
    background: #fff;
    position: relative
}

.product-thumbnail::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    border: 1px rgba(0, 0, 0, 0.1) solid;
    z-index: 2
}

.product-thumbnail--small {
    width: 3em;
    height: 3em;
    border-radius: 6px
}

.product-thumbnail--small::after {
    border-radius: 6px
}

.product-thumbnail--small .product-thumbnail__wrapper {
    border-radius: 6px
}

.product-thumbnail__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1
}

.product-thumbnail__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto
}

.product-thumbnail__quantity {
    font-size: 0.8571428571em;
    font-weight: 500;
    line-height: 1.75em;
    white-space: nowrap;
    text-align: center;
    border-radius: 1.75em;
    background-color: rgba(114, 114, 114, 0.9);
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 1.75em;
    height: 1.75em;
    padding: 0 0.5833333333em;
    position: absolute;
    right: -0.75em;
    top: -0.75em;
    z-index: 3
}

.product__price {
    white-space: nowrap
}

.product__description__name,
.product__description__variant,
.product__description__property {
    display: block
}

.product__description {
    text-align: left;
    width: 100%
}

.product__description .reduction-code {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.product__description .reduction-code__text {
    margin-left: 4px;
    color: #6e6e6e
}

.product__description__name {
    width: 1em;
    min-width: 100%
}

.sidebar .product__description__name {
    color: #313131
}

.content-box .product__description__name {
    color: #333333
}

.product__status {
    position: relative;
    white-space: nowrap
}

.product__status--sold-out {
    color: #dd1d1d
}

.product__status__icon {
    vertical-align: -0.15em
}

.product__clear-btn {
    position: absolute;
    right: -2.5em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media (max-width: 749px) {
    .product__clear-btn {
        display: none
    }
}

.logged-in-customer-information {
    zoom: 1
}

.logged-in-customer-information:after,
.logged-in-customer-information:before {
    content: "";
    display: table
}

.logged-in-customer-information:after {
    clear: both
}

.display-table .logged-in-customer-information {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.logged-in-customer-information__avatar-wrapper {
    padding-right: 1em;
    white-space: nowrap;
    vertical-align: middle
}

.display-table .logged-in-customer-information__avatar-wrapper {
    display: table-cell
}

.no-js .logged-in-customer-information__avatar-wrapper,
.no-display-table .logged-in-customer-information__avatar-wrapper {
    float: left
}

.logged-in-customer-information__avatar {
    border-radius: 8px;
    background-size: cover;
    position: relative;
    max-width: none;
    width: 50px;
    height: 50px;
    overflow: hidden
}

.logged-in-customer-information__avatar:before {
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/default-gravatar-4d24bc1e5ce23295ccb699bad0312d7317ee3433a5964c36edca42d51c1129af.png);
    background-image: url(//cdn.shopify.com/shopifycloud/shopify/assets/checkout/default-gravatar-5ad673c45c717c5f83e82f5087d841e9cdf55e4b38458bb0b7272b8585dd6b4f.svg), none
}

.logged-in-customer-information__paragraph {
    padding-top: 0.25em;
    vertical-align: middle
}

.display-table .logged-in-customer-information__paragraph {
    display: table-cell;
    width: 100%
}

.display-table .logged-in-customer-information__paragraph:only-child {
    display: block
}

.no-js .logged-in-customer-information__paragraph,
.no-display-table .logged-in-customer-information__paragraph {
    float: left
}

.logged-in-customer-newsletter {
    margin-top: 1.5em
}

@media (min-width: 1000px) {
    .alt-payment-list-container {
        padding-top: 1.5em
    }
}

@media (min-width: 1000px) {
    .alt-payment-list--center {
        text-align: center
    }
}

.alt-payment-list {
    font-size: 0
}

.alt-payment-list__item {
    position: relative;
    display: block;
    margin: 0 0 0.5em;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    vertical-align: middle
}

@media (min-width: 750px) {
    .alt-payment-list__item {
        display: inline-block;
        margin: 0.5em 0 0.5em 0.5em
    }
    .alt-payment-list__item:first-child {
        margin-left: 0
    }
}

.alt-payment-list__item__link {
    display: block;
    padding: 1.2857142857em 0;
    min-width: 100%
}

@media (min-width: 750px) {
    .alt-payment-list__item__link {
        padding: 0.8571428571em 0;
        min-width: 10.7142857143em
    }
}

.alt-payment-list__item__logo {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 1.2857142857em
}

.alt-payment-list__item--amazon {
    background: #fad676
}

.alt-payment-list__item--amazon:hover {
    background-color: #f9ca4f
}

.no-js .alt-payment-list__item--amazon {
    display: none
}

.alt-payment-list__item--amazon .alt-payment-list__item__logo {
    -webkit-transform: translateY(0.2857142857em);
    transform: translateY(0.2857142857em);
    width: 6.5714285714em;
    height: 1.2857142857em
}

.alt-payment-list-amazon-button-image {
    max-height: none !important;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.alt-payment-list__item--paypal {
    background-color: #ffc520
}

.alt-payment-list__item--paypal:hover {
    background-color: #f6b600
}

.alt-payment-list__item--paypalv4 .alt-payment-list__item__link {
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: top;
    line-height: 0 !important
}

.alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--mobile {
    display: none
}

@media (max-width: 749px) {
    .alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--desktop {
        display: none
    }
    .alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--mobile {
        display: block
    }
}

.alt-payment-list__item--apple-pay {
    background-color: #000;
    font-family: -apple-system, 'Helvetica Neue', sans-serif;
    font-weight: normal;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    color: #fff
}

@media (min-width: 750px) {
    .alt-payment-list__item--apple-pay .alt-payment-list__item__link {
        padding: 0.8571428571em 0
    }
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link .alt-payment-list__item__logo {
    width: 3em;
    background: -webkit-named-image(apple-pay-logo-white) center center no-repeat;
    background-size: auto 100%
}

.google-pay-iframe-container {
    padding: 0
}

.gpay-iframe {
    border-radius: 4px;
    height: 54px;
    width: 100%;
    display: block
}

@media (min-width: 750px) {
    .gpay-iframe {
        height: 42px;
        width: 10.7142857143em
    }
}

.alt-payment-list__item--google-pay {
    height: 54px;
    display: none
}

@media (min-width: 750px) {
    .alt-payment-list__item--google-pay {
        height: 42px;
        width: 10.7142857143em
    }
}

.alt-payment-list__item--google-pay-visible {
    display: block
}

@media (min-width: 750px) {
    .alt-payment-list__item--google-pay-visible {
        display: inline-block
    }
}

.alternative-payment-separator {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.8571428571em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    color: #737373;
    margin-top: 2.5em
}

@media (max-width: 749px) {
    .alternative-payment-separator {
        padding-bottom: 2em
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .alternative-payment-separator {
        margin-bottom: 2em
    }
}

.alternative-payment-separator::after,
.alternative-payment-separator::before {
    content: '';
    display: inline-block;
    height: 1px;
    background-color: #e6e6e6;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.alternative-payment-separator__content {
    display: inline-block;
    padding: 0 1em
}

@media (min-width: 750px) {
    .dynamic-checkout {
        margin-top: 1.5em
    }
}

.dynamic-checkout__title {
    color: #737373;
    font-size: 1em;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: center
}

.dynamic-checkout__title::before,
.dynamic-checkout__title::after {
    content: '';
    border: 1px #e6e6e6 solid;
    border-bottom: 0;
    height: 0.5em;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 2em;
    -ms-flex: 1 0 2em;
    flex: 1 0 2em
}

.dynamic-checkout__title::before {
    border-right: 0;
    border-top-left-radius: 5px;
    margin-right: 1em
}

.dynamic-checkout__title::after {
    border-left: 0;
    border-top-right-radius: 5px;
    margin-left: 1em
}

.dynamic-checkout__content {
    border: 1px #e6e6e6 solid;
    border-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0.9285714286em 1.4285714286em 1.4285714286em
}

.dynamic-checkout__skeleton {
    display: none
}

.dynamic-checkout__buttons {
    display: block
}

.dynamic-checkout--loading .dynamic-checkout__skeleton {
    display: block
}

.dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
    height: 3.8571428571em
}

@media (min-width: 750px) {
    .dynamic-checkout--loading .dynamic-checkout__skeleton {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
        max-width: 18.7142857143em;
        height: 3em;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }
    .dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line+.placeholder-line {
        margin-top: 0;
        margin-left: 0.5714285714em
    }
}

.dynamic-checkout--loading .dynamic-checkout__buttons {
    display: none
}

.hidden {
    display: none !important
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap
}

@media (max-width: 749px) {
    .visually-hidden-on-mobile {
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip: rect(0 0 0 0);
        width: 2px;
        height: 2px;
        margin: -2px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap
    }
}

@media (min-width: 1000px) {
    .visually-hidden-on-desktop {
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip: rect(0 0 0 0);
        width: 2px;
        height: 2px;
        margin: -2px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap
    }
}

.visible-on-focus {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap
}

.visible-on-focus:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit
}

.no-js .shown-if-js {
    display: none
}

.js .hidden-if-js {
    display: none
}

.js .visually-hidden-if-js {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip: rect(0 0 0 0);
    width: 2px;
    height: 2px;
    margin: -2px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap
}

@media (max-width: 749px) {
    .hidden-on-mobile {
        display: none
    }
}

@media (min-width: 750px) {
    .shown-on-mobile {
        display: none
    }
}

.no-margin {
    margin: 0 !important
}

@media (min-width: 750px) and (max-width: 999px) {
    .hidden-on-tablet {
        display: none
    }
}

@media (max-width: 749px) and (min-width: 1000px) {
    .shown-on-tablet {
        display: none
    }
}

@media (min-width: 1000px) {
    .hidden-on-desktop {
        display: none
    }
}

@media (max-width: 999px) {
    .shown-on-desktop {
        display: none
    }
}

@media (min-width: 750px) {
    .sms-marketing-fieldset {
        padding-left: 1.75em
    }
}

.sms-marketing-disclaimer {
    margin-top: 0
}

.order-summary-toggle {
    background: #fafafa;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 1.25em 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: left;
    width: 100%
}

@media (min-width: 1000px) {
    .order-summary-toggle {
        display: none
    }
}

.order-summary-toggle__inner {
    zoom: 1
}

.order-summary-toggle__inner:after,
.order-summary-toggle__inner:before {
    content: "";
    display: table
}

.order-summary-toggle__inner:after {
    clear: both
}

.display-table .order-summary-toggle__inner {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.order-summary-toggle__icon-wrapper {
    vertical-align: middle;
    padding-right: 0.75em;
    white-space: nowrap
}

.display-table .order-summary-toggle__icon-wrapper {
    display: table-cell
}

.no-js .order-summary-toggle__icon-wrapper,
.no-display-table .order-summary-toggle__icon-wrapper {
    float: left
}

.order-summary-toggle__icon {
    fill: #1773b0;
    -webkit-transition: fill 0.2s ease-in-out;
    transition: fill 0.2s ease-in-out
}

.order-summary-toggle:hover .order-summary-toggle__icon,
.order-summary-toggle:focus .order-summary-toggle__icon {
    fill: #115683
}

.order-summary-toggle__text {
    color: #1773b0;
    vertical-align: middle;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    display: none
}

.order-summary-toggle:hover .order-summary-toggle__text,
.order-summary-toggle:focus .order-summary-toggle__text {
    color: #115683
}

.order-summary-toggle--show .order-summary-toggle__text--show,
.order-summary-toggle--hide .order-summary-toggle__text--hide {
    display: block
}

.display-table .order-summary-toggle--show .order-summary-toggle__text--show,
.display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
    display: table-cell;
    width: 100%
}

.display-table .order-summary-toggle--show .order-summary-toggle__text--show:only-child,
.display-table .order-summary-toggle--hide .order-summary-toggle__text--hide:only-child {
    display: block
}

.no-js .order-summary-toggle--show .order-summary-toggle__text--show,
.no-display-table .order-summary-toggle--show .order-summary-toggle__text--show,
.no-js .order-summary-toggle--hide .order-summary-toggle__text--hide,
.no-display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
    float: left
}

.order-summary-toggle__total-recap {
    vertical-align: middle;
    text-align: right;
    padding-left: 0.75em;
    white-space: nowrap
}

.display-table .order-summary-toggle__total-recap {
    display: table-cell
}

.no-js .order-summary-toggle__total-recap,
.no-display-table .order-summary-toggle__total-recap {
    float: right
}

.total-recap__original-price {
    font-size: 0.8571428571em;
    color: #737373;
    display: block
}

.total-recap__final-price {
    font-size: 1.2857142857em;
    line-height: 1em;
    color: #333333
}

.order-summary-toggle__dropdown {
    vertical-align: middle;
    -webkit-transition: fill 0.2s ease-in-out;
    transition: fill 0.2s ease-in-out;
    fill: #1773b0
}

.order-summary-toggle:hover .order-summary-toggle__dropdown,
.order-summary-toggle:focus .order-summary-toggle__dropdown {
    fill: #115683
}

.g-recaptcha {
    border-radius: 4px;
    display: inline-block
}

.field--error .g-recaptcha {
    border-color: #dd1d1d;
    -webkit-box-shadow: 0 0 0 1px #dd1d1d;
    box-shadow: 0 0 0 1px #dd1d1d
}

.no-js .g-recaptcha {
    display: none
}

.g-recaptcha-nojs {
    max-width: 100%;
    width: 302px
}

.g-recaptcha-nojs__iframe {
    height: 423px;
    width: 100%
}

.g-recaptcha-nojs__input-wrapper {
    background: #f9f9f9;
    border: 1px #c1c1c1 solid;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0.5em;
    padding: 0.75em
}

.g-recaptcha-nojs__input {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 5em;
    padding: 0.4285714286em;
    resize: vertical;
    width: 100%
}

.field--error .g-recaptcha-nojs__input {
    border-color: #dd1d1d;
    -webkit-box-shadow: 0 0 0 1px #dd1d1d;
    box-shadow: 0 0 0 1px #dd1d1d
}

.sp-modal__button-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1px
}

.sp-modal-toggle {
    opacity: 0;
    bottom: 0;
    border-radius: 0 5px 5px 0;
    margin: 1px;
    padding: 0 1em;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 1;
    -webkit-animation: sp-fade-in 0.7s forwards cubic-bezier(0.2, 0.9, 0.3, 1);
    animation: sp-fade-in 0.7s forwards cubic-bezier(0.2, 0.9, 0.3, 1)
}

@media (max-width: 749px) {
    .sp-modal-toggle {
        -webkit-animation-name: fade-in;
        animation-name: fade-in
    }
}

.sp-modal-toggle:hover .sp-modal-toggle__phone-wrapper::after {
    border-color: #115683
}

.sp-modal-toggle:focus {
    outline-offset: -3px;
    outline-color: -webkit-focus-ring-color;
    outline-width: 4px
}

.sp-modal-toggle__icon-wrapper {
    display: block;
    position: relative
}

.sp-modal-toggle__icon-wrapper .sp-modal-toggle__icon {
    -webkit-animation: wobble 100ms 250ms linear 6;
    animation: wobble 100ms 250ms linear 6
}

.sp-modal-toggle__icon-wrapper::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 8px;
    height: 6px;
    width: 6px;
    background-color: #fff;
    border: 1px solid #1773b0;
    border-radius: 50%;
    -webkit-animation: scale-up-bounce 400ms 850ms both;
    animation: scale-up-bounce 400ms 850ms both
}

.has-sp-modal body {
    height: auto;
    position: relative;
    min-height: 100%
}

.sp-modal-backdrop {
    background-color: rgba(0, 0, 0, 0);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: visibility 1s cubic-bezier(0.2, 0.9, 0.3, 1), background-color 1s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: visibility 1s cubic-bezier(0.2, 0.9, 0.3, 1), background-color 1s cubic-bezier(0.2, 0.9, 0.3, 1);
    visibility: hidden;
    z-index: 999;
    overflow-y: scroll;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.sp-modal-backdrop--visible {
    background-color: rgba(0, 0, 0, 0.18);
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.sp-modal {
    color: #545454;
    opacity: 0;
    outline: none;
    position: absolute;
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 0% 15%;
    transform-origin: 0% 15%;
    -webkit-transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    visibility: hidden
}

@media (max-width: 749px) {
    .sp-modal {
        left: 50%;
        top: 2em;
        -webkit-transform: scale(1) translateX(-50%);
        transform: scale(1) translateX(-50%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
        transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1)
    }
}

.sp-modal-backdrop--visible .sp-modal {
    opacity: 1;
    -webkit-transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    visibility: visible
}

@media (max-width: 749px) {
    .sp-modal-backdrop--visible .sp-modal {
        -webkit-transform: scale(1) translateX(-50%);
        transform: scale(1) translateX(-50%)
    }
}

.sp-modal--hidden .sp-modal {
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1)
}

@media (max-width: 749px) {
    .sp-modal--hidden .sp-modal {
        -webkit-transform: scale(1) translateX(-50%);
        transform: scale(1) translateX(-50%)
    }
}

.sp-modal::before {
    background: white;
    border-radius: 4px;
    content: '';
    display: block;
    height: 25px;
    left: 2px;
    margin-left: -8px;
    position: absolute;
    top: 1.8em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 25px
}

@media (max-width: 749px) {
    .sp-modal::before {
        display: none
    }
}

.sp-modal::after {
    -webkit-box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    content: '';
    display: block;
    height: 100%;
    left: 5%;
    position: absolute;
    right: 5%;
    top: 0;
    width: 90%;
    z-index: -1
}

.sp-modal__frame {
    display: block;
    -webkit-transition: height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    max-width: initial
}

.sp-modal--top {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%
}

.sp-modal--top::before {
    left: 50%;
    bottom: -8px;
    margin-left: -12.5px;
    top: auto
}

.sp-modal--center {
    left: 50%;
    top: 50%;
    position: fixed
}

.sp-modal-backdrop--visible .sp-modal--center {
    -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 0
}

.sp-modal--center::before {
    display: none
}

.sp-modal--bottom-right,
.sp-modal--bottom-left {
    -webkit-transform-origin: 95% 0%;
    transform-origin: 95% 0%
}

.sp-modal--bottom-right::before,
.sp-modal--bottom-left::before {
    left: auto;
    margin-left: -8px;
    right: 7px;
    top: -6px
}

.sp-modal--bottom-right {
    -webkit-transform-origin: 5% 0%;
    transform-origin: 5% 0%
}

.sp-modal__content {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.sp-modal__close {
    position: absolute;
    z-index: 2;
    top: 1em;
    right: 1em;
    height: 1em;
    width: 1em;
    color: #737373;
    -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: color 0.3s cubic-bezier(0.3, 0, 0, 1)
}

.sp-modal__close:focus,
.sp-modal__close:hover,
.sp-modal__close:active {
    color: #545454
}

@-webkit-keyframes sp-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(0.5em);
        transform: translateX(0.5em);
        visibility: hidden
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        visibility: visible
    }
}

@keyframes sp-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(0.5em);
        transform: translateX(0.5em);
        visibility: hidden
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        visibility: visible
    }
}

@-webkit-keyframes skeletonShimmerAnimation {
    0% {
        opacity: 0.45
    }
    100% {
        opacity: 0.9
    }
}

@keyframes skeletonShimmerAnimation {
    0% {
        opacity: 0.45
    }
    100% {
        opacity: 0.9
    }
}

.content .skeleton-loading-text,
.order-summary-toggle .skeleton-loading-text {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    width: 5em;
    height: 1.3em
}

.content .skeleton-loading-text--lg,
.order-summary-toggle .skeleton-loading-text--lg {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 1.7142857143em;
    width: 8em
}

.content .skeleton-loading-text--sm,
.order-summary-toggle .skeleton-loading-text--sm {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 0.8571428571em;
    width: 5em
}

.content .skeleton-loading-text--left,
.order-summary-toggle .skeleton-loading-text--left {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 1.3em;
    width: 5em;
    float: left
}

.content .skeleton-loading-text--rate,
.order-summary-toggle .skeleton-loading-text--rate {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 1.45em;
    width: 12em;
    float: none
}

.content .skeleton-loading-text--link,
.order-summary-toggle .skeleton-loading-text--link {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 1.5em;
    width: 8em;
    float: none
}

.content .skeleton-loading-text--inline,
.order-summary-toggle .skeleton-loading-text--inline {
    position: relative;
    display: block;
    float: right;
    background-color: rgba(110, 110, 110, 0.16);
    border-radius: 4px;
    -webkit-animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    animation: skeletonShimmerAnimation 800ms linear infinite alternate;
    will-change: opacity;
    height: 1.3em;
    width: 5em;
    position: absolute;
    margin-left: 0.25em;
    display: inline-block
}

.disable-link-while-loading.loading {
    pointer-events: none;
    color: #6e6e6e
}

.review-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.review-block~.review-block {
    margin-top: 0.8571428571em;
    padding-top: 0.8571428571em;
    border-top: 1px solid #e6e6e6
}

.review-block__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media (max-width: 749px) {
    .review-block__inner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.review-block__label {
    color: #737373;
    padding-right: 1.1428571429em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 5em;
    -ms-flex: 0 1 5em;
    flex: 0 1 5em
}

@media (max-width: 749px) {
    .review-block__label {
        padding-bottom: 0.2857142857em
    }
}

.review-block__content {
    -webkit-box-flex: 5;
    -webkit-flex: 5;
    -ms-flex: 5;
    flex: 5;
    color: #333333;
    padding-right: 1.1428571429em
}

@media (max-width: 749px) {
    .review-block__content {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto
    }
}

.review-block__link {
    max-width: 10em;
    font-size: 0.8571428571em
}

.review-block__billing-address {
    margin-top: 0.25em
}

.flag-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    -webkit-transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
    transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 0.7142857143rem
}

.no-js .flag-selector,
.no-anyflexbox .flag-selector {
    display: table
}

.flag-selector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    height: 20px;
    border-left: 1px solid transparent
}

.flag-selector--visible::after {
    border-left-color: #d9d9d9;
    -webkit-animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards
}

.flag-selector--hidden {
    display: none
}

.flag-selector--focus {
    background: rgba(23, 115, 176, 0.25)
}

.flag-selector--focus::after {
    display: none
}

.flag-selector__caret {
    display: block;
    margin-left: 0.5em
}

.no-js .flag-selector__caret,
.no-anyflexbox .flag-selector__caret {
    display: table-cell;
    vertical-align: middle
}

.flag-selector--visible .flag-selector__caret {
    -webkit-animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards
}

.flag-selector--focus .flag-selector__caret {
    fill: #1773b0
}

.flag-selector__icon {
    height: 20px;
    width: 27px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-filter: saturate(1.3) hue-rotate(-5deg);
    filter: saturate(1.3) hue-rotate(-5deg);
    opacity: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out
}

.no-js .flag-selector__icon,
.no-anyflexbox .flag-selector__icon {
    display: table-cell;
    vertical-align: middle
}

.flag-selector--visible .flag-selector__icon {
    -webkit-animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
    animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards
}

.flag-selector--hidden .flag-selector__icon {
    -webkit-animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards;
    animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards
}

.flag-selector__select {
    background-color: inherit;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.placeholder-line {
    height: 1em;
    border-radius: 4px;
    border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #e6e6e6
}

.placeholder-line+.placeholder-line {
    margin-top: 0.5em
}

.placeholder-line--animated {
    -webkit-animation: 1.5s linear 0s infinite normal forwards running loading;
    animation: 1.5s linear 0s infinite normal forwards running loading;
    background-repeat: no-repeat;
    background-size: 200px 100%
}

.main .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%)
}

.sidebar .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#ddd), color-stop(50%, #c4c4c4), to(#ddd));
    background-image: linear-gradient(to left, #ddd 0%, #c4c4c4 50%, #ddd 100%)
}

.content-box .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%)
}

.default-background .placeholder-line--animated {
    background-image: -webkit-gradient(linear, right top, left top, from(#e6e6e6), color-stop(50%, #cdcdcd), to(#e6e6e6));
    background-image: linear-gradient(to left, #e6e6e6 0%, #cdcdcd 50%, #e6e6e6 100%)
}

.placeholder-line--loose-vertical+.placeholder-line--loose-vertical {
    margin-top: 1em
}

.placeholder-line--40 {
    width: 40%
}

.placeholder-line--45 {
    width: 45%
}

.placeholder-line--50 {
    width: 50%
}

.placeholder-line--60 {
    width: 60%
}

.placeholder-line--70 {
    width: 70%
}

.placeholder-line--75 {
    width: 75%
}

.placeholder-line--90 {
    width: 90%
}

.placeholder-line--100 {
    width: 100%
}

@-webkit-keyframes loading {
    0% {
        background-position: -200px 0
    }
    100% {
        background-position: calc(100% + 200px) 0
    }
}

@keyframes loading {
    0% {
        background-position: -200px 0
    }
    100% {
        background-position: calc(100% + 200px) 0
    }
}

.skip-to-content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    text-align: center;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip: rect(1px 1px 1px 1px);
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    margin: -1px
}

.skip-to-content:focus {
    margin: 0;
    padding: 1em;
    clip: auto;
    width: 100%;
    height: auto;
    overflow: visible
}

.tags-list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tags-list .tag {
    margin-top: 0.8571428571em;
    margin-right: 0.8571428571em
}

.tags-list .tag:last-child {
    margin-right: 0
}

@media (min-width: 1000px) {
    .tags-list {
        float: left
    }
}

.tag {
    border-radius: 4px;
    background-color: rgba(110, 110, 110, 0.11);
    color: #6e6e6e;
    font-size: 0.8571428571em;
    padding: 0.8571428571em;
    overflow: hidden
}

.tag__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.tag__text {
    color: #313131;
    font-size: 1.1428571429em;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap
}

.tag__button {
    margin-left: 0.8571428571em
}

.tag__button .icon-svg {
    stroke: rgba(110, 110, 110, 0.9)
}

.tag__button:hover .icon-svg,
.tag__button:focus .icon-svg {
    stroke: #313131
}

.list {
    padding-left: 1.5em;
    list-style: disc outside;
    line-height: 1.5em
}

.list+.list {
    margin-top: 1.5em
}

.list__item>.list {
    margin-top: 0.5em
}

.list__item {
    margin-top: 0.5em
}

.list__item:first-child {
    margin-top: 0
}

.tabs__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.tabs__item {
    width: 100%
}

.tabs__button {
    width: 100%;
    height: 100%;
    padding: 1.1428571429em;
    -webkit-box-shadow: inset 0 -3px 0 0 #d9d9d9;
    box-shadow: inset 0 -3px 0 0 #d9d9d9;
    color: #737373;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.tabs__button:hover {
    -webkit-box-shadow: inset 0 -3px 0 0 #919191;
    box-shadow: inset 0 -3px 0 0 #919191;
    color: #545454
}

.tabs__button>* {
    pointer-events: none
}

.tabs__button--active,
.tabs__button--active:hover {
    -webkit-box-shadow: inset 0 -3px 0 0 #1773b0;
    box-shadow: inset 0 -3px 0 0 #1773b0;
    color: #1773b0
}

.button-group__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.button-group__list .button-group__item:first-of-type .button-group__button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

.button-group__list .button-group__item:last-of-type .button-group__button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.button-group__list--bordered .button-group__item {
    position: relative
}

.button-group__list--bordered .button-group__item:not(:first-of-type) {
    border-left: 1px #d9d9d9 solid
}

.button-group__item {
    width: 100%
}

.button-group__button {
    width: 100%;
    height: 100%;
    padding: 1.1428571429em;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #545454;
    font-weight: 500;
    -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-style: solid;
    border-color: transparent
}

.button-group__button>* {
    pointer-events: none
}

.button-group__button--active {
    color: #1773b0;
    border-style: solid;
    border-color: #1773b0;
    border-width: 2px
}

.button-group__button--subtitled {
    display: block;
    padding-top: 0.6em;
    padding-bottom: 0.4em
}

.shopUpsellBtn__wrapper {
    position: relative;
    display: inline-block
}

.shopQrPopover__overlay {
    background-color: rgba(0, 0, 0, 0.18);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    display: none
}

.shopQrPopover__overlay.show {
    display: block
}

.shopQrPopover__wrapper {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 372px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    left: 100%;
    margin-left: 20px;
    top: -13px;
    opacity: 0;
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 0% 15%;
    transform-origin: 0% 15%;
    -webkit-transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1)
}

.shopQrPopover__wrapper::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    top: 20px;
    left: -4px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    border-radius: 4px;
    background: linear-gradient(45deg, white 0%, #ddd 50%);
    z-index: -1
}

.shopQrPopover__wrapper.show {
    display: block
}

.shopQrPopover__wrapper.animate {
    opacity: 1;
    -webkit-transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
}

.shopQrPopover__qrSection {
    position: relative;
    border-radius: 8px;
    z-index: 1;
    padding-bottom: 20px;
    padding: 1.1428571429em;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.shopQrPopover__qrSection .shopQrPopover__qrContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.shopQrPopover__qrSection .shopQrPopover__qrUpsellTitle {
    margin-bottom: 1.1428571429em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.3em;
    color: #000
}

.shopQrPopover__qrSection p {
    color: #000
}

.shopQrPopover__qrBox {
    height: 164px;
    min-width: 164px;
    margin-right: 1.1428571429em;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.shopQrPopover__qrBox iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.shopQrPopover__qrLogoBox {
    background: #fff;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.shopClaimQrPopover__wrapper {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    left: 100%;
    margin-left: 20px;
    opacity: 0;
    -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 0% 15%;
    transform-origin: 0% 15%;
    -webkit-transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), -webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    width: 296px;
    top: calc(-222px + 50%)
}

.shopClaimQrPopover__wrapper::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    top: 205px;
    left: -4px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    border-radius: 4px;
    background: linear-gradient(45deg, white 0%, #ddd 50%);
    z-index: -1
}

.shopClaimQrPopover__wrapper.show {
    display: block
}

.shopClaimQrPopover__wrapper.animate {
    opacity: 1;
    -webkit-transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
}

.shopClaimQrPopover__qrSection {
    position: relative;
    border-radius: 30px;
    z-index: 1;
    padding: 2.2857142857em;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.shopClaimQrPopover__qrSection .shopClaimQrPopover__qrContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.shopClaimQrPopover__qrSection .shopClaimQrPopover__qrUpsellTitle {
    margin-bottom: 0.5714285714em;
    font-size: 2em;
    line-height: 1.3em;
    color: #000
}

.shopClaimQrPopover__qrSection .shopClaimQrPopover__qrClaimAmount {
    font-size: 1.7142857143em;
    margin-bottom: 0.2857142857em
}

.shopClaimQrPopover__qrSection p {
    color: #000
}

.shopClaimQrPopover__qrBox {
    height: 164px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 164px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.shopClaimQrPopover__qrBox iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.shopClaimQrPopover__qrLogoBox {
    background: #fff;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.email-subscription-icons {
    vertical-align: -4px;
    position: relative;
    width: 18px;
    height: 18px
}

.page--stock-problems.page--logo-main .breadcrumb,
.page--stock-problems.page--logo-sidebar .main__header,
.page--stock-problems.page--logo-banner .main__header {
    display: none
}

.stock-problem-table {
    border-bottom: 1px solid #e6e6e6
}

.exclamation-mark {
    color: #737373;
    fill: currentColor;
    stroke: currentColor
}

.exclamation-mark__circle {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0
}

.cssanimations .exclamation-mark__circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    -webkit-animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards
}

.cssanimations .exclamation-mark__line {
    stroke-dasharray: 18;
    stroke-dashoffset: 18;
    -webkit-animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards;
    animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards
}

.exclamation-mark__dot {
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0
}

.cssanimations .exclamation-mark__dot {
    -webkit-animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both;
    animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both
}

.os-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0
}

@media (min-width: 750px) {
    .os-header {
        margin: 0 0 -0.5em
    }
}

.os-header__heading {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.os-order-number {
    display: block;
    margin-bottom: 0.25em
}

.os-header__title {
    font-size: 1.5714285714em
}

.os-header__hanging-icon {
    margin-right: 0.75em;
    stroke: #1773b0
}

@media (min-width: 750px) and (max-width: 999px) {
    .os-header__hanging-icon {
        position: absolute;
        right: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-right: 1.5em
    }
}

@media (min-width: 1300px) {
    .os-header__hanging-icon {
        position: absolute;
        right: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-right: 1.5em
    }
}

@media (min-width: 750px) {
    .os-view-account-link {
        text-align: right
    }
}

@media (max-width: 749px) {
    .os-view-account-link {
        margin-top: 0.5714285714em
    }
}

.map {
    overflow: hidden
}

.content-box__row:first-child .map {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.map__iframe {
    display: block;
    height: 200px;
    width: calc(100% + 1px);
    border: 0;
    z-index: 0
}

.map__placeholder {
    height: 100%;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.pickup_point_map__cluster {
    height: 36px !important;
    width: 36px !important;
    border-radius: 50%;
    background: #333333;
    border: 2px solid #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16)
}

.gm-style .gm-style-iw {
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    padding-top: 5px;
    text-align: center;
    width: 100%
}

.gm-style .gm-style-iw+div {
    display: none
}

.os-timeline {
    margin: 0;
    padding: 0
}

.os-timeline-step__title {
    display: block;
    color: #737373
}

.os-timeline-step__date {
    display: none
}

.os-timeline-step--selected .os-timeline-step__icon {
    fill: #1773b0
}

.os-timeline-step--selected .os-timeline-step__title {
    color: #1773b0;
    font-weight: 500
}

.os-timeline-step--selected .os-timeline-step__date {
    display: block;
    font-size: 0.8571428571em;
    color: #737373
}

@media (max-width: 749px) {
    .os-timeline-step:not(.os-timeline-step--current) {
        display: none
    }
    .os-timeline-step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
    .os-timeline-step__title {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

@media (min-width: 750px) {
    .os-timeline {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        overflow: hidden
    }
    .os-timeline-step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        max-width: 25%;
        position: relative;
        padding-top: 20px
    }
    .os-timeline-step:before,
    .os-timeline-step:after {
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        top: 8.5px;
        right: 50%
    }
    .os-timeline-step:before {
        background: #e6e6e6;
        width: 2000px
    }
    .os-timeline-step:first-child:after {
        background: #fff;
        left: 0;
        z-index: 2
    }
    .os-timeline-step__icon {
        fill: #b3b3b3;
        background: #fff;
        background: #fff;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 3
    }
    .os-timeline-step__title {
        display: block;
        color: #737373
    }
    .os-timeline-step__date {
        display: none
    }
    .os-timeline-step--selected:before {
        background: #1773b0;
        z-index: 1
    }
    .os-timeline-step--selected .os-timeline-step__icon {
        fill: #1773b0
    }
    .os-timeline-step--selected .os-timeline-step__title {
        color: #1773b0;
        font-weight: 500
    }
    .os-timeline-step--selected .os-timeline-step__date {
        display: block
    }
}

.os-step__info {
    margin-top: 1em
}

.os-step__info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.75em
}

.os-step__special-description+.os-step__special-description {
    border-top: 1px #e6e6e6 solid;
    margin-top: 1.5em;
    padding-top: 1.5em
}

.os-step__delivery-promise-description-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.os-step__branded-promise-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 749px) {
    .os-step__branded-promise-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.os-step__branded-promise-logo-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 4px
}

@media (max-width: 749px) {
    .os-step__branded-promise-logo-container {
        margin-left: 0px
    }
}

.os-step__branded-promise-logo {
    display: inline;
    margin-top: auto;
    margin-bottom: auto;
    vertical-align: sub
}

.os-step__branded-shop-promise-text {
    color: #5632eb
}

.os-step__shop-logo {
    width: 36px
}

.os-step__shop-pay-disclaimer {
    margin-bottom: 12px
}

.os-step__shop-pay-disclaimer-icon {
    width: 58px;
    height: 14px
}

.os-step__shop-pay-disclaimer-icon path {
    fill: #000
}

.tracking-info {
    border-top: 1px solid #e6e6e6;
    margin-top: 1.1428571429em;
    padding-top: 1.1428571429em
}

.tracking-info__number {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #737373
}

.shipment-information {
    padding: 1em
}

.shipment-information__items td {
    padding-top: 1em
}

.shipment-information__item:first-child td {
    padding-top: 0
}

.shipment-information__image {
    width: 2.5em
}

.shipment-information__image .product-thumbnail {
    width: 2.5em;
    height: 2.5em;
    border-right: 6px
}

.shipment-information__image .product-thumbnail__wrapper {
    border-right: 6px
}

.shipment-information__image .product-thumbnail__quantity {
    font-size: 11px;
    top: -0.65em;
    padding: 0 0.55em
}

.arrive-phone-description {
    margin: 8px 0 6px;
    color: #545454;
    font-size: 0.85714em;
    line-height: 135%
}

.arrive-button {
    font-weight: 600
}

.arrive-button__regular {
    font-weight: 400
}

.arrive-button__logo {
    width: 35px;
    height: 14px
}

.buy_with_prime-button {
    position: relative;
    display: inline-block;
    font-weight: 600;
    background-color: transparent;
    border-color: rgba(179, 179, 179, 0.5);
    color: #1773b0;
    width: auto
}

@media (min-width: 750px) {
    .os-breadcrumbs__container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media (min-width: 750px) {
    .os-breadcrumbs__step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
    .os-breadcrumbs__step:first-child .os-breadcrumbs__icon-container::before,
    .os-breadcrumbs__step:last-child .os-breadcrumbs__icon-container::after {
        background-color: transparent
    }
}

@media (max-width: 749px) {
    .os-breadcrumbs__step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
    .os-breadcrumbs__step:not([aria-current="true"]) {
        display: none
    }
}

.os-breadcrumbs__icon-container svg {
    fill: currentColor;
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 18px
}

@media (min-width: 750px) {
    .os-breadcrumbs__icon-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%
    }
    .os-breadcrumbs__icon-container.os-breadcrumbs__current-path::before,
    .os-breadcrumbs__icon-container.os-breadcrumbs__completed-path::before,
    .os-breadcrumbs__icon-container.os-breadcrumbs__completed-path::after {
        background-color: #1879b9
    }
    .os-breadcrumbs__icon-container::before,
    .os-breadcrumbs__icon-container::after {
        content: "";
        position: relative;
        top: 0.6428571429em;
        height: 0.1428571429em;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        background-color: #d9d9d9
    }
    .os-breadcrumbs__icon-container::before {
        -webkit-margin-end: 0.6428571429em;
        margin-inline-end: 0.6428571429em
    }
    .os-breadcrumbs__icon-container::after {
        -webkit-margin-start: 0.6428571429em;
        margin-inline-start: 0.6428571429em
    }
}

@media (max-width: 749px) {
    .os-breadcrumbs__icon-container {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-margin-end: 0.9rem;
        margin-inline-end: 0.9rem
    }
}

.os-breadcrumbs__completed-path,
.os-breadcrumbs__current-path,
.os-breadcrumbs__completed-path~p.os-breadcrumbs__step-name,
.os-breadcrumbs__current-path~p.os-breadcrumbs__step-name {
    color: #1879b9
}

.os-breadcrumbs__step-name {
    font-size: 1em;
    color: currentColor
}

@media (min-width: 750px) {
    .os-breadcrumbs__step-name {
        text-align: center;
        margin-top: 5px
    }
}

@media (max-width: 749px) {
    .os-breadcrumbs__step-name {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

.os-breadcrumbs__step-date {
    font-size: 0.8571428571em;
    color: #737373
}

@media (min-width: 750px) {
    .os-breadcrumbs__path {
        position: relative;
        top: 0.6428571429em;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        border: 1px solid
    }
    .os-breadcrumbs__path:not(.os-breadcrumbs__completed-path) {
        border-color: #d9d9d9
    }
}

@media (max-width: 749px) {
    .os-breadcrumbs__path {
        display: none
    }
}

.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.logo-container {
    margin-left: 5px
}