
.preloader {
    background-color: #066488;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    z-index: 1000 !important;
    overflow: hidden;
}.preloader .vertical-centered-box {
     position: absolute;
     width: 100%;
     height: 100%;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
 }.preloader * {
      transition: all 0.3s;
  }.preloader .vertical-centered-box .content {
       box-sizing: border-box;
       display: inline-block;
       vertical-align: middle;
       text-align: left;
       font-size: 0;
       position: relative;
   }.preloader .loader-circle {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        margin-left: -60px;
        margin-top: -60px;
    }.preloader .loader-line-mask {
         direction:ltr;
         position: absolute;
         left: 50%;
         top: 50%;
         width: 60px;
         height: 120px;
         margin-left: -60px;
         margin-top: -60px;
         overflow: hidden;
         transform-origin: 60px 60px;
         -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
         animation: rotate 1.2s infinite linear;
     }.preloader .loader-line-mask .loader-line {
          width: 120px;
          height: 120px;
          border-radius: 50%;
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      }
:root {
    --color-primary: #005381;
    --color-primary-dark: #690000;
    --color-primary-light: #b63e48;
    --color-primary-reverse: #ffe4ee;
    --color-text: #222222;
    --color-text-reverse: #ffe4ee;
    --color-title: #901822;
    --color-secondary: #901822;
    --font-main: 'Apple';
    --font-light: 'Apple';
    --font-regular: 'Apple';
    --font-medium: 'Apple-Medium';
    --font-bold: 'Apple-Bold';
    --page-height: 100%;
}
:root {
    --font-base: 15px;
    --font-md: 1.0666666667rem;
    --font-sm: 0.9333333333rem;
    --font-xsm: 0.8rem;
    --font-xxsm: 0.6666666667rem;
    --font-lg: 1.2rem;
    --font-xlg: 1.3333333333rem;
    --font-xxlg: 1.5333333333rem;
    --font-xxxlg: 2.5333333333rem;
    --font-line-height: 1.4;
}
@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.animated.fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s
}

.animated.faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media(prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}

/*!tailwindcss v2.2.19 | MIT License | https://tailwindcss.com*/
/*!modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize*/
*,
::before,
::after {
    box-sizing: border-box
}

html {
    -moz-tab-size: 4;
    tab-size: 4
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

body {
    font-family: system-ui, -apple-system, segoe ui, Roboto, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji !important;
    font-weight: 600;
}

hr {
    height: 0;
    color: inherit
}

abbr[title] {
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Consolas, liberation mono, Menlo, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    line-height: 1.15;
    margin: 0
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

:-moz-focusring {
    outline: 1px dotted ButtonText
}

:-moz-ui-invalid {
    box-shadow: none
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0
}

button {
    background-color: transparent;
    background-image: none
}

fieldset {
    margin: 0;
    padding: 0
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

html {
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
    line-height: 1.5
}

body {
    font-family: inherit;
    line-height: inherit
}

*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor
}

hr {
    border-top-width: 1px
}

img {
    border-style: solid
}

textarea {
    resize: vertical
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #a1a1aa
}

button,
[role=button] {
    cursor: pointer
}

:-moz-focusring {
    outline: auto
}

table {
    border-collapse: collapse
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    line-height: inherit;
    color: inherit
}

pre,
code,
kbd,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, liberation mono, courier new, monospace
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden] {
    display: none
}

*,
::before,
::after {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    --tw-border-opacity: 1;
    border-color: rgba(228, 228, 231, var(--tw-border-opacity));
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-blur: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-brightness: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-contrast: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-grayscale: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-hue-rotate: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-invert: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-saturate: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-sepia: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-drop-shadow: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

[type=text],
[type=email],
[type=url],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=search],
[type=tel],
[type=time],
[type=week],
[multiple],
textarea,
select {
    appearance: none;
    background-color: #fff;
    border-color: #71717a;
    border-width: 1px;
    border-radius: 0;
    padding-top: .5rem;
    padding-right: .75rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000
}

[type=text]:focus,
[type=email]:focus,
[type=url]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=week]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: transparent;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-color: #2563eb
}

input::placeholder,
textarea::placeholder {
    color: #71717a;
    opacity: 1
}

::-webkit-datetime-edit-fields-wrapper {
    padding: 0
}

::-webkit-date-and-time-value {
    min-height: 1.5em
}

select {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9J25vbmUnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggc3Ryb2tlPScjNzE3MTdhJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS13aWR0aD0nMS41JyBkPSdNNiA4bDQgNCA0LTQnLz48L3N2Zz4=);
    background-position: right .5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    color-adjust: exact
}

[multiple] {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: .75rem;
    color-adjust: unset
}

[type=checkbox],
[type=radio] {
    appearance: none;
    padding: 0;
    color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #71717a;
    border-width: 1px;
    --tw-shadow: 0 0 #0000
}

[type=checkbox] {
    border-radius: 0
}

[type=radio] {
    border-radius: 100%
}

[type=checkbox]:focus,
[type=radio]:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,
        /*!*/
        /*!*/
    );
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
}

[type=checkbox]:checked,
[type=radio]:checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

[type=checkbox]:checked {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgMTYgMTYnIGZpbGw9J3doaXRlJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGQ9J00xMi4yMDcgNC43OTNhMSAxIDAgMDEwIDEuNDE0bC01IDVhMSAxIDAgMDEtMS40MTQgMGwtMi0yYTEgMSAwIDAxMS40MTQtMS40MTRMNi41IDkuMDg2bDQuMjkzLTQuMjkzYTEgMSAwIDAxMS40MTQgMHonLz48L3N2Zz4=)
}

[type=radio]:checked {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgMTYgMTYnIGZpbGw9J3doaXRlJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxjaXJjbGUgY3g9JzgnIGN5PSc4JyByPSczJy8+PC9zdmc+)
}

[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
    border-color: transparent;
    background-color: currentColor
}

[type=checkbox]:indeterminate {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9J25vbmUnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggc3Ryb2tlPSd3aGl0ZScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2Utd2lkdGg9JzInIGQ9J000IDhoOCcvPjwvc3ZnPg==);
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

[type=checkbox]:indeterminate:hover,
[type=checkbox]:indeterminate:focus {
    border-color: transparent;
    background-color: currentColor
}

[type=file] {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit
}

[type=file]:focus {
    outline: 1px auto -webkit-focus-ring-color
}

[type=submit] {
    -webkit-appearance: listitem
}

.s-has-error {
    --tw-border-opacity: 1 !important;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity)) !important
}

.s-ltr {
    direction: ltr
}

.s-input {
    appearance: none;
    height: 2.5rem;
    width: 100%;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(238, 238, 238, var(--tw-border-opacity));
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms;
    transition-duration: 300ms
}

.s-input:focus {
    border-color: var(--color-main);
    --tw-ring-color: transparent
}

.dark .s-input {
    --tw-border-opacity: 1;
    border-color: rgba(82, 82, 91, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(82, 82, 91, var(--tw-bg-opacity))
}

.dark .s-input:focus {
    border-color: var(--color-main)
}

@media(min-width: 640px) {
    .s-input {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.s-hidden {
    display: none
}

.s-block {
    display: block
}

.s-form-control {
    display: block;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    border-color: #f0f2f5;
    background-color: #f5f7f9;
    padding: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #222;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -webkit-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -moz-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -ms-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -o-transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.s-form-control:focus {
    background-color: #f0f2f5;
    outline: none;
    box-shadow: 0 0 5px inset rgb(0 0 0/1%);
    border-color: #f0f2f5
}

.s-form-label {
    margin-bottom: .5rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(17 24 39/var(--tw-text-opacity))
}

.s-form-group {
    margin-bottom: 1.25rem
}

.s-checkbox {
    cursor: pointer;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    width: 18px;
    height: 18px;
    border-width: 1px;
    border-radius: 4px;
    display: grid;
    align-content: center;
    justify-content: center;
    place-content: center
}

.s-checkbox:before {
    content: '';
    width: 10px;
    height: 10px;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #444;
    background-color: #444
}

.s-checkbox:checked:before {
    transform: scale(1)
}

.s-checkbox * {
    pointer-events: none
}

.s-checkbox::before {
    --tw-content: '';
    content: var(--tw-content)
}

.s-font-default {
    margin-top: .75rem;
    margin-bottom: .75rem;
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont
}

.s-form-has-error .s-form-label {
    color: #ff443a
}

.s-form-has-error .s-form-control,
.s-form-has-error .s-tel-input-control,
.s-form-has-error .s-datetime-picker-input {
    border-color: #ff443a;
    color: #ff443a
}

.text-danger {
    --tw-text-opacity: 1;
    color: rgb(239 68 68/var(--tw-text-opacity))
}

.s-scrollbar::-webkit-scrollbar {
    width: 5px
}

.s-scrollbar::-webkit-scrollbar-track {
    background-color: #eee
}

.s-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px
}

.s-has-error {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113/var(--tw-border-opacity))
}

.s-has-error:focus {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68/var(--tw-border-opacity))
}

.has-error .s-form-label {
    color: #ff443a !important
}

.has-error .s-form-control,
.has-error .s-tel-input-control,
.has-error .s-datetime-picker-input {
    border-color: #ff443a !important;
    color: #ff443a !important
}

.s-skeleton-wrapper {
    display: block
}

@-webkit-keyframes pulse {
    50% {
        opacity: .5
    }
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.s-skeleton-wrapper {
    -webkit-animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.s-skeleton-item {
    height: 100%;
    width: 100%;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.dark .s-skeleton-item {
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.s-skeleton-item-circular {
    border-radius: 9999px
}

.s-scopes-title {
    margin-bottom: .75rem
}

.s-scopes-header {
    margin-bottom: .5rem;
    display: block;
    text-align: center
}

.s-scopes-header-icon {
    margin: auto;
    display: flex;
    height: 5rem;
    width: 5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(252, 252, 252, var(--tw-bg-opacity))
}

.s-scopes-header-icon svg {
    height: 2rem;
    fill: #414042;
    fill: var(--color-primary)
}

.s-scopes-header-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-scopes-header-subtitle {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.75rem
}

[dir=rtl] .s-scopes-header-subtitle {
    text-align: right
}

.s-scopes-search-wrapper {
    position: relative;
    width: 100%
}

.s-scopes-search-icon {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: .75rem
}

input[type=radio].sr-only div.s-scopes-search-icon {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-scopes-search-icon {
    border-color: var(--color-main)
}

[dir=rtl] .s-scopes-search-icon {
    left: auto;
    right: 0;
    padding-left: 0;
    padding-right: .75rem
}

.s-scopes-search-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: #9ca3af
}

.s-scopes-search-input {
    display: block;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
    padding: .625rem;
    padding-left: 2.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity))
}

.s-scopes-search-input:focus {
    --tw-ring-color: var(--color-primary)
}

[dir=rtl] .s-scopes-search-input {
    padding-left: 0;
    padding-right: 2.5rem
}

.s-scopes-input-wrap {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center
}

.s-scopes-input-wrap:last-child {
    margin-bottom: 0
}

.s-scopes-input {
    height: 1rem;
    width: 1rem;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    color: #414042;
    color: var(--color-primary)
}

.s-scopes-input:focus {
    --tw-ring-color: var(--color-primary)
}

[dir=ltr] .s-scopes-input {
    margin-right: .75rem
}

[dir=rtl] .s-scopes-input {
    margin-left: .75rem
}

.s-scopes-label {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-scopes-select {
    height: 2.5rem;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-scopes-select:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-scopes-container {
    margin-top: 1.25rem;
    max-height: 300px;
    overflow-y: auto;
    padding-left: .5rem
}

[dir=rtl] .s-scopes-container {
    padding-left: 0;
    padding-right: .5rem
}

.s-scopes-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

input[type=radio].s-scopes-sr-only div.absolute {
    transition: all .3s
}

input[type=radio].s-scopes-sr-only:checked~div.absolute {
    border-color: var(--color-main)
}

.s-scopes-is-closed {
    opacity: .5
}

.s-scopes-closed-badge {
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

.s-scopes-clickable {
    cursor: pointer
}

.s-scopes-clickable * {
    pointer-events: none
}

.s-scopes-submit {
    margin-top: 1.5rem;
    height: auto
}

.s-scopes-color-red {
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

.s-scopes-color-green {
    --tw-text-opacity: 1;
    color: rgba(34, 197, 94, var(--tw-text-opacity))
}

.s-scopes-color-gray {
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-scopes-hidden {
    display: none
}

.s-scopes-input-wrap.is-hidden-branch {
    display: none
}

.s-scopes-wrap {
    display: flex;
    max-height: 350px;
    flex-direction: column
}

.s-scopes-wrap .s-placeholder-wrapper {
    display: flex;
    height: 12rem;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.s-scopes-footer {
    margin-top: auto
}

.s-scopes-modal .s-modal-header {
    display: block !important
}

.s-scopes-skeleton .s-list-tile-item-content {
    display: block;
    width: 100%
}

.s-scopes-skeleton .s-scopes-header-title>salla-skeleton {
    margin-top: .75rem;
    margin-bottom: .75rem;
    display: block
}

.s-scopes-skeleton .s-scopes-header-subtitle>salla-skeleton {
    margin-bottom: .75rem;
    display: block
}

.s-scopes-skeleton .s-scopes-skeleton-scopes>salla-skeleton {
    margin-bottom: 1.25rem;
    display: block
}

.s-scopes-skeleton .s-scopes-skeleton-search {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.s-scopes-skeleton .s-scopes-skeleton-search>salla-skeleton {
    margin-bottom: .75rem;
    display: block
}

.s-scopes-skeleton .s-list-tile-item-icon {
    margin-right: 2rem
}

[dir=rtl] .s-scopes-skeleton .s-list-tile-item-icon {
    margin-right: 0;
    margin-left: 2rem
}

.s-scopes-skeleton-btn {
    margin-top: 2rem
}

.s-swiper-container {
    padding-top: .25rem
}

.s-swiper-button-next {
    position: absolute;
    right: -25px !important;
    top: 50%;
    z-index: 10
}

.s-swiper-button-next svg {
    height: 1rem;
    width: 1rem
}

.s-swiper-button-prev {
    position: absolute;
    left: -25px !important;
    top: 50%;
    z-index: 10
}

.s-swiper-button-prev svg {
    height: 1rem;
    width: 1rem
}

.s-placeholder-title {
    margin-bottom: .25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity))
}

.s-placeholder-description {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-placeholder-icon {
    margin-bottom: 1rem;
    fill: #e5e7eb
}

.s-placeholder-icon-xl {
    margin-bottom: 1.5rem
}

.s-placeholder-align-left {
    text-align: left
}

.s-placeholder-align-center {
    text-align: center
}

.s-placeholder-align-right {
    text-align: right
}

.s-placeholder-align-right>.s-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

[dir=rtl] .s-placeholder-align-right>.s-placeholder-icon {
    justify-content: flex-start
}

.s-placeholder-align-center>.s-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.s-placeholder-icon-xs>svg {
    --tw-scale-x: .75;
    --tw-scale-y: .75;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-placeholder-icon-sm>svg {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-placeholder-icon-md>svg {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-placeholder-icon-lg>svg {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-placeholder-icon-xl>svg {
    --tw-scale-x: 2;
    --tw-scale-y: 2;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-placeholder-wrapper {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: block !important
}

.s-button-wrap {
    pointer-events: none
}

.s-button-wrap[width=wide] {
    width: 100%
}

.s-button-wrap[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.s-button-wrap[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.s-button-wrap[type=reset] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.s-button-wrap[loading] .s-button-loader-center .s-button-text {
    opacity: 0
}

.s-button-element:not(:disabled):not([loading]) {
    pointer-events: auto
}

.s-button-btn {
    position: relative;
    display: inline-flex;
    flex: 1 1 0%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: .375rem;
    border-style: solid;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: .625rem;
    padding-top: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-button-btn:hover {
    opacity: .8
}

.s-button-wrap svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: currentColor
}

.s-button-icon {
    position: relative;
    margin-left: .25rem;
    margin-right: .25rem;
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px !important;
    padding: 0 !important;
    font-weight: 500;
    line-height: 1 !important;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-button-icon .s-button-text {
    display: flex
}

.s-button-icon.s-button-large {
    height: 3.5rem;
    width: 3.5rem
}

.s-button-icon.s-button-large svg {
    height: 2rem;
    width: 2rem
}

.s-button-icon.s-button-small {
    height: 1.5rem;
    width: 1.5rem
}

.s-button-icon.s-button-small svg {
    height: .875rem;
    width: .875rem
}

.s-button-icon.s-button-small .s-button-loader:before {
    height: .875rem;
    width: .875rem
}

.s-button-link {
    fill: var(--color-primary);
    padding-left: .25rem;
    padding-right: .25rem;
    padding-top: .125rem;
    padding-bottom: .125rem;
    color: var(--color-primary);
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-button-link:hover {
    opacity: .7
}

.s-button-disabled {
    opacity: .5
}

.s-button-fill-none {
    border-width: 0 !important;
    background-color: transparent !important
}

.s-button-outline {
    border-width: 1px;
    border-color: currentColor
}

.s-button-outline:hover {
    border-color: transparent
}

.s-button-outline .s-button-loader:before {
    border-top-color: currentColor;
    border-left-color: currentColor
}

.s-button-solid .s-button-loader:before {
    border-top-color: rgb(255 255 255/var(--tw-border-opacity));
    --tw-border-opacity: 1;
    border-right-color: rgb(255 255 255/var(--tw-border-opacity));
    border-bottom-color: rgb(255 255 255/0.2);
    border-left-color: rgb(255 255 255/0.2)
}

.s-button-primary {
    background-color: var(--color-primary);
    color: var(--color-primary-reverse)
}

.s-button-primary:hover {
    background-color: var(--color-primary-dark)
}

.s-button-success {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-success:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74/var(--tw-bg-opacity))
}

.s-button-danger {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-danger:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity))
}

.s-button-warning {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-warning:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11/var(--tw-bg-opacity))
}

.s-button-gray {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-gray:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128/var(--tw-bg-opacity))
}

.s-button-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-dark:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55/var(--tw-bg-opacity))
}

.s-button-light {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-button-light:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246/var(--tw-bg-opacity))
}

.s-button-primary-outline {
    fill: var(--color-primary);
    color: var(--color-primary)
}

.s-button-primary-outline:hover {
    background-color: var(--color-primary);
    fill: var(--color-primary-reverse);
    color: var(--color-primary-reverse)
}

.s-button-success-outline {
    fill: #22c55e;
    --tw-text-opacity: 1;
    color: rgb(34 197 94/var(--tw-text-opacity))
}

.s-button-success-outline:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-danger-outline {
    fill: #f87171;
    --tw-text-opacity: 1;
    color: rgb(248 113 113/var(--tw-text-opacity))
}

.s-button-danger-outline:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-warning-outline {
    fill: #fbbf24;
    --tw-text-opacity: 1;
    color: rgb(251 191 36/var(--tw-text-opacity))
}

.s-button-warning-outline:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-gray-outline {
    fill: #9ca3af;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-button-gray-outline:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-dark-outline {
    fill: #374151;
    --tw-text-opacity: 1;
    color: rgb(55 65 81/var(--tw-text-opacity))
}

.s-button-dark-outline:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81/var(--tw-bg-opacity));
    fill: #fff;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.s-button-light-outline {
    --tw-border-opacity: 1 !important;
    border-color: rgb(229 231 235/var(--tw-border-opacity)) !important;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    fill: #6b7280;
    --tw-text-opacity: 1;
    color: rgb(107 114 128/var(--tw-text-opacity))
}

.s-button-light-outline:hover {
    --tw-border-opacity: 1 !important;
    border-color: rgb(229 231 235/var(--tw-border-opacity)) !important
}

.s-button-primary-link {
    fill: var(--color-primary);
    color: var(--color-primary)
}

.s-button-success-link {
    fill: #22c55e;
    --tw-text-opacity: 1;
    color: rgb(34 197 94/var(--tw-text-opacity))
}

.s-button-danger-link {
    fill: #f87171;
    --tw-text-opacity: 1;
    color: rgb(248 113 113/var(--tw-text-opacity))
}

.s-button-warning-link {
    fill: #fbbf24;
    --tw-text-opacity: 1;
    color: rgb(251 191 36/var(--tw-text-opacity))
}

.s-button-gray-link {
    fill: #9ca3af;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-button-dark-link {
    fill: #374151;
    --tw-text-opacity: 1;
    color: rgb(55 65 81/var(--tw-text-opacity))
}

.s-button-light-link {
    fill: #6b7280;
    --tw-text-opacity: 1;
    color: rgb(107 114 128/var(--tw-text-opacity))
}

.s-button-small {
    border-radius: .125rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: .375rem;
    padding-top: .25rem;
    font-size: .75rem;
    line-height: 1rem
}

.s-button-large {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.s-button-wide {
    width: 100%
}

.s-button-text {
    pointer-events: none;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-button-loader {
    margin-left: .5rem;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-button-loader::before {
    display: inline-block;
    height: 1rem;
    content: var(--tw-content);
    width: 1rem
}

@-webkit-keyframes spin {
    to {
        content: var(--tw-content);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    to {
        content: var(--tw-content);
        transform: rotate(360deg)
    }
}

.s-button-loader::before {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-radius: 9999px;
    border-width: 2px;
    border-style: solid;
    border-top-color: var(--color-primary);
    border-left-color: var(--color-primary);
    border-bottom-color: rgb(243 244 246/var(--tw-border-opacity));
    --tw-border-opacity: 1;
    border-right-color: rgb(243 244 246/var(--tw-border-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-button-loader-after .s-button-loader {
    flex-direction: row
}

[dir=ltr] .s-button-loader-start.s-button-element {
    padding-right: 2rem;
    padding-left: 2.5rem
}

[dir=rtl] .s-button-loader-start.s-button-element {
    padding-left: 2rem;
    padding-right: 2.5rem
}

[dir=ltr] .s-button-loader-start.s-button-element {
    padding-right: 2rem;
    padding-left: 2.5rem
}

[dir=rtl] .s-button-loader-start.s-button-element {
    padding-left: 2rem;
    padding-right: 2.5rem
}

.s-button-loader-start .s-button-loader {
    position: absolute
}

[dir=ltr] .s-button-loader-start .s-button-loader {
    left: .5rem
}

[dir=rtl] .s-button-loader-start .s-button-loader {
    right: .5rem
}

.s-button-loader-start .s-button-loader {
    position: absolute
}

[dir=ltr] .s-button-loader-start .s-button-loader {
    left: .5rem
}

[dir=rtl] .s-button-loader-start .s-button-loader {
    right: .5rem
}

[dir=ltr] .s-button-loader-end.s-button-element {
    padding-left: 2rem;
    padding-right: 2.5rem
}

[dir=rtl] .s-button-loader-end.s-button-element {
    padding-right: 2rem;
    padding-left: 2.5rem
}

[dir=ltr] .s-button-loader-end.s-button-element {
    padding-left: 2rem;
    padding-right: 2.5rem
}

[dir=rtl] .s-button-loader-end.s-button-element {
    padding-right: 2rem;
    padding-left: 2.5rem
}

.s-button-loader-end .s-button-loader {
    position: absolute
}

[dir=ltr] .s-button-loader-end .s-button-loader {
    right: .5rem
}

[dir=rtl] .s-button-loader-end .s-button-loader {
    left: .5rem
}

.s-button-loader-end .s-button-loader {
    position: absolute
}

[dir=ltr] .s-button-loader-end .s-button-loader {
    right: .5rem
}

[dir=rtl] .s-button-loader-end .s-button-loader {
    left: .5rem
}

.s-button-loader-center .s-button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 !important;
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-infinite-scroll-wrapper {
    margin-top: 1rem;
    text-align: center
}

.s-infinite-scroll-last {
    margin: 0;
    text-align: center
}

.s-infinite-scroll-error {
    margin: 0;
    text-align: center
}

.s-list-tile-item {
    position: relative;
    display: flex;
    align-items: center;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding: .75rem;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
    -webkit-text-decoration-line: none;
    text-decoration-line: none
}

.s-list-tile-item-href {
    cursor: pointer
}

.s-list-tile-item-href * {
    pointer-events: none
}

.s-list-tile-item-icon {
    margin-right: 1rem;
    flex-shrink: 0
}

[dir=rtl] .s-list-tile-item-icon {
    margin-left: 1rem;
    margin-right: 0
}

.s-list-tile-item-title {
    font-size: 1rem;
    line-height: 1.5rem
}

.s-list-tile-item-subtitle {
    font-size: .875rem;
    line-height: 1.25rem
}

.s-loading-fill-color {
    fill: #414042;
    fill: var(--color-primary)
}

.s-localization-modal-title {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity))
}

.s-localization-modal-section {
    margin-bottom: 2rem
}

.s-localization-modal-label-slot {
    flex-grow: 1
}

.s-localization-modal-section-inner {
    margin-top: 1rem
}

.s-localization-modal-section-inner>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.s-localization-modal-item {
    display: flex;
    align-items: center
}

.s-localization-modal-input {
    height: 1rem;
    width: 1rem;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    color: #414042;
    color: var(--color-primary)
}

.s-localization-modal-input:focus {
    --tw-ring-color: var(--color-primary)
}

.s-localization-modal-label {
    display: flex;
    flex-grow: 1;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-localization-modal-label * {
    pointer-events: none
}

[dir=ltr] .s-localization-modal-label {
    margin-left: .75rem
}

[dir=rtl] .s-localization-modal-label {
    margin-right: .75rem
}

.s-localization-modal-flag {
    border-radius: .125rem
}

.s-localization-modal-currency {
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-localization-modal-select {
    height: 2.5rem;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-localization-modal-select:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-localization-modal-skeleton-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column
}

.s-localization-modal-skeleton-content>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.s-localization-modal-skeleton-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.s-localization-modal-skeleton-item-flex {
    display: flex;
    align-items: center
}

.s-localization-modal-skeleton-item-flex salla-skeleton:nth-child(1) {
    margin-right: .75rem
}

[dir=rtl] .s-localization-modal-skeleton-item-flex salla-skeleton:nth-child(1) {
    margin-right: 0;
    margin-left: .75rem
}

.s-login-modal .s-modal-padding {
    padding-top: 60px
}

@media(min-width: 640px) {
    .s-login-modal .s-modal-padding {
        padding-top: 1.5rem
    }
}

.s-login-modal-sub-title {
    margin-bottom: .625rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-login-modal-main-btn {
    position: relative;
    margin-bottom: .625rem;
    box-sizing: content-box;
    display: flex;
    min-width: 0;
    flex: 1 1 0%;
    align-items: center;
    justify-content: space-between
}

.s-login-modal-main-btn>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)))
}

.s-login-modal-main-btn {
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-login-modal-main-btn:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity))
}

[dir=ltr] .s-login-modal-main-btn {
    padding-right: 1rem;
    padding-left: 1.25rem
}

[dir=rtl] .s-login-modal-main-btn>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

[dir=rtl] .s-login-modal-main-btn {
    padding-left: 1rem;
    padding-right: 1.25rem
}

.s-login-modal-main-btn-icon {
    flex-shrink: 0;
    background-color: #414042;
    background-color: var(--color-primary);
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 1.5rem;
    line-height: 2rem
}

.s-login-modal-main-btn-icon svg {
    fill: #fff
}

.s-login-modal-main-btn-text {
    flex: 1 1 0%;
    padding: .75rem;
    font-weight: 700
}

.s-login-modal-main-btn-arrow svg {
    height: 1rem;
    width: 1rem;
    fill: #1f2937
}

.s-login-modal-header-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

[dir=ltr] .s-login-modal-header-icon {
    margin-right: .5rem
}

[dir=rtl] .s-login-modal-header-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-login-modal-header-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-login-modal-header-icon {
        margin-right: 0
    }

    [dir=rtl] .s-login-modal-header-icon {
        margin-left: 0
    }
}

.s-login-modal-header-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    fill: #9ca3af
}

.s-login-modal-label {
    margin-bottom: .5rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-login-modal-input {
    height: 2.5rem;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-login-modal-input:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.dark .s-login-modal-input {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-login-modal-link {
    margin-top: 1.5rem;
    display: block;
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #414042;
    color: var(--color-primary)
}

.s-login-modal-error-message {
    display: block;
    height: 1.75rem;
    padding-top: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity))
}

.s-login-modal-error-message:focus {
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity))
}

.s-login-modal-error-message {
    --tw-border-opacity: 1 !important;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity)) !important
}

.s-login-modal-wrapper {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.55, 0, .1, 1)
}

.s-login-modal-tab {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 500ms
}

.s-login-modal-active {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-login-modal-unactive {
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0
}

[dir=rtl] .s-login-modal-main-btn-arrow {
    transform: scale(-1)
}

.s-login-modal-currentPhone {
    margin-bottom: 1.75rem;
    margin-top: .5rem;
    text-align: center;
    font-size: 14px;
    font-weight: 500
}

.s-login-modal-currentEmail {
    margin-bottom: 1.75rem;
    margin-top: .5rem;
    text-align: center;
    font-size: 14px;
    font-weight: 500
}

.s-login-modal-enter-button {
    margin-top: .5rem;
    display: flex
}

.s-login-modal-custom-fields .s-file-upload-wrapper {
    min-height: 120px
}

.s-login-modal-custom-fields .filepond--list-scroller {
    overflow-y: inherit !important
}

.s-login-modal-custom-fields .filepond--drop-label {
    min-height: 120px !important
}

.s-login-modal-custom-fields .filepond--drop-label {
    cursor: pointer;
    border-radius: .25rem;
    border-width: 1px;
    border-style: dashed;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.s-login-modal-custom-fields .filepond--drop-label * {
    pointer-events: none
}

.s-login-modal-filepond-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.s-login-modal-filepond-placeholder-icon {
    margin-bottom: .25rem
}

.s-login-modal-filepond-placeholder-icon svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: #7c8082
}

.s-loyalty-prize-item.swiper-slide {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: .5rem;
    display: flex;
    width: calc(33.33% - 10px);
    min-width: 200px;
    cursor: pointer;
    flex-direction: column
}

.s-loyalty-prize-item.swiper-slide>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse))
}

.s-loyalty-prize-item.swiper-slide {
    padding: 0 !important
}

.s-loyalty-prize-item.swiper-slide {
    overflow: hidden;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    background-size: cover;
    text-align: center;
    font-size: 1.875rem;
    line-height: 2.25rem
}

.s-loyalty-prize-item.swiper-slide * {
    pointer-events: none
}

.s-loyalty-prize-item-selected {
    --tw-translate-y: -0.125rem !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
}

.s-loyalty-prize-item-selected {
    border-width: 1px;
    border-style: solid;
    border-color: #414042;
    border-color: var(--color-primary);
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.s-loyalty-prize-item-selected .s-loyalty-prize-item-check {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>div {
    height: .625rem;
    width: .625rem;
    border-radius: 9999px;
    background-color: #414042;
    background-color: var(--color-primary)
}

.s-loyalty-prize-item-image {
    height: 9rem;
    width: 100%;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover
}

.s-loyalty-prize-item-title {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700
}

.s-loyalty-prize-item-subtitle {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-loyalty-prize-item-check {
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

input[type=radio].sr-only div.s-loyalty-prize-item-check {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-loyalty-prize-item-check {
    border-color: var(--color-main)
}

[dir=ltr] .s-loyalty-prize-item-check {
    left: 1.25rem
}

[dir=rtl] .s-loyalty-prize-item-check {
    right: 1.25rem
}

.s-loyalty-prize-item-points {
    margin-top: auto !important
}

.s-loyalty-prize-item-points {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-top-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary)
}

.s-loyalty-program-redeem-btn {
    overflow: hidden;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.s-loyalty-header {
    margin-bottom: 1.25rem;
    display: block
}

@media(max-width: 768px) {
    .s-loyalty-modal .s-modal-body {
        max-height: 100%;
        overflow-y: scroll
    }
}

.s-loyalty-skeleton .s-list-tile-item-content {
    display: block;
    width: 100%
}

.s-loyalty-header-icon {
    position: relative;
    display: flex;
    height: 6rem;
    width: 6rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(255, 158, 1, .10196)
}

.s-loyalty-header-icon>img {
    height: 3rem;
    width: 3rem
}

.s-loyalty-header-title {
    margin-bottom: .5rem;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.s-loyalty-header-subtitle {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity))
}

.s-loyalty-activator-icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity))
}

.s-loyalty-activator-icon>svg {
    fill: #fff
}

.s-loyalty-confirmation-modal-content .s-placeholder-title {
    margin-bottom: .75rem
}

.s-loyalty-confirmation-modal-content .s-placeholder-icon svg b {
    --tw-text-opacity: 1;
    color: rgba(251, 146, 60, var(--tw-text-opacity))
}

.s-loyalty-confirmation-modal-content .s-placeholder-description {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.s-loyalty-confirmation-actions {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.s-loyalty-confirmation-actions>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.s-loyalty-confirmation-actions {
    padding: 1.25rem;
    padding-top: .5rem
}

[dir=rtl] .s-loyalty-confirmation-actions>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-loyalty-widget .s-list-tile-item {
    padding: 0 !important
}

.s-loyalty-widget-icon {
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #414042;
    background-color: var(--color-primary)
}

.s-loyalty-widget-icon>svg {
    width: 1.5rem;
    fill: #fff
}

.s-loyalty-after-exchange .s-list-tile-item {
    position: relative;
    justify-content: space-between;
    overflow: hidden;
    border-radius: .25rem;
    padding-top: .75rem;
    padding-bottom: .75rem
}

.s-loyalty-after-exchange .s-list-tile-item::after {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #414042;
    background-color: var(--color-primary);
    opacity: .08;
    --tw-content: '';
    content: var(--tw-content)
}

.s-loyalty-after-exchange .s-list-tile-item .s-list-tile-item-title {
    font-size: 15px
}

.s-loyalty-after-exchange-reset {
    height: 1.5rem
}

.s-loyalty-after-exchange-reset button {
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
    font-size: 15px
}

.s-loyalty-after-exchange-reset button span {
    display: flex;
    --tw-scale-x: .75;
    --tw-scale-y: .75;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center
}

.s-loyalty-after-exchange-reset button svg {
    height: 1.5rem !important;
    width: 1.5rem !important
}

.s-loyalty-after-exchange-reset button svg {
    fill: #f87171
}

.s-loyalty-after-exchange-reset button:hover svg {
    fill: #fff
}

.s-loyalty-after-exchange-action {
    display: flex;
    align-items: center;
    justify-content: center
}

.s-loyalty-placeholder {
    display: flex;
    align-items: center;
    justify-content: center
}

.s-loyalty-skeleton .s-loyalty-header-subtitle>salla-skeleton {
    margin-bottom: .75rem;
    display: block
}

.s-loyalty-skeleton .s-loyalty-prize-item-subtitle>salla-skeleton {
    margin-bottom: .75rem;
    display: block
}

.s-loyalty-skeleton .s-loyalty-header-title {
    margin-bottom: 1.25rem
}

.s-loyalty-skeleton-cards {
    display: flex;
    align-items: center
}

.s-loyalty-skeleton .s-loyalty-prize-item {
    cursor: inherit !important
}

.s-loyalty-skeleton .s-loyalty-prize-item {
    position: relative;
    text-align: center
}

.s-loyalty-skeleton .s-loyalty-prize-item .s-skeleton-wrapper {
    margin-left: auto;
    margin-right: auto
}

.s-loyalty-skeleton .s-loyalty-prize-item-check {
    border-width: 0
}

.s-loyalty-slider {
    margin-bottom: .625rem;
    display: block
}

.s-loyalty-slider .swiper-wrapper {
    height: auto !important
}

.s-loyalty-container {
    padding: .625rem
}

.s-modal-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    overflow: hidden
}

.s-modal-wrapper {
    height: 100%;
    overflow-y: auto;
    text-align: center
}

.s-modal-loader {
    margin-left: .5rem;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-modal-loader::before {
    display: inline-block;
    height: 2.5rem;
    content: var(--tw-content);
    width: 2.5rem
}

@keyframes spin {
    to {
        content: var(--tw-content);
        transform: rotate(360deg)
    }
}

.s-modal-loader::before {
    animation: spin 1s linear infinite;
    border-radius: 9999px;
    border-width: 2px;
    border-style: solid;
    border-top-color: #414042;
    border-top-color: var(--color-primary);
    border-left-color: #414042;
    border-left-color: var(--color-primary);
    border-bottom-color: rgba(243, 244, 246, var(--tw-border-opacity));
    --tw-border-opacity: 1;
    border-right-color: rgba(243, 244, 246, var(--tw-border-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-modal-close {
    position: absolute;
    top: .75rem;
    z-index: 10;
    width: 2.75rem;
    cursor: pointer;
    border-style: none;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding-left: .5rem;
    padding-right: .5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-modal-close * {
    pointer-events: none
}

input[type=radio].sr-only div.s-modal-close {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-modal-close {
    border-color: var(--color-main)
}

[dir=ltr] .s-modal-close {
    right: 0
}

[dir=rtl] .s-modal-close {
    left: 0
}

.s-modal-close svg {
    width: 1.25rem;
    fill: #f87171
}

.s-modal-close svg:hover {
    fill: #ef4444
}

.s-modal-header {
    flex-direction: column
}

.s-modal-header-inner {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    padding-right: 2rem;
    text-align: center
}

[dir=rtl] .s-modal-header-inner {
    padding-left: 2rem;
    padding-right: 0
}

@media(min-width: 640px) {
    .s-modal-header-inner {
        display: block
    }
}

@media(min-width: 768px) {
    .s-modal-header-inner {
        padding: 0 !important
    }
}

.s-modal-header-content {
    display: flex;
    flex-direction: column;
    text-align: left
}

[dir=rtl] .s-modal-header-content {
    text-align: right
}

@media(min-width: 768px) {
    .s-modal-header-content {
        text-align: center
    }

    [dir=rtl] .s-modal-header-content {
        text-align: center
    }
}

.s-modal-header-img {
    margin-left: auto;
    margin-right: auto;
    max-width: 150px
}

@media(min-width: 640px) {
    .s-modal-header-img {
        margin-bottom: 1rem
    }
}

.s-modal-icon {
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    font-size: 1.875rem;
    line-height: 2.25rem
}

[dir=ltr] .s-modal-icon {
    margin-right: .5rem
}

[dir=rtl] .s-modal-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-modal-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-modal-icon {
        margin-right: 0
    }

    [dir=rtl] .s-modal-icon {
        margin-left: 0
    }
}

.s-modal-icon svg {
    fill: #9ca3af
}

.s-modal-bg-normal {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.s-modal-bg-success {
    --tw-border-opacity: 1;
    border-color: rgba(134, 239, 172, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(220, 252, 231, var(--tw-bg-opacity))
}

.s-modal-bg-success svg {
    fill: #16a34a
}

.s-modal-bg-error {
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity))
}

.s-modal-bg-error svg {
    fill: #dc2626
}

.s-modal-bg-primary {
    border-color: #414042;
    border-color: var(--color-primary);
    background-color: #414042;
    background-color: var(--color-primary)
}

.s-modal-bg-primary svg {
    fill: #ff6767;
    fill: var(--color-primary-reverse)
}

.s-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity))
}

@media(min-width: 640px) {
    .s-modal-title {
        margin-bottom: .5rem
    }
}

.s-modal-sub-title {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

@media(min-width: 640px) {
    .s-modal-sub-title {
        margin-bottom: .5rem
    }
}

.s-modal-title-below {
    order: 10
}

.s-modal-body-slot {
    width: 100%
}

.s-modal-body {
    position: fixed;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 100%;
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    overflow: hidden;
    border-radius: .25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

[dir=ltr] .s-modal-body {
    text-align: left
}

[dir=rtl] .s-modal-body {
    text-align: right
}

@media(min-width: 640px) {
    .s-modal-body {
        position: relative;
        margin-top: 2rem;
        margin-bottom: 2rem;
        --tw-translate-y: 0px;
        --tw-scale-x: .95;
        --tw-scale-y: .95;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        overflow: visible;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem
    }
}

@media(min-width: 768px) {
    .s-modal-body {
        left: auto;
        left: initial;
        bottom: auto;
        bottom: initial
    }
}

.s-modal-padding {
    padding: 1rem;
    padding-top: 1.5rem
}

@media(min-width: 640px) {
    .s-modal-padding {
        padding: 1.5rem
    }
}

.s-modal-spacer {
    display: inline-block;
    height: 100vh
}

.s-modal-align-middle {
    vertical-align: bottom
}

@media(min-width: 640px) {
    .s-modal-align-middle {
        vertical-align: middle
    }
}

.s-modal-align-top {
    vertical-align: bottom
}

@media(min-width: 640px) {
    .s-modal-align-top {
        vertical-align: top
    }
}

.s-modal-align-bottom {
    vertical-align: bottom
}

.s-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
    --tw-bg-opacity: 0.75;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

.s-modal-overlay-leaving {
    opacity: 0
}

.s-modal-entering {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

@media(min-width: 640px) {
    .s-modal-entering {
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }
}

.s-modal-leaving {
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0
}

@media(min-width: 640px) {
    .s-modal-leaving {
        --tw-translate-y: 0px;
        --tw-scale-x: .95;
        --tw-scale-y: .95;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }
}

.s-modal-is-center {
    align-items: center
}

@media(min-width: 640px) {
    .s-modal-is-center {
        text-align: center
    }

    .s-modal-xs {
        max-width: 380px
    }

    .s-modal-sm {
        max-width: 480px
    }
}

@media(min-width: 768px) {
    .s-modal-md {
        max-width: 768px
    }
}

.s-modal-lg {
    max-width: 992px
}

.s-modal-xl {
    max-width: 1280px
}

.s-modal-full {
    height: 100%;
    width: 100%
}

@media(min-width: 768px) {
    .s-modal-full {
        height: calc(100% - 70px);
        width: calc(100% - 70px)
    }
}

.s-rating-stars-wrapper {
    display: inline-flex
}

.s-rating-stars-btn-star {
    border-width: 0;
    padding-left: .125rem;
    padding-right: .125rem;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-rating-stars-large {
    font-size: 1.5rem;
    line-height: 2rem
}

.s-rating-stars-medium {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.s-rating-stars-small {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.s-rating-stars-mini {
    font-size: .75rem;
    line-height: 1rem
}

.s-rating-stars-hovered {
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity))
}

.s-rating-stars-selected {
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity))
}

.s-offer-modal-body {
    display: flex;
    overflow-x: auto;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 24px;
    padding-bottom: 32px;
    -webkit-overflow-scrolling: touch
}

.s-offer-modal-body::-webkit-scrollbar {
    display: none
}

.s-offer-modal-badge {
    margin-bottom: .625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

[dir=ltr] .s-offer-modal-badge {
    margin-left: .625rem
}

[dir=rtl] .s-offer-modal-badge {
    margin-left: .625rem
}

[dir=ltr] .s-offer-modal-badge-icon {
    margin-left: .375rem
}

[dir=rtl] .s-offer-modal-badge-icon {
    margin-left: .375rem
}

.s-offer-modal-badge-icon svg {
    margin-bottom: 1rem;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    fill: #414042;
    fill: var(--color-primary)
}

.s-offer-modal-badge-text {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700
}

.s-offer-modal-cat-item.swiper-slide {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    height: 9rem;
    max-width: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding: .75rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 500ms
}

.s-offer-modal-cat-item.swiper-slide:hover {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
    --tw-shadow: 5px 10px 99px rgba(43, 45, 52, 0.05098);
    --tw-shadow-colored: 5px 10px 99px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-offer-modal-product.swiper-slide {
    display: flex;
    width: 70%;
    flex-shrink: 0;
    flex-grow: 1;
    flex-direction: column
}

@media(min-width: 640px) {
    .s-offer-modal-product.swiper-slide {
        width: 40%
    }
}

@media(min-width: 1024px) {
    .s-offer-modal-product.swiper-slide {
        width: 28%
    }
}

.s-offer-modal-product-image-wrap {
    position: relative;
    margin-bottom: 1rem;
    display: block;
    height: 8rem;
    overflow: hidden;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity))
}

.s-offer-modal-product-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.s-offer-modal-not-available {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.s-offer-modal-product-info {
    margin-bottom: 1rem
}

.s-offer-modal-product-name {
    margin-bottom: .375rem;
    display: inline-block;
    width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-offer-modal-product-name:hover {
    color: #414042;
    color: var(--color-primary)
}

.s-offer-modal-product-price {
    margin-bottom: 1.25rem;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700
}

@media(min-width: 640px) {
    [dir=ltr] .s-offer-modal-product-price {
        margin-left: .5rem
    }

    [dir=rtl] .s-offer-modal-product-price {
        margin-right: .5rem
    }
}

@media(min-width: 768px) {
    .s-offer-modal-product-price {
        margin-bottom: 0
    }
}

.s-offer-modal-product-sale-price {
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity))
}

.s-offer-modal-product-old-price {
    margin-left: .25rem;
    margin-right: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    text-decoration-line: line-through
}

.s-offer-modal-btn-wrap {
    margin-top: auto
}

.s-offer-modal-header-icon {
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

[dir=ltr] .s-offer-modal-header-icon {
    margin-right: .5rem
}

[dir=rtl] .s-offer-modal-header-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-offer-modal-header-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-offer-modal-header-icon {
        margin-right: 0
    }

    [dir=rtl] .s-offer-modal-header-icon {
        margin-left: 0
    }
}

.s-offer-modal-header-icon svg {
    height: 1.75rem;
    width: 1.75rem;
    flex-shrink: 0;
    fill: #9ca3af
}

.s-offer-modal-footer {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

@media(min-width: 640px) {
    .s-offer-modal-footer {
        margin-top: 2rem;
        flex-direction: row
    }
}

.s-offer-modal-expiry {
    margin-bottom: 1.25rem
}

@media(min-width: 768px) {
    .s-offer-modal-expiry {
        margin-bottom: 0
    }
}

.s-offer-modal-remember-label {
    display: flex;
    cursor: pointer;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-offer-modal-remember-label * {
    pointer-events: none
}

.s-offer-modal-remember-label:hover {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

@media(min-width: 640px) {
    [dir=ltr] .s-offer-modal-remember-label {
        margin-left: .5rem
    }

    [dir=rtl] .s-offer-modal-remember-label {
        margin-right: .5rem
    }
}

.s-offer-modal-remember-input {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    color: #414042;
    color: var(--color-primary)
}

.s-offer-modal-remember-input:focus {
    --tw-ring-color: transparent
}

.s-offer-modal-slider-centered .swiper-wrapper {
    justify-content: center
}

.s-offer-modal-slider-centered .s-offer-modal-slider-item {
    display: flex;
    max-width: 28%;
    flex-shrink: 0;
    flex-grow: 1;
    flex-direction: column
}

.s-offer-modal-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.s-offer-modal-skeleton-items {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    width: 100%;
    align-items: center
}

.s-offer-modal-skeleton-item {
    cursor: inherit !important
}

.s-offer-modal-skeleton-item {
    position: relative;
    margin-right: 1.25rem;
    width: 33.333333%;
    text-align: center
}

.s-offer-modal-skeleton-item:last-child {
    margin-right: 0
}

[dir=rtl] .s-offer-modal-skeleton-item {
    margin-right: 0;
    margin-left: 1.25rem
}

[dir=rtl] .s-offer-modal-skeleton-item:last-child {
    margin-left: 0
}

.s-offer-modal-skeleton-header {
    width: 100%
}

.s-offer-modal-skeleton-header salla-skeleton {
    margin-left: auto;
    margin-right: auto
}

.s-offer-modal-skeleton-header salla-skeleton:nth-child(1) {
    margin-bottom: 1.25rem
}

.s-offer-modal-skeleton-header salla-skeleton:nth-child(2) {
    margin-bottom: .75rem
}

.s-offer-modal-skeleton-header salla-skeleton:nth-child(3) {
    margin-bottom: 1.25rem
}

.s-offer-modal-skeleton-item-subtitle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between
}

.s-offer-modal-skeleton-item-subtitle div svg {
    height: 1rem;
    width: 1rem;
    fill: currentColor;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity))
}

.s-offer-modal-skeleton-item-title {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.s-offer-modal-skeleton-footer {
    margin-top: 1.5rem;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between
}

.s-offer-modal-discount-table {
    width: 100%;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(238, 238, 238, var(--tw-border-opacity))
}

.s-offer-modal-discount-table table {
    width: 100%;
    text-align: left;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(119, 119, 119, var(--tw-text-opacity))
}

.s-offer-modal-discount-table tr {
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(238, 238, 238, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(252, 252, 252, var(--tw-bg-opacity))
}

.s-offer-modal-discount-table tr:last-child {
    border-bottom-width: 0
}

.s-offer-modal-discount-table tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

[dir=rtl] .s-offer-modal-discount-table tr td {
    text-align: right
}

.s-offer-modal-discount-table-cell {
    text-align: right
}

[dir=rtl] .s-offer-modal-discount-table-cell {
    text-align: left !important
}

.s-offer-modal-type-discounts-table .s-modal-body {
    position: relative !important
}

.s-product-availability-wrap {
    width: 100%
}

.s-product-availability-subscribed {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(34, 197, 94, var(--tw-text-opacity))
}

.s-product-availability-subs-icon svg {
    margin-left: .5rem;
    margin-right: .5rem;
    width: 1.25rem;
    fill: #22c55e
}

.s-product-availability-body {
    position: relative;
    z-index: 50
}

.s-product-availability-header-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

[dir=ltr] .s-product-availability-header-icon {
    margin-right: .5rem
}

[dir=rtl] .s-product-availability-header-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-product-availability-header-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-product-availability-header-icon {
        margin-right: 0
    }

    [dir=rtl] .s-product-availability-header-icon {
        margin-left: 0
    }
}

.s-product-availability-header-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    fill: #9ca3af
}

.s-product-availability-label {
    margin-bottom: .625rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

[dir=ltr] .s-product-availability-label {
    text-align: left
}

[dir=rtl] .s-product-availability-label {
    text-align: right
}

.s-product-availability-input {
    height: 2.5rem;
    width: 100%;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-product-availability-input:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.dark .s-product-availability-input {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-product-availability-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between
}

.s-product-availability-footer>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-product-availability-footer>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-product-availability-footer-btn {
    width: 100%
}

.s-product-availability-error-msg {
    display: block;
    height: 1.75rem;
    padding-top: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity))
}

.s-product-availability-error-msg:focus {
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity))
}

.s-product-availability-error-msg {
    --tw-border-opacity: 1 !important;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity)) !important
}

.s-select-lable {
    margin-bottom: .5rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(17 24 39/var(--tw-text-opacity))
}

.dark .s-select-lable {
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-select-underline {
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-width: 0;
    border-bottom-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235/var(--tw-border-opacity));
    background-color: transparent;
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-left: 0;
    padding-right: 0;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(107 114 128/var(--tw-text-opacity))
}

.s-select-underline:focus {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235/var(--tw-border-opacity));
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.dark .s-select-underline {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81/var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-select-outlined {
    display: block;
    width: 100%;
    border-radius: .5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251/var(--tw-bg-opacity));
    padding: .625rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(17 24 39/var(--tw-text-opacity))
}

.s-select-outlined:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity));
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))
}

.dark .s-select-outlined {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.dark .s-select-outlined::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175/var(--tw-placeholder-opacity))
}

.dark .s-select-outlined::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175/var(--tw-placeholder-opacity))
}

.dark .s-select-outlined:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity));
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))
}

.s-select-x-large {
    height: 5rem
}

.s-select-large {
    height: 4rem
}

.s-select-normal {
    height: 3rem
}

.s-select-small {
    height: 3rem
}

.s-select-x-small {
    height: 2.5rem
}

.s-select-field {
    margin: 0;
    width: 100%;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175/var(--tw-border-opacity));
    padding-left: .5rem;
    padding-right: .5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.s-select-hint {
    margin-top: .25rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(55 65 81/var(--tw-text-opacity))
}

.flatpickr-calendar.open {
    z-index: 999999999
}

.s-datetime-picker-input {
    width: 100%;
    min-height: 40px;
    padding: 0 15px;
    font-family: 15px;
    font-size: .9333333333rem;
    color: #222;
    background-color: #f5f7f9;
    border-radius: 4px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    border: 1px solid #f0f2f5;
    box-shadow: none
}

.s-datetime-picker-input:focus {
    box-shadow: 0 0 5px inset rgb(0 0 0/1%);
    background-color: #f0f2f5;
    outline: none;
    border: 1px solid #f0f2f5
}

.flatpickr-day.selected {
    background: #414042;
    background: var(--color-primary);
    border-color: #414042;
    border-color: var(--color-primary)
}

.flatpickr-day.selected:hover {
    background: #414042;
    background: var(--color-primary);
    border-color: #414042;
    border-color: var(--color-primary);
    opacity: .8
}

.flatpickr-months {
    position: relative;
    padding: 10px;
    background: #414042;
    background: var(--color-primary);
    border-radius: 4px 4px 0 0
}

.flatpickr-months * {
    color: #fff
}

.flatpickr-months .flatpickr-current-month {
    height: auto;
    padding: 0
}

.flatpickr-months .flatpickr-month {
    padding-top: 4px
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 20px
}

.flatpickr-months .flatpickr-monthDropdown-months {
    padding: 0;
    margin: 0;
    margin-right: 15px;
    padding-right: 5px
}

.flatpickr-months .flatpickr-monthDropdown-months,
.flatpickr-months .numInputWrapper {
    background: 0 0 !important
}

.flatpickr-months .flatpickr-monthDropdown-months,
.flatpickr-months .numInputWrapper {
    font-size: var(--font-base);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 55px
}

@media(max-width: 768px) {
    [dir=rtl] .flatpickr-calendar {
        right: 30px !important
    }
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #414042;
    border-bottom-color: var(--color-primary)
}

.flatpickr-calendar.open {
    z-index: 99999999999
}

.s-datetime-picker-input {
    display: block;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    border-color: #f0f2f5;
    background-color: #f5f7f9;
    padding: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #222;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -webkit-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -moz-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -ms-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -o-transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.s-datetime-picker-input:focus {
    background-color: #f0f2f5;
    outline: none;
    box-shadow: 0 0 5px inset rgb(0 0 0/1%);
    border-color: #f0f2f5
}

.flatpickr-day.selected {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.flatpickr-day.selected:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    opacity: .8
}

.flatpickr-months {
    position: relative;
    padding: 10px;
    background: var(--color-primary);
    border-radius: 4px 4px 0 0
}

.flatpickr-months * {
    color: #fff
}

.flatpickr-months .flatpickr-current-month {
    height: auto;
    padding: 0
}

.flatpickr-months .flatpickr-month {
    padding-top: 4px
}

.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 20px
}

.flatpickr-months .flatpickr-monthDropdown-months {
    padding: 0;
    margin: 0;
    margin-right: 15px;
    padding-right: 5px
}

.flatpickr-months .flatpickr-monthDropdown-months,
.flatpickr-months .numInputWrapper {
    font-size: var(--font-base);
    background: 0 0 !important;
    appearance: none;
    min-width: 55px
}

.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
    border-bottom-color: var(--color-primary)
}

.s-gifting-widget .s-list-tile-item-icon {
    display: none
}

.s-gifting-widget .s-button-text {
    display: flex
}

.s-gifting-widget .s-list-tile-item {
    flex-direction: column;
    justify-content: space-between;
    border-radius: .75rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding: 1.25rem;
    text-align: center
}

@media(min-width: 768px) {
    .s-gifting-widget .s-list-tile-item {
        flex-direction: row;
        text-align: left
    }

    [dir=rtl] .s-gifting-widget .s-list-tile-item {
        text-align: right
    }
}

.s-gifting-widget-action button {
    margin-top: 1rem;
    border-radius: 9999px;
    --tw-border-opacity: 1;
    border-color: rgba(232, 232, 232, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity))
}

@media(min-width: 768px) {
    .s-gifting-widget-action button {
        margin-top: 0
    }
}

.s-gifting-modal-header {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.s-gifting-modal .s-modal-header {
    display: block
}

.s-gifting-modal-icon {
    margin-bottom: 1.25rem;
    display: flex;
    height: 5rem;
    width: 5rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    font-size: 1.875rem;
    line-height: 2.25rem
}

.s-gifting-modal-title {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between
}

.s-gifting-modal-title::before {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-gifting-modal-title::after {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-gifting-modal-badge-wrapper {
    display: flex;
    align-items: center;
    padding-left: .75rem;
    padding-right: .75rem
}

.s-gifting-modal-badge {
    margin-right: .5rem;
    border-radius: .5rem;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    padding-left: .5rem;
    padding-right: .5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: .875rem;
    line-height: 1.25rem
}

[dir=rtl] .s-gifting-modal-badge {
    margin-right: 0;
    margin-left: .5rem
}

.s-gifting-modal-uploader.has-bg {
    position: relative
}

.s-gifting-modal-uploader.has-bg .s-gifting-remove-preview {
    pointer-events: auto;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-gifting-modal-uploader-title {
    margin-bottom: .5rem;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-gifting-steps-wrapper {
    position: relative
}

.s-gifting-steps-wrapper .s-button-wrap {
    pointer-events: auto !important
}

.is-current-step-2 .gift-step-1,
.is-current-step-1 .gift-step-2 {
    pointer-events: none;
    z-index: -1
}

.s-gifting-step-one {
    padding-top: 1.25rem
}

.s-gifting-step-two {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 100%;
    --tw-translate-x: -105%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    flex-direction: column;
    opacity: 0
}

input[type=radio].sr-only div.s-gifting-step-two {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-gifting-step-two {
    border-color: var(--color-main)
}

.s-gifting-step-one .swiper-wrapper {
    height: 100px
}

.s-gifting-step-one .swiper-slide {
    width: auto !important
}

.s-gifting-step-one .filepond--list-scroller {
    overflow-y: hidden
}

.s-gifting-step-one .swiper-wrapper img {
    border-radius: .375rem;
    -o-object-fit: cover;
    object-fit: cover
}

.s-gifting-step-one .filepond--root {
    height: 230px
}

.s-gifting-step-one .filepond--list {
    left: 0 !important;
    height: 100% !important
}

.s-gifting-step-one .filepond-bg {
    position: absolute;
    top: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    border-radius: .25rem;
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
    background-size: cover
}

input[type=radio].sr-only div.s-gifting-step-one .filepond-bg {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-gifting-step-one .filepond-bg {
    border-color: var(--color-main)
}

.s-gifting-step-one .s-slider-button-next {
    top: 35% !important
}

.s-gifting-step-one .s-slider-button-next button {
    height: 35px;
    width: 35px;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-gifting-step-one .s-slider-button-prev {
    top: 35% !important
}

.s-gifting-step-one .s-slider-button-prev button {
    height: 35px;
    width: 35px;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-gifting-tel-input .s-tel-input-control {
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity))
}

.s-gifting-tel-input .s-tel-input-error-msg {
    display: none
}

.s-gifting-step-two-footer {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.s-gifting-step-two-footer>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-gifting-step-two-footer {
    flex-direction: row-reverse
}

.s-gifting-step-two-footer a {
    border-radius: .375rem;
    border-width: 1px;
    border-color: #414042;
    border-color: var(--color-primary);
    fill: #414042;
    fill: var(--color-primary);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
    padding-right: 25px
}

.s-gifting-step-two-footer a svg {
    height: 1.25rem;
    width: 1.25rem
}

.s-gifting-step-two .s-form-group.s-form-has-error .s-tel-input-control {
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 68, 58, var(--tw-border-opacity)) !important
}

.s-gifting-selectText {
    margin-bottom: 20px !important;
    margin-top: 10px
}

.s-gifting-schedule .s-form-label {
    margin-bottom: 0 !important
}

.s-gifting-schedule {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.s-gifting-schedule>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-gifting-schedule>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-gifting-clickable {
    cursor: pointer
}

.s-gifting-clickable * {
    pointer-events: none
}

.s-gifting-remove-preview {
    pointer-events: none;
    position: absolute;
    top: -7px;
    left: -7px;
    z-index: 10;
    display: flex;
    height: 1.25rem;
    width: 1.25rem;
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-gifting-remove-preview * {
    pointer-events: none
}

input[type=radio].sr-only div.s-gifting-remove-preview {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-gifting-remove-preview {
    border-color: var(--color-main)
}

[dir=rtl] .s-gifting-remove-preview {
    left: auto;
    left: initial;
    right: -7px
}

.s-gifting-remove-preview svg {
    height: 100%;
    width: 15px;
    fill: #fff
}

.s-gifting-textarea {
    transition-property: all;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.s-gifting-calendar-hint {
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity))
}

.s-gifting-calendar.shown {
    margin-top: .75rem;
    height: 75px;
    opacity: 1
}

.s-gifting-textarea.shown {
    height: 122px;
    opacity: 1
}

.s-gifting-calendar.hide {
    pointer-events: none;
    visibility: hidden;
    margin: 0;
    height: 0;
    opacity: 0
}

.s-gifting-textarea.hide {
    pointer-events: none;
    visibility: hidden;
    margin: 0;
    height: 0;
    opacity: 0
}

.s-gifting-filepond-placeholder-icon svg {
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    width: 3rem;
    fill: #e5e7eb
}

.s-gifting-filepond-placeholder-text {
    font-size: .75rem !important;
    line-height: 1rem !important
}

.s-gifting-filepond-placeholder-text {
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
    margin-top: .75rem;
    margin-bottom: .75rem;
    font-family: dinnextltarabic, -apple-system, BlinkMacSystemFont;
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont
}

.s-gifting-skeleton-content salla-skeleton:nth-child(1) {
    margin-bottom: .75rem
}

.s-gifting-skeleton-content salla-skeleton:nth-child(2) {
    margin-bottom: 1.25rem
}

.s-gifting-skeleton-content salla-skeleton:nth-child(3) {
    margin-bottom: .75rem
}

.s-gifting-skeleton-content salla-skeleton:nth-child(4) {
    margin-bottom: 1.25rem
}

.s-gifting-skeleton .s-gifting-modal-header salla-skeleton {
    margin-bottom: 1.25rem
}

.s-gifting-skeleton .s-gifting-modal-title {
    margin-bottom: 1.25rem
}

.s-gifting-image {
    margin-left: 5px;
    margin-right: 5px
}

.s-product-size-guide-wrapper .s-modal-title,
.s-product-size-guide-wrapper .s-tabs-content-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important
}

.s-product-size-guide-wrapper .s-tabs-content {
    max-height: 70vh;
    overflow: auto
}

.s-product-size-guide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center
}

.s-product-size-guide-skeleton-table {
    margin-top: 1.25rem;
    width: 100%;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    line-height: 1.25rem
}

.s-product-size-guide-skeleton-table td {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding: .5rem;
    line-height: 1.25rem
}

.s-product-size-guide-header-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

[dir=ltr] .s-product-size-guide-header-icon {
    margin-right: .5rem
}

[dir=rtl] .s-product-size-guide-header-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-product-size-guide-header-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-product-size-guide-header-icon {
        margin-right: 0
    }

    [dir=rtl] .s-product-size-guide-header-icon {
        margin-left: 0
    }
}

.s-product-size-guide-header-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    fill: #9ca3af
}

.s-product-size-guide-skeleton-content {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column
}

.s-product-size-guide-skeleton-content>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse))
}

.s-product-size-guide-skeleton-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.s-product-size-guide-skeleton-header>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-product-size-guide-skeleton-header>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-product-size-guide-skeleton-header>salla-skeleton {
    flex: 1 1 0%
}

.s-quantity-input-container {
    display: flex !important;
    height: 2.5rem !important;
    align-items: stretch !important;
    border-radius: .375rem !important;
    border-width: 1px !important;
    font-size: .875rem !important;
    line-height: 1.25rem !important;
    border:1px solid rgba(229, 231, 235, var(--tw-border-opacity)) !important
}

.s-quantity-input-input {
    width: 3rem !important;
    border-width: 1px !important;
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
    --tw-border-opacity: 1 !important;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important;
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    text-align: center !important;
    font-weight: 700 !important;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0) !important;
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow) !important;
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow) !important
}

.s-quantity-input-input:focus {
    --tw-border-opacity: 1 !important;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important
}

.s-quantity-input-button {
    width: 2.75rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-quantity-input-button:hover {
    color: #414042;
    color: var(--color-primary)
}

.s-rating-modal-wrapper {
    margin-bottom: 2.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.55, 0, .1, 1)
}

.s-rating-modal-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.s-rating-modal-btn {
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-rating-modal-btn:hover {
    color: var(--color-primary-dark)
}

.s-rating-modal-dots {
    position: absolute;
    left: 50%;
    display: flex;
    flex: 1 1 0%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    justify-content: center
}

.s-rating-modal-dots>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)))
}

.s-rating-modal-dots {
    text-align: center
}

input[type=radio].sr-only div.s-rating-modal-dots {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-rating-modal-dots {
    border-color: var(--color-main)
}

[dir=rtl] .s-rating-modal-dots>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-rating-modal-step-dot {
    height: .625rem;
    width: .625rem;
    border-radius: 9999px;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-rating-modal-step {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 500ms
}

.s-rating-modal-active {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-rating-modal-unactive {
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0
}

.s-rating-modal-hidden {
    display: none !important
}

.s-rating-modal-unvisiable {
    pointer-events: none;
    opacity: 0
}

.s-rating-modal-step-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem
}

.s-rating-modal-product-details {
    position: relative;
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    padding-bottom: 1rem
}

.s-rating-modal-rounded-icon {
    margin-bottom: 1rem;
    display: flex;
    height: 7rem;
    width: 7rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.s-rating-modal-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.s-rating-modal-store-logo {
    width: 4rem;
    -o-object-fit: contain;
    object-fit: contain
}

.s-rating-modal-shipping-logo {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.s-rating-modal-shipping-icon {
    font-size: 3rem;
    line-height: 1;
    color: #414042;
    color: var(--color-primary)
}

.s-rating-modal-comment {
    height: 5rem !important
}

.s-rating-modal-comment {
    margin-bottom: .5rem;
    width: 100%;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-rating-modal-comment:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.dark .s-rating-modal-comment {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-rating-modal-validation-msg {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-rating-modal-validation-msg {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-rating-modal-validation-msg {
    border-color: var(--color-main)
}

.s-rating-modal-product {
    margin-bottom: 1.5rem;
    display: flex
}

.s-rating-modal-product>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.s-rating-modal-product:last-child {
    margin-bottom: 0
}

[dir=rtl] .s-rating-modal-product>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-rating-modal-product-img-wrap {
    height: 3.5rem;
    width: 5rem;
    overflow: hidden;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity))
}

.s-rating-modal-product-img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-size: 0
}

.s-rating-modal-product-img::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-rating-modal-product-title {
    margin-bottom: .375rem;
    font-weight: 700;
    line-height: 1.25rem
}

@media(min-width: 768px) {
    .s-rating-modal-product-title {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.s-rating-modal-thanks {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 500ms
}

.s-rating-modal-icon {
    display: inline-flex;
    height: 5rem;
    width: 5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #414042;
    color: var(--color-primary)
}

.s-rating-modal-thanks-title {
    margin-top: 1rem;
    font-weight: 700
}

.s-rating-modal-thanks-msg {
    margin-bottom: 1.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-rating-modal-thanks-btn {
    height: 2.5rem;
    flex: none;
    display: inline-flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: .375rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: .625rem;
    padding-top: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-rating-modal-thanks-btn:hover {
    opacity: .8
}

.s-rating-modal-thanks-btn {
    border-width: 1px;
    border-color: #414042;
    border-color: var(--color-primary);
    background-color: #414042;
    background-color: var(--color-primary);
    color: #ff6767;
    color: var(--color-primary-reverse)
}

@media only screen and (min-width: 1024px) {
    .main-menu .sub-menu .s-rating-modal-thanks-btn {
        padding: 8px 10px 10px
    }
}

.s-rating-modal-thanks-btn {
    display: inline-flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: .375rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: .625rem;
    padding-top: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-rating-modal-thanks-btn:hover {
    opacity: .8
}

.s-rating-modal-thanks-btn {}

.s-rating-modal-thanks-btn .loader {
    width: 0;
    opacity: 0;
    height: 16px;
    transform: scale(0);
    transition: .3s
}

.s-rating-modal-thanks-btn.btn:disabled {
    cursor: default;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-rating-modal-thanks-btn.btn:disabled:hover {
    background-color: transparent
}

.s-rating-modal-thanks-btn:disabled .s-button-text {
    opacity: .7
}

.s-rating-modal-thanks-time {
    margin-top: .75rem;
    display: block;
    height: 1.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-rating-modal-stars-company {
    margin-bottom: 1.25rem
}

.s-rating-modal-stars-product {
    margin-bottom: .25rem
}

.s-rating-modal-bg-gray {
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.s-rating-modal-bg-primary {
    background-color: #414042;
    background-color: var(--color-primary)
}

unicode {
    unicode-bidi: -moz-plaintext;
    unicode-bidi: plaintext
}

.s-search-container {
    position: relative;
    z-index: 1;
    max-height: 14rem;
    border-radius: .375rem;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-search-oval {
    border-radius: 20px
}

.s-search-inline {
    min-width: 220px
}

.s-search-container-open {
    border-radius: 0 !important
}

.s-search-container-open {
    max-height: 24rem
}

.s-search-container-open .s-search-input {
    border-top-left-radius: .375rem !important;
    border-top-right-radius: .375rem !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

.s-search-container-open .s-search-input {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.s-search-no-results .s-search-input {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.s-search-input {
    height: 2.5rem;
    width: 100%;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding-top: 0;
    padding-bottom: .125rem;
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-search-input:focus {
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-ring-color: transparent
}

[dir=ltr] .s-search-input {
    padding-left: 2.5rem
}

[dir=rtl] .s-search-input {
    padding-right: 2.5rem
}

@media(min-width: 640px) {
    .s-search-input {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.s-search-icon-wrap {
    position: absolute;
    top: 50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-search-icon-wrap {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-search-icon-wrap {
    border-color: var(--color-main)
}

[dir=ltr] .s-search-icon-wrap {
    left: 1rem
}

[dir=rtl] .s-search-icon-wrap {
    right: 1rem
}

.s-search-spinner-loader {
    display: block;
    height: 1rem;
    width: 1rem
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.s-search-spinner-loader {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-radius: 9999px;
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    border-right-color: #414042;
    border-right-color: var(--color-primary)
}

.s-search-results {
    position: absolute;
    margin: auto;
    max-height: 24rem;
    width: 100%;
    min-width: 400px;
    max-width: 100%;
    overflow-y: auto;
    border-bottom-right-radius: .375rem;
    border-bottom-left-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

input[type=radio].sr-only div.s-search-results {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-search-results {
    border-color: var(--color-main)
}

.s-search-no-results {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

.s-search-no-results-placeholder {
    padding: 1rem;
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-search-product {
    display: flex;
    height: 100%;
    justify-content: space-around;
    overflow: hidden;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
    background-color: transparent;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-search-product:last-child {
    border-bottom-width: 0
}

.s-search-product:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity))
}

@media(min-width: 480px) {
    .s-search-product {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }
}

.s-search-product-image-container {
    position: relative;
    height: 3.5rem;
    width: 5rem;
    overflow: hidden;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity))
}

.s-search-product-image {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-size: 0
}

.s-search-product-image::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    --tw-content: '';
    content: var(--tw-content)
}

.s-search-product-details {
    flex: 1 1 0%;
    padding-top: .25rem
}

[dir=ltr] .s-search-product-details {
    padding-left: 1rem
}

[dir=rtl] .s-search-product-details {
    padding-right: 1rem
}

@media(min-width: 480px) {
    [dir=ltr] .s-search-product-details {
        padding-left: 1.25rem
    }

    [dir=rtl] .s-search-product-details {
        padding-right: 1.25rem
    }
}

.s-search-product-title {
    margin-bottom: .375rem;
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: flex-start;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity))
}

.s-search-product-price {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary)
}

.s-search-product-regular-price {
    padding-left: .75rem;
    padding-right: .75rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through
}

.s-search-product-not-available {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.s-search-modal .s-modal-wrapper {
    align-items: flex-start;
    padding: 0
}

.s-search-modal .s-modal-spacer {
    display: inline
}

.s-search-modal .s-modal-body {
    padding: 0;
    max-width: 90%;
    margin-top: 3.2rem;
    border-radius: .5rem;
    background: 0 0;
    overflow: visible
}

.s-search-modal .s-modal-close {
    top: 50%;
    transform: translateY(-50%)
}

.s-social-share-wrapper {
    position: relative
}

.s-social-share-btn span {
    pointer-events: none
}

.s-social-share-btn span svg {
    height: 1rem;
    width: 1rem;
    fill: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-social-share-list {
    position: absolute;
    top: 3rem;
    left: 2.5px;
    z-index: 10;
    display: flex;
    height: 0;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 1.5rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    opacity: 0;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

input[type=radio].sr-only div.s-social-share-list {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-social-share-list {
    border-color: var(--color-main)
}

.s-social-share-list.opened {
    height: auto
}

.s-social-share-list a {
    display: block;
    padding: .75rem
}

.s-social-share-list a:hover svg {
    fill: #414042;
    fill: var(--color-primary)
}

.s-social-share-icon svg {
    height: 1.25rem;
    width: 1.25rem
}

.s-tabs-bg-normal {
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity))
}

.s-tabs-header {
    display: flex;
    cursor: pointer;
    align-content: center;
    justify-content: flex-start
}

.s-tabs-header>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.s-tabs-header {
    overflow-x: auto;
    border-bottom-width: 2px;
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-tabs-header * {
    pointer-events: none
}

[dir=rtl] .s-tabs-header>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

@media(min-width: 768px) {
    .s-tabs-header {
        overflow-x: hidden
    }
}

.s-tabs-header-item {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem
}

@media(min-width: 768px) {
    .s-tabs-header-item {
        padding-left: 1.75rem;
        padding-right: 1.75rem
    }
}

.s-tabs-content {
    display: none
}

.s-tabs-content-wrapper {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.s-tabs-content-selected {
    display: block
}

.s-tabs-active {
    background-color: #414042;
    background-color: var(--color-primary);
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.s-tabs-header * {
    pointer-events: auto !important
}

.s-verify-message {
    margin-bottom: 1.75rem;
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-verify-label {
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-verify-codes {
    margin-left: -.25rem;
    margin-right: -.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between
}

.s-verify-input {
    margin-left: .25rem;
    margin-right: .25rem;
    height: 2.5rem;
    width: 100%;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: .5rem;
    padding-right: .5rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-verify-input:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.dark .s-verify-input {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-verify-footer {
    text-align: center
}

.s-verify-submit {
    margin-bottom: 1.25rem;
    width: 100%
}

.s-verify-resend-message {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-verify-timer {
    margin-left: .25rem;
    margin-right: .25rem;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-verify-resend {
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #414042;
    color: var(--color-primary)
}

.s-verify-back {
    position: absolute;
    top: 15px;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
    font-size: 1.125rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

input[type=radio].sr-only div.s-verify-back {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-verify-back {
    border-color: var(--color-main)
}

.s-verify-back:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity))
}

[dir=ltr] .s-verify-back {
    left: 15px
}

[dir=rtl] .s-verify-back {
    right: 15px
}

[dir=ltr] .s-verify-back {
    transform: scale(-1)
}

.s-tel-input-control {
    height: 2.5rem;
    width: 100%;
    border-radius: .375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.s-tel-input-control:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.dark .s-tel-input-control {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-tel-input-error-msg {
    display: block;
    font-size: .75rem;
    line-height: 1rem;
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity))
}

.s-tel-input-error-msg:focus {
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity))
}

.s-tel-input-error-msg {
    --tw-border-opacity: 1 !important;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity)) !important
}

salla-search svg {
    max-width: 16px;
    fill: var(--color-text-lighter)
}

@media screen and (min-width: 991px) {
    [dir=rtl] salla-modal .s-modal-close {
        transform: translateX(12px)
    }

    [dir=ltr] salla-modal .s-modal-close {
        transform: translateX(-12px)
    }
}

salla-modal .s-verify-back svg,
salla-modal .s-modal-close svg {
    max-width: 20px
}

salla-modal .s-modal-close svg {
    fill: #f37172
}

salla-quantity-input .s-quantity-input-button svg {
    max-width: 16px;
    margin-inline: auto;
    fill: var(--color-dark)
}

.btn--share.sharing {
    background: 0 0 !important
}

.btn--share {
    color: rgba(107, 114, 128, var(--tw-text-opacity)) !important
}

salla-rating-stars .s-rating-stars-btn-star svg {
    fill: var(--color-text-muted);
    opacity: .5
}

salla-rating-stars .s-rating-stars-btn-star.s-rating-stars-selected svg {
    fill: var(--color-yellow);
    opacity: 1
}

salla-rating-stars .s-rating-stars-btn-star.s-rating-stars-small svg {
    max-width: 18px
}

.iti-mobile .iti--container {
    z-index: 99999999
}

salla-product-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #f55157 !important
}

salla-product-availability salla-button button {
    border-radius: 50px !important
}

[dir=rtl] salla-product-availability salla-button {
    margin-right: 20px
}

[dir=ltr] salla-product-availability salla-button {
    margin-right: 20px
}

.s-product-availability-subscribed {
    border-radius: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #22c55e1c
}

.s-product-availability-subscribed .s-product-availability-subs-icon svg {
    max-width: 20px;
    fill: #22c55e
}

[dir=rtl] .s-product-availability-subscribed .s-product-availability-subs-icon {
    margin: 0 0 0 10px
}

[dir=ltr] .s-product-availability-subscribed .s-product-availability-subs-icon {
    margin: 0 10px 0 0
}

.s-localization-modal-inner {
    width: 100%
}

@media screen and (max-width: 768px) {
    .s-localization-modal-section-inner {
        max-height: 40rem;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .s-localization-modal-section-inner::-webkit-scrollbar {
        display: none
    }
}

.s-cart-summary-wrapper {
    text-decoration: none;
    color: #7c8082;
    color: var(--color-text);
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    align-items: center;
    font-weight: bolder;
    position: relative;
    display: inline-flex;
    -webkit-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -moz-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -ms-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    -o-transition: all .5s cubic-bezier(.2, 1, .3, 1);
    margin-top: 8px
}

.s-cart-summary-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: #7c8082;
    fill: var(--color-text)
}

.s-cart-summary-count {
    position: absolute;
    top: -8px;
    left: -15px;
    display: inline-flex;
    height: 1.25rem;
    width: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
    padding: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.s-cart-summary-total {
    font-weight: 500
}

@media(max-width: 678px) {
    .s-cart-summary-total {
        display: none
    }
}

input[type=radio].sr-only div.s-cart-summary-count {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-cart-summary-count {
    border-color: var(--color-main)
}

.s-cart-thumb {
    position: fixed;
    transition: all .3s cubic-bezier(.2, 1, .3, 1)
}

[dir=rtl] .s-cart-summary-count {
    left: auto;
    left: initial;
    right: -15px
}

.s-comment-form-input {
    height: 6rem;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    background-color: #f5f7f9
}

.s-comment-form-input:focus {
    outline-style: solid;
    outline-width: 1px;
    outline-offset: 2px;
    outline-color: #414042;
    outline-color: var(--color-primary);
    border: 0
}

.dark .s-comment-form-input {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.dark .s-comment-form-input:focus {
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-comment-form-action {
    margin-bottom: 1rem;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.s-comment-form-action salla-button {
    width: 100%
}

@media(min-width: 768px) {
    .s-comment-form-action salla-button {
        width: auto
    }
}

.s-comment-form-action salla-button button {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

@media(min-width: 768px) {
    .s-comment-form-action salla-button button {
        width: auto
    }
}

.s-comment-form-wrapper {
    display: flex;
    align-items: flex-start
}

.s-comment-form-input {
    height: 6rem;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    background-color: #f5f7f9
}

.s-comment-form-input:focus {
    border-width: 0;
    outline-style: solid;
    outline-width: 1px;
    outline-offset: 2px;
    outline-color: #414042;
    outline-color: var(--color-primary);
    --tw-ring-offset-width: 0px
}

.dark .s-comment-form-input {
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-comment-form-action {
    margin-bottom: 1rem;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.s-comment-form-avatar {
    margin-right: 1.25rem;
    width: 50px;
    border-radius: 9999px
}

[dir=rtl] .s-comment-form-avatar {
    margin-right: 0;
    margin-left: 1.25rem
}

.s-comment-form-content {
    width: 100%
}

.s-comment-form-action salla-button {
    width: 100%
}

@media(min-width: 768px) {
    .s-comment-form-action salla-button {
        width: auto
    }
}

.s-comment-form-action salla-button button {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

@media(min-width: 768px) {
    .s-comment-form-action salla-button button {
        width: auto
    }
}

.s-user-settings-section {
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.s-user-settings-section:first-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem
}

.s-user-settings-section:last-child {
    border-bottom-right-radius: .375rem;
    border-bottom-left-radius: .375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-width: 0
}

.s-user-settings-section .s-list-tile-item {
    align-items: flex-start;
    background-color: transparent;
    padding: 1.25rem
}

@media(min-width: 768px) {
    .s-user-settings-section .s-list-tile-item {
        align-items: center
    }
}

.s-user-settings-section .s-list-tile-item-action {
    margin-left: auto
}

[dir=rtl] .s-user-settings-section .s-list-tile-item-action {
    margin-right: auto;
    margin-left: 0
}

.s-user-settings-section .s-list-tile-item-action button {
    width: 100%;
    padding: 10px
}

.s-user-settings-section-deactivate-user .s-list-tile-item {
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .s-user-settings-section-deactivate-user .s-list-tile-item {
        flex-wrap: nowrap
    }
}

.s-user-settings-section-deactivate-user .s-list-tile-item-icon {
    position: relative;
    top: 5px
}

@media(min-width: 768px) {
    .s-user-settings-section-deactivate-user .s-list-tile-item-icon {
        top: 0
    }
}

@media(max-width: 768px) {
    .s-user-settings-section-deactivate-user .s-list-tile-item-content {
        flex: 1 0 85%
    }

    .s-user-settings-section-deactivate-user .s-list-tile-item-action {
        flex: 1 1 100%;
        margin-top: 1rem
    }
}

.s-user-settings-section-title {
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity))
}

.s-user-settings-section-subtitle {
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-user-settings-section-icon svg {
    height: 1.25rem;
    width: 1.25rem
}

.s-user-settings-confirmation {
    text-align: center
}

.s-user-settings-confirmation svg {
    text-align: center
}

.s-user-settings-confirmation-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

[dir=ltr] .s-user-settings-confirmation-icon {
    margin-right: .5rem
}

[dir=rtl] .s-user-settings-confirmation-icon {
    margin-left: .5rem
}

@media(min-width: 640px) {
    .s-user-settings-confirmation-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        height: 5rem;
        width: 5rem
    }

    [dir=ltr] .s-user-settings-confirmation-icon {
        margin-right: 0
    }

    [dir=rtl] .s-user-settings-confirmation-icon {
        margin-left: 0
    }
}

.s-user-settings-confirmation-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    fill: #9ca3af
}

.s-user-settings-confirmation-warning {
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity))
}

.s-user-settings-confirmation-actions {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.s-user-settings-confirmation-actions>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-user-settings-confirmation-actions>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

salla-user-settings .s-user-settings-section .s-list-tile-item {
    padding: 1rem 0
}

[dir=rtl] salla-user-settings .s-user-settings-section .s-list-tile-item-content {
    padding-left: 15px
}

[dir=ltr] salla-user-settings .s-user-settings-section .s-list-tile-item-content {
    padding-right: 15px
}

salla-user-settings .s-user-settings-section .s-list-tile-item .s-user-settings-section-icon {
    width: 55px;
    height: 55px
}

salla-user-settings .s-user-settings-section .s-list-tile-item .s-user-settings-section-title {
    font-size: 18px;
    margin: 0 0 5px
}

salla-user-settings .s-user-settings-section .s-button-element {
    padding: 6px 12px;
    border: 1px solid var(--color-danger);
    border-radius: 4px
}

.s-toggle {
    cursor: pointer;
    display: inline-block
}

.s-toggle .s-toggle-input {
    position: absolute;
    visibility: hidden
}

.s-toggle .s-toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px
}

.s-toggle .s-toggle-switcher {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 40px;
    height: 25px;
    position: relative;
    vertical-align: middle;
    transition: background .25s
}

.s-toggle .s-toggle-switcher:before,
.s-toggle .s-toggle-switcher:after {
    content: ""
}

.s-toggle .s-toggle-switcher:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
    width: 21px;
    height: 21px;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: left .25s
}

.s-toggle .s-toggle-input:checked+div {
    background: var(--color-success)
}

.s-toggle .s-toggle-input:checked+div.s-toggle-switcher-bg-white {
    border-color: var(--color-success)
}

.s-toggle .s-toggle-input:checked+div.s-toggle-switcher-bg-white:before {
    background: #fff;
    border-color: #fff;
    color: var(--color-text)
}

.s-toggle .s-toggle-input:checked+div:before {
    left: 16px
}

.s-toggle .s-toggle-input:checked+div.s-toggle-switcher-large:before {
    left: 20px
}

.s-toggle .s-toggle-switcher-large {
    width: 50px;
    height: 30px
}

.s-toggle .s-toggle-switcher-large:before {
    width: 26px;
    height: 26px;
    top: 1px;
    left: 2px
}

.s-toggle .s-toggle-switcher-bg-white {
    background: #fff;
    border: 1px solid var(--color-grey-border)
}

.s-toggle .s-toggle-switcher-bg-white:before {
    background: var(--color-grey-border-darker);
    border: 1px solid var(--color-grey-border-darker);
    box-shadow: none
}

.s-toggle .s-toggle-switcher-has-text:before {
    content: attr(data-switcher-text);
    font-family: arial, serif;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-lighter);
    line-height: 26px
}

salla-user-menu div[slot] {
    display: none
}

.s-user-menu-wrapper {
    display: block;
    flex-shrink: 0
}

.s-user-menu-relative-dropdown {
    position: relative
}

.s-user-menu-trigger {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
    align-items: center;
    border-top-right-radius: .375rem;
    border-top-left-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding-left: .625rem;
    padding-right: .625rem;
    padding-top: .875rem;
    padding-bottom: .875rem;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-user-menu-trigger-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 200ms
}

.s-user-menu-toggler::before {
    pointer-events: none;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -2;
    height: 100vh;
    width: 100vw;
    background-color: rgba(113, 113, 122, .74902);
    opacity: 0;
    transition-duration: 300ms;
    --tw-content: '';
    content: var(--tw-content)
}

.s-user-menu-toggler.opened::before {
    pointer-events: auto;
    visibility: visible;
    content: var(--tw-content);
    opacity: 1
}

@media(min-width: 768px) {
    .s-user-menu-toggler.opened::before {
        pointer-events: none;
        visibility: hidden;
        content: var(--tw-content);
        opacity: 0
    }
}

.s-user-menu-toggler.opened .s-user-menu-trigger svg {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-user-menu-toggler.opened .s-user-menu-dropdown {
    visibility: visible;
    --tw-translate-y: 0px;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-user-menu-trigger-avatar {
    display: inline-block;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    -o-object-fit: cover;
    object-fit: cover
}

.s-user-menu-trigger-content {
    margin-left: .5rem;
    margin-right: .25rem
}

[dir=rtl] .s-user-menu-trigger-content {
    margin-right: .5rem;
    margin-left: .25rem
}

.s-user-menu-trigger-avatar-only .s-user-menu-trigger-content {
    display: none
}

.s-user-menu-trigger-avatar-only .s-user-menu-trigger-icon {
    display: none
}

.s-user-menu-trigger-avatar-only .s-user-menu-trigger-avatar {
    border-width: 0
}

.s-user-menu-trigger-hello {
    font-size: 14px;
    --tw-text-opacity: 1;
    color: rgba(153, 153, 153, var(--tw-text-opacity))
}

.s-user-menu-trigger-name {
    margin-top: .125rem;
    font-size: 15px;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, var(--tw-text-opacity))
}

.s-user-menu-trigger-icon {
    margin-left: 10px
}

[dir=rtl] .s-user-menu-trigger-icon {
    margin-left: 0;
    margin-right: 10px
}

.s-user-menu-trigger-text-value {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-user-menu-dropdown {
    visibility: hidden;
    position: fixed;
    bottom: 60px;
    right: 0;
    z-index: -1;
    width: 100%;
    transform-origin: center;
    --tw-translate-y: 2.5rem;
    --tw-scale-y: .9;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    opacity: 0;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    right: 0;
    left: auto
}

[dir=rtl] .s-user-menu-dropdown {
    left: 0;
    right: auto;
    right: initial
}

@media(min-width: 768px) {
    .s-user-menu-dropdown {
        top: 120%;
        position: absolute;
        bottom: auto;
        bottom: initial;
        width: 15rem;
        transform-origin: top right;
        --tw-translate-y: -1rem;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: .375rem;
        border-bottom-left-radius: .375rem;
        --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
        box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
        box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
        transition-duration: 200ms;
        z-index: 3
    }
}

@media(min-width: 1024px) {
    .s-user-menu-dropdown {
        border-top-width: 1px;
        border-color: rgba(209, 213, 219, .3)
    }
}

.s-user-menu-dropdown-list>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * var(--tw-space-y-reverse))
}

.s-user-menu-dropdown-list {
    padding-top: .5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    padding-bottom: 1rem
}

@media(min-width: 1024px) {
    .s-user-menu-dropdown-list {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: .5rem
    }
}

.s-user-menu-dropdown-item a {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    padding-top: .625rem !important;
    padding-bottom: .625rem !important;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, var(--tw-text-opacity)) !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;
    transition-duration: 300ms !important
}

.s-user-menu-dropdown-item {
    display: flex !important
}

.s-user-menu-dropdown-item a:hover {
    background-color: rgba(229, 231, 235, .3)
}

@media(min-width: 640px) {
    .s-user-menu-dropdown-menu-item a {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.s-user-menu-dropdown-item-logout a {
    --tw-text-opacity: 1 !important;
    color: rgba(255, 68, 58, var(--tw-text-opacity)) !important
}

.s-user-menu-dropdown-item-logout a svg {
    fill: #ff443a !important
}

.s-user-menu-dropdown-item a svg {
    margin-right: .75rem;
    height: 1rem;
    width: 1rem;
    fill: #9ca3af
}

[dir=rtl] .s-user-menu-dropdown-item a svg {
    margin-right: 0;
    margin-left: .75rem
}

.s-user-menu-dropdown-header {
    position: relative;
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    border-bottom-width: 1px;
    padding: 1rem
}

@media(min-width: 768px) {
    .s-user-menu-dropdown-header {
        display: none
    }
}

.s-user-menu-dropdown-header img {
    pointer-events: none;
    margin-right: .75rem;
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    -o-object-fit: cover;
    object-fit: cover
}

[dir=rtl] .s-user-menu-dropdown-header img {
    margin-right: 0;
    margin-left: .75rem
}

.s-user-menu-dropdown-header-content span {
    font-size: 14px;
    --tw-text-opacity: 1;
    color: rgba(153, 153, 153, var(--tw-text-opacity))
}

.s-user-menu-dropdown-header-content p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-user-menu-dropdown-header-close {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    z-index: 50;
    border-radius: 9999px
}

input[type=radio].sr-only div.s-user-menu-dropdown-header-close {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-user-menu-dropdown-header-close {
    border-color: var(--color-main)
}

[dir=rtl] .s-user-menu-dropdown-header-close {
    right: auto;
    right: initial;
    left: 1rem
}

.s-user-menu-dropdown-header-close svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: #ef4444
}

.s-user-menu-dropdown-item-badge {
    position: absolute;
    right: .625rem;
    display: flex;
    height: 1.25rem;
    width: 1.25rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
    font-size: .75rem;
    line-height: 1rem;
    line-height: inherit;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-user-menu-dropdown-item-badge {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-user-menu-dropdown-item-badge {
    border-color: var(--color-main)
}

[dir=rtl] .s-user-menu-dropdown-item-badge {
    right: auto;
    right: initial;
    left: .625rem
}

.s-quick-order-dark h1,
.s-quick-order-dark p {
    color: #fff
}

.s-quick-order-container {
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-radius: .25rem;
    padding: 1rem
}

.s-quick-order-button-cont {
    margin-top: .5rem;
    margin-bottom: .5rem;
    display: flex;
    justify-content: space-between
}

.s-quick-order-checkbox-container {
    margin-top: .5rem;
    margin-bottom: .5rem;
    display: flex
}

.s-quick-order-checkbox-container input {
    margin-bottom: .5rem;
    margin-left: .5rem;
    height: 2.5rem;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    padding: .5rem
}

.s-quick-order-expandable {
    max-height: 0;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 100ms;
    transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.s-quick-order-expandable.s-quick-order-shown {
    opacity: 1
}

.s-quick-order-light .s-tel-input-control {
    background: #f5f7f9;
    border: 0
}

.s-quick-order-expandable .s-form-group {
    position: relative;
    flex-grow: 1
}

.s-quick-order-expandable .s-form-group input {
    padding-left: 35px
}

[dir=rtl] .s-quick-order-expandable .s-form-group input {
    padding-right: 35px
}

.s-quick-order-expandable .s-form-group>span {
    position: absolute;
    left: 10px;
    top: 30%;
    z-index: 10
}

input[type=radio].sr-only div.s-quick-order-expandable .s-form-group>span {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-quick-order-expandable .s-form-group>span {
    border-color: var(--color-main)
}

[dir=rtl] .s-quick-order-expandable .s-form-group>span {
    left: auto;
    right: 10px
}

.s-quick-order-expandable .s-form-group span svg {
    height: 1rem;
    width: 1rem;
    fill: #919191
}

.s-quick-order-flex-input {
    display: flex
}

.s-quick-order-flex-input>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-quick-order-flex-input>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-quick-order-flex-input salla-tel-input {
    height: 2.5rem;
    width: 100%
}

.s-quick-order-errors p {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity))
}

.s-quick-order-confirm {
    display: flex;
    align-items: center;
    border-radius: .125rem;
    border-width: 1px;
    border-color: rgba(93, 213, 196, .05098);
    background-color: rgba(93, 213, 196, .05098);
    padding: .5rem;
    --tw-text-opacity: 1;
    color: rgba(45, 212, 191, var(--tw-text-opacity))
}

.s-quick-order-confirm span {
    margin-left: .5rem;
    margin-right: .5rem
}

.s-quick-order-confirm svg {
    height: 1rem;
    width: 1rem;
    fill: #414042;
    fill: var(--color-primary)
}

.s-quick-order-terms .s-form-label {
    margin-bottom: 0 !important
}

.s-quick-order-terms .s-form-label {
    cursor: pointer
}

.s-quick-order-terms .s-form-label * {
    pointer-events: none
}

.s-quick-order-terms {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.s-quick-order-terms>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-quick-order-terms>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-quick-order-terms .s-checkbox::before {
    background-color: transparent;
    content: var(--tw-content);
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-quick-order-terms .s-checkbox:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
    --tw-ring-offset-width: 0px
}

.s-quick-order-btn-close button {
    border-radius: 0
}

.s-product-options-wrapper {
    margin-bottom: 1.25rem;
    display: block;
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding: 1.25rem
}

.s-product-options-option-container {
    margin-bottom: 1.25rem
}

.s-product-options-option-container:last-child {
    margin-bottom: 0
}

.s-product-options-option {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

@media(min-width: 640px) {
    .s-product-options-option {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: flex-start;
        grid-gap: 1rem;
        gap: 1rem
    }
}

.s-product-options-option-error .s-product-options-option-label {
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

.s-product-options-option-content {
    margin-top: .25rem
}

@media(min-width: 640px) {
    .s-product-options-option-content {
        grid-column: span 2/span 2;
        margin-top: 0
    }
}

.s-product-options-option-label {
    margin-bottom: .625rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

@media(min-width: 640px) {
    .s-product-options-option-label {
        margin-top: 1px
    }
}

@media(min-width: 768px) {
    .s-product-options-option-label {
        margin-bottom: 0
    }
}

.s-product-options-option-label b {
    display: block
}

.s-product-options-option-label b span {
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity))
}

.s-product-options-option-label small {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-product-options-colors-wrapper .s-product-options-colors-item {
    margin-right: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    width: 2.5rem;
    white-space: nowrap;
    text-align: center
}

[dir=rtl] .s-product-options-colors-wrapper .s-product-options-colors-item {
    margin-right: 0;
    margin-left: 2rem
}

.s-product-options-colors-wrapper input[type=radio] {
    display: none
}

.s-product-options-colors-wrapper input[type=radio]+label {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    align-items: center
}

.s-product-options-colors-wrapper input[type=radio]+label * {
    pointer-events: none
}

.s-product-options-colors-wrapper input[type=radio]+label div {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-product-options-colors-wrapper input[type=radio]+label div p {
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-product-options-colors-wrapper input[type=radio]+label span {
    margin-bottom: .5rem;
    display: inline-flex;
    height: 30px;
    width: 30px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    border-radius: 9999px;
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    line-height: 2.5rem;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-product-options-colors-wrapper input[type=radio]+label span * {
    pointer-events: none
}

.s-product-options-colors-wrapper input[type=radio]+label span:after {
    height: 14px;
    width: 14px;
    --tw-scale-x: .5;
    --tw-scale-y: .5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    opacity: 0;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --tw-content: '';
    content: var(--tw-content)
}

.s-product-options-colors-wrapper input[type=radio]:checked+label span:after {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-product-options-colors-wrapper input[type=radio]:disabled+label {
    opacity: .4
}

.s-product-options-field-required {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-product-options-donation-progress {
    margin-bottom: .625rem;
    width: 100%
}

.s-product-options-donation-progress-target-text {
    margin-bottom: .375rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-product-options-donation-progress-amount {
    margin-bottom: .625rem;
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-product-options-donation-progress-wrapper {
    height: 1rem;
    width: 100%;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.dark .s-product-options-donation-progress-wrapper {
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.s-product-options-donation-progress-bar {
    position: relative;
    display: flex;
    height: 1rem;
    justify-content: flex-end;
    border-radius: 9999px;
    background-color: #414042;
    background-color: var(--color-primary);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 500ms
}

.s-product-options-donation-progress-target-data {
    margin-top: .625rem;
    margin-bottom: .625rem;
    display: block;
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-product-options-donation-progress-target-message {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

.s-product-options-donation-wrapper {
    position: relative;
    margin-top: 1.25rem;
    margin-bottom: .625rem;
    align-items: center;
    justify-content: space-between;
    border-top-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
    padding-top: 1.25rem
}

.s-product-options-donation-wrapper:only-child {
    margin-top: 0;
    border-style: none;
    padding-top: 0
}

@media(min-width: 640px) {
    .s-product-options-donation-wrapper {
        margin-bottom: 0
    }
}

.s-product-options-donation-amount-label {
    margin-bottom: .625rem;
    display: block;
    flex: 1 1 0%;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-product-options-donation-amount-input-container {
    position: relative;
    flex: 1 1 0%
}

.s-product-options-donation-amount-input {
    margin-bottom: .625rem;
    display: block;
    height: 3rem;
    width: 100%;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    padding-left: .625rem;
    padding-right: .625rem;
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-product-options-donation-amount-input:focus {
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity))
}

@media(min-width: 640px) {
    .s-product-options-donation-amount-input {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.s-product-options-donation-amount-curruncy {
    position: absolute;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-product-options-donation-amount-curruncy {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-product-options-donation-amount-curruncy {
    border-color: var(--color-main)
}

.s-product-options-multiple-options-wrapper {
    flex-wrap: wrap;
    align-items: center
}

@media(min-width: 768px) {
    .s-product-options-multiple-options-wrapper {
        display: flex
    }
}

.s-product-options-multiple-options-wrapper div {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: center
}

@media(min-width: 768px) {
    .s-product-options-multiple-options-wrapper div {
        width: 50%
    }
}

.s-product-options-multiple-options-wrapper div input {
    height: 1.5rem;
    width: 1.5rem;
    cursor: pointer;
    border-radius: .375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    color: #414042;
    color: var(--color-primary)
}

.s-product-options-multiple-options-wrapper div input * {
    pointer-events: none
}

.s-product-options-multiple-options-wrapper div input:focus {
    --tw-ring-color: transparent
}

.s-product-options-multiple-options-wrapper div label {
    margin-left: .5rem;
    cursor: pointer;
    padding-right: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-product-options-multiple-options-wrapper div label * {
    pointer-events: none
}

[dir=rtl] .s-product-options-multiple-options-wrapper div label {
    margin-left: 0;
    margin-right: .5rem;
    padding-right: 0;
    padding-left: .75rem
}

.s-product-options-splitter {
    border-width: 2px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.s-product-options-thumbnails-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: .75rem;
    gap: .75rem
}

.s-block--features-products.two-cols .s-product-options-thumbnails-wrapper .product-entry__title a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}

.s-product-options-thumbnails-wrapper label {
    margin-bottom: .125rem;
    display: inline-block;
    height: 6rem;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: .375rem
}

.s-product-options-thumbnails-wrapper label * {
    pointer-events: none
}

@media(min-width: 768px) {
    .s-product-options-thumbnails-wrapper label {
        height: 5rem
    }
}

.s-product-options-thumbnails-wrapper>div {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center
}

.s-product-options-thumbnails-stock-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 0;
    display: block;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    white-space: nowrap;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
    padding-left: .375rem;
    padding-right: .375rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-product-options-thumbnails-stock-badge {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-product-options-thumbnails-stock-badge {
    border-color: var(--color-main)
}

.s-product-options-thumbnails-badge-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: not-allowed;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    opacity: .5
}

input[type=radio].sr-only div.s-product-options-thumbnails-badge-overlay {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-product-options-thumbnails-badge-overlay {
    border-color: var(--color-main)
}

.s-product-options-thumbnails-icon {
    position: absolute;
    left: 35%;
    top: 35%;
    z-index: 10;
    --tw-scale-x: .5;
    --tw-scale-y: .5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    padding: 2px;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

input[type=radio].sr-only div.s-product-options-thumbnails-icon {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-product-options-thumbnails-icon {
    border-color: var(--color-main)
}

.s-product-options-thumbnails-icon svg {
    height: 1rem;
    width: 1rem
}

.s-product-options-thumbnails-wrapper div input[type=radio]:checked+label span {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1
}

.s-product-options-thumbnails-wrapper div input[type=radio] {
    display: none
}

.s-product-options-thumbnails-wrapper div input[type=radio]+label {
    position: relative
}

.s-product-options-thumbnails-wrapper div input[type=radio]+label img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.s-product-options-thumbnails-wrapper div label::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    content: var(--tw-content);
    transition-duration: 300ms
}

.s-product-options-thumbnails-wrapper div input[type=radio]:checked+label::before {
    content: var(--tw-content);
    opacity: .3
}

.s-product-options-thumbnails-wrapper div input[type=radio]:disabled+label {
    opacity: .4
}

.s-product-options-thumbnails-wrapper div p {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-product-options-image-input .s-file-upload-wrapper {
    min-height: 120px
}

.s-product-options-image-input .filepond--list-scroller {
    overflow-y: inherit !important
}

.s-product-options-image-input .filepond--drop-label {
    min-height: 120px !important
}

.s-product-options-image-input .filepond--drop-label {
    cursor: pointer;
    border-radius: .375rem;
    border-width: 1px;
    border-style: dashed;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.s-product-options-image-input .filepond--drop-label * {
    pointer-events: none
}

.s-product-options-filepond-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.s-product-options-filepond-placeholder-icon {
    margin-bottom: .25rem
}

.s-product-options-filepond-placeholder-icon svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: #7c8082
}

.s-product-options-donation-amount-currency {
    position: absolute;
    top: .25rem;
    right: 1rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-product-options-donation-amount-currency {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-product-options-donation-amount-currency {
    border-color: var(--color-main)
}

[dir=rtl] .s-product-options-donation-amount-currency {
    right: auto;
    right: initial;
    left: 1rem
}

.s-product-options-donation-input-group {
    position: relative
}

.s-file-upload-wrapper .filepond--drop-label {
    height: 100%;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.s-file-upload-wrapper .filepond--drop-label label {
    margin-top: .75rem;
    margin-bottom: .75rem;
    font-family: dinnextltarabic, -apple-system, BlinkMacSystemFont;
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont
}

.s-file-upload-wrapper .filepond--label-action {
    text-decoration-color: #6b7280
}

.s-file-upload-wrapper .filepond--panel-root {
    --tw-bg-opacity: 1 !important;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important
}

.s-file-upload-wrapper .filepond--panel-root {
    height: 1em;
    border-radius: .25rem
}

.s-file-upload-profile-image .filepond--panel-root {
    border-radius: 9999px !important
}

.s-file-upload-wrapper .filepond--list-scroller {
    overflow: inherit !important;
    margin: 0 !important
}

.s-file-upload-wrapper .filepond--item-panel {
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.s-file-upload-wrapper .filepond--drip-blob {
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.s-file-upload-wrapper .filepond--list {
    left: 0;
    width: 100%
}

.s-file-upload-wrapper .filepond--file-poster-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: .45em;
    background-color: rgba(0, 0, 0, .01176)
}

input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster-wrapper {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster-wrapper {
    border-color: var(--color-main)
}

.s-file-upload-wrapper .filepond--file-poster {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center
}

input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster {
    border-color: var(--color-main)
}

.s-file-upload-wrapper .filepond--file-poster-overlay {
    position: absolute;
    top: 0
}

input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster-overlay {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster-overlay {
    border-color: var(--color-main)
}

.s-file-upload-wrapper .filepond--item {
    margin: 0
}

.s-file-upload-wrapper .filepond--file-status .filepond--file-status-sub {
    width: 275px;
    overflow: hidden;
    text-overflow: ellipsis
}

.s-file-upload-profile-image .filepond--root {
    border-radius: 9999px !important
}

.s-file-upload-profile-image .filepond--root {
    height: 80px;
    width: 80px
}

.s-file-upload-profile-image .filepond--drop-label {
    min-height: 70px !important;
    border-radius: 9999px !important
}

.s-file-upload-profile-image .filepond--drop-label {
    z-index: 7;
    border-style: none
}

.s-file-upload-profile-image .filepond--drop-label label {
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: .8rem;
    margin-top: .75rem;
    margin-bottom: .75rem;
    font-family: dinnextltarabic, -apple-system, BlinkMacSystemFont;
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont
}

.s-file-upload-profile-image .filepond--drop-label label * {
    pointer-events: none
}

.s-file-upload-profile-image .filepond--file {
    padding: 0
}

.s-file-upload-profile-image .filepond--file .filepond--action-remove-item {
    top: auto !important;
    transform: translateX(-50%) translateY(25%) !important
}

.s-file-upload-profile-image .filepond--file .filepond--action-remove-item {
    bottom: -4px;
    left: 50%;
    background-color: rgba(255, 68, 58, .7);
    cursor: pointer;
    width: 20px;
    height: 20px;
    transition: .3s
}

.s-file-upload-profile-image .filepond--file .filepond--action-remove-item:hover {
    background-color: #ff443a
}

.s-file-upload-profile-image .filepond--file .filepond--file-action-button {
    top: 28px;
    right: 28px
}

.s-file-upload-profile-image .filepond--file .filepond--progress-indicator,
.s-file-upload-profile-image .filepond--file .filepond--load-indicator,
.s-file-upload-profile-image .filepond--file .filepond--processing-complete-indicator {
    top: 48% !important
}

.s-file-upload-profile-image .filepond--file .filepond--progress-indicator,
.s-file-upload-profile-image .filepond--file .filepond--load-indicator,
.s-file-upload-profile-image .filepond--file .filepond--processing-complete-indicator {
    right: 50%;
    left: auto;
    transform: translateX(50%) translateY(-50%)
}

.s-file-upload-profile-image .filepond--item-panel {
    background-color: transparent !important
}

.s-file-upload-.s-file-upload-profile-image .filepond--item-panel .filepond--panel-top,
.s-file-upload-profile-image .filepond--item-panel .filepond--panel-center,
.s-file-upload-profile-image .filepond--item-panel .filepond--panel-bottom {
    display: none
}

.s-file-upload-profile-image .filepond--file-poster-overlay {
    display: none
}

.s-file-upload-profile-image .filepond--item {
    margin: 0 !important
}

.s-file-upload-profile-image .filepond--file-poster {
    height: 100%;
    width: 100%
}

.s-file-upload-profile-image .filepond--file-status {
    display: none
}

.s-file-upload-profile-image .filepond--image-preview-overlay-success {
    top: auto;
    bottom: 0;
    --tw-scale-y: -1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.s-file-upload-profile-image .filepond--image-preview-wrapper {
    border-radius: 9999px
}

.s-file-upload-profile-image .filepond--file-info {
    display: none
}

.s-file-upload-profile-image .filepond--list {
    left: 0;
    right: 0;
    height: 100%
}

.s-file-upload-profile-image .filepond--file-poster img {
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    -o-object-fit: cover;
    object-fit: cover
}

.s-file-upload-profile-image .filepond--file-poster-wrapper {
    overflow: hidden;
    border-radius: 9999px
}

.s-file-upload-hidden-input {
    display: none
}

.s-slider-swiper-wrapper>div {
    align-items: stretch
}

.s-slider-container {
    display: block;
    padding-top: .25rem
}

.s-slider-horizontal .s-slider-thumbs {
    margin-top: 1rem
}

.s-slider-thumbs-container {
    position: relative;
    margin-left: -5px;
    margin-right: -5px
}

[dir=ltr] .s-slider-thumbs-container {
    padding-right: 3rem
}

[dir=rtl] .s-slider-thumbs-container {
    padding-left: 3rem
}

@media(min-width: 640px) {
    .s-slider-thumbs-container {
        padding-left: 0;
        padding-right: 0
    }
}

@media(min-width: 1024px) {
    [dir=ltr] .s-slider-thumbs-container {
        padding-right: 0
    }

    [dir=rtl] .s-slider-thumbs-container {
        padding-left: 0
    }
}

.s-slider-wrapper {
    position: relative
}

.s-slider-block__title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: flex;
    max-width: 1280px;
    align-items: center;
    justify-content: space-between
}

@media(min-width: 768px) {
    .s-slider-block__title {
        margin-bottom: 2rem
    }
}

[dir=ltr] .s-slider-block__title-right {
    padding-right: 2rem
}

[dir=rtl] .s-slider-block__title-right {
    padding-left: 2rem
}

.s-slider-block__title-left {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.s-slider-block__title-left>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=rtl] .s-slider-block__title-left>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-slider-block__title h2 {
    position: relative;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 1.2
}

[dir=ltr] .s-slider-block__title h2 {
    padding-right: 2rem
}

[dir=rtl] .s-slider-block__title h2 {
    padding-left: 2rem
}

.s-slider-block__title p {
    margin-top: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    opacity: .6
}

@media(min-width: 768px) {
    [dir=ltr] .s-slider-block__title p {
        padding-right: 4rem
    }

    [dir=rtl] .s-slider-block__title p {
        padding-left: 4rem
    }
}

.s-slider-block__title-nav {
    display: flex
}

.s-slider-block__title-nav>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)))
}

[dir=ltr] .s-slider-block__title-nav {
    margin-left: 1.5rem;
    flex-direction: row-reverse
}

[dir=rtl] .s-slider-block__title-nav {
    margin-right: 1.5rem
}

[dir=rtl] .s-slider-block__title-nav>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.carousel-slider .s-slider-block__title-nav {
    display: none
}

@media(min-width: 1024px) {
    .carousel-slider .s-slider-block__title-nav {
        display: flex
    }
}

.s-slider-v-centered .s-slider-block__title-nav {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    width: 94%;
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    justify-content: space-between
}

input[type=radio].sr-only div.s-slider-v-centered .s-slider-block__title-nav {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-slider-v-centered .s-slider-block__title-nav {
    border-color: var(--color-main)
}

.s-slider-v-centered .s-slider-block__title-nav button {
    pointer-events: auto;
    border-style: none;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    --tw-shadow-color: #d1d5db;
    --tw-shadow: var(--tw-shadow-colored)
}

.s-slider-v-centered .s-slider-block__title-nav button:hover {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled {
    opacity: 1;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled svg {
    fill: #d1d5db
}

.s-slider-v-centered.fullwidth-slider .s-slider-block__title-nav button {
    --tw-shadow-color: #374151;
    --tw-shadow: var(--tw-shadow-colored)
}

.s-slider-controls-outer .s-slider-block__title-nav {
    width: 97%
}

@media(min-width: 1536px) {
    .s-slider-controls-outer .s-slider-block__title-nav {
        width: calc(100% + 32px)
    }
}

.s-slider-block__display-all {
    display: inline-block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary)
}

.s-slider-block__display-all:hover {
    opacity: .8
}

.s-slider-nav-arrow {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    font-size: 1.25rem;
    line-height: 1.75rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-slider-nav-arrow svg {
    width: 22px;
    fill: #6b7280
}

.s-slider-thumbs-nav {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    width: 94%;
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    justify-content: space-between
}

.s-slider-thumbs-nav>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)))
}

input[type=radio].sr-only div.s-slider-thumbs-nav {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-slider-thumbs-nav {
    border-color: var(--color-main)
}

[dir=ltr] .s-slider-thumbs-nav {
    flex-direction: row-reverse
}

[dir=rtl] .s-slider-thumbs-nav>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 1
}

.s-slider-thumbs-nav button {
    pointer-events: auto;
    border-style: none;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.s-slider-thumbs-nav button:hover {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-slider-thumbs-nav button.swiper-button-disabled {
    opacity: 1;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0);
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow)
}

.s-slider-thumbs-nav button.swiper-button-disabled svg {
    fill: #d1d5db
}

.s-slider-nav-arrow:not(:disabled):hover {
    border-color: #414042;
    border-color: var(--color-primary)
}

.s-slider-nav-arrow:not(:disabled):hover svg {
    fill: #414042;
    fill: var(--color-primary)
}

salla-slider:not(.hydrated),
.carousel-slider {
    visibility: visible
}

salla-slider:not(.hydrated) .tooltip-content,
.carousel-slider .tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translate(82px, -110px)
}

salla-slider[type]:not(.hydrated)>div,
salla-slider[type]:not(.hydrated) .swiper>div>div,
.carousel-slider .swiper {
    margin-left: -.625rem;
    margin-right: -.625rem;
    display: flex;
    padding-left: 5px;
    padding-right: 5px
}

[dir=ltr] salla-slider[type]:not(.hydrated)>div,
[dir=ltr] salla-slider[type]:not(.hydrated) .swiper>div>div,
[dir=ltr] .carousel-slider .swiper {
    padding-right: 3rem
}

[dir=rtl] salla-slider[type]:not(.hydrated)>div,
[dir=rtl] salla-slider[type]:not(.hydrated) .swiper>div>div,
[dir=rtl] .carousel-slider .swiper {
    padding-left: 3rem
}

@media(min-width: 640px) {

    salla-slider[type]:not(.hydrated)>div,
    salla-slider[type]:not(.hydrated) .swiper>div>div,
    .carousel-slider .swiper {
        padding-left: 0;
        padding-right: 0
    }
}

@media(min-width: 1024px) {

    [dir=ltr] salla-slider[type]:not(.hydrated)>div,
    [dir=ltr] salla-slider[type]:not(.hydrated) .swiper>div>div,
    [dir=ltr] .carousel-slider .swiper {
        padding-right: 0
    }

    [dir=rtl] salla-slider[type]:not(.hydrated)>div,
    [dir=rtl] salla-slider[type]:not(.hydrated) .swiper>div>div,
    [dir=rtl] .carousel-slider .swiper {
        padding-left: 0
    }
}

salla-slider[type]:not(.hydrated)>div>div,
salla-slider[type]:not(.hydrated) .swiper>div>div>div,
.carousel-slider .swiper-wrapper>div {
    flex-shrink: 0;
    padding-left: 5px;
    padding-right: 5px
}

@media(min-width: 640px) {

    salla-slider[type]:not(.hydrated)>div>div,
    salla-slider[type]:not(.hydrated) .swiper>div>div>div,
    .carousel-slider .swiper-wrapper>div {
        padding-left: .625rem;
        padding-right: .625rem
    }
}

salla-slider:not([type=carousel]):not([type=thumbs]):not(.hydrated)>div,
salla-slider.photos-slider:not(.hydrated)>div {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0
}

salla-slider:not([type=carousel]):not([type=thumbs]):not(.hydrated)>div>div,
salla-slider.photos-slider:not(.hydrated)>div>div {
    padding: 0
}

salla-slider:not([type=carousel]):not([type=thumbs]):not(.hydrated)>div>div:nth-child(n+2) {
    display: none
}

salla-slider[type=fullscreen] [slot=items]>div {
    min-height: calc(100vh - 100px);
    width: 100%
}

salla-slider:not(.hydrated) {
    display: block;
    overflow: hidden
}

.s-slider-has-notitle .s-slider-block__title {
    margin-bottom: 0
}

salla-slider div[slot=thumbs] {
    margin-top: .625rem
}

salla-slider {
    display: block
}

salla-slider div[slot=thumbs]>div {
    height: 5rem;
    padding-left: 5px;
    padding-right: 5px
}

.s-slider-vertical {
    height: 100%
}

@media(min-width: 768px) {
    .s-slider-vertical {
        display: flex
    }
}

.s-slider-vertical .s-slider-container {
    margin-left: 0;
    margin-right: 0
}

.s-slider-vertical .s-slider-thumbs {
    margin-left: -.625rem;
    margin-right: -.625rem;
    margin-top: .625rem;
    width: 100%
}

@media(min-width: 768px) {
    .s-slider-vertical .s-slider-thumbs {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 15px;
        height: 100%;
        width: 8rem;
        padding: 0
    }

    [dir=rtl] .s-slider-vertical .s-slider-thumbs {
        margin-left: 0;
        margin-right: 15px
    }
}

.s-slider-vertical .s-slider-thumbs-container {
    margin-left: -.625rem;
    margin-right: -.625rem;
    margin-top: .625rem;
    max-height: 360px;
    width: 100vw;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

@media(min-width: 768px) {
    .s-slider-vertical .s-slider-thumbs-container {
        top: 50%;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        min-height: 100%;
        width: 8rem;
        --tw-translate-y: -50%;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        padding: 0;
        padding-top: 3rem;
        padding-bottom: 3rem
    }
}

.s-slider-vertical .s-slider-thumbs-prev {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.s-slider-vertical .s-slider-thumbs-prev {
    position: absolute;
    top: 1%;
    left: 50%;
    z-index: 1;
    display: none;
    --tw-translate-x: -50%;
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

input[type=radio].sr-only div.s-slider-vertical .s-slider-thumbs-prev {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-slider-vertical .s-slider-thumbs-prev {
    border-color: var(--color-main)
}

[dir=rtl] .s-slider-vertical .s-slider-thumbs-prev {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media(min-width: 768px) {
    .s-slider-vertical .s-slider-thumbs-prev {
        display: flex
    }
}

.s-slider-vertical .s-slider-thumbs-next {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.s-slider-vertical .s-slider-thumbs-next {
    position: absolute;
    bottom: 1%;
    left: 50%;
    z-index: 1;
    display: none;
    --tw-translate-x: -50%;
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

input[type=radio].sr-only div.s-slider-vertical .s-slider-thumbs-next {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-slider-vertical .s-slider-thumbs-next {
    border-color: var(--color-main)
}

[dir=rtl] .s-slider-vertical .s-slider-thumbs-next {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media(min-width: 768px) {
    .s-slider-vertical .s-slider-thumbs-next {
        display: flex
    }
}

.s-slider-vertical .s-slider-thumbs-nav {
    height: 100%
}

.s-slider-thumbs .s-slider-thumbs-container .swiper-slide {
    margin-left: 5px;
    margin-right: 5px;
    height: 4rem;
    width: 25%;
    cursor: pointer;
    overflow: hidden;
    border-radius: .25rem;
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
    padding: 0;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms
}

.s-slider-thumbs .s-slider-thumbs-container .swiper-slide * {
    pointer-events: none
}

.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:hover {
    opacity: .8
}

@media(min-width: 640px) {
    .s-slider-thumbs .s-slider-thumbs-container .swiper-slide {
        width: 20%
    }
}

@media(min-width: 768px) {
    .s-slider-thumbs .s-slider-thumbs-container .swiper-slide {
        height: 5rem;
        width: 25%
    }
}

@media(min-width: 1024px) {
    .s-slider-thumbs .s-slider-thumbs-container .swiper-slide {
        width: 20%
    }
}

.s-slider-vertical .s-slider-thumbs-container .swiper-slide {
    margin-left: 0;
    margin-right: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 4rem;
    cursor: pointer;
    padding: 0
}

.s-slider-vertical .s-slider-thumbs-container .swiper-slide * {
    pointer-events: none
}

@media(min-width: 768px) {
    .s-slider-vertical .s-slider-thumbs-container .swiper-slide {
        height: 5rem;
        width: 100%
    }
}

.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    border-radius: .25rem;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
    --tw-ring-inset: inset;
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 300ms;
    --tw-content: '';
    content: var(--tw-content)
}

input[type=radio].sr-only div.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after {
    border-color: var(--color-main)
}

@media(min-width: 768px) {
    thumbs .s-slider-thumbs-container {
        direction: ltr
    }
}

[dir=ltr] .s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides {
    padding-right: 2.5rem
}

[dir=rtl] .s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides {
    padding-left: 2.5rem
}

@media(min-width: 768px) {
    .s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides {
        padding-left: 0;
        padding-right: 0
    }
}

salla-slider .video-entry,
salla-slider .model-entry {
    position: relative
}

salla-slider .video-entry:before,
salla-slider .model-entry:before {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    height: 4rem;
    width: 4rem;
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, .3);
    font-size: 3rem;
    line-height: 1;
    color: rgba(255, 255, 255, .8);
    --tw-content: '\ee61';
    content: var(--tw-content)
}

input[type=radio].sr-only divsalla-slider .video-entry:before,
input[type=radio].sr-only div salla-slider .model-entry:before {
    transition: all .3s
}

input[type=radio].sr-only:checked~divsalla-slider .video-entry:before,
input[type=radio].sr-only:checked~div salla-slider .model-entry:before {
    border-color: var(--color-main)
}

.video-entry:before,
.model-entry:before {
    font-family: sallaicons
}

salla-slider .model-entry .s-toggle-switcher {
    pointer-events: auto
}

salla-slider .model-entry:before {
    --tw-content: '\e9a0';
    content: var(--tw-content)
}

.s-slider-thumbs .swiper-slide.video-entry:before,
.s-slider-thumbs .swiper-slide.model-entry:before {
    height: 1.75rem;
    width: 1.75rem;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.s-slider-thumbs .s-slider-thumbs-container .swiper-slide.swiper-slide-thumb-active:after {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
    --tw-ring-color: var(--color-primary)
}

.s-progress-bar-container {
    margin-bottom: .625rem
}

.s-progress-bar-header {
    margin-bottom: .375rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.s-progress-bar-target-section {
    margin-bottom: .625rem;
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    line-height: 1.25rem
}

.s-progress-bar-wrapper {
    margin-bottom: .375rem;
    width: 100%;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.dark .s-progress-bar-wrapper {
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.s-progress-bar-progress {
    height: 100%;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity))
}

.s-progress-bar-message {
    margin-bottom: .625rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity))
}

.s-progress-bar-wrapper .s-progress-bar-progress-stripped {
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    background-size: 30px 30px
}

.s-product-options-donation-wrapper {
    flex-flow: column
}

.s-count-down-wrapper {
    position: relative
}

.s-count-down-list {
    margin-left: -.25rem;
    margin-right: -.25rem;
    margin-bottom: 1.25rem;
    margin-top: .625rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

[dir=ltr] .s-count-down-list {
    flex-direction: row-reverse
}

[dir=rtl] .s-count-down-list {
    flex-direction: row
}

@media(min-width: 640px) {
    .s-count-down-list {
        padding-left: 5rem;
        padding-right: 5rem
    }
}

.s-count-down-item {
    position: relative;
    margin-left: .25rem;
    margin-right: .25rem;
    display: flex;
    height: 5rem;
    flex: 1 1 0%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: dinnextltarabic;
    font-family: var(--font-main);
    font-weight: 700
}

.s-count-down-item::after {
    position: absolute;
    left: -2px;
    font-family: inherit;
    --tw-content: ':';
    content: var(--tw-content)
}

.s-count-down-item:last-child::after {
    --tw-content: '';
    content: var(--tw-content)
}

.s-count-down-item-label {
    margin-top: .25rem;
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
    opacity: .4
}

.s-count-down-boxed .s-count-down-item {
    border-radius: .25rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity))
}

.s-count-down-boxed .s-count-down-item::after {
    --tw-content: '';
    content: var(--tw-content)
}

.s-count-down-sm .s-count-down-item {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400
}

.s-count-down-sm .s-count-down-item::after {
    content: var(--tw-content);
    font-size: 1rem;
    line-height: 1.5rem
}

.s-count-down-sm+.s-count-down-end-text {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400
}

.s-count-down-md .s-count-down-item {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500
}

.s-count-down-md .s-count-down-item::after {
    content: var(--tw-content);
    font-size: 1.125rem;
    line-height: 1.75rem
}

.s-count-down-md+.s-count-down-end-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500
}

.s-count-down-lg .s-count-down-item {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700
}

.s-count-down-lg .s-count-down-item::after {
    content: var(--tw-content);
    font-size: 1.875rem;
    line-height: 2.25rem
}

.s-count-down-lg+.s-count-down-end-text {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700
}

.s-count-down-light .s-count-down-item {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.s-count-down-light .s-count-down-item::after {
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.s-count-down-dark .s-count-down-item {
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity))
}

.s-count-down-dark .s-count-down-item::after {
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity))
}

.s-count-down-primary .s-count-down-item {
    color: #414042;
    color: var(--color-primary)
}

.s-count-down-primary .s-count-down-item::after {
    content: var(--tw-content);
    color: #414042;
    color: var(--color-primary)
}

.s-count-down-ended .s-count-down-item {
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    opacity: .1
}

.s-count-down-ended .s-count-down-item::after {
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.s-count-down-end-text {
    position: absolute;
    top: 50%;
    left: 50%;
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    font-family: dinnextltarabic;
    font-family: var(--font-main);
    --tw-text-opacity: 1;
    color: rgba(234, 84, 85, var(--tw-text-opacity))
}

input[type=radio].sr-only div.s-count-down-end-text {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-count-down-end-text {
    border-color: var(--color-main)
}

.s-add-product-button-with-quick-buy {
    display: flex
}

.s-add-product-button-with-quick-buy salla-quick-buy {
    margin-left: .5rem;
    flex: 45%
}

[dir=rtl] .s-add-product-button-with-quick-buy salla-quick-buy {
    margin-left: 0;
    margin-right: .5rem
}

@media(min-width: 640px) {
    .s-add-product-button-with-quick-buy salla-quick-buy {
        flex: 50%
    }

    .s-add-product-button-with-quick-buy>salla-button {
        flex: 50%
    }
}

.s-add-product-button-with-sticky-bar salla-quick-buy .s-quick-buy-button .s-button-text span {
    display: none
}

@media(min-width: 768px) {
    .s-add-product-button-with-sticky-bar salla-quick-buy .s-quick-buy-button .s-button-text span {
        display: block
    }
}

.s-quick-buy-button svg {
    margin-right: .375rem;
    height: 1rem;
    width: 1rem
}

[dir=rtl] .s-quick-buy-button svg {
    margin-right: 0;
    margin-left: .375rem
}

.s-quick-buy-apple-pay {
    display: block;
    height: 100%;
    width: 100%
}

.s-quick-buy-apple-pay .apple-pay-btn-wrapper .apple-pay-btn {
    width: auto !important;
    border-radius: .25rem !important
}

apple-pay-button.s-quick-buy-apple-pay {
    --apple-pay-button-border-radius: 100px;
    --apple-pay-button-padding: 6px 0;
    --apple-pay-button-height: 32px
}

.s-map-modal-title {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem
}

.s-map-location-icon {
    margin-right: .5rem
}

[dir=rtl] .s-map-location-icon {
    margin-left: .5rem;
    margin-right: 0
}

.s-map-location-icon svg {
    height: 1rem !important;
    width: 1rem !important
}

.s-map-modal-body {
    position: relative;
    overflow: hidden
}

.s-map-element {
    height: 400px;
    width: 100%
}

.s-map-search-wrapper {
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 1.25rem;
    width: -webkit-fill-available
}

input[type=radio].sr-only div.s-map-search-wrapper {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-map-search-wrapper {
    border-color: var(--color-main)
}

.s-map-search-wrapper input {
    height: 2.5rem;
    width: 100%;
    padding: .5rem
}

[dir=rtl] .s-map-search-wrapper input {
    text-align: right
}

.s-map-search-results {
    margin-top: 0;
    display: flex;
    height: 6rem;
    flex-direction: column;
    padding: .5rem
}

.s-map-modal-body .s-loading-container {
    position: absolute;
    margin: 0;
    padding: 5rem
}

input[type=radio].sr-only div.s-map-modal-body .s-loading-container {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-map-modal-body .s-loading-container {
    border-color: var(--color-main)
}

.s-map-my-location-button {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    margin: .5rem
}

input[type=radio].sr-only div.s-map-my-location-button {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.s-map-my-location-button {
    border-color: var(--color-main)
}

.s-map-location-button .s-button-text {
    display: flex;
    align-items: center
}

.s-map-submit-button button {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding-top: 12px;
    padding-bottom: 12px
}

.s-color-picker-main {
    margin: .25rem;
    display: inline-block
}

.s-color-picker-main .picker_wrapper {
    margin: 0 !important;
    --tw-shadow: 0 0 rgba(0, 0, 0, 0) !important;
    --tw-shadow-colored: 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: 0 0 transparent, 0 0 transparent, 0 0 transparent !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important
}

.s-color-picker-main .picker_arrow {
    display: none
}

.s-color-picker-widget {
    display: flex;
    width: auto;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: space-between;
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: #d1d5db;
    border-color: rgb(209 213 219/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: #fff;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    padding: .25rem
}

.s-color-picker-widget svg {
    height: 1.25rem;
    width: 1.25rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 200ms
}

.s-color-picker-widget span {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.s-color-picker-widget-canvas {
    height: 2rem;
    width: 2rem
}

.s-products-list-wrapper {
    margin-bottom: 2rem;
    display: grid
}

.s-block--features-products.two-cols .s-products-list-wrapper .product-entry__title a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}

.s-products-list-vertical-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .625rem
}

@media(min-width: 640px) {
    .s-products-list-vertical-cards {
        gap: 1rem
    }
}

@media(min-width: 768px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem
    }
}

@media(min-width: 1024px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

.s-products-list-filters-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .625rem
}

@media(min-width: 640px) {
    .s-products-list-filters-results {
        gap: 1rem
    }
}

@media(min-width: 768px) {
    .s-products-list-filters-results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem
    }
}

.s-products-list-horizontal-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem
}

@media(min-width: 640px) {
    .s-products-list-horizontal-cards {
        gap: 2rem
    }
}

@media(min-width: 1024px) {
    .s-products-list-horizontal-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.s-products-list-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    --tw-text-opacity: 1;
    color: #9ca3af;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-products-list-placeholder span {
    margin-bottom: 1rem;
    display: flex;
    height: 8rem;
    width: 8rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgb(243 244 246/var(--tw-bg-opacity));
    font-size: 3rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: #d1d5db;
    color: rgb(209 213 219/var(--tw-text-opacity))
}

.s-products-list-placeholder span svg {
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    width: 4rem;
    fill: #d1d5db;
    text-align: center
}

.s-products-list-placeholder p {
    padding-top: .5rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: #9ca3af;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.s-products-slider-wrapper {
    margin-bottom: 2rem
}

[dir=ltr] .s-products-slider-wrapper {
    padding-right: 0
}

[dir=rtl] .s-products-slider-wrapper {
    padding-left: 0
}

@media(min-width: 768px) {
    .s-products-slider-wrapper {
        margin-bottom: 5rem
    }
}

@media(min-width: 1024px) {
    .s-products-slider-wrapper {
        overflow: hidden
    }
}

.s-products-slider-card {
    height: auto !important
}

.s-products-slider-card {
    width: 100%;
    max-width: 250px;
    padding-left: .5rem;
    padding-right: .5rem
}

@media(min-width: 640px) {
    .s-products-slider-card {
        width: 50%;
        max-width: 320px
    }
}

@media(min-width: 768px) {
    .s-products-slider-card {
        width: 33.333333%
    }
}

@media(min-width: 1024px) {
    .s-products-slider-card {
        width: 25%
    }
}

body {
    direction: rtl
}

:root {
    --color-text-light: #666;
    --color-text-lighter: #999;
    --color-text-muted: #bbb;
    --color-danger: #FF443A;
    --color-success: #30D158;
    --color-secondary-darker: #E8EDF2;
    --color-grey: #F5F7F9;
    --color-grey-light: #F8F8F8;
    --color-grey-lighter: #FCFCFC;
    --color-grey-dark: #f0f2f5;
    --color-grey-darker: #ecf0f5;
    --color-grey-darkest: #dde4ec;
    --color-dark: #6e747b;
    --color-grey-border: #eee;
    --color-grey-border-darker: #ddd;
    --color-white: white;
    --color-black: black;
    --color-yellow: #fcd34c;
    --color-green: #a2c870
}

.hidden {
    display: none !important
}

.opacity-0 {
    opacity: 0
}

.overflow-hidden {
    overflow: hidden
}

.position-static {
    position: static !important
}

.t-2px {
    display: inline-block;
    transform: translateY(-2px)
}

.borderless {
    border: none !important
}

.required-tip {
    color: #ff443a;
    color: var(--color-danger)
}

.gray-bg {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.text-center {
    text-align: center !important
}

.text-end {
    text-align: left
}

.border-0 {
    border: none !important
}

.emoji {
    padding: 0 !important
}

.emoji {
    display: inline-block;
    margin: 0 4px
}

.flex-gorw {
    flex-grow: 1
}

.flex-gorw-0 {
    flex-grow: 0
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.rounded-full {
    border-radius: 50%
}

.h-full {
    height: 100%
}

.w-full {
    width: 100%
}

.relative {
    position: relative
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes bounce {

    from,
    20%,
    53%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }

    80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0) scaleY(.95)
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.heartBeat {
    animation-name: heartBeat;
    animation-duration: 1s;
    animation-timing-function: ease-in-out
}

@keyframes flip {
    from {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

@keyframes wide-placeHolderShimmer {
    from {
        background-position: 400px 0
    }

    to {
        background-position: 100% 0
    }
}

.animated-background {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #a9a9a9;
    background: linear-gradient(to right, #eee 10%, #ddd 18%, #eee 33%);
    background: linear-gradient(to right, var(--color-grey-border) 10%, var(--color-grey-border-darker) 18%, var(--color-grey-border) 33%);
    background-size: 800px 104px;
    height: 100%;
    position: relative;
    background-color: #ddd;
    background-color: var(--color-grey-border-darker);
    border-radius: 8px;
    overflow: hidden
}

.animated-background--title {
    border-radius: 25px;
    height: 10px;
    width: 100%
}

.animated-background--text {
    border-radius: 25px;
    height: 6px;
    width: 80%
}

.animated-background--main {
    background-image: linear-gradient(to left, #f2f3f4 0%, #edeef1 20%, #f2f3f4 40%, #f2f3f4 100%);
    animation: wide-placeHolderShimmer 1.4s infinite linear forwards;
    background-size: 700px 1000px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.text-decoration-through {
    text-decoration: line-through
}

html,
body {
    font-family: var(--font-main);
    font-size: var(--font-base);
    color: var(--color-text);
    margin: 0;
    direction: rtl;
    background: #fff;
    background: var(--color-white)
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 4px
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: rgba(#F8F8F8, 0.8);
    background: rgba(var(--color-grey-light), 0.8);
    border-radius: 0
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-primary)
}

html::-webkit-scrollbar-thumb:window-inactive,
body::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(var(--color-primary), 0.5)
}

@media only screen and (max-width: 767px) {

    html,
    body {
        min-height: var(--page-height)
    }
}

#mobile-nav-menu {
    visibility: hidden;
    height: 0;
    width: 0
}

body.mm-ocd-opened {
    overflow: hidden
}

body:not(.js-is-loaded) #mobile-nav-menu {
    display: none
}

.container {
    width: 100%;
    max-width: 1350px
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

a {
    text-decoration: none
}

.section-space-p {
    padding-top: 50px
}

.section-space-p--extra {
    padding-top: 70px
}

.section-space-m {
    margin-top: 50px
}

.section-space-m--extra {
    margin-top: 70px
}

.no-p {
    padding: 0 !important
}

@media only screen and (max-width: 767px) {
    .no-p-sm {
        padding: 0 !important
    }
}

.no-m {
    margin: 0 !important
}

.mb-5 {
    margin-bottom: 5px !important
}

@media only screen and (max-width: 767px) {
    .mb-5 {
        margin-bottom: 2.5px !important
    }
}

.mv-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important
}

.padded-5 {
    padding: 5px
}

.pt-5 {
    padding-top: 5px !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.pr-5 {
    padding-right: 5px !important
}

.pl-5 {
    padding-left: 5px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-5 {
        margin-bottom: 5px !important
    }
}

.mt-5 {
    margin-top: 5px !important
}

@media only screen and (max-width: 767px) {
    .mt-5 {
        margin-top: 2.5px !important
    }
}

.mb-5 {
    margin-bottom: 5px !important
}

.mr-5 {
    margin-right: 5px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-5 {
    margin-left: 5px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-5 {
        margin-top: 5px !important
    }
}

.mv-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important
}

.mh-5 {
    margin-right: 5px !important;
    margin-left: 5px !important
}

.mr-5 {
    margin-right: 5px !important
}

.ml-5 {
    margin-left: 5px !important
}

.padded-5 {
    padding: 5px
}

.mb-10 {
    margin-bottom: 10px !important
}

@media only screen and (max-width: 767px) {
    .mb-10 {
        margin-bottom: 5px !important
    }
}

.mv-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important
}

.padded-10 {
    padding: 10px
}

.pt-10 {
    padding-top: 10px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pr-10 {
    padding-right: 10px !important
}

.pl-10 {
    padding-left: 10px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-10 {
        margin-bottom: 10px !important
    }
}

.mt-10 {
    margin-top: 10px !important
}

@media only screen and (max-width: 767px) {
    .mt-10 {
        margin-top: 5px !important
    }
}

.mb-10 {
    margin-bottom: 10px !important
}

.mr-10 {
    margin-right: 10px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-10 {
    margin-left: 10px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-10 {
        margin-top: 10px !important
    }
}

.mv-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important
}

.mh-10 {
    margin-right: 10px !important;
    margin-left: 10px !important
}

.mr-10 {
    margin-right: 10px !important
}

.ml-10 {
    margin-left: 10px !important
}

.padded-10 {
    padding: 10px
}

.mb-15 {
    margin-bottom: 15px !important
}

@media only screen and (max-width: 767px) {
    .mb-15 {
        margin-bottom: 7.5px !important
    }
}

.mv-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important
}

.padded-15 {
    padding: 15px
}

.pt-15 {
    padding-top: 15px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.pr-15 {
    padding-right: 15px !important
}

.pl-15 {
    padding-left: 15px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-15 {
        margin-bottom: 15px !important
    }
}

.mt-15 {
    margin-top: 15px !important
}

@media only screen and (max-width: 767px) {
    .mt-15 {
        margin-top: 7.5px !important
    }
}

.mb-15 {
    margin-bottom: 15px !important
}

.mr-15 {
    margin-right: 15px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-15 {
    margin-left: 15px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-15 {
        margin-top: 15px !important
    }
}

.mv-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important
}

.mh-15 {
    margin-right: 15px !important;
    margin-left: 15px !important
}

.mr-15 {
    margin-right: 15px !important
}

.ml-15 {
    margin-left: 15px !important
}

.padded-15 {
    padding: 15px
}

.mb-20 {
    margin-bottom: 20px !important
}

@media only screen and (max-width: 767px) {
    .mb-20 {
        margin-bottom: 10px !important
    }
}

.mv-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important
}

.padded-20 {
    padding: 20px
}

.pt-20 {
    padding-top: 20px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pr-20 {
    padding-right: 20px !important
}

.pl-20 {
    padding-left: 20px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-20 {
        margin-bottom: 20px !important
    }
}

.mt-20 {
    margin-top: 20px !important
}

@media only screen and (max-width: 767px) {
    .mt-20 {
        margin-top: 10px !important
    }
}

.mb-20 {
    margin-bottom: 20px !important
}

.mr-20 {
    margin-right: 20px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-20 {
    margin-left: 20px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-20 {
        margin-top: 20px !important
    }
}

.mv-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important
}

.mh-20 {
    margin-right: 20px !important;
    margin-left: 20px !important
}

.mr-20 {
    margin-right: 20px !important
}

.ml-20 {
    margin-left: 20px !important
}

.padded-20 {
    padding: 20px
}

.mb-25 {
    margin-bottom: 25px !important
}

@media only screen and (max-width: 767px) {
    .mb-25 {
        margin-bottom: 12.5px !important
    }
}

.mv-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important
}

.padded-25 {
    padding: 25px
}

.pt-25 {
    padding-top: 25px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.pr-25 {
    padding-right: 25px !important
}

.pl-25 {
    padding-left: 25px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-25 {
        margin-bottom: 25px !important
    }
}

.mt-25 {
    margin-top: 25px !important
}

@media only screen and (max-width: 767px) {
    .mt-25 {
        margin-top: 12.5px !important
    }
}

.mb-25 {
    margin-bottom: 25px !important
}

.mr-25 {
    margin-right: 25px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-25 {
    margin-left: 25px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-25 {
        margin-top: 25px !important
    }
}

.mv-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important
}

.mh-25 {
    margin-right: 25px !important;
    margin-left: 25px !important
}

.mr-25 {
    margin-right: 25px !important
}

.ml-25 {
    margin-left: 25px !important
}

.padded-25 {
    padding: 25px
}

.mb-30 {
    margin-bottom: 30px !important
}

@media only screen and (max-width: 767px) {
    .mb-30 {
        margin-bottom: 15px !important
    }
}

.mv-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important
}

.padded-30 {
    padding: 30px
}

.pt-30 {
    padding-top: 30px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pr-30 {
    padding-right: 30px !important
}

.pl-30 {
    padding-left: 30px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-30 {
        margin-bottom: 30px !important
    }
}

.mt-30 {
    margin-top: 30px !important
}

@media only screen and (max-width: 767px) {
    .mt-30 {
        margin-top: 15px !important
    }
}

.mb-30 {
    margin-bottom: 30px !important
}

.mr-30 {
    margin-right: 30px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-30 {
    margin-left: 30px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-30 {
        margin-top: 30px !important
    }
}

.mv-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important
}

.mh-30 {
    margin-right: 30px !important;
    margin-left: 30px !important
}

.mr-30 {
    margin-right: 30px !important
}

.ml-30 {
    margin-left: 30px !important
}

.padded-30 {
    padding: 30px
}

.mb-35 {
    margin-bottom: 35px !important
}

@media only screen and (max-width: 767px) {
    .mb-35 {
        margin-bottom: 17.5px !important
    }
}

.mv-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important
}

.padded-35 {
    padding: 35px
}

.pt-35 {
    padding-top: 35px !important
}

.pb-35 {
    padding-bottom: 35px !important
}

.pr-35 {
    padding-right: 35px !important
}

.pl-35 {
    padding-left: 35px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-35 {
        margin-bottom: 35px !important
    }
}

.mt-35 {
    margin-top: 35px !important
}

@media only screen and (max-width: 767px) {
    .mt-35 {
        margin-top: 17.5px !important
    }
}

.mb-35 {
    margin-bottom: 35px !important
}

.mr-35 {
    margin-right: 35px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-35 {
    margin-left: 35px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-35 {
        margin-top: 35px !important
    }
}

.mv-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important
}

.mh-35 {
    margin-right: 35px !important;
    margin-left: 35px !important
}

.mr-35 {
    margin-right: 35px !important
}

.ml-35 {
    margin-left: 35px !important
}

.padded-35 {
    padding: 35px
}

.mb-40 {
    margin-bottom: 40px !important
}

@media only screen and (max-width: 767px) {
    .mb-40 {
        margin-bottom: 20px !important
    }
}

.mv-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important
}

.padded-40 {
    padding: 40px
}

.pt-40 {
    padding-top: 40px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pr-40 {
    padding-right: 40px !important
}

.pl-40 {
    padding-left: 40px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-40 {
        margin-bottom: 40px !important
    }
}

.mt-40 {
    margin-top: 40px !important
}

@media only screen and (max-width: 767px) {
    .mt-40 {
        margin-top: 20px !important
    }
}

.mb-40 {
    margin-bottom: 40px !important
}

.mr-40 {
    margin-right: 40px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-40 {
    margin-left: 40px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-40 {
        margin-top: 40px !important
    }
}

.mv-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important
}

.mh-40 {
    margin-right: 40px !important;
    margin-left: 40px !important
}

.mr-40 {
    margin-right: 40px !important
}

.ml-40 {
    margin-left: 40px !important
}

.padded-40 {
    padding: 40px
}

.mb-45 {
    margin-bottom: 45px !important
}

@media only screen and (max-width: 767px) {
    .mb-45 {
        margin-bottom: 22.5px !important
    }
}

.mv-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important
}

.padded-45 {
    padding: 45px
}

.pt-45 {
    padding-top: 45px !important
}

.pb-45 {
    padding-bottom: 45px !important
}

.pr-45 {
    padding-right: 45px !important
}

.pl-45 {
    padding-left: 45px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-45 {
        margin-bottom: 45px !important
    }
}

.mt-45 {
    margin-top: 45px !important
}

@media only screen and (max-width: 767px) {
    .mt-45 {
        margin-top: 22.5px !important
    }
}

.mb-45 {
    margin-bottom: 45px !important
}

.mr-45 {
    margin-right: 45px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-45 {
    margin-left: 45px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-45 {
        margin-top: 45px !important
    }
}

.mv-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important
}

.mh-45 {
    margin-right: 45px !important;
    margin-left: 45px !important
}

.mr-45 {
    margin-right: 45px !important
}

.ml-45 {
    margin-left: 45px !important
}

.padded-45 {
    padding: 45px
}

.mb-50 {
    margin-bottom: 50px !important
}

@media only screen and (max-width: 767px) {
    .mb-50 {
        margin-bottom: 25px !important
    }
}

.mv-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important
}

.padded-50 {
    padding: 50px
}

.pt-50 {
    padding-top: 50px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pr-50 {
    padding-right: 50px !important
}

.pl-50 {
    padding-left: 50px !important
}

@media only screen and (max-width: 767px) {
    .mb-sm-50 {
        margin-bottom: 50px !important
    }
}

.mt-50 {
    margin-top: 50px !important
}

@media only screen and (max-width: 767px) {
    .mt-50 {
        margin-top: 25px !important
    }
}

.mb-50 {
    margin-bottom: 50px !important
}

.mr-50 {
    margin-right: 50px !important;
    margin-left: 0 !important;
    margin-left: initial !important
}

.ml-50 {
    margin-left: 50px !important;
    margin-right: 0 !important;
    margin-right: initial !important
}

@media only screen and (max-width: 767px) {
    .mt-sm-50 {
        margin-top: 50px !important
    }
}

.mv-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important
}

.mh-50 {
    margin-right: 50px !important;
    margin-left: 50px !important
}

.mr-50 {
    margin-right: 50px !important
}

.ml-50 {
    margin-left: 50px !important
}

.padded-50 {
    padding: 50px
}

@media only screen and (max-width: 767px) {

    .padded-50,
    .padded-40 {
        padding: 20px
    }
}

@media only screen and (max-width: 767px) {
    .padded-30 {
        padding: 15px
    }
}

@media only screen and (max-width: 767px) {
    .padded-20 {
        padding: 15px
    }
}

.center {
    text-align: center
}

@media only screen and (max-width: 767px) {
    .d-sm-none {
        display: none !important
    }
}

.z-99 {
    z-index: 99
}

.z-9 {
    z-index: 9
}

.z-7 {
    z-index: 7
}

.center-v {
    display: inline-block !important;
    vertical-align: middle !important
}

.bg-primary {
    color: var(--color-text-reverse) !important
}

.bg-primary {
    background: var(--color-primary)
}

.bg-grey {
    background: #f5f7f9;
    background: var(--color-grey)
}

.bg-danger {
    background: #ff443a;
    background: var(--color-danger)
}

.bg-white {
    background: #fff
}

.b-radius {
    border-radius: 8px
}

.b-radius--min {
    border-radius: 4px
}

.b-radius--large {
    border-radius: 12px
}

.b-radius--oval {
    border-radius: 50%
}

.ltr {
    direction: ltr;
    unicode-bidi: plaintext
}

.wide {
    width: 100%
}

.full-height {
    height: 100%
}

.h-auto {
    height: auto !important
}

.h-50 {
    height: 50px !important
}

.no-border {
    border: none !important
}

.bordered {
    border: 1px solid #f5f7f9;
    border: 1px solid var(--color-grey)
}

.bordered--main {
    border-color: var(--color-primary)
}

.bordered--dark {
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.bordered--darker {
    border: 1px solid #ecf0f5;
    border: 1px solid var(--color-grey-darker)
}

hr {
    border: 0;
    border-top: 1px solid #f5f7f9;
    border-top: 1px solid var(--color-grey);
    margin: 20px 0
}

.disabled {
    opacity: .65;
    pointer-events: none
}

.pd-expand-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 0 0 40px
}

.pd-expand-wrapper .btn,
.pd-expand-wrapper .shipping-tracker>a {
    margin: 0 15px
}

.pd-expand-wrapper:before,
.pd-expand-wrapper:after {
    content: "";
    display: inline-block;
    flex: 1;
    background: #f5f7f9;
    background: var(--color-grey);
    height: 1px
}

.bg-hover-none:hover {
    background: transparent none repeat 0 0/auto auto padding-box border-box scroll !important;
    background: initial !important
}

.fit-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.fit-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.d-inline-block {
    display: inline-block !important
}

@media only screen and (max-width: 767px) {
    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

.d-flex {
    display: flex !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.algin-items-center {
    align-items: center
}

.flex-column {
    flex-direction: column !important
}

.flex-1 {
    flex: 1
}

.ty-1u {
    transform: translateY(-1px)
}

.ty-1d {
    transform: translateY(1px)
}

.ty-2u {
    transform: translateY(-2px)
}

.ty-2d {
    transform: translateY(2px)
}

.ty-3u {
    transform: translateY(-3px)
}

.ty-3d {
    transform: translateY(3px)
}

.ty-4u {
    transform: translateY(-4px)
}

.ty-4d {
    transform: translateY(4px)
}

.ty-5u {
    transform: translateY(-5px)
}

.ty-5d {
    transform: translateY(5px)
}

.ty-10u {
    transform: translateY(-10px)
}

.ty-10d {
    transform: translateY(10px)
}

.ty-15u {
    transform: translateY(-15px)
}

.ty-15d {
    transform: translateY(15px)
}

.ty-20u {
    transform: translateY(-20px)
}

.ty-20d {
    transform: translateY(20px)
}

.float-start {
    float: right
}

.float-end {
    float: left
}

.v-align-middle {
    vertical-align: middle !important
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(238, 238, 238, .5) !important
}

.shadow {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1) !important
}

.shadow-lg {
    box-shadow: 0 4px 20px 5px rgba(238, 238, 238, .6) !important
}

.shadow-none {
    box-shadow: none !important
}

.no-scroll {
    overflow: hidden !important
}

.nav-open .site-header {
    z-index: 99;
    position: fixed ;
    top: 0;
    left: 0;
    right: 0;
}

.transparent-08 {
    opacity: .8 !important
}

.transparent-06 {
    opacity: .6 !important
}

.transparent-04 {
    opacity: .4 !important
}

.transparent-02 {
    opacity: .2 !important
}

.no-scroll {
    overflow: hidden !important
}

.no-scroll-x {
    overflow-x: hidden !important
}

.no-scroll-y {
    overflow-y: hidden !important
}

.no-click {
    pointer-events: none !important
}

.no-feedback {
    pointer-events: none !important
}

@media(max-width: 767px) {
    .hidden-on-mobile {
        display: none
    }
}

.font-base {
    font-size: var(--font-base) !important
}

.font-sm {
    font-size: var(--font-sm) !important
}

.font-xsm {
    font-size: var(--font-xsm) !important
}

.font-xxsm {
    font-size: var(--font-xxsm) !important
}

.font-lg {
    font-size: var(--font-lg) !important
}

.font-xlg {
    font-size: var(--font-xlg) !important
}

.font-xxlg {
    font-size: var(--font-xxlg) !important
}

.font-xxxlg {
    font-size: var(--font-xxxlg) !important
}

.font-regular {
    font-family: var(--font-base) !important
}

.font-bold {
    font-family: var(--font-medium) !important
}

.color-primary {
    color: var(--color-primary) !important
}

.color-text {
    color: var(--color-text) !important
}

.color-secondary {
    color: var(--color-secondary) !important
}

.color-grey {
    color: #999 !important;
    color: var(--color-text-lighter) !important
}

.color-muted {
    color: #bbb !important;
    color: var(--color-text-muted) !important
}

.color-danger {
    color: #ff443a !important;
    color: var(--color-danger) !important
}

.color-warning {
    color: #fcd34c !important;
    color: var(--color-yellow) !important
}

.color-gold {
    color: #fcd34c;
    color: var(--color-yellow)
}

.color-text-reverse {
    color: var(--color-text-reverse)
}

.color-white {
    color: #fff !important;
    color: var(--color-white) !important
}

.color-off-white {
    color: #f5f7f9 !important;
    color: var(--color-grey) !important
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-wrap {
    white-space: normal
}

.text-nowrap {
    white-space: nowrap
}

.text-underline {
    text-decoration: underline !important
}

.text-unicode {
    unicode-bidi: plaintext;
    direction: rtl;
    letter-spacing: 1px
}

.text-hover-main {
    transition: color .5s cubic-bezier(.2, 1, .3, 1)
}

.text-hover-main:hover {
    color: var(--color-primary) !important
}

.nowrap {
    white-space: nowrap
}

.nowrap-normal {
    white-space: normal
}

.emoji {
    display: inline-block;
    margin: 0 4px
}

.lh-1 {
    line-height: 1
}

.lh-1_3 {
    line-height: 1.3
}

.lh-1 {
    line-height: 1
}

.shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .05)
}

#theme_preview_bar {
    width: 100%;
    min-height: 40px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 20px;
    background-color: #3f3f40;
    z-index: 99;
    padding-left: 44px;
    display: flex;
    align-items: center
}

#theme_preview_bar * {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

#theme_preview_bar h2 {
    font-size: var(--font-base);
    color: #a5a5a5;
    line-height: 1
}

#theme_preview_bar h2::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background: url(https://salla.sa/site/wp-content/themes/salla/assets/images/logo.svg) 50% no-repeat;
    background-size: contain;
    margin: 0 0 0 10px
}

#theme_preview_bar h2 span {
    margin-right: 5px;
    padding: 5px 22px 4px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .8);
    color: var(--color-text);
    font-size: var(--font-sm)
}

#theme_preview_bar p {
    margin: 0;
    line-height: 1.3
}

#theme_preview_bar a {
    color: inherit;
    transition: .3s
}

#theme_preview_bar a:hover {
    opacity: .75
}

#theme_preview_bar .btn,
#theme_preview_bar .shipping-tracker>a {
    border: none !important
}

#theme_preview_bar .btn,
#theme_preview_bar .shipping-tracker>a {
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 0;
    background-color: rgba(0, 0, 0, .6);
    font-size: var(--font-xlg);
    color: rgba(255, 255, 255, .8);
    transition: all .35s cubic-bezier(.2, 1, .3, 1)
}

#theme_preview_bar .btn i,
#theme_preview_bar .shipping-tracker>a i {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%)
}

#theme_preview_bar .btn:hover,
#theme_preview_bar .shipping-tracker>a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, .95)
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__container {
    position: relative;
    box-sizing: border-box
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important
}

.splide__list {
    width: -moz-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: flex
}

.splide__pagination {
    display: inline-flex;
    align-items: center;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

.splide__pagination li {
    list-style-type: none;
    display: inline-block;
    line-height: 1;
    margin: 0
}

.splide {
    visibility: hidden
}

.splide,
.splide__slide {
    position: relative;
    outline: none
}

.splide__slide {
    list-style-type: none !important
}

.splide__slide {
    box-sizing: border-box;
    margin: 0;
    flex-shrink: 0
}

.splide__slide img {
    vertical-align: bottom
}

.splide__slider {
    position: relative
}

.splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    border-left-color: transparent;
    animation: splide-loading 1s linear infinite
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.splide--fade>.splide__track>.splide__list {
    display: block
}

.splide--fade>.splide__track>.splide__list>.splide__slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1
}

.splide--rtl {
    direction: rtl
}

.splide--ttb>.splide__track>.splide__list {
    display: block
}

.splide--ttb>.splide__pagination {
    width: auto
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__container {
    position: relative;
    box-sizing: border-box
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important
}

.splide__list {
    width: -moz-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: flex
}

.splide__pagination {
    display: inline-flex;
    align-items: center;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

.splide__pagination li {
    list-style-type: none;
    display: inline-block;
    line-height: 1;
    margin: 0
}

.splide {
    visibility: hidden
}

.splide,
.splide__slide {
    position: relative;
    outline: none
}

.splide__slide {
    list-style-type: none !important
}

.splide__slide {
    box-sizing: border-box;
    margin: 0;
    flex-shrink: 0
}

.splide__slide img {
    vertical-align: bottom
}

.splide__slider {
    position: relative
}

.splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    border-left-color: transparent;
    animation: splide-loading 1s linear infinite
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.splide--fade>.splide__track>.splide__list {
    display: block
}

.splide--fade>.splide__track>.splide__list>.splide__slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1
}

.splide--rtl {
    direction: rtl
}

.splide--ttb>.splide__track>.splide__list {
    display: block
}

.splide--ttb>.splide__pagination {
    width: auto
}

.splide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    opacity: .7;
    background: #e8edf2;
    fill: #99a4ae
}

.splide__arrow svg {
    width: 1.2em;
    height: 1.2em
}

.splide__arrow:hover {
    cursor: pointer;
    opacity: .9
}

.splide__arrow:focus {
    outline: none
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide__pagination {
    position: absolute;
    z-index: 1;
    bottom: .5em;
    left: 50%;
    transform: translateX(-50%);
    padding: 0
}

.splide__pagination__page {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e8edf2;
    border-radius: 50%;
    margin: 3px;
    padding: 0;
    transition: transform .2s linear;
    border: none;
    opacity: .7
}

.splide__pagination__page.is-active {
    transform: scale(1.4);
    background: #fff
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus {
    outline: none
}

.splide__progress__bar {
    width: 0;
    height: 3px;
    background: #e8edf2
}

.splide--nav>.splide__track>.splide__list>.splide__slide {
    border: 3px solid transparent
}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
    border-color: #000
}

.splide--nav>.splide__track>.splide__list>.splide__slide:focus {
    outline: none
}

.splide--rtl>.splide__arrows .splide__arrow--prev,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev {
    right: 1em;
    left: auto
}

.splide--rtl>.splide__arrows .splide__arrow--prev svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide--rtl>.splide__arrows .splide__arrow--next,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide--rtl>.splide__arrows .splide__arrow--next svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide--ttb>.splide__arrows .splide__arrow,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide--ttb>.splide__arrows .splide__arrow--prev,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev {
    top: 1em
}

.splide--ttb>.splide__arrows .splide__arrow--prev svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide--ttb>.splide__arrows .splide__arrow--next,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next {
    top: auto;
    bottom: 1em
}

.splide--ttb>.splide__arrows .splide__arrow--next svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide--ttb>.splide__pagination {
    display: flex;
    flex-direction: column;
    bottom: 50%;
    left: auto;
    right: .5em;
    transform: translateY(50%)
}

@keyframes spinner-loader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes conceal {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes reveal {
    from {
        opacity: 0
    }

    to {
        height: auto
    }
}

@-moz-document url-prefix() {
    .t-2px {
        transform: none !important
    }

    header .site-header__wrapper .site-header__cart a {
        display: inline-block
    }

    .top-header .top-header__info li a {
        align-items: baseline
    }

    header .site-header__wrapper .site-header__cart .price .quantity {
        line-height: 20px
    }

    .pie-wrap:after {
        line-height: 64px;
        font-size: var(--font-xlg)
    }

    .special-offer__content .special-offer__quantity-left span {
        margin-top: 20px
    }

    .dropdonw-menu-wrap .dropdown-btn i.sicon-user {
        transform: translateY(-2px) !important
    }

    .dropdonw-menu-wrap .dropdown-btn i.sicon-user {
        display: inline-block
    }

    .profile__information .form-group.phone-input>div {
        overflow: hidden
    }

    .donate-area .profile__information .btn .text,
    .donate-area .profile__information .shipping-tracker>a .text {
        transform: translateY(2px) !important
    }

    .nav-mobile .main-nav .sub-menu ul li .notifications {
        line-height: 21px
    }
}

h1 {
    font-weight: 400
}

h2 {
    font-weight: 400
}

h3 {
    font-weight: 400
}

h4 {
    font-weight: 400
}

h5 {
    font-weight: 400
}

h6 {
    font-weight: 400
}

.about-us {
    position: relative;
    padding-top: 90px
}

.about-us:before {
    content: "";
    height: 250px;
    width: 100%;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    position: absolute;
    top: 0
}

.about-us__content-wrapper .img-wrap {
    width: 100%;
    max-width: 490px;
    height: 545px;
    background-image: url(../images/about.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative
}

.about-us__content-wrapper .img-wrap:after {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 10px;
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--color-primary)
}

.about-us__content-wrapper h4 {
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--fon-xxlg);
    margin-bottom: 17px
}

.about-us__content-wrapper h5 {
    color: var(--color-text);
    font-size: var(--fon-xxlg);
    font-weight: 400;
    margin-bottom: 120px
}

.about-us__content-wrapper p {
    margin: 0 0 15px;
    font-size: var(--fon-sm);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.7
}

.category-title--sortable {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.category-title--sortable .title {
    flex: auto;
    padding-left: 30px
}

.category-title--sortable .sort {
    flex-shrink: 0
}

.category-wrapper {
    padding: 40px 0 100px
}

.category-wrapper .empty-category {
    display: block;
    margin: 50px auto 0
}

.category-wrapper .category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.category-wrapper--secondary {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.category-wrapper--secondary .accordion__panel .accordion__title {
    background-color: #fff
}

.category-wrapper--secondary .accordion__panel .accordion__body .checkbox input[type=checkbox] {
    display: none
}

.category-wrapper--secondary .accordion__panel .accordion__body .checkbox input[type=checkbox]+label:before {
    background-color: #fff
}

.category-wrapper--secondary .accordion__panel .accordion__body .checkbox input[type=checkbox]:checked+label:before {
    background-color: var(--color-primary)
}

.product-details__slider {
    margin: 0 0 30px;
    position: sticky;
    top: 80px
}

@media only screen and (max-width: 992px) {
    .product-details__slider {
        position: relative;
        top: auto;
        top: initial
    }
}

.product-details__slider .badge {
    top: 35px;
    right: 1px
}

.product-details__slider.vertical-thumbs {
    grid-gap: 20px;
    grid-template-columns: 80px calc(100% - 100px)
}

@media only screen and (max-width: 767px) {
    .product-details__slider.vertical-thumbs {
        grid-template-columns: 100%;
        grid-gap: 10px;
        margin-bottom: 20px
    }

    .product-details__slider.vertical-thumbs .splide-thumbs-wrapper {
        order: 1
    }
}

.product-details__slider.singleton .splide__arrows,
.product-details__slider.singleton .splide-thumbs-wrapper {
    display: none
}

@media only screen and (max-width: 767px) {
    .product-details__slider {
        margin: 0 0 15px
    }
}

.product-details__info .article--product-details ol,
.product-details__info .article--product-details ul {
    margin-left: 30px
}

.product-details__info .article--product-details ol[dir=rtl],
.product-details__info .article--product-details ul[dir=rtl] {
    margin-right: 30px
}

.product-details__info .article--product-details ul li {
    list-style: disc;
    padding: 0
}

.product-details__info .article--product-details ol li {
    list-style: decimal;
    padding: 0
}

.product-details__info .purchase-hot-wrapper>*:not(:last-child) {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #dde4ec;
    border-left: 1px solid var(--color-grey-darkest)
}

.product-details__info .product-section--quantity .s-quantity-input-container,
.product-details__info .product-section--quantity .s-button-element {
    border-radius: 100px !important;
    height: 45px !important;
}

.product-details__title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 20px
}

.product-details__title .brand-logo {
    display: block;
    margin: 0 0 12px
}

.product-details__title .brand-logo img {
    display: block;
    width: auto;
    max-height: 35px
}

.product-details__title .title-wrapper {
    flex: auto
}

.product-details__title .share-like-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-shrink: 0;
    margin-right: 20px
}

.product-details__title .share-like {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.product-details__title .share-like>*:not(:last-child) {
    margin: 0 0 0 10px
}

@media only screen and (max-width: 1023px) {
    .product-details__title {
        flex-direction: column
    }

    .product-details__title .share-like-wrapper {
        width: 100%;
        justify-content: space-between;
        margin: 20px 0 0
    }
}

.product-selection--options a {
    font-size: var(--font-sm);
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    border-radius: 20px;
    padding: 7px 22px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.product-selection--options a i {
    margin-left: 5px;
    position: relative;
    top: 2px
}

.product-selection--options a.active,
.product-selection--options a:hover {
    background: #e8edf2;
    background: var(--color-secondary-darker)
}

.product-details__options .product-selection {
    margin-top: 30px
}

.product-details__options .product-selection>li {
    display: flex
}

.product-details__options .product-selection>li:not(:last-child) {
    margin-bottom: 25px
}

.product-details__options .product-selection>li>span {
    font-size: var(--font-sm);
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    top: 3px;
    flex: 0 0 20%
}

.product-details__options .product-selection>li.product-selection--sizes ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row
}

.product-details__options .product-selection>li.product-selection--sizes ul li:not(:last-of-type) {
    margin-left: 10px
}

.product-details__options .product-selection .product-selection--quantity {
    margin-bottom: 25px
}

.product-details__model-viewer-wrapper {
    border-radius: 8px;
    border: 1px solid #eee;
    border: 1px solid var(--color-grey-border);
    position: sticky;
    top: 80px;
    overflow: hidden
}

.product-details__model-viewer-wrapper .switcher-3d-view {
    position: absolute;
    left: 20px;
    top: 35px
}

@media only screen and (max-width: 992px) {
    .product-details__model-viewer-wrapper {
        margin: 0 0 15px;
        position: relative;
        top: auto;
        top: initial
    }
}

.user-profile__actions {
    padding: 0 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

@media only screen and (max-width: 1023px) {
    .user-profile__actions {
        flex-direction: column
    }
}

@media only screen and (max-width: 992px) {
    .user-profile__actions {
        align-items: center
    }
}

.user-profile__avatar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    position: relative
}

.user-profile__avatar .user-avatar-container {
    position: relative;
    cursor: pointer;
    margin-left: 20px
}

.user-profile__avatar .user-avatar-container .upload {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.user-profile__avatar .user-avatar-container input[type=file] {
    opacity: 0
}

.user-profile__avatar .user-name-container .user-gender {
    color: #bbb;
    color: var(--color-text-muted)
}

.user-profile__avatar .user-name-container .user-gender li {
    width: auto;
    margin: 0 10px
}

.user-profile__avatar .user-name-container .user-gender li:first-child {
    margin-right: 0
}

.user-profile__avatar .user-name-container .user-gender li:last-child {
    margin-left: 0
}

@media only screen and (max-width: 1023px) {
    .user-profile__avatar .user-name-container .user-gender {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row
    }
}

@media only screen and (max-width: 1023px) {
    .user-profile__avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column
    }

    .user-profile__avatar .user-avatar-container {
        margin-bottom: 20px
    }

    .user-profile__avatar:after {
        right: 15px !important
    }
}

@media only screen and (max-width: 992px) {
    .user-profile__avatar {
        margin-bottom: 0
    }
}

.user-profile__avatar:after {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-sm);
    color: var(--color-text-reverse);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    text-align: center;
    line-height: 30px;
    position: absolute;
    top: 0;
    right: -5px;
    z-index: 7;
    pointer-events: none
}

.user-profile__tabs .tabs-heads .tab-head {
    margin: 0 15px 10px
}

.user-profile__tabs .tabs-heads .tab-head a .badge {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    margin-right: 5px
}

.user-profile__tabs .tabs-heads .tab-head:last-child {
    margin-left: 0
}

.user-profile__tabs .tabs-heads .tab-head:hover a,
.user-profile__tabs .tabs-heads .tab-head.active a {
    color: var(--color-primary);
    text-decoration: underline
}

.user-profile__tabs .tabs-heads .tab-head:hover .dropdown-menu a {
    text-decoration: none;
    color: inherit
}

.user-profile__tabs .tabs-heads .tab-head.active a {
    pointer-events: none
}

@media only screen and (max-width: 992px) {
    .user-profile__tabs {
        display: none
    }
}

body:not(.customer-profile) .user-avatar-container,
body:not(.customer-profile) .user-profile__avatar:after {
    display: none
}

.verify-mobile {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .0509803922);
    border-radius: 12px
}

.verify-mobile__title {
    font-size: var(--font-md);
    margin-bottom: 10px
}

.verify-mobile__title .icon {
    margin-left: 10px
}

.verify-mobile__message {
    font-size: var(--font-sm);
    color: #666;
    margin-bottom: 15px
}

.rating-wizard {
    border-radius: 8px;
    padding: 40px 20px 20px;
    border: 2px solid #ecf0f5;
    border: 2px solid var(--color-grey-darker)
}

.rating-wizard__nav {
    margin: 0 auto 30px !important;
    justify-content: center !important;
    align-items: center !important
}

.rating-wizard__nav {
    max-width: 250px
}

.rating-wizard__nav li {
    position: relative;
    z-index: 1
}

.rating-wizard__nav li .btn,
.rating-wizard__nav li .shipping-tracker>a {
    width: 50px;
    white-space: nowrap;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: var(--font-sm);
    padding: 0;
    pointer-events: none
}

.rating-wizard__nav li .btn:before,
.rating-wizard__nav li .shipping-tracker>a:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    box-shadow: inset 0 0 0 2px #ecf0f5, 0 0 0 10px #fff;
    box-shadow: inset 0 0 0 2px var(--color-grey-darker), 0 0 0 10px #fff;
    border-radius: 50%;
    margin-bottom: 3px;
    background-color: #fff;
    background-color: var(--color-white);
    transition: .3s
}

.rating-wizard__nav li.sep-line {
    flex: 1;
    height: 2px;
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker);
    transform: translateY(-13px)
}

.rating-wizard__nav li.active .btn,
.rating-wizard__nav li.active .shipping-tracker>a {
    color: var(--color-primary)
}

.rating-wizard__nav li.active .btn:before,
.rating-wizard__nav li.active .shipping-tracker>a:before {
    box-shadow: inset 0 0 0 2px var(--color-primary), 0 0 0 10px #fff
}

.rating-wizard__nav li.prev .btn,
.rating-wizard__nav li.prev .shipping-tracker>a {
    color: var(--color-primary)
}

.rating-wizard__nav li.prev .btn:before,
.rating-wizard__nav li.prev .shipping-tracker>a:before {
    box-shadow: inset 0 0 0 10px var(--color-primary), 0 0 0 10px #fff
}

.rating-wizard__nav li.prev+.sep-line {
    background-color: var(--color-primary)
}

.rating-wizard__nav.is-submitted {
    padding: 50px 20px 45px
}

.rating-wizard__nav.is-submitted .rating-wizard__nav {
    display: none
}

.rating-wizard .rate-label {
    min-height: 25px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.rating-wizard .tabs[data-tab-content] {
    display: none;
    animation: conceal .6s forwards
}

.rating-wizard .tabs[data-tab-content].active {
    display: block;
    animation: reveal .6s linear
}

.rating-wizard .rw-product-entry {
    margin-bottom: 50px
}

.rating-wizard .rw-product-entry__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 0 15px
}

@media only screen and (max-width: 767px) {
    .rating-wizard .rw-product-entry__info {
        flex-direction: column
    }
}

.rating-wizard .rw-product-entry__title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex: 1;
    padding-left: 20px
}

.rating-wizard .rw-product-entry__title .avatar-wrapper {
    flex-shrink: 0
}

@media only screen and (max-width: 767px) {
    .rating-wizard .rw-product-entry__title {
        margin-bottom: 15px
    }
}

.rating-wizard .rw-product-entry__rate {
    flex-shrink: 0
}

@media only screen and (max-width: 767px) {
    .rating-wizard .rw-product-entry__rate {
        width: 100%
    }

    .rating-wizard .rw-product-entry__rate .rating-wrap {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row
    }
}

.rating-wizard .rate-element {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    pointer-events: none
}

.rating-wizard .rate-element * {
    pointer-events: auto
}

.rating-wizard .rating-products__item {
    border-bottom: 1px solid #e8edf2;
    border-bottom: 1px solid var(--color-secondary-darker);
    margin-bottom: 15px;
    padding-bottom: 15px
}

.rating-wizard .rating-products__item img {
    max-width: 60px;
    border-radius: 5px
}

.rating-wizard .rating-products__item .rating-wrap {
    flex-shrink: 0
}

.rating-wizard .rating-products__item .rating-value {
    font-size: var(--font-sm)
}

.rating-wizard .rating-products__item__commentarea textarea {
    height: 50px;
    transition: .4s cubic-bezier(.55, 0, .1, 1) 0s
}

.rating-wizard .rating-products__item__commentarea textarea:focus {
    height: 80px
}

.rating-wizard.done,
.rating-wizard.processing {
    background: #f5f7f9;
    background: var(--color-grey)
}

.rating-wizard.done .rating-wizard__nav,
.rating-wizard.processing .rating-wizard__nav {
    display: none
}

.rating-wizard.processing .btn--procedd {
    pointer-events: none
}

.rating-wizard.processing:before {
    opacity: 1
}

.rating-wizard.processing.done .btn--procedd {
    pointer-events: auto
}

.rating-wizard.processing.done:before {
    opacity: 0
}

.rating-wizard.no-shipping.active-tab-1 .rating-wizard__nav:after {
    width: calc(100% - 40px)
}

.rating-wizard.rated .rating-wizard__nav li .btn,
.rating-wizard.rated .rating-wizard__nav li .shipping-tracker>a {
    pointer-events: auto
}

.rating-wizard:before {
    content: "يتم ارسال التقييم...";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: inherit;
    font-size: var(--font-base);
    color: var(--color-text);
    background: #f5f7f9;
    background: var(--color-grey);
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease-in-out;
    z-index: 1;
    border-radius: 8px;
    pointer-events: none
}

@media only screen and (max-width: 992px) {
    .rating-wizard {
        padding: 30px 15px 15px
    }
}

.brands__nav {
    position: relative;
    z-index: 5;
    max-height: 92px
}

@media only screen and (max-width: 767px) {
    .brands__nav {
        max-height: 120px
    }
}

#brands_index {
    text-align: center;
    margin: 0 auto 60px;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

#brands_index li {
    margin: 0 5px 10px;
    display: inline-block
}

.fixed-pinned #brands_index {
    max-width: 60px !important
}

.fixed-pinned #brands_index {
    position: fixed;
    top: 0;
    right: 0;
    padding-right: 2px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    z-index: 7;
    opacity: 0;
    background: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20%)
}

.fixed-pinned #brands_index li {
    margin-bottom: 2px
}

.fixed-pinned #brands_index li a {
    width: 32px;
    height: 30px;
    line-height: 20px
}

@media only screen and (max-width: 992px) {
    .fixed-pinned #brands_index li a {
        width: 26px;
        height: 22px;
        line-height: 14px;
        padding: 1px 0 3px;
        font-size: var(--font-sm);
        background-color: transparent;
        color: #c4d7e4
    }

    .fixed-pinned #brands_index li a.is-active {
        background: #f0f2f5;
        background: var(--color-grey-dark);
        color: var(--color-text)
    }
}

.fixed-nav #brands_index {
    opacity: 1
}

.animated #brands_index {
    transition: transform .5s, opacity .4s
}

#brands_index a,
.brand-section__title b {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 26px;
    padding: 2px 0 8px;
    text-align: center;
    border-radius: 4px;
    font-size: var(--font-base);
    background: #f5f7f9;
    background: var(--color-grey);
    color: #31363b;
    transition: .3s
}

#brands_index a:hover,
.brand-section__title b:hover {
    background: #e5e8eb
}

#brands_index a.is-active,
.is-active .brand-section__title b {
    background: var(--color-primary);
    color: #fff;
    color: var(--color-white)
}

#brands_list {
    padding: 0 50px
}

#brands_list section:last-of-type {
    margin-bottom: 50px
}

@media only screen and (max-width: 768px) {
    #brands_list {
        padding: 0 30px
    }
}

.brand-section {
    padding-top: 60px
}

.brand-section__title {
    position: relative;
    width: 100%;
    padding: 30px 0
}

.brand-section__title:after {
    content: "";
    display: block;
    width: calc(100% - 50px);
    height: 1px;
    background: #eaeaea;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0
}

.brand-section__title b {
    pointer-events: none
}

.brand-section__content .brands-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(120px, auto);
    width: 100%;
    height: auto;
    position: relative;
    margin: 0
}

.brand-section__content .brands-list li {
    display: block;
    width: 100%;
    position: relative;
    margin: 0
}

.brand-section__content .brands-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
    box-shadow: 0 0 0 1px #f5f7f9;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.brand-section__content .brands-list li a:hover {
    box-shadow: 0 10px 15px 5px rgba(0, 0, 0, .04), inset 0 0 0 1px #eee;
    transform: translateY(-5px)
}

.brand-section__content .brands-list li img {
    display: block;
    width: 100%;
    max-height: 80px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    transition: 1s cubic-bezier(.55, 0, .1, 1) .3s
}

@media only screen and (max-width: 992px) {
    .brand-section__content .brands-list {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media only screen and (max-width: 768px) {
    .brand-section__content .brands-list {
        grid-gap: 10px;
        grid-auto-rows: minmax(80px, auto);
        grid-template-columns: repeat(3, 1fr)
    }

    .brand-section__content .brands-list li img {
        max-height: 50px
    }
}

@media only screen and (max-width: 480px) {
    .brand-section__content .brands-list {
        grid-template-columns: repeat(2, 1fr)
    }
}

.brand-wrapper {
    margin: 80px 0
}

.brand-wrapper .brand__banner {
    display: block;
    width: 100%;
    height: auto;
    max-height: 300px;
    margin: 0 0 30px;
    border-radius: 8px;
    overflow: hidden
}

.brand-wrapper .brand__banner img {
    display: block;
    width: 100%;
    height: auto
}

.brand-wrapper .brand__header {
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 50px;
    margin-bottom: 50px
}

.brand-wrapper .brand__header .article img {
    display: block;
    width: auto;
    max-height: 100px;
    margin: 0 auto 30px
}

.brand-wrapper .brand__header .article p,
.brand-wrapper .brand__header .article h3 {
    margin: 0
}

.brand-wrapper .brand__header .article h3 {
    color: var(--color-primary);
    font-size: var(--font-lg)
}

.cart-progress {
    margin: 0 0 40px
}

.cart-progress .step {
    display: flex;
    align-items: center
}

.cart-progress .step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    color: var(--color-text);
    margin-left: 10px;
    position: relative
}

.cart-progress .step__icon [class^=sicon-] {
    font-size: var(--font-xxlg)
}

.cart-progress .step__title .title {
    font-family: var(--font-regular)
}

@media only screen and (max-width: 767px) {
    .cart-progress .step__title .title {
        font-size: var(--font-base)
    }
}

.cart-progress .step .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    border: 1px solid var(--color-primary);
    background-color: #fff;
    background-color: var(--color-white);
    color: var(--color-text)
}

.cart-progress .step.is-active .step__icon {
    background-color: var(--color-primary);
    color: var(--color-text-reverse)
}

.cart-progress .step.is-active .step__title h3 {
    color: var(--color-primary)
}

.cart-progress .step.step-2 {
    order: 1
}

.cart-progress:after {
    content: "";
    display: block;
    height: 3px;
    flex-grow: 1;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border-radius: 2px;
    margin: 0 20px
}

.free-shipping-wrapper .free-shipping-bar b {
    color: var(--color-primary)
}

.free-shipping-applied,
.loyal-prize-wrapper {
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

.free-shipping-applied:after,
.loyal-prize-wrapper:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    opacity: .08;
    pointer-events: none
}

.loyal-prize-wrapper {
    padding: 13px 50px !important
}

.loyal-prize-wrapper .btn--delete-item {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    left: 10px
}

@media only screen and (max-width: 767px) {
    .cart-elements-wrapper.padded-30 {
        padding: 10px !important
    }
}

.cart-bottom-actions {
    display: flex;
    flex-direction: row;
    margin: 0 -10px
}

.cart-bottom-actions>* {
    margin: 0 10px
}

.receipt {
    border: 1px solid #f5f7f9;
    border: 1px solid var(--color-grey);
    box-shadow: 0 5px 15px 1px rgba(0, 0, 0, .04);
    border-radius: 8px
}

.receipt__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 20px
}

.receipt__header .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 80px;
    height: 80px;
    position: relative
}

.receipt__header .icon-holder svg {
    width: 100%;
    height: 100%
}

.receipt__header .icon-holder svg #confetti {
    fill: #fff;
    fill: var(--color-white)
}

.receipt__header .icon-holder:before,
.receipt__header .icon-holder:after {
    content: "";
    display: block;
    width: 100px;
    height: 50px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%
}

.receipt__header .icon-holder:before {
    background-image: url(/stores/images/spark-bg-left.svg);
    right: 0;
    transform: translateY(-50%) translateX(100%)
}

.receipt__header .icon-holder:after {
    background-image: url(/stores/images/spark-bg-right.svg);
    left: 0;
    transform: translateY(-50%) translateX(-100%)
}

@media only screen and (max-width: 767px) {
    .receipt__header {
        padding: 20px
    }
}

.receipt__support {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    font-size: var(--font-sm);
    padding: 10px 20px;
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.receipt__support h3 {
    flex: 0 0 auto
}

.receipt__support h3 i {
    margin-left: 5px
}

.receipt__support ul {
    flex: 1 0 75%;
    justify-content: flex-end
}

.receipt__support ul li {
    display: inline-block;
    margin-left: 20px
}

.receipt__support ul li .btn,
.receipt__support ul li .shipping-tracker>a {
    font-size: var(--font-sm);
    color: var(--color-text);
    unicode-bidi: plaintext;
    text-align: right;
    letter-spacing: 1px
}

.receipt__support ul li .btn i,
.receipt__support ul li .shipping-tracker>a i {
    margin-right: 3px
}

.receipt__support ul li:last-child {
    margin: 0
}

@media only screen and (max-width: 480px) {
    .receipt__support {
        flex-direction: column;
        align-items: center
    }

    .receipt__support ul {
        justify-content: center
    }
}

.receipt__share {
    width: 100%;
    padding: 30px 20px
}

.receipt__share .receipt-share-buttons {
    display: flex;
    justify-content: center
}

.receipt__share .receipt-share-buttons>* {
    margin: 0 5px
}

.receipt__share textarea {
    text-align: center
}

@media only screen and (max-width: 767px) {
    .receipt__share {
        padding: 15px;
        margin: 0 auto 20px
    }

    .receipt__share textarea {
        height: auto;
        padding: 10px 5px
    }
}

.receipt__proceed.store-basic {
    display: flex
}

.receipt__proceed.store-basic .btn--proceed {
    margin-left: 20px
}

@media only screen and (max-width: 767px) {
    .receipt__proceed.store-basic {
        flex-direction: column
    }

    .receipt__proceed.store-basic .btn--proceed {
        margin: 0 0 15px
    }
}

.rec__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 20px
}

.rec__content .article ul li,
.rec__content .article ol li {
    padding: 0
}

.rec__content .article ul li:before,
.rec__content .article ol li:before {
    display: none
}

.rec__content .loyalty-strength {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 250px;
    padding: 25px 15px;
    border: 4px solid rgba(255, 220, 100, .5);
    border-radius: 4px;
    background-color: rgba(255, 220, 100, .05)
}

.rec__content .loyalty-strength h2 {
    font-size: var(--font-base);
    color: #ffba57;
    margin: 0 0 8px
}

.rec__content .loyalty-strength h2 svg {
    margin: 0 auto
}

.rec__content .loyalty-strength p {
    color: #a27130
}

.rec__content .loyalty-strength p b {
    display: inline-block;
    margin: 0 5px;
    color: #efa544
}

@media only screen and (max-width: 767px) {
    .rec__content {
        flex-direction: column;
        padding: 30px 20px
    }

    .rec__content .article {
        padding: 0;
        margin: 30px 0 0;
        order: 1
    }

    .rec__content .loyalty-strength {
        flex: 1 0 auto;
        order: 0;
        width: 100%
    }
}

.rec__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px 20px
}

.rec__content .btn-load-elements {
    width: 35%;
    max-width: 170px;
    height: 40px;
    margin: 0 auto;
    font-size: var(--font-sm);
    border-radius: 4px
}

.rec__content .btn-load-elements i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px
}

@media only screen and (max-width: 767px) {
    .rec__content .btn-load-elements {
        width: 75%
    }
}

@media only screen and (max-width: 767px) {
    .rec__content {
        padding: 20px
    }
}

.rec__item-wrapper {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

#invoice-form {
    min-height: 40px;
    transition: padding .3s
}

#invoice-form.sent {
    color: #30d158;
    color: var(--color-success);
    text-align: center;
    padding: 8px;
    font-weight: 700;
    margin-bottom: 15px
}

#invoice-form .form-control {
    height: 40px;
    unicode-bidi: plaintext;
    font-family: Arial;
    text-align: right;
    padding-left: 80px
}

#invoice-form salla-button {
    position: absolute;
    top: 2px;
    left: 3px
}

#invoice-form .btn,
#invoice-form .shipping-tracker>a {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px 0 0 4px
}

.product-options-wrapper {
    padding: 10px;
    margin-right: 75px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #f5f7f9;
    border: 1px solid var(--color-grey)
}

@media only screen and (max-width: 992px) {
    .product-options-wrapper {
        margin: 0 5px
    }
}

.product-options-wrapper .color-palette {
    padding: 5px 10px !important
}

.product-options-wrapper .color-palette {
    display: block;
    border: 1px solid #eee;
    border-radius: 2px
}

.product-options-wrapper .color-palette span {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 2px
}

.digital-order-list h2 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px
}

.digital-order-list dt {
    word-break: break-all;
    padding-left: 10px
}

[dir=ltr] .digital-order-list dt {
    padding-left: 0;
    padding-right: 10px
}

.digital-order-list dl>div:not(:last-child) {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px
}

.digital-order-list dl>div .btn--primary,
.digital-order-list dl>div .shipping-tracker>a {
    white-space: nowrap
}

.digital-order-list button,
.digital-order-list .btn--small {
    padding: 8px 15px !important
}

.digital-order-list .btn--copy:hover,
.digital-order-list .btn--copy:focus,
.digital-order-list .btn--copy::before {
    color: var(--color-text-reverse) !important
}

.digital-order-list .btn--copy:hover,
.digital-order-list .btn--copy:focus,
.digital-order-list .btn--copy::before {
    opacity: .8
}

.shipping-tracker>a {
    font-size: var(--font-sm)
}

.shipping-tracker>a:before {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-md);
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    transform: translateY(-1px)
}

.colorpicker-option {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    align-items: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.colorpicker-option__code {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin: 0 5px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.search-results-title {
    display: flex !important
}

.search-results-title span {
    display: inline-block !important;
    margin-left: 5px !important
}

.loyal__banner {
    padding: 160px 0 0 !important
}

.loyal__banner {
    position: relative
}

@media only screen and (max-width: 767px) {
    .loyal__banner {
        padding: 100px 0 0 !important
    }
}

.loyal__banner-bg {
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.loyal__banner-bg:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6)
}

@media only screen and (max-width: 767px) {
    .loyal__banner-bg {
        height: 200px
    }
}

.loyal__banner-content {
    position: relative;
    overflow: hidden
}

.loyal__banner-content>* {
    z-index: 1
}

.loyal__banner-content [class^=sicon-].font-xxxlg {
    font-size: 70px !important
}

.loyal__banner-content:before,
.loyal__banner-content:after {
    content: "";
    font-family: sallaicons;
    color: #f5f7f9;
    color: var(--color-grey);
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: .6
}

.loyal__banner-content:before {
    font-size: 150px;
    top: 10px;
    right: -10px
}

.loyal__banner-content:after {
    font-size: 200px;
    bottom: -20px;
    left: -20px
}

@media only screen and (max-width: 767px) {
    .loyal__banner-content {
        flex-direction: column;
        padding: 20px
    }

    .loyal__banner-content * {
        text-align: center
    }

    .loyal__banner-content *.mr-40 {
        margin-right: 0 !important
    }

    .loyal__banner-content *[class^=sicon-].font-xxxlg {
        font-size: 50px !important
    }

    .loyal__banner-content *.btn,
    .loyal__banner-content .shipping-tracker>a {
        margin-top: 10px
    }

    .loyal__banner-content *.title.mb-0 {
        margin-bottom: 10px !important
    }
}

.loyal__points-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
    grid-gap: 20px !important
}

@media only screen and (max-width: 767px) {
    .loyal__points-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 15px !important
    }
}

.point-entry {
    overflow: hidden
}

.point-entry__title {
    padding: 30px 20px
}

.point-entry__icon {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 20px
}

.point-entry__icon [class^=sicon] {
    opacity: .8
}

.point-entry__icon>div {
    opacity: .05;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.point-entry__desc {
    width: 100%;
    padding: 15px
}

@media only screen and (max-width: 767px) {
    .point-entry__title {
        padding: 10px !important
    }

    .point-entry__title {
        flex-direction: column;
        text-align: center
    }

    .point-entry__title .font-xxlg {
        font-size: var(--font-xlg) !important
    }

    .point-entry__title .font-sm {
        font-size: var(--font-xsm) !important
    }

    .point-entry__icon {
        margin: 0 0 10px
    }

    .point-entry__desc {
        padding: 15px 10px !important
    }

    .point-entry__desc>* {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        float: none;
        float: initial
    }
}

.point-entry.logged-in .point-entry__title {
    padding: 20px
}

.loyal-modal__icon {
    max-height: 70px
}

@media only screen and (max-width: 767px) {
    .loyal-modal__icon {
        margin: 0 0 20px !important
    }

    .loyal-modal__header {
        flex-direction: column !important
    }

    .loyal-modal__header {
        text-align: center
    }
}

.loyalty-modal-trigger {
    color: var(--color-primary)
}

.loyalty-modal-trigger:hover {
    color: var(--color-primary-d)
}

.landing-page {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.landing-page>header {
    position: relative;
    min-height: 70vh;
    width: 100%;
    overflow: hidden
}

.landing-page>header .header-content {
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
    padding-bottom: 30px;
    text-align: center
}

.landing-page>header .header-content .header-content-logo img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    margin-top: 2.5rem;
    height: auto;
    max-height: 75px;
    width: auto;
    max-width: 100%
}

.landing-page>header .header-content-inner>h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, var(--tw-text-opacity))
}

.landing-page>header .header-content-inner>p {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(136, 136, 136, var(--tw-text-opacity))
}

.landing-page>header .header-content-offer {
    margin-top: 4rem
}

.landing-page>header .header-content-offer p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(234, 84, 85, var(--tw-text-opacity))
}

.landing-page>header .header-content-offer h3 {
    margin-bottom: 4rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, var(--tw-text-opacity))
}

.landing-page>header:before {
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    height: 100%;
    width: 100%;
    --tw-scale-x: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    --tw-bg-opacity: 1;
    background-color: rgba(245, 247, 249, var(--tw-bg-opacity));
    --tw-content: "";
    content: var(--tw-content)
}

.landing-page .product-block.is-out {
    filter: grayscale(100%);
    opacity: .8
}

@media(min-width: 768px) {
    .landing-page .center-products .vertical-products {
        display: flex;
        justify-content: center
    }
}

@media(min-width: 1024px) {
    .landing-page .center-products .vertical-products .product-block {
        min-width: 242px;
        max-width: 242px
    }
}

.landing-page .swiper-wrapper {
    padding-bottom: 1.25rem
}

.landing-page .swiper-wrapper .product-entry {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(238, 238, 238, var(--tw-border-opacity))
}

.landing-page .home-block--bg {
    background-color: #fff !important
}

.landing-page--quick-buy {
    margin-top: 1.5rem;
    text-align: center
}

.landing-page--quick-buy salla-mini-checkout-widget {
    display: flex;
    justify-content: center;
    --salla-fast-checkout-button-width: 260px
}

@media(max-width: 640px) {
    .landing-page--quick-buy salla-mini-checkout-widget {
        flex: 1 1 0%;
        --salla-fast-checkout-button-width: 100%
    }
}

@media(max-width: 640px) {
    .landing-page--quick-buy {
        display: flex;
        flex-wrap: wrap;
        gap: .625rem;
        position: fixed;
        z-index: 2;
        bottom: 0;
        left: 0;
        padding: .75rem;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        --tw-shadow: -1px -2px 9px 0 rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: -1px -2px 9px 0 var(--tw-shadow-color);
        box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: 150ms;
        transition-duration: 700ms;
        transition-delay: 500ms;
        --tw-translate-y: 28rem;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transition-timing-function: cubic-bezier(.55, 0, .1, 1);
        opacity: 0;
        background-color: #fff
    }

    .hydrated .landing-page--quick-buy,
    .hydrated .landing-page--quick-buy salla-mini-checkout-widget {
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        opacity: 1
    }
}

input[type=radio].sr-only div.landing-page header:before {
    transition: all .3s
}

input[type=radio].sr-only:checked~div.landing-page header:before {
    border-color: var(--color-main)
}

.landing-page.notfound>header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.landing-page.notfound>header img {
    margin-bottom: 3rem
}

.landing-page.expired>header {
    min-height: 50vh;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.landing-page.expired>header .header-content {
    max-width: 600px
}

.landing-page.expired>header .header-content img {
    margin-bottom: 3rem
}

.landing-page.expired>header .header-content h1 {
    --tw-text-opacity: 1;
    color: rgba(234, 84, 85, var(--tw-text-opacity))
}

@media(min-width: 768px) {
    .landing-page header .header-content-inner>h1 {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .landing-page header .header-content-inner>p {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

@media(min-width: 640px) {
    .landing-page header:before {
        display: block
    }
}

.fancybox__container {
    z-index: 9999999999999
}

.fancybox__thumbs {
    display: none
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border: 3px solid var(--color-primary)
}

@media only screen and (max-width: 767px) {
    .fancybox__thumbs {
        display: none
    }
}

.fancybox__button--thumbs {
    display: none
}

.fancybox__progress {
    background: var(--color-primary)
}

[data-fancybox] {
    outline: none
}

body {
    overflow-x: hidden
}

body:after {
    content: "";
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .65);
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 9999
}

body.side-panel-is-opened .nav-mobile,
body.modal-is-open .nav-mobile {
    transform: translateY(100%)
}

body.side-panel-is-opened:after,
body.modal-is-open:after {
    z-index: 100
}

body.backdrop--opened:after {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

body.blog-article-show .breadcrumb {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.body-blackout {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .65);
    display: none
}

.body-blackout.is-blacked-out {
    display: block
}

@supports(-webkit-touch-callout:none) {
    body {
        height: -webkit-fill-available
    }
}

.s-hidden {
    display: none
}

header .site-header {
    padding: 20px 0;
    position: relative
}

header .site-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

header .site-header__wrapper .theme-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
    margin-left: 15px;
    max-width: calc(100% - 120px)
}

header .site-header__wrapper .theme-logo img {
    display: inline-block;
    width: auto;
    height: 55px;
    margin-left: 15px
}

header .site-header__wrapper .theme-logo span {
    display: block;
    margin-top: 0;
    font-size: var(--font-sm);
    color: var(--color-text)
}

header .site-header__wrapper .theme-logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row
}

header .site-header__wrapper .main-header-components {
    margin-right: 50px
}

@media only screen and (max-width: 767px) {
    header .site-header__wrapper .main-header-components {
        margin-right: 0
    }
}

header .site-header__wrapper .form--search {
    flex-basis: 100%
}

header .site-header__cart {
    display: flex
}

header .site-header__cart a {
    display: inline-flex;
    align-items: center;
    color: var(--color-text)
}

header .site-header__cart a:hover {
    transform: translateY(-3px)
}

header .site-header__cart i {
    display: inline-block;
    font-size: var(--font-xlg)
}

header .site-header__cart .favorite-btn {
    margin-left: 25px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

header .site-header__cart .price {
    position: relative;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    display: inline-flex
}

header .site-header__cart .price .quantity.badge {
    position: absolute;
    right: -10px;
    top: -5px
}

header .site-header__cart .price b {
    display: inline-block;
    font-size: var(--font-lg)
}

@media only screen and (max-width: 992px) {
    header .site-header__cart .price b {
        display: none
    }
}

header .site-header__cart .price.product-added {
    animation: blinker .9s linear
}

header.animated .site-header {
    transition: transform .5s, opacity .4s
}

header.fixed-pinned .site-header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    background-color: var(--color-white);
    z-index: 9;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    transform: translate3d(0, -100%, 0);
    opacity: 0
}

@media only screen and (max-width: 767px) {
    header.fixed-pinned .site-header {
        box-shadow: 0 0 10px rgba(0, 0, 0, .2)
    }
}

header.fixed-pinned .theme-logo a img {
    max-height: 40px
}

header.fixed-header .site-header {
    opacity: 1;
    transform: translate3d(0, 0, 0)
}

@keyframes blinker {
    0% {
        transform: scale(1)
    }

    10%,
    20% {
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        transform: scale(1) rotate(0)
    }
}

.header-block--nav-wrapper {
    padding: 0;
    background: #f5f7f9;
    background: var(--color-grey);
    margin: 0;
    border-bottom: 1px solid #eee;
    border-bottom: 1px solid var(--color-grey-border)
}

@media only screen and (max-width: 992px) {
    .header-block--nav-wrapper {
        display: none
    }
}

#main-cart-btn b {
    font-weight: 500
}

/*!* Mmenu Light
* mmenujs.com/mmenu-light
*
* Copyright (c) Fred Heusschen
* www.frebsite.nl
*
* License: CC-BY-4.0
* http://creativecommons.org/licenses/by/4.0/*/
:root {
    --mm-ocd-width: 100%;
    --mm-ocd-min-width: 100%;
    --mm-ocd-max-width: 100%
}

.mm-ocd {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
    overscroll-behavior: contain;
    background: transparent;
    visibility: hidden;
    transition-property: bottom, background-color;
    transition-duration: 0s, .3s;
    transition-timing-function: ease;
    transition-delay: .45s, .15s
}

.mm-ocd--open {
    transition-delay: 0s;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: visible
}

.mm-ocd__content {
    pointer-events: auto;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    height: 60vh;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 10px -4px rgba(0, 0, 0, .1);
    width: 100%;
    width: var(--mm-ocd-width);
    min-width: 100%;
    min-width: var(--mm-ocd-min-width);
    max-width: 100%;
    max-width: var(--mm-ocd-max-width);
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease
}

.mm-ocd__content nav ul {
    padding-bottom: 30px
}

.mm-ocd--right .mm-ocd__content {
    right: 0;
    transform: translate3d(0, 100%, 0)
}

.mm-ocd--open .mm-ocd__content {
    transform: translate3d(0, 0, 0)
}

.mm-ocd__backdrop {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100vh;
    transition: .3s;
    pointer-events: none
}

.mm-ocd--open .mm-ocd__backdrop {
    background: rgba(0, 0, 0, .65);
    pointer-events: auto
}

.mm-ocd--left .mm-ocd__backdrop {
    right: 0
}

.mm-ocd--right .mm-ocd__backdrop {
    left: 0
}

.mm-spn a,
.mm-spn span,
.mm-spn li,
.mm-spn ul,
.mm-spn {
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

:root {
    --mm-spn-item-height: 50px;
    --mm-spn-item-indent: 20px;
    --mm-spn-line-height: 24px
}

.mm-spn {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transform: translateX(0px)
}

.mm-spn ul {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: 100%;
    bottom: 0;
    z-index: 2;
    width: 130%;
    padding-left: 30%;
    line-height: 24px;
    line-height: var(--mm-spn-line-height);
    overflow: visible;
    overflow-y: auto;
    background: inherit;
    transition: .3s ease 0s;
    cursor: default
}

.mm-spn ul:after {
    content: "";
    display: block;
    height: 50px;
    height: var(--mm-spn-item-height)
}

.mm-spn>ul {
    right: 0
}

.mm-spn ul.mm-spn--open {
    right: 0
}

.mm-spn ul.mm-spn--parent {
    right: -30%;
    overflow-y: hidden
}

.mm-spn li {
    position: relative;
    background: inherit;
    cursor: pointer
}

.mm-spn li:before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    top: calc(50px/2);
    top: calc(var(--mm-spn-item-height)/2);
    left: 15px;
    z-index: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg) translate(0, -50%);
    opacity: .4
}

.mm-spn li:after {
    content: "";
    display: block;
    border-top: 1px solid;
    opacity: .03
}

.mm-spn a,
.mm-spn span {
    font-size: var(--font-sm);
    position: relative;
    z-index: 1;
    padding: 13px 20px;
    padding: calc((50px - 24px)/2) 20px;
    padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/2) var(--mm-spn-item-indent)
}

.mm-spn a {
    background: inherit;
    color: inherit;
    text-decoration: none;
    transition: .3s
}

.mm-spn a:not(:last-child) {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-spn-item-height))
}

.mm-spn a:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    opacity: .03
}

.mm-spn a:hover {
    color: var(--color-primary)
}

.mm-spn span {
    background: transparent
}

.mm-spn.mm-spn--navbar {
    cursor: pointer
}

.mm-spn.mm-spn--navbar:before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    top: calc(50px/2);
    top: calc(var(--mm-spn-item-height)/2);
    right: 20px;
    right: var(--mm-spn-item-indent);
    width: 10px;
    height: 10px;
    margin-top: 2px;
    transition: .3s;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg) translate(50%, -50%);
    opacity: .9
}

.mm-spn.mm-spn--navbar.mm-spn--main {
    cursor: default
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
    opacity: 0
}

.mm-spn.mm-spn--navbar:after {
    content: attr(data-mm-spn-title);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    height: var(--mm-spn-item-height);
    padding: 0 calc(20px*2);
    padding: 0 calc(var(--mm-spn-item-indent)*2);
    line-height: 50px;
    line-height: var(--mm-spn-item-height);
    font-weight: 700;
    transition: .3s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
    padding-right: 20px;
    padding-right: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--navbar ul {
    top: 51px;
    top: calc(50px + 1px);
    top: calc(var(--mm-spn-item-height) + 1px)
}

.mm-spn.mm-spn--navbar ul:before {
    content: "";
    display: block;
    position: fixed;
    top: inherit;
    z-index: 2;
    width: 100%;
    border-top: 1px solid currentColor;
    opacity: .03
}

.mm-spn.mm-spn--light {
    color: var(--color-text);
    background: #fff;
    background: var(--color-white)
}

.mm-spn.mm-spn--dark {
    color: #ddd;
    background: #333
}

.mm-spn.mm-spn--vertical {
    overflow-y: auto
}

.mm-spn.mm-spn--vertical ul {
    width: 100%;
    padding-right: 0;
    position: static
}

.mm-spn.mm-spn--vertical ul ul {
    display: none;
    padding-left: 20px;
    padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--vertical ul ul:after {
    height: 25px;
    height: calc(50px/2);
    height: calc(var(--mm-spn-item-height)/2)
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
    display: block
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
    transform: rotate(135deg) translate(-50%, 0)
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
    content: none;
    display: none
}

button,
.btn,
.shipping-tracker>a {
    outline: none !important
}

a.btn,
.shipping-tracker>a {
    display: block
}

.btn,
.shipping-tracker>a {
    border: none;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-main);
    color: var(--color-text);
    text-align: center;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.btn i,
.shipping-tracker>a i {
    vertical-align: baseline;
    color: inherit
}

.btn--small {
    padding: 8px 15px
}

.btn--grey {
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.btn--grey.bordered {
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.btn--grey:hover {
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark)
}

.btn--action-nav-toggle {
    background-color: #f5f7f9 !important;
    background-color: var(--color-grey) !important
}

.btn--action-nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.btn--action-nav-toggle.active {
    color: var(--color-text) !important
}

.btn--action-nav-toggle:hover {
    color: var(--color-text) !important
}

.btn--primary,
.shipping-tracker>a {
    color: var(--color-text-reverse);
    background: var(--color-primary)
}

.btn--primary.outlined,
.shipping-tracker>a.outlined {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: transparent
}

.btn--secondary {
    color: var(--color-text-reverse);
    background-color: var(--color-secondary)
}

.btn--yellow {
    color: #fff;
    color: var(--color-white);
    background: #fcd34c;
    background: var(--color-yellow)
}

.btn[disabled],
.shipping-tracker>a[disabled] {
    cursor: not-allowed;
    opacity: .5
}

.btn--floated {
    position: absolute
}

.btn--floated .s-button-element {
    padding: 0;
    line-height: 1;
    background: transparent;
    border: 0;
    color: var(--color-text-reverse);
    width: 40px;
    font-size: 18px
}

.btn--add-to-cart {
    font-size: var(--font-lg);
    color: var(--color-text-reverse);
    background: var(--color-primary)
}

.btn--add-to-cart i,
.btn--add-to-cart span {
    vertical-align: baseline;
    line-height: 1
}

.btn--add-to-cart.disabled {
    color: var(--color-text) !important;
    background: #eee !important;
    background: var(--color-grey-border) !important
}

.btn--add-to-cart.disabled {
    pointer-events: none
}

.btn--add-to-cart.disabled i,
.btn--add-to-cart.disabled span {
    color: var(--color-text);
    opacity: .85
}

.btn--add-to-cart.disabled:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 1px;
    border-bottom: 1px solid var(--color-text);
    bottom: 50%;
    right: 10%;
    opacity: .7;
    transform: rotate(-45deg)
}

.btn--submit {
    min-height: 60px
}

.btn--submit i {
    position: absolute;
    top: 35%;
    right: 10px
}

.btn--submit--short {
    max-width: 220px;
    min-height: 50px;
    justify-content: flex-start
}

@media only screen and (max-width: 767px) {
    .btn--submit--short {
        max-width: none;
        max-width: initial
    }
}

.btn--submit--center {
    justify-content: center
}

.btn--submit--center:after {
    display: none
}

.btn--submit.loading {
    padding-right: 50px
}

.btn--submit.loading i {
    font-size: var(--font-sm);
    vertical-align: middle
}

.btn--submit:hover {
    background-color: var(--color-primary)
}

.btn--success {
    color: #fff;
    color: var(--color-white);
    background: #30d158;
    background: var(--color-success)
}

.btn--success.outlined {
    color: #30d158;
    color: var(--color-success);
    border: 1px solid #30d158;
    border: 1px solid var(--color-success);
    background: transparent
}

.btn--rounded {
    border-radius: 4px
}

.btn--oval,
.shipping-tracker>a {
    border-radius: 50px !important
}

.btn--md {
    height: 45px
}

.btn--circular {
    border-radius: 50%
}

.btn--circular i {
    display: inline-block;
    transform: translateY(2px)
}

.btn--transparent {
    background: transparent !important
}

.btn--padded,
.shipping-tracker>a {
    padding: 8px 20px
}

.btn--padded.less,
.shipping-tracker>a {
    padding: 8px 15px
}

.btn--padded.narrow,
.shipping-tracker>a.narrow {
    padding: 5px 12px
}

@media only screen and (max-width: 767px) {

    .btn--padded,
    .shipping-tracker>a {
        padding: 8px 18px
    }
}

.btn--outlined {
    background: transparent;
    border: 1px solid #f5f7f9;
    border: 1px solid var(--color-grey);
    padding: 10px 25px
}

.btn--outlined.white {
    color: #fff;
    border-color: #fff
}

.btn--outlined.b-2x {
    border-width: 2px
}

.btn--large {
    font-size: var(--font-base);
    min-height: 45px;
    line-height: 30px
}

.btn--wide {
    width: 100%
}

.btn--modal-close,
.btn--modal-return {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: var(--font-lg);
    color: #ff443a;
    color: var(--color-danger);
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 99
}

.btn--modal-return {
    left: auto;
    left: initial;
    right: 15px;
    color: var(--color-text);
    background: #f5f7f9;
    background: var(--color-grey)
}

.btn--modal-close {
    left: 5px
}

.btn--wishlist:hover,
.btn--wishlist .sicon-heart-off {
    color: var(--color-primary)
}

.btn--share,
.btn--like {
    width: 35px;
    height: 35px;
    align-items: center;
    background: transparent;
    padding: 0;
    color: var(--color-primary);
    font-size: var(--font-base)
}

.btn--like {
    border: 1px solid var(--color-primary)
}

.btn--like.liked {
    background: var(--color-primary);
    color: var(--color-text-reverse)
}

.btn--like.liked i {
    transform: translateY(2px)
}

.btn--like.liked i:before {
    content: ""
}

.btn--share.sharing {
    background: var(--color-primary);
    color: var(--color-text-reverse)
}

.btn--share.sharing>i {
    transform: translate3d(0px, 3px, 0) !important
}

.btn--share.sharing>i:before {
    content: "";
    font-size: var(--font-md)
}

.btn--product-like {
    position: absolute;
    top: 15px;
    right: 15px
}

.btn--logout {
    color: #fff !important;
    color: var(--color-white) !important
}

.btn--logout {
    background: #ff443a;
    background: var(--color-danger)
}

.btn--dark {
    color: var(--color-text-reverse);
    background: var(--color-text)
}

.btn--dark-light {
    color: #6e747b;
    color: var(--color-dark);
    background: #e8edf2;
    background: var(--color-secondary-darker)
}

.btn--return {
    width: 40px;
    height: 40px;
    line-height: 38px
}

.btn--tag {
    padding: 6px !important
}

.btn--tag {
    font-size: var(--font-sm);
    text-decoration: underline
}

.btn--tag:before {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-xsm);
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px
}

.btn--dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row
}

.btn--dropdown-toggle:after {
    content: "";
    font-family: sallaicons;
    display: inline-block;
    width: 10px;
    height: 10px;
    line-height: 1;
    margin: 0 5px 0 10px
}

.btn--dropdown-toggle.grey {
    border: 3px solid #f5f7f9;
    border: 3px solid var(--color-grey)
}

.btn--dropdown-toggle.sort:after {
    margin: 0 5px 0 8px
}

.btn--star {
    font-size: var(--font-xlg);
    color: #bbb;
    color: var(--color-text-muted);
    line-height: 1;
    opacity: .5;
    padding: 0 2px
}

.btn--star.selected {
    color: #fcd34c;
    color: var(--color-yellow);
    opacity: 1
}

.btn--star.large {
    font-size: var(--font-xxlg);
    padding: 0 5px
}

.btn--star.small {
    font-size: var(--font-md);
    padding: 0
}

.btn--star[disabled] {
    background-color: transparent;
    color: #bbb;
    color: var(--color-text-muted)
}

.btn--star[disabled].selected {
    color: #fcd34c;
    color: var(--color-yellow)
}

.btn--star:hover:not([disabled]):not(.selected),
.btn--star.hovered:not([disabled]):not(.selected) {
    opacity: 1
}

.btn--delete-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: #ff443a;
    color: var(--color-danger);
    background: #fff;
    background: var(--color-white);
    border: 1px solid #ff443a;
    border: 1px solid var(--color-danger);
    padding: 0
}

.btn--delete-item i {
    font-weight: 700;
    transform: translateY(0)
}

.btn--delete-item:hover {
    color: #fff;
    color: var(--color-white);
    background: #ff443a;
    background: var(--color-danger)
}

.btn--delete-item.btn--has-loading {
    display: inline-flex
}

.btn--proceed {
    padding-right: 50px;
    padding-left: 50px
}

.btn--proceed.next:after,
.btn--proceed.rewind:after {
    content: "";
    font-family: sallaicons;
    font-size: inherit;
    color: inherit;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px
}

.ltr .btn--proceed.next:after,
.ltr .btn--proceed.rewind:after {
    transform: translateY(-50%) scale(-1)
}

.btn--proceed.prev:before {
    content: "";
    font-family: sallaicons;
    font-size: inherit;
    color: inherit;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px
}

.btn--proceed.rewind:after {
    content: ""
}

.btn--proceed.less.next,
.shipping-tracker>a.btn--proceed.next {
    padding-right: 20px !important;
    padding-left: 35px !important
}

.btn--proceed.less.next:after,
.shipping-tracker>a.btn--proceed.next:after {
    left: 13px
}

.btn--proceed.less.prev,
.shipping-tracker>a.btn--proceed.prev {
    padding-right: 35px !important;
    padding-left: 20px !important
}

.btn--proceed.less.prev:before,
.shipping-tracker>a.btn--proceed.prev:before {
    right: 13px
}

.btn--copy {
    padding: 0 !important
}

.btn--copy {
    border: none;
    opacity: .85
}

.btn--copy:before {
    display: inline-block;
    content: "";
    font-family: sallaicons;
    font-size: var(--font-base);
    color: #bbb;
    color: var(--color-text-muted);
    transform: translateY(1px)
}

.btn--copy:hover,
.btn--copy:active,
.btn--copy:focus {
    color: #333 !important;
    box-shadow: none !important
}

.btn--copy:hover,
.btn--copy:active,
.btn--copy:focus {
    opacity: 1
}

.btn--copy:hover>span,
.btn--copy:active>span,
.btn--copy:focus>span {
    opacity: 1 !important
}

.btn--copy:hover>span,
.btn--copy:active>span,
.btn--copy:focus>span {
    visibility: visible
}

.btn--copy.copied {
    pointer-events: none
}

.btn--copy.copied:before {
    content: "";
    color: var(--color-primary)
}

.btn--copy:active,
.btn--copy:focus {
    opacity: .8
}

.btn.submit-btn,
.shipping-tracker>a.submit-btn {
    text-align: right;
    padding: 0 15px;
    padding-left: 50px
}

.btn.submit-btn:after,
.shipping-tracker>a.submit-btn:after {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-lg);
    color: inherit;
    position: absolute;
    transition: .3s;
    top: 50%;
    transform: translateY(-50%);
    left: 15px
}

.btn .line-scale,
.shipping-tracker>a .line-scale {
    display: none
}

.btn .btn__text,
.shipping-tracker>a .btn__text {
    transition: .3s
}

.btn.pagination__next .btn__text,
.shipping-tracker>a.pagination__next .btn__text {
    display: inline-block
}

.btn--has-loading {
    position: relative;
    pointer-events: none
}

.s-infinite-scroll-wrapper .btn--has-loading {
    pointer-events: auto
}

.btn--has-loading .line-scale {
    display: flex;
    position: absolute;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.75)
}

.btn--has-loading .line-scale>div {
    background-color: var(--color-primary);
    opacity: .5
}

.btn--has-loading .btn__text {
    opacity: 0;
    transform: translateY(100%)
}

.btn--has-loading.pagination__next .line-scale>div {
    background-color: #fff;
    background-color: var(--color-white);
    opacity: .9
}

.btn--has-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-color: #eee;
    border-color: var(--color-grey-border)
}

.btn--has-loading:before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    border: 2px solid #eee;
    border: 2px solid var(--color-grey-border);
    border-left-color: var(--color-primary);
    border-radius: 50%;
    animation: spinner-loader 1000ms infinite linear
}

.btn--has-loading.submit-btn:before {
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px)
}

.btn--has-loading .sicon-cancel {
    display: none
}

.btn--has-loading .btn__text,
.btn--has-loading:after {
    opacity: 0
}

.btn--bordered {
    border: 1px solid #eee;
    border: 1px solid var(--color-grey-border)
}

.btn--social-share {
    padding: 3px 10px;
    margin: 5px
}

.btn--social-share.twitter {
    color: #fff;
    background: #00acee
}

.btn--social-share.facebook {
    padding: 0
}

.btn--social-share.whatsapp {
    color: #fff;
    background: #25d366
}

.btn--applepay {
    background: #000 url(../../images/payment/applepay_white.svg) center center no-repeat;
    background: var(--color-black) url(../../images/payment/applepay_white.svg) center center no-repeat;
    background-size: 23%
}

@media only screen and (max-width: 767px) {
    .btn--applepay {
        background-size: 33%
    }
}

.btn:hover:not(:disabled),
.shipping-tracker>a:hover:not(:disabled) {
    opacity: .94
}

#quick_edit,
.pagination__next {
    max-width: 130px
}

.pagination__next {
    margin: 0 auto
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

.form-control {
    font-family: var(--font-base);
    font-size: var(--font-sm);
    color: var(--color-text);
    -webkit-appearance: none;
    -moz-appearance: none
}

label.required {
    position: relative
}

label.required:after {
    content: "*";
    font-size: var(--font-sm);
    color: #ff443a;
    color: var(--color-danger);
    margin-right: 4px
}

.required>label {
    position: relative
}

.required>label:after {
    content: "*";
    font-size: var(--font-sm);
    color: #ff443a;
    color: var(--color-danger);
    margin-right: 4px
}

.form {
    position: relative
}

.form .form-group {
    position: relative;
    margin-bottom: 15px
}

.form .form-group label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: var(--font-sm)
}

.form .form-group salla-tel-input .tel-input,
.form .form-group .form-control {
    width: 100%;
    min-height: 40px;
    padding: 0 15px;
    font-family: var(--font-base);
    font-size: var(--font-sm);
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border-radius: 4px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark);
    box-shadow: none
}

.form .form-group salla-tel-input .tel-input:hover,
.form .form-group .form-control:hover {
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark)
}

.form .form-group salla-tel-input .tel-input:focus,
.form .form-group salla-tel-input .tel-input:active,
.form .form-group .form-control:focus,
.form .form-group .form-control:active {
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark);
    outline: none;
    box-shadow: none
}

.form .form-group salla-tel-input .tel-input:focus,
.form .form-group .form-control:focus {
    box-shadow: 0 0 5px inset rgba(0, 0, 0, .005)
}

.form .form-group salla-tel-input .tel-input:disabled,
.form .form-group .form-control:disabled {
    opacity: .5
}

.form .form-group salla-tel-input .tel-input.phone,
.form .form-group salla-tel-input .tel-input.email,
.form .form-group .form-control.phone,
.form .form-group .form-control.email {
    letter-spacing: 1px
}

.form .form-group salla-tel-input .tel-input.phone,
.form .form-group .form-control.phone {
    unicode-bidi: plaintext
}

.form .form-group salla-tel-input .tel-input--short,
.form .form-group .form-control--short {
    min-height: 36px
}

.form .form-group salla-tel-input .tel-input::-moz-placeholder,
.form .form-group .form-control::-moz-placeholder {
    font-family: var(--font-base);
    color: #adb6be
}

.form .form-group salla-tel-input .tel-input::placeholder,
.form .form-group .form-control::placeholder {
    font-family: var(--font-base);
    color: #adb6be
}

.form .form-group salla-tel-input .tel-input.label,
.form .form-group .form-control.label {
    color: var(--color-text);
    background: transparent;
    opacity: .2;
    border: none
}

.form .form-group salla-tel-input .tel-input.label.large,
.form .form-group .form-control.label.large {
    font-family: var(--font-medium);
    font-size: var(--font-lg);
    letter-spacing: 2px
}

.form .form-group salla-tel-input .tel-input.center,
.form .form-group .form-control.center {
    text-align: center
}

.form .form-group salla-tel-input .tel-input.verify,
.form .form-group .form-control.verify {
    font-family: var(--font-medium);
    font-size: var(--font-xxlg);
    letter-spacing: 20px
}

.form .form-group input[type=number]::-webkit-inner-spin-button,
.form .form-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.form .form-group input[type=number] {
    -moz-appearance: textfield
}

.form .form-group textarea.form-control {
    min-height: 80px;
    padding-top: 15px;
    padding-bottom: 15px
}

@media only screen and (max-width: 767px) {
    .form .form-group textarea.form-control {
        min-height: 80px
    }
}

.form .form-group textarea.form-control.short {
    min-height: 70px
}

.form .form-group .input-group {
    position: relative
}

.form .form-group .input-group .input-group-addon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    opacity: .6
}

.form .form-group .input-group--start .form-control {
    padding-right: 50px
}

.form .form-group .input-group--start .input-group-addon {
    right: 10px
}

.form .form-group .input-group--end .form-control {
    padding-left: 50px
}

.form .form-group .input-group--end .input-group-addon {
    left: 10px
}

.form .form-group--donation-field .input-group {
    width: 100%;
    max-width: 300px;
    float: left
}

@media only screen and (max-width: 767px) {
    .form .form-group--donation-field .input-group {
        max-width: none;
        max-width: initial
    }
}

.form .form-group .row {
    margin-right: -10px;
    margin-left: -10px
}

.form .form-group .row *[class^=col-] {
    padding-right: 10px;
    padding-left: 10px
}

.form .form-group.error .form-control {
    color: #ff443a !important;
    color: var(--color-danger) !important;
    border-color: #ff443a !important;
    border-color: var(--color-danger) !important
}

.form .form-group.error label {
    color: #ff443a !important;
    color: var(--color-danger) !important
}

.form .form-group.error small {
    display: block;
    padding: 5px 10px;
    position: absolute;
    bottom: -10px;
    left: 20px;
    font-size: 10px;
    color: #ff443a;
    color: var(--color-danger);
    background: #fff;
    z-index: 99;
    box-shadow: 0 1px 1px 0 rgba(124, 124, 121, .4)
}

.form .form-group.relaxed {
    margin-bottom: 30px
}

@media only screen and (max-width: 767px) {
    .form .form-group.relaxed {
        margin-bottom: 20px
    }
}

.form--lg-fields .form-group .form-control {
    min-height: 45px
}

.form--oval-fields .form-group .form-control {
    border-radius: 100px
}

.form--white-fields .form-control {
    background: #fff
}

.form--white-fields .form-group .form-control {
    background: #fff;
    background: var(--color-white)
}

.form--white-fields .form-group .form-control:hover {
    background-color: #fff;
    background-color: var(--color-white)
}

.form--white-fields .form-group .form-control:focus,
.form--white-fields .form-group .form-control:active {
    background-color: #fff;
    background-color: var(--color-white)
}

@media only screen and (max-width: 767px) {
    .form--search {
        flex-basis: calc(100% + 30px) !important
    }

    .form--search {
        padding: 10px;
        width: 100%;
        order: 10;
        margin: 10px -15px 0;
        border-top: 1px solid #f2f5f8;
        position: relative;
        bottom: 0;
        /*opacity: 0;*/
        /*visibility: hidden;*/
        /*pointer-events: none;*/
        transition: .4s cubic-bezier(.55, 0, .1, 1) 0s;
        z-index: 99;
        background: #fff
    }

    .form--search.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(100%);
        pointer-events: auto;
        box-shadow: 0 10px 10px rgba(0, 0, 0, .1)
    }
}

.form--login-reg .login-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 20px 0 0;
    padding-top: 40px;
    border-top: 1px solid #f5f7f9;
    border-top: 1px solid var(--color-grey)
}

.form--login-reg .login-methods .login-method {
    flex: 0 0 calc(50% - 10px);
    margin: 10px
}

.form--login-reg .login-methods .login-method a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding-top: 100%;
    border-radius: 4px;
    padding: 20px 10px;
    background: #f5f7f9;
    background: var(--color-grey);
    color: var(--color-text);
    border: 1px solid #e0e4ea;
    text-align: center;
    white-space: nowrap;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.form--login-reg .login-methods .login-method a i {
    font-size: var(--font-xlg);
    margin: 0 0 10px;
    opacity: .75
}

.form--login-reg .login-methods .login-method a h6 {
    font-family: var(--font-base);
    font-size: var(--font-sm)
}

.form--login-reg .login-methods .login-method a>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.form--login-reg .login-methods .login-method a:hover {
    background: var(--color-primary);
    color: var(--color-text-reverse);
    border-color: var(--color-primary)
}

.form--login-reg .resend-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.form--login-reg .resend-btns>* {
    flex: 1;
    margin: 0 5px
}

.form--login-reg .resend-btns.solo>* {
    flex: initial;
    margin: 0 auto
}

.form--login-reg .timer-wrap span span {
    display: inline-block;
    margin: 0 4px
}

.form--quick-buy .form-control {
    background: #fff
}

.form--quick-buy .form-group {
    margin-bottom: 20px
}

.form--add-comment .comment-field-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.form--add-comment .comment-field-wrapper button {
    width: 150px;
    border-radius: 100px
}

.form--add-comment .comment-field-wrapper>div {
    flex: 1;
    width: 100%
}

.form--add-comment .comment-field-wrapper>div.avatar-wrapper {
    flex: 0 0 50px;
    width: 50px
}

@media only screen and (max-width: 767px) {
    .form--add-comment .comment-field-wrapper {
        flex-direction: column
    }

    .form--add-comment .comment-field-wrapper>div.avatar-wrapper {
        margin: 0 0 20px !important
    }
}

.form--coupon .form-group {
    padding: 0 !important
}

.form--coupon .form-group .form-control {
    padding-left: 80px
}

.form--coupon .form-group .coupone-code__submit button {
    position: absolute;
    top: 5px;
    left: 6px;
    height: 30px;
    line-height: 11px
}

.form--coupon .has-not-coupon .icon {
    display: none
}

.form--coupon .has-coupon .coupon-text {
    display: none
}

.form--coupon #coupon-error {
    font-size: 11px;
    color: #ff443a;
    color: var(--color-danger);
    display: block;
    text-align: right
}

.form--coupon #coupon-error:not(:empty) {
    padding: 5px 0
}

.rtl .form-select,
.rtl select,
[dir=rtl] .form-select,
[dir=rtl] select {
    background-position: left .5rem center;
    padding-right: 12px
}

.searchbox-results {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-height: 330px;
    background: #fff;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 12px;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .07);
    border: 1px solid #f8f8f8;
    border: 1px solid var(--color-grey-light);
    transform: translateY(5px);
    z-index: 9
}

.searchbox-results::-webkit-scrollbar {
    width: 4px
}

.searchbox-results::-webkit-scrollbar-track {
    background: rgba(#F8F8F8, 0.8);
    background: rgba(var(--color-grey-light), 0.8);
    border-radius: 0
}

.searchbox-results::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-primary)
}

.searchbox-results::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(var(--color-primary), 0.5)
}

.searchbox-results li {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.searchbox-results li b {
    color: #ff443a;
    color: var(--color-danger)
}

.searchbox-results li .search-result {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.searchbox-results li .search-result__thumb {
    margin-left: 15px;
    flex-shrink: 0
}

.searchbox-results li .search-result__info {
    color: var(--color-text);
    flex: auto
}

.searchbox-results li .search-result__info h5 {
    font-size: var(--font-sm);
    margin: 0
}

.searchbox-results li .search-result:hover {
    background: #f5f7f9;
    background: var(--color-grey)
}

.searchbox-results li.empty-result {
    padding: 10px 20px;
    font-size: var(--font-sm);
    color: #999
}

.searchbox-results li.empty-result b {
    display: inline-block;
    margin-right: 5px
}

.searchbox-results li:last-child {
    border: none
}

@media only screen and (max-width: 767px) {
    .searchbox-results {
        transform: none;
        transform: initial;
        border-radius: 0;
        max-height: 38vh;
        box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .15)
    }

    .searchbox-results li .search-result {
        padding: 8px
    }

    .searchbox-results li .search-result__thumb {
        margin-left: 10px
    }

    .searchbox-results li .search-result__thumb.avatar-wrapper--small {
        width: 35px;
        height: 35px
    }

    .searchbox-results li.empty-result {
        padding: 8px
    }
}

.nav-desktop {
    display: flex;
    flex-direction: column;
    position: relative
}

.nav-desktop .top-bar {
    background-color: var(--color-primary);
    color: var(--color-text-reverse);
    padding: 5px 20px;
    line-height: 40px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center
}

.nav-desktop .top-bar div.cat-title {
    display: inline-block;
    font-size: var(--font-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 28px;
    font-weight: 400
}

.nav-desktop .top-bar i {
    position: relative;
    font-size: var(--font-lg);
    margin-left: 21px
}

.nav-desktop ul {
    flex-grow: 1;
    border-radius: 0 0 8px 8px
}

.nav-desktop ul::-webkit-scrollbar {
    width: 3px
}

.nav-desktop ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
}

.nav-desktop ul::-webkit-scrollbar-thumb {
    background-color: #a9a9a9
}

.nav-desktop ul .menu-item>a,
.nav-desktop ul .menu-item:not(.mega-menu) .sub-menu ul li a {
    padding: 10px 12px;
    color: var(--color-text);
    position: relative;
    font-size: var(--font-sm);
    text-decoration: none;
    white-space: normal;
    white-space: initial;
    display: block;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    cursor: pointer
}

.nav-desktop ul .menu-item:hover>a,
.nav-desktop ul .menu-item>a:hover,
.nav-desktop ul .menu-item:not(.mega-menu) .sub-menu ul li:hover>a {
    color: var(--color-primary);
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker)
}

.nav-desktop ul .menu-item:hover>a:after,
.nav-desktop ul .menu-item>a:hover:after,
.nav-desktop ul .menu-item:not(.mega-menu) .sub-menu ul li:hover>a:after {
    color: inherit
}

.nav-desktop ul .menu-item.active>a {
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker)
}

.nav-desktop ul .menu-item.dropdown>a:after {
    content: "";
    font-family: sallaicons;
    position: absolute;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-base)
}

.nav-desktop ul .menu-item.dropdown .sub-menu {
    z-index: 8;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker);
    position: absolute;
    left: 3px;
    transform: translateX(-100%);
    top: 50px;
    max-width: calc(100vw - 350px);
    display: none
}

.nav-desktop ul .menu-item.dropdown .sub-menu ul {
    width: 200px;
    max-width: 20%;
    overflow: hidden
}

.nav-desktop ul .menu-item.dropdown .sub-menu ul a {
    padding: 10px 0;
    background-color: transparent
}

.nav-desktop ul .menu-item.dropdown .sub-menu ul a:hover {
    color: var(--color-primary)
}

.nav-desktop ul .menu-item.dropdown .sub-menu>div {
    flex: auto;
    align-items: flex-start
}

.nav-desktop ul .menu-item.dropdown .sub-menu.active {
    display: flex
}

.nav-desktop ul .menu-item.dropdown .sub-menu .product-block {
    flex: 1 0 0
}

.nav-desktop ul .menu-item.dropdown .sub-menu .product-block a {
    padding: 0
}

.nav-desktop ul .menu-item.dropdown .sub-menu .product-block__thumb {
    height: 190px;
    flex: initial
}

.nav-desktop ul .menu-item.dropdown .sub-menu .sub-menu {
    right: calc(100% + 5px);
    top: 0;
    border-radius: 4px
}

.nav-desktop ul .menu-item.dropdown .sub-menu .sub-menu:before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -5px
}

.nav-desktop ul .menu-item.dropdown:hover>.sub-menu {
    display: block
}

.nav-desktop ul .menu-item.dropdown:not(.mega-menu) .sub-menu {
    padding: 0
}

.nav-desktop ul .menu-item.dropdown:not(.mega-menu) .sub-menu ul {
    max-width: 100%;
    width: 100%;
    overflow: visible;
    overflow: initial
}

.nav-desktop ul .menu-item.dropdown.mega-menu .sub-menu ul {
    padding-top: 10px
}

.nav-desktop ul .menu-item.dropdown.mega-menu .menu-item>a:after {
    display: none
}

.nav-desktop ul .menu-item .offers-link {
    color: #ff443a !important;
    color: var(--color-danger) !important;
    background-color: rgba(255, 68, 58, .1) !important
}

.nav-desktop ul .menu-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.nav-desktop ul .menu-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.nav-desktop--vertical {
    background: #f5f7f9;
    background: var(--color-grey);
    border-radius: 0 0 8px 8px
}

.nav-desktop--vertical ul .menu-item {
    position: relative
}

.nav-desktop--vertical ul .menu-item.dropdown a:after {
    left: 12px
}

.nav-desktop--vertical ul .menu-item.dropdown>.sub-menu {
    top: 0;
    left: 0;
    width: 250px;
    height: auto
}

.nav-desktop--vertical ul .menu-item.dropdown>.sub-menu .product-block__thumb {
    height: 130px
}

.nav-desktop--vertical ul .menu-item.dropdown>.sub-menu ul li:first-child a {
    border-top-left-radius: 8px
}

.nav-desktop--vertical ul .menu-item.dropdown>.sub-menu ul li:last-child a {
    border-bottom-left-radius: 8px
}

.nav-desktop--vertical ul .menu-item.dropdown>.sub-menu .sub-menu {
    right: 5px
}

.nav-desktop--vertical ul .menu-item.dropdown.mega-menu>.sub-menu {
    width: 950px
}

.nav-desktop--vertical ul .menu-item.dropdown.mega-menu ul .menu-item a {
    background: transparent !important
}

.nav-desktop--vertical ul .menu-item.dropdown.mega-menu ul .menu-item a {
    padding: 10px 15px
}

.nav-desktop--vertical ul .menu-item.dropdown.mega-menu .grid-block.products-list-container {
    padding: 20px
}

.nav-desktop--horizontal ul {
    overflow: visible;
    overflow: initial
}

.nav-desktop--horizontal ul .menu-item {
    border-radius: 0
}

.nav-desktop--horizontal ul .menu-item.dropdown>a {
    padding-left: 35px
}

.nav-desktop--horizontal ul .menu-item.dropdown:not(.mega-menu) {
    position: relative
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu {
    transform: translateX(0%) !important;
    padding-bottom: 0 !important
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu {
    top: auto;
    left: auto;
    right: 0;
    width: 250px;
    border-radius: 4px 0 4px 4px;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, .05)
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul {
    flex-direction: column;
    position: relative
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li {
    margin: 0
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li a {
    font-weight: 400;
    border-radius: 0
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li a:after {
    transform: translateY(-50%) rotate(90deg)
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li:hover>a,
.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li.active>a {
    background: rgba(0, 0, 0, .02)
}

.nav-desktop--horizontal ul .menu-item.dropdown .sub-menu ul li:first-child {
    border-radius: 8px 0 0 8px
}

.nav-desktop--horizontal ul .menu-item.dropdown.mega-menu .sub-menu {
    width: 100%;
    max-width: 100%
}

.nav-desktop--horizontal ul .menu-item.dropdown.mega-menu ul .menu-item a {
    background: transparent !important
}

.nav-desktop--horizontal ul .menu-item.dropdown.mega-menu ul .menu-item a {
    padding: 10px 15px
}

.nav-desktop--horizontal ul .menu-item.dropdown.mega-menu .grid-block.products-list-container {
    padding: 20px
}

.nav-desktop--horizontal>ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap
}

.nav-desktop--horizontal>ul .menu-item {
    white-space: nowrap
}

.nav-desktop--horizontal>ul .menu-item>a {
    border-radius: 0;
    padding: 15px 12px
}

.nav-desktop--horizontal>ul .menu-item.dropdown>a {
    border-radius: 0
}

.nav-desktop--horizontal>ul .menu-item.dropdown>a:after {
    content: "";
    font-family: sallaicons;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    top: 50%;
    font-size: var(--font-md)
}

.nav-mobile {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99999999;
    display: none;
    transition: .4s cubic-bezier(.55, 0, .1, 1) 0s
}

.modal-open .nav-mobile {
    transform: translateY(100%)
}

.nav-mobile .pending-orders {
    display: none !important
}

.nav-mobile .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 12px 12px 0 0;
    background-color: #fff;
    background-color: var(--color-white);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .1)
}

.nav-mobile .main-nav li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1
}

.nav-mobile .main-nav li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 5px;
    position: relative;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    font-size: var(--font-base);
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
    cursor: pointer
}

.nav-mobile .main-nav li a .badge {
    position: absolute;
    top: 8px;
    right: 25%
}

.nav-mobile .main-nav li a i {
    display: block;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    font-size: var(--font-base);
    margin-bottom: 3px
}

.nav-mobile .main-nav li a:hover,
.nav-mobile .main-nav li a.active {
    color: var(--color-primary)
}

.nav-mobile .main-nav li a:hover i,
.nav-mobile .main-nav li a.active i {
    color: var(--color-primary);
    pointer-events: none
}

.nav-mobile .main-nav .sub-menu {
    width: 100%;
    position: absolute;
    background-color: #fff;
    background-color: var(--color-white);
    z-index: -1;
    right: 0;
    border-radius: 8px 8px 0 0;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    padding-bottom: 10px;
    top: 0
}

.nav-mobile .main-nav .sub-menu .menu-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
    border-bottom: 1px solid var(--color-grey-dark)
}

.nav-mobile .main-nav .sub-menu .menu-header h6 {
    font-size: var(--font-lg)
}

.nav-mobile .main-nav .sub-menu ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    max-height: 65vh;
    overflow-y: auto
}

.nav-mobile .main-nav .sub-menu ul li {
    width: 100%
}

.nav-mobile .main-nav .sub-menu ul li.thick-border a {
    border-top: 10px solid #f0f2f5;
    border-top: 10px solid var(--color-grey-dark)
}

.nav-mobile .main-nav .sub-menu ul li a {
    display: block;
    width: 100%;
    text-align: right;
    padding: 13px 20px
}

.nav-mobile .main-nav .sub-menu ul li:not(:last-child) a {
    border-bottom: 1px solid #f0f2f5;
    border-bottom: 1px solid var(--color-grey-dark)
}

.nav-mobile .main-nav .sub-menu ul li h6 {
    font-family: var(--font-medium);
    font-size: var(--font-lg)
}

.nav-mobile .main-nav .sub-menu ul li:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.nav-mobile .main-nav .sub-menu ul li.has-badge a {
    padding-left: 40px
}

.nav-mobile .main-nav .sub-menu ul li.has-badge a .badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    left: 10px
}

.nav-mobile .main-nav .sub-menu.active {
    transform: translateY(-97%);
    box-shadow: 0 -10px 10px -4px rgba(0, 0, 0, .1)
}

.close-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ff443a;
    background-color: var(--color-danger);
    line-height: 1;
    border: 0;
    font-size: var(--font-md);
    color: #fff;
    color: var(--color-white);
    position: absolute;
    left: 15px;
    top: 14px;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
    padding: 0
}

.side-panel-trigger .icon {
    pointer-events: none
}

.header-side-panel-trigger {
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xlg);
    color: var(--color-text)
}

.mobile-search-trigger.is-active .icon:before {
    content: "";
    font-size: var(--font-lg)
}

.side-panel .close-mobile-menu {
    left: 20px;
    top: 20px
}

.side-panel.mobile-side-panel .side-panel__content {
    display: flex;
    flex-direction: column;
    padding-top: 60px
}

.side-panel .store-about img {
    margin-bottom: auto;
    margin-left: 20px;
    max-width: 80px
}

.side-panel .store-about h2 {
    line-height: 1;
    font-size: var(--font-lg);
    margin-bottom: 5px
}

.side-panel .store-about p {
    margin: 0;
    color: #666;
    color: var(--color-text-light);
    font-size: var(--font-base);
    line-height: 1.6
}

.side-panel .store-about .more-link {
    text-decoration: underline;
    color: #ff746d
}

.side-panel ul.footer-list--social-links {
    margin-top: auto;
    text-align: center;
    padding-top: 20px
}

.side-panel .top-header__info {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column
}

.side-panel .top-header__info li {
    flex: 1 0 0
}

.side-panel .top-header__info a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-text)
}

.side-panel .top-header__info a i {
    margin-left: 10px
}

.side-panel .popup-trigger {
    width: 100%;
    margin-bottom: 20px;
    min-height: 45px
}

.side-panel .dropdonw-menu-wrap {
    width: calc(100% + 40px);
    margin: 0 -20px
}

.side-panel .dropdonw-menu-wrap .dropdown-menu {
    width: 100%;
    position: static;
    max-height: 0;
    box-shadow: none;
    transform: translateY(-10px);
    transition-duration: .5s;
    overflow-y: auto
}

.side-panel .dropdonw-menu-wrap .dropdown-menu.active {
    max-height: 265px;
    opacity: 1;
    transform: translateY(0);
    background-color: #fafafa
}

.side-panel .dropdonw-menu-wrap .dropdown-menu a {
    border-radius: 0 !important
}

.side-panel .dropdonw-menu-wrap .dropdown-menu a {
    padding: 12px 20px
}

.side-panel .dropdonw-menu-wrap .dropdown-menu a.is-active {
    background-color: transparent
}

.side-panel .dropdonw-menu-wrap:last-child {
    margin-left: 0 !important
}

.side-panel .dropdonw-menu-wrap:last-child .dropdown-menu {
    right: auto
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger {
    padding: 0 20px !important
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger {
    width: 100%;
    border-radius: 0;
    background: #fff;
    background: var(--color-white);
    border-width: 1px 0 0;
    position: relative;
    min-height: 50px;
    font-size: var(--font-base)
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger:after,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger:after {
    position: absolute;
    left: 10px;
    font-size: var(--font-xlg);
    color: #999;
    color: var(--color-text-lighter);
    top: 15px;
    transition: .3s;
    content: ""
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger.active,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger.active {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger.active:after,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger.active:after {
    content: ""
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger .btn-label,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger .btn-label {
    display: inline-block !important
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger .btn-label,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger .btn-label {
    margin-left: 15px;
    min-width: 70px;
    text-align: left;
    text-align: initial
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger .btn-label .icon,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger .btn-label .icon {
    margin-left: 5px
}

.side-panel .dropdonw-menu-wrap .btn.modal-trigger .btn-value,
.side-panel .dropdonw-menu-wrap .shipping-tracker>a.modal-trigger .btn-value {
    opacity: .65
}

.side-panel .branches-switcher .btn.modal-trigger,
.side-panel .branches-switcher .shipping-tracker>a.modal-trigger {
    border-bottom-width: 1px
}

.splide {
    height: 0
}

.splide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden
}

.splide-placeholder__product {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex: 0 0 245px;
    min-height: 400px;
    border: 1px solid #eee;
    border: 1px solid var(--color-grey-border);
    border-radius: 8px;
    overflow: hidden;
    margin-left: 20px
}

.splide-placeholder__product:last-child {
    margin-left: 0
}

.splide-placeholder__product img {
    flex: 1;
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #fcfdfd
}

@media only screen and (max-width: 767px) {
    .splide-placeholder__product {
        flex: 0 0 280px;
        margin-left: 10px
    }
}

.splide-placeholder--main {
    height: 490px
}

.splide__spinner {
    display: none
}

.splide__slide.video-entry:before,
.splide__slide.model-entry:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: url(../../images/play.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.splide__slide.model-entry:before {
    content: "";
    font-family: sallaicons;
    background: transparent;
    width: auto;
    width: initial;
    height: auto;
    height: initial;
    font-size: 120px;
    color: #fff;
    color: var(--color-white);
    opacity: .6
}

.splide__arrows {
    position: absolute;
    pointer-events: none
}

.splide__arrows button {
    position: absolute;
    padding: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 5px;
    top: 0;
    transform: none;
    transform: initial;
    pointer-events: auto
}

.splide__arrows button[disabled] {
    opacity: .3
}

.splide__arrow {
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker);
    fill: #6e747b;
    fill: var(--color-dark)
}

.splide__pagination {
    position: absolute;
    left: 30px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    bottom: auto;
    min-width: 19px;
    width: auto;
    max-height: 90%;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 10px 5px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .5)
}

.splide__pagination li {
    margin: 2px 3px;
    width: 3px
}

.splide__pagination li:first-child {
    margin-top: 0
}

.splide__pagination li:last-child {
    margin-bottom: 0
}

.splide__pagination button {
    height: 15px;
    width: 3px;
    margin: 0;
    border-radius: 2px;
    border: none;
    padding: 0;
    cursor: pointer;
    background-color: #fff;
    background-color: var(--color-white)
}

.splide__pagination__page.is-active {
    background-color: var(--color-primary);
    opacity: 1;
    transform: scale(1)
}

.splide--main-slider .splide__track {
    position: relative
}

@media only screen and (min-width: 767px) {
    .splide--main-slider .splide__track {
        border-radius: 12px
    }
}

.splide--main-slider .splide__slide a {
    display: block;
    width: 100%
}

.splide--main-slider .splide__slide a img {
    display: block !important
}

.splide--main-slider .splide__slide a img {
    width: 100%;
    height: auto
}

.splide--testimonials .splide__list {
    display: grid !important
}

.splide--testimonials .splide__list {
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    width: 100%
}

.splide--testimonials .splide__slide {
    height: 100%
}

.splide--testimonials .splide__arrows {
    top: -65px;
    left: 0;
    display: flex;
    width: 90px;
    margin: 0 -5px
}

.splide--testimonials .splide__arrows button:first-of-type {
    right: 0;
    left: auto
}

.splide--testimonials .splide__arrows button:last-of-type {
    left: 0;
    right: auto
}

@media only screen and (max-width: 767px) {
    .splide--testimonials .splide__arrows {
        display: none
    }
}

.splide--products-slider {
    position: relative
}

.splide--products-slider .splide__slide {
    height: auto
}

.splide--products-slider .splide__slide .product-block {
    height: 100%
}

.splide--products-slider .splide__arrows {
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 112px);
    height: 42px
}

.splide--products-slider .splide__arrows button {
    height: 42px;
    width: 42px
}

.splide--products-slider .splide__arrows button:first-of-type {
    right: 0;
    left: auto
}

.splide--products-slider .splide__arrows button:last-of-type {
    left: 0;
    right: auto
}

.splide--articles .splide__slide {
    height: 340px
}

@media(min-width: 992px) {
    .splide--articles .splide__slide {
        height: 530px
    }
}

.splide--articles .splide__slide.no-thumb .article {
    color: var(--color-text) !important
}

.splide--articles .splide__slide.no-thumb .article * {
    color: var(--color-text) !important
}

.splide--articles .splide__slide.no-thumb .splide--articles__overlay {
    display: none
}

.splide--articles__hero-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.splide--articles__overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 70%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7019607843) 100%) 0% 0% no-repeat padding-box;
    pointer-events: none
}

.splide--articles__placeholder {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.splide--articles__placeholder {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.splide--articles__info.article {
    position: absolute;
    bottom: 12%;
    z-index: 2;
    padding: 0 20px
}

@media(min-width: 767px) {
    .splide--articles__info.article {
        padding: 0;
        width: calc(100% - 60px);
        left: 50%;
        transform: translateX(-50%)
    }
}

.splide--articles__info.article h2 {
    font-size: var(--font-xxlg);
    color: var(--color-primary)
}

.splide--articles__info.article p {
    line-height: 1.9;
    font-size: var(--font-base)
}

@media(min-width: 767px) {
    .splide--articles__info.article p {
        width: 50%
    }
}

.splide--articles__info.article a:hover {
    color: var(--color-primary) !important
}

.splide--thumbs .splide__slide {
    border: 1px solid #f0f2f5 !important;
    border: 1px solid var(--color-grey-dark) !important;
    width: 80px !important;
    height: 60px !important
}

.splide--thumbs .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    overflow: hidden;
    cursor: pointer;
    transition: opacity .5s cubic-bezier(.2, 1, .3, 1);
    opacity: .5;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.splide--thumbs .splide__slide.video-entry:before {
    width: 20px;
    height: 20px
}

.splide--thumbs .splide__slide.is-active {
    border-color: #ecf0f5 !important;
    border-color: var(--color-grey-darker) !important
}

.splide--thumbs .splide__slide.is-active {
    opacity: 1
}

.splide--thumbs .splide__slide:hover {
    opacity: .95
}

@media only screen and (max-width: 767px) {
    .splide--thumbs .splide__slide {
        width: 80px !important;
        height: 70px !important
    }
}

.splide--images .splide__track {
    min-height: 200px;
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark);
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border-radius: 8px;
    margin: 0 0 20px
}

.splide--images .splide__slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.splide--images .splide__slide .switcher-3d-view {
    position: absolute;
    left: 20px;
    top: 35px
}

.splide--images .splide__arrows {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.splide--images .splide__arrows button {
    top: 50%;
    transform: translateY(-50%)
}

.splide--images .splide__arrows button:first-of-type {
    right: 15px;
    left: auto
}

.splide--images .splide__arrows button:last-of-type {
    left: 15px;
    right: auto
}

.splide--images.vertical .splide__track,
.splide--images.vertical .splide__list {
    height: 100%;
    width: 100%
}

.splide--radial {
    overflow: hidden !important
}

.splide--radial {
    border-radius: 12px
}

.splide--ltr {
    direction: ltr
}

.splide--rtl {
    direction: rtl
}

.splide--loyal-prizes .splide__slide .product-block__thumb img {
    height: 200px !important;
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.splide.offers .splide__track {
    overflow: visible
}

.splide.offers .splide__slide {
    opacity: .8
}

.splide.offers .splide__slide.is-visible {
    opacity: 1;
    transition: opacity .5s
}

.splide.offers .splide__arrows {
    left: 0 !important;
    width: 100% !important
}

.splide.offers .splide__arrows button:first-of-type {
    right: -25px !important
}

.splide.offers .splide__arrows button:last-of-type {
    left: -25px !important
}

@media only screen and (max-width: 767px) {
    .splide.offers {
        margin-right: -20px;
        margin-left: -20px
    }

    .splide.offers .splide__list {
        background: #f5f7f9;
        background: var(--color-grey)
    }
}

.splide.offers-popup .splide__arrows {
    width: 100% !important;
    left: 0 !important
}

.splide.center-arrows .splide__arrows {
    z-index: 8;
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 112px);
    height: 42px
}

.splide.center-arrows .splide__arrows button {
    height: 42px;
    width: 42px
}

.splide.center-arrows .splide__arrows button:first-of-type {
    right: 0;
    left: auto
}

.splide.center-arrows .splide__arrows button:last-of-type {
    left: 0;
    right: auto
}

.splide.inline-pagination .splide__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: absolute;
    transform: none;
    transform: initial;
    top: auto;
    top: initial;
    right: 30px;
    bottom: 30px;
    left: auto;
    left: initial;
    padding: 5px 10px
}

.splide.inline-pagination .splide__pagination li {
    margin: 0 2px;
    width: 15px;
    height: 3px;
    position: relative
}

.splide.inline-pagination .splide__pagination li:first-child {
    margin-right: 0
}

.splide.inline-pagination .splide__pagination li:last-child {
    margin-left: 0
}

.splide.inline-pagination .splide__pagination button {
    width: 15px;
    height: 3px;
    position: absolute;
    top: 0
}

@media only screen and (max-width: 767px) {
    .splide.inline-pagination .splide__pagination {
        bottom: 20px;
        right: 20px
    }
}

.splide.is-active {
    height: auto;
    height: initial;
    visibility: visible
}

.special-products-wrapper {
    grid-template-columns: 1fr
}

.special-products-wrapper--sta {
    grid-template-columns: 30% calc(70% - 30px);
    grid-gap: 30px
}

.special-products-wrapper--sta .products-list-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
    grid-gap: 15px
}

@media only screen and (max-width: 992px) {
    .special-products-wrapper--sta .products-list-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 2fr))
    }
}

@media only screen and (max-width: 767px) {
    .special-products-wrapper--sta {
        grid-template-columns: 1fr;
        grid-gap: 40px
    }

    .special-products-wrapper--sta .products-list-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 2fr))
    }
}

.sta-product {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    max-height: calc(100% - 60px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px 5px rgba(238, 238, 238, .6)
}

.sta-product .badge {
    position: absolute;
    top: 25px;
    left: 0
}

.sta-product>* {
    width: 100%
}

.sta-product .btn--add-to-cart {
    width: auto
}

.sta-product__thumb {
    flex: 1
}

.sta-product__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.sta-product__info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 30px 30px
}

.sta-product__info>* {
    width: 100%
}

@media only screen and (max-width: 1023px) {
    .sta-product__info {
        padding: 10px 15px 15px
    }
}

.sta-product__qty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-family: var(--font-medium);
    font-size: var(--font-xxlg);
    color: var(--color-primary)
}

.sta-product__qty span {
    display: block;
    font-size: var(--font-xsm);
    color: var(--color-text);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: var(--font-xsm)
}

.sta-product__qty span b {
    font-size: var(--font-md) !important
}

.sta-product__qty span b {
    margin-bottom: 3px;
    color: var(--color-primary)
}

.sta-product .sta-product-title-discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex: auto
}

@media only screen and (max-width: 767px) {
    .sta-product {
        height: auto;
        max-height: none;
        max-height: initial
    }
}

.special-offer-entry {
    width: 100%;
    height: 100%;
    position: relative
}

.special-offer-entry__content {
    width: 100%;
    grid-template-columns: 50%;
    grid-auto-flow: column;
    grid-gap: 10px
}

.special-offer-entry__content .list--vertical>* {
    flex: 1
}

.special-offer-entry__content .list--vertical>* .product-block--mini {
    height: 100%
}

.special-offer-entry__content .list--horizontal {
    flex-wrap: wrap;
    width: auto
}

.special-offer-entry__content .list--horizontal>* {
    flex: 0 0 calc(50% - 10px);
    margin-left: 10px
}

.special-offer-entry__content .list--horizontal.singleton>* {
    flex: 0 0 calc(33.33% - 10px)
}

@media only screen and (max-width: 992px) {
    .special-offer-entry__content .list--horizontal.singleton {
        margin: 0 -5px
    }

    .special-offer-entry__content .list--horizontal.singleton>* {
        flex: 0 0 calc(50% - 10px)
    }
}

@media only screen and (max-width: 767px) {
    .special-offer-entry__content .list--horizontal.singleton>* {
        flex: 1
    }
}

@media only screen and (max-width: 767px) {
    .special-offer-entry__content .list--horizontal {
        display: block
    }

    .special-offer-entry__content .list--horizontal>* {
        flex: 0 0 100%;
        margin-left: 0
    }

    .special-offer-entry__content .list>*.mb-10 {
        margin-bottom: 15px !important
    }
}

.special-offer-entry__content.wide {
    grid-template-columns: 100%
}

@media only screen and (max-width: 1023px) {
    .special-offer-entry__content {
        height: auto
    }
}

@media only screen and (max-width: 767px) {
    .special-offer-entry__content {
        grid-template-columns: 100%;
        grid-auto-flow: row
    }
}

.special-offer-entry.sigleton {
    grid-template-columns: 1fr;
    grid-gap: 0
}

.title {
    font-size: var(--font-lg);
    font-family: var(--font-medium);
    font-weight: 100;
    color: var(--color-title)
}

.title--primary {
    color: var(--color-primary) !important
}

.title--primary:before {
    background-color: var(--color-primary) !important
}

.title--white {
    color: #fff;
    color: var(--color-white)
}

.title--white:before {
    background-color: #fff !important;
    background-color: var(--color-white) !important
}

.title--large {
    font-size: var(--font-xlg)
}

.title--x-large {
    font-size: var(--font-xlg)
}

.title--xx-large {
    font-size: var(--font-xxlg)
}

@media only screen and (max-width: 992px) {
    .title--xx-large {
        font-size: var(--font-xlg)
    }
}

.title--xxx-large {
    font-size: var(--font-xxxlg)
}

@media only screen and (max-width: 992px) {
    .title--xxx-large {
        font-size: var(--font-xxlg)
    }
}

.title--small {
    font-size: var(--font-base)
}

.title--x-small {
    font-size: var(--font-sm)
}

.title--space-extend {
    margin-bottom: 40px
}

.title--has-dash {
    position: relative;
    padding-right: 15px
}

.title--has-dash:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: 4px;
    background-color: var(--color-text)
}

.title--center {
    text-align: center
}

.badge {
    display: block;
    width: auto
}

.badge--ribbon {
    font-size: var(--font-xsm);
    white-space: nowrap;
    position: absolute;
    border-radius: 0 50px 50px 0;
    padding: 5px 15px 5px 10px
}

@media only screen and (max-width: 767px) {
    .badge--ribbon {
        padding: 5px 10px
    }
}

.badge--ribbon.reverse {
    border-radius: 50px 0 0 50px;
    padding: 5px 10px 5px 15px
}

.badge--corner-ribbon {
    display: inline-block;
    width: 200px;
    position: absolute;
    top: 22px;
    transform: rotate(-45deg);
    padding: 1px 10px 5px;
    font-size: var(--color-sm);
    color: #fff;
    color: var(--color-white);
    text-align: center;
    margin: 0;
    border-radius: 4px;
    background: #ff443a;
    background: var(--color-danger);
    background: linear-gradient(30deg, #FF443A, #ff6e07);
    background: linear-gradient(30deg, var(--color-danger), #ff6e07)
}

.badge--corner-ribbon.start {
    float: right;
    right: -67px
}

.badge--corner-ribbon.end {
    float: left;
    left: -67px
}

.badge--circular {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 50%;
    text-align: center
}

.badge--primary {
    color: var(--color-text-reverse);
    background-color: var(--color-primary)
}

.badge--secondary {
    color: var(--color-text-reverse);
    background-color: var(--color-secondary)
}

.badge--small {
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: var(--font-xxsm);
    font-weight: 500
}

.badge--small>span {
    font-size: var(--font-xsm);
    margin-top: 0
}

.badge--danger {
    color: #fff;
    color: var(--color-white);
    background-color: #ff443a;
    background-color: var(--color-danger)
}

.badge--new {
    height: 42px;
    width: 42px;
    background-color: #46d7dc;
    font-size: var(--font-sm)
}

.badge--new>span {
    font-size: var(--font-sm)
}

.badge--calories {
    width: 80px;
    height: 80px;
    position: absolute;
    border: 1px solid rgba(255, 68, 58, .6);
    background: rgba(255, 255, 255, .9)
}

.badge--calories.badge {
    top: 15px;
    right: auto;
    right: initial;
    left: 15px
}

.hero__content {
    display: flex;
    align-items: stretch;
    flex-direction: row
}

.hero__content .home-block--bg {
    margin: 0
}

.hero__content .nav-desktop {
    width: 315px;
    flex: 0 0 315px;
    margin-left: 20px
}

.hero__content .splide {
    flex: auto;
    overflow: hidden
}

.hero__content .nav-desktop.nav-desktop--horizontal {
    width: 100%;
    flex: 1;
    margin: 0
}

.top-header {
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey);
    padding: 8px 0
}

.top-header .container {
    display: flex;
    justify-content: space-between
}

.top-header .top-header__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin: 0 -15px
}

.top-header .top-header__info li {
    position: relative;
    margin: 0 15px
}

.top-header .top-header__info li a {
    display: inline-flex;
    align-items: center
}

.top-header .top-header__info li span,
.top-header .top-header__info li i {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.top-header .top-header__info li i {
    font-size: var(--font-md);
    position: relative;
    margin-left: 5px
}

.top-header .top-header__info li:hover span,
.top-header .top-header__info li:hover i {
    color: var(--color-primary)
}

.top-header .top-header__info li .tooltip {
    color: #fff !important;
    font-size: var(--font-xxsm) !important;
    display: block !important
}

.top-header .top-header__info li .tooltip {
    background-color: var(--color-text);
    font-weight: 500;
    border-radius: 999px;
    padding: 5px;
    position: absolute;
    top: 0;
    right: -6px;
    opacity: 0;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.tabs[data-login-content] {
    display: none;
    animation: conceal .6s forwards;
    transition: .3s
}

.tabs[data-login-content].active {
    display: block;
    animation: reveal .6s linear;
    transition: .3s
}

.tabs-heads {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px
}

.tabs-heads .tab-head {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 16px
}

.tabs-heads .tab-head .btn,
.tabs-heads .tab-head a {
    font-size: var(--font-base);
    opacity: .95
}

.tabs-heads .tab-head .btn--grey,
.tabs-heads .tab-head a--grey {
    background: #dde4ec;
    background: var(--color-grey-darkest)
}

.tabs-heads .tab-head .btn--grey:hover,
.tabs-heads .tab-head a--grey:hover {
    color: var(--color-text-reverse);
    background: var(--color-primary)
}

.tabs-heads .tab-head .btn--grey.active,
.tabs-heads .tab-head a--grey.active {
    color: var(--color-text-reverse);
    background: var(--color-primary)
}

.tabs-heads .tab-head .btn--transparent,
.tabs-heads .tab-head a--transparent {
    font-size: var(--font-lg)
}

.tabs-heads .tab-head .btn--transparent.active,
.tabs-heads .tab-head a--transparent.active {
    color: var(--color-primary)
}

@media only screen and (max-width: 992px) {

    .tabs-heads .tab-head .btn--transparent,
    .tabs-heads .tab-head a--transparent {
        font-size: var(--font-base)
    }
}

.tabs-heads .tab-head:hover .btn,
.tabs-heads .tab-head:hover a,
.tabs-heads .tab-head.active .btn,
.tabs-heads .tab-head.active a {
    opacity: 1
}

.tabs-heads .tab-head a {
    color: var(--color-text)
}

.tabs-heads--center {
    justify-content: center
}

.tabs-heads--center .tab-head {
    text-align: center
}

.tabs-heads--folders {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overflow: auto hidden;
    padding: 0 20px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.tabs-heads--folders::-webkit-scrollbar {
    display: none
}

.tabs-heads--folders::-webkit-scrollbar-track {
    background: #f5f7f9;
    background: var(--color-grey);
    border-radius: 0
}

.tabs-heads--folders::-webkit-scrollbar-thumb {
    background: var(--color-primary)
}

.tabs-heads--folders::-webkit-scrollbar-thumb:window-inactive {
    background: #f0f2f5;
    background: var(--color-grey-dark)
}

.tabs-heads--folders .tab-head {
    display: inline-block;
    margin: 0;
    margin-left: 1px;
    margin-bottom: -4px
}

.tabs-heads--folders .tab-head .btn,
.tabs-heads--folders .tab-head .shipping-tracker>a {
    padding: 8px 26px;
    margin: 0;
    color: var(--color-text);
    border-radius: 8px 8px 0 0;
    border-radius: 5px 5px 0 0;
    background: #f5f7f9;
    background: var(--color-grey);
    white-space: nowrap
}

.tabs-heads--folders .tab-head .btn.active,
.tabs-heads--folders .tab-head .shipping-tracker>a.active {
    color: var(--color-text-reverse);
    background-color: var(--color-primary)
}

.tabs-heads--folders.primary {
    box-shadow: 0 2px 0 0 var(--color-primary)
}

.tabs-heads--folders.primary .tab-head .btn.active,
.tabs-heads--folders.primary .tab-head .shipping-tracker>a.active {
    color: var(--color-text-reverse);
    background-color: var(--color-primary)
}

.tabs-heads.center {
    align-items: center
}

.tabs-body {
    min-height: -moz-max-content;
    min-height: max-content
}

.tabs-body [data-tab-content] {
    display: none;
    animation: conceal 2s forwards;
    transition: none
}

.tabs-body [data-tab-content]:not(.active) .anime-item {
    opacity: 0
}

.tabs-body [data-slide-content] {
    display: none
}

.tabs-body .active[data-slide-content] {
    display: block
}

.tabs-body[data-profile-content] {
    display: none;
    animation: conceal .6s forwards
}

.tabs-body.active[data-profile-content] {
    display: block;
    animation: reveal .6s linear
}

.tabs-body .active[data-tab-content],
.tabs-body .active[data-profile-content] {
    display: block;
    animation: reveal .8s forwards
}

.tabs-body--slider {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.tabs-body--slider .tabs-nav {
    justify-content: center;
    margin-bottom: 40px
}

.tabs-body--slider .tabs-nav li>a {
    font-size: var(--font-md);
    color: #6e747b;
    color: var(--color-dark);
    padding: 10px 20px;
    background-color: #eee;
    background-color: var(--color-grey-border);
    border-radius: 999px;
    line-height: 20px
}

.tabs-body--slider .tabs-nav li>a.active,
.tabs-body--slider .tabs-nav li>a:hover {
    color: #fff;
    color: var(--color-white);
    background-color: var(--color-primary)
}

.tabs-body--slider .tabs-nav li:not(:last-of-type) {
    padding-left: 20px
}

.cart-thumb {
    position: fixed;
    z-index: 99999;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.product-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    border-radius: 8px;
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark);
    box-shadow: 0 1px 2px 0 rgba(238, 238, 238, .5);
    overflow: hidden;
    transition: border .2s linear, box-shadow .2s linear;
    background: #fff
}

@media only screen and (max-width: 767px) {
    .product-block {
        padding-bottom: 10px
    }
}

.product-block>div {
    width: 100%;
    position: relative
}

.product-block .out-badge {
    position: absolute;
    bottom: .5rem;
    left: 50%;
    z-index: 1;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: .375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    padding-left: .625rem;
    padding-right: .625rem;
    padding-top: .375rem;
    padding-bottom: .375rem;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(153, 153, 153, var(--tw-text-opacity))
}

.product-block .btn--add-to-cart {
    left: -1px;
    bottom: 10px;
    margin: 0;
    transform: translateX(-100%);
    border-radius: 0 50px 50px 0
}

@media only screen and (max-width: 767px) {
    .product-block .btn--add-to-cart {
        bottom: 5px
    }
}

.product-block .btn--add-to-cart .s-button-element {
    border-radius: 0 50px 50px 0
}

.product-block__thumb {
    flex: auto
}

.product-block__thumb .thumb-wrapper {
    display: block;
    width: 100%;
    height: 100%
}

.product-block__thumb .thumb-wrapper img {
    display: block;
    width: 100%;
    height: auto
}

.product-block__thumb .badge.badge--ribbon {
    top: 15px;
    left: 0
}

.product-block__info {
    padding: 5px
}

@media(max-width: 480px) {
    .product-block__info {
        padding: 10px
    }
}

.product-block__info .product-title {
    display: block;
    width: 100%;
    height: auto;
    white-space: normal
}

.product-block__info .product-title h4 {
    font-size: var(--font-base);
    color: var(--color-primary)
}

@media only screen and (max-width: 767px) {
    .product-block__info .product-title h2 {
        padding-bottom: 10px
    }
}

.product-block__info .product-title p {
    font-size: var(--font-sm);
    color: #999;
    color: var(--color-text-lighter);
    margin: 5px 0 0;
    max-width: 80%
}

.product-block__info .progress-bar {
    margin: 15px 0
}

.product-block__info .progress-bar__bg {
    height: 7px
}

.product-block__info .progress-bar>span {
    display: none
}

.product-block__info .progress-bar .list * {
    font-size: var(--font-sm)
}

.product-block__info .progress-bar .list.mb-10 {
    margin-bottom: 5px !important
}

.product-block__info .progress-bar hr {
    display: none
}

.product-block__description {
    text-align: right
}

.product-block__points {
    font-weight: 700;
    border-top: 1px solid #f0f2f5;
    border-top: 1px solid var(--color-grey-dark);
    padding: 10px 20px
}

.product-block:hover {
    border-color: #ecf0f5;
    border-color: var(--color-grey-darker);
    box-shadow: 0 5px 15px 1px rgba(0, 0, 0, .04)
}

.product-block:hover .btn--add-to-cart {
    transform: translateX(0)
}

@media only screen and (max-width: 767px) {
    .product-block .btn--add-to-cart {
        transform: translateX(0)
    }
}

.product-block--large .btn--add-to-cart {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    z-index: 6
}

.product-block--large .product-block__thumb {
    height: 100%
}

.product-block--large .product-block__thumb .thumb-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.product-block--large .product-block__info {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 5
}

.product-block--large .product-block__info .product-title h6 {
    color: #fff
}

.product-block--large .product-block__info .price-wrapper {
    opacity: .8
}

.product-block--large .product-block__info .price-wrapper span {
    color: #eee
}

.product-block--large .product-block__info .price-wrapper small {
    color: #ddd
}

.product-block--large:after {
    content: "";
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: .5
}

@media only screen and (max-width: 767px) {
    .product-block--large .product-block__thumb .thumb-wrapper {
        min-height: 300px
    }

    .product-block--large .btn--add-to-cart {
        transform: translateX(10px)
    }

    .product-block--large .btn--add-to-cart i {
        transform: translateY(1px)
    }
}

.product-block--large:hover .btn--add-to-cart {
    transform: translateX(10px)
}

.product-block--small .product-block__info {
    padding: 10px
}

.product-block--small .product-block__info .product-title h6 {
    font-size: var(--font-sm)
}

.product-block--small .product-block__info p,
.product-block--small .product-block__info .price-wrapper {
    font-size: var(--font-xsm)
}

.product-block--small .btn.btn--add-to-cart,
.product-block--small .shipping-tracker>a.btn--add-to-cart {
    font: var(--font-base);
    padding: 4px 10px 4px 8px
}

.product-block--mini {
    flex-direction: row;
    padding-right: 25%
}

.product-block--mini .btn--add-to-cart {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    top: 50%;
    bottom: auto;
    bottom: initial;
    transform: translateX(-100px) translateY(-50%)
}

.product-block--mini .btn--add-to-cart .s-button-element {
    width: 35px;
    height: 35px;
    border-radius: 50%
}

.product-block--mini .product-block__thumb {
    width: 25%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}

.product-block--mini .product-block__thumb .thumb-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center
}

.product-block--mini .product-block__info {
    flex: auto;
    padding: 10px 15px
}

.product-block--mini .product-block__info .product-title h4 {
    font-size: var(--font-sm)
}

.product-block--mini .product-block__info .price-wrapper {
    margin-top: 5px
}

.product-block--mini:hover .btn--add-to-cart {
    transform: translateX(10px) translateY(-50%)
}

@media only screen and (max-width: 767px) {
    .product-block--mini .btn--add-to-cart {
        transform: translateX(10px) translateY(-50%)
    }

    .product-block--mini .product-block__info {
        padding-left: 60px
    }

    .product-block--mini .input-group--end .form-control {
        padding-left: 40px
    }
}

.product-block--inline {
    box-shadow: none !important
}

.product-block--inline {
    border: none;
    border-radius: 0;
    background: transparent;
    flex-direction: row
}

.product-block--inline .product-block__thumb {
    padding: 0
}

.product-block--inline .product-block__thumb a {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: right;
    padding: 15px
}

.product-block--inline .product-block__thumb a h6 {
    transition: color .5s cubic-bezier(.2, 1, .3, 1)
}

.product-block--inline .product-block__thumb a span {
    padding: 0 !important
}

.product-block--inline .product-block__thumb a .avatar-wrapper {
    display: inline-block;
    margin-left: 15px;
    flex-shrink: 0
}

.product-block--inline .product-block__thumb a:hover h6 {
    color: var(--color-primary)
}

.product-block--inline .product-block__thumb a:hover h6 small {
    color: #bbb;
    color: var(--color-text-muted)
}

.product-block--inline .product-block__thumb.center a {
    align-items: center
}

.product-block--inline .product-block__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 0
}

.product-block--inline .product-block__info>* {
    flex: 1;
    padding: 15px;
    white-space: nowrap
}

.product-block--inline .product-block__info>*:last-child {
    text-align: left !important
}

.product-block--inline .product-block__info .s-quantity-input-container {
    padding: 0 !important;
    border-radius: 20px !important;
}

.product-block--inline .product-block__info .price-wrapper {
    display: flex;
    justify-content: flex-end;
    line-height: 1
}

@media only screen and (max-width: 767px) {
    .product-block--inline {
        flex-direction: column
    }

    .product-block--inline .product-block__thumb a {
        padding-left: 55px
    }

    .product-block--inline .product-block__thumb a .avatar-wrapper {
        margin-left: 10px
    }

    .product-block--inline .product-block__info {
        align-items: flex-start
    }

    .product-block--inline .product-block__info *[data-title] {
        flex-direction: column;
        padding: 10px 15px;
        text-align: right;
        white-space: nowrap
    }

    .product-block--inline .product-block__info *[data-title]:before {
        display: block;
        margin-bottom: 5px
    }

    .product-block--inline .product-block__info .delete-entry {
        position: absolute;
        top: calc(-100% + 75px);
        left: 0
    }
}

.product-block.cover .product-block__thumb .thumb-wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.product-block.contain .product-block__thumb .thumb-wrapper img {
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-block--large {
    display: block !important
}

.product-block--large .btn--add-to-cart {
    left: -100%;
    bottom: 50px;
    margin: 0;
    transform: translateX(-100%);
    border-radius: 0 50px 50px 0
}

.product-block--large:hover .btn--add-to-cart {
    transform: translateX(40px)
}

.list--horizontal .product-block--mini,
.list--vertical .product-block--mini {
    min-height: 92px
}

.list--horizontal .s-button-text {
    position: relative;
    top: -5px
}

.price-wrapper>* {
    display: inline-block;
    position: relative;
    white-space: nowrap
}

.price-wrapper>span {
    font-weight: 500;
    color: var(--color-text)
}

.price-wrapper>small {
    font-size: var(--font-sm);
    color: #bbb;
    color: var(--color-text-muted);
    margin-right: 5px;
    width: -moz-fit-content;
    width: fit-content;
    height: 16px
}

.price-wrapper>small:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 1px;
    border-bottom: 1px solid;
    bottom: 20%;
    right: 15%;
    transform: rotate(340deg)
}

.price-wrapper--small>span {
    font-size: var(--font-sm)
}

.price-wrapper--small>small {
    font-size: var(--font-xsm)
}

.price-wrapper--large>span {
    font-size: var(--font-lg)
}

.price-wrapper--large>small {
    font-size: var(--font-base)
}

.price-wrapper--x-large>span {
    font-size: var(--font-xxlg)
}

.price-wrapper--x-large>small {
    font-size: var(--font-xlg);
    margin-right: 15px
}

@media only screen and (max-width: 1023px) {
    .price-wrapper--x-large>span {
        font-size: var(--font-lg)
    }

    .price-wrapper--x-large>small {
        font-size: var(--font-base)
    }
}

.qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: #f5f7f9;
    background: var(--color-grey);
    padding: 0;
    border-radius: 4px;
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.qty input {
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: var(--font-base);
    color: var(--color-text);
    line-height: 41px
}

.qty input:focus,
.qty input:active {
    border: none;
    outline: none;
    box-shadow: none
}

.qty button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text)
}

.qty button i {
    font-size: var(--font-sm)
}

.qty--large {
    height: 45px
}

.qty--large input {
    height: 45px
}

.qty--large button {
    height: 45px;
    line-height: 45px
}

.qty--small {
    max-width: 110px;
    height: 35px
}

.qty--small input {
    width: 100%;
    height: 35px;
    line-height: 34px;
    font-size: var(--font-sm)
}

.qty--small button {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0 8px
}

.qty--small button i {
    font-size: var(--font-xsm)
}

.qty--circular {
    border-radius: 100px
}

.banner {
    display: block;
    position: relative;
    text-align: center
}

.banner figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    background-size: cover;
    background-position: 50%
}

.banner figure img {
    position: relative;
    display: block;
    min-height: 100%;
    width: 100%
}

.banner figure figcaption {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 30px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.banner figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0
}

.banner figure figcaption::before,
.banner figure figcaption::after {
    pointer-events: none
}

.banner figure h2 {
    font-size: var(--font-xlg);
    font-weight: 100;
    color: #fff;
    line-height: 1;
    margin: 0;
    z-index: 3
}

.banner figure p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 68.5%
}

.banner--square {
    background-color: var(--color-primary);
    padding: 0;
    margin: 0 0 30px;
    border-radius: 8px;
    overflow: hidden
}

.banner--square figure {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 50%
}

.banner--square figure img {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.banner--square.has-title figcaption:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent)
}

@media only screen and (max-width: 767px) {
    .banner--square.last {
        margin-bottom: 0
    }
}

@media only screen and (max-width: 767px) {
    .banner--square figure {
        padding-top: 0
    }

    .banner--square figure img {
        position: relative;
        height: auto
    }
}

.banner--fixed {
    border-radius: 8px;
    overflow: hidden
}

.banner--fixed img {
    display: block;
    width: 100%;
    height: auto
}

figure.banner-effect-1 img {
    transition: opacity .35s, transform .35s
}

figure.banner-effect-1:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    z-index: 2;
    transition: transform .35s ease-out;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0)
}

figure.banner-effect-1:hover img {
    opacity: .85;
    transform: scale3d(1.05, 1.05, 1)
}

figure.banner-effect-1:hover:before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0)
}

.grid {
    display: grid
}

.grid.grid-minmax-1 {
    grid-template-columns: repeat(auto-fit, minmax(1rem, 1fr))
}

.grid.grid-minmax-2 {
    grid-template-columns: repeat(auto-fit, minmax(2rem, 1fr))
}

.grid.grid-minmax-3 {
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr))
}

.grid.grid-minmax-4 {
    grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr))
}

.grid.grid-minmax-5 {
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr))
}

.grid.grid-minmax-6 {
    grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr))
}

.grid.grid-minmax-7 {
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr))
}

.grid.grid-minmax-8 {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr))
}

.grid.grid-minmax-9 {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr))
}

.grid.grid-minmax-10 {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr))
}

.grid.grid-minmax-11 {
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr))
}

.grid.grid-minmax-12 {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr))
}

.grid.grid-minmax-13 {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr))
}

.grid.grid-minmax-14 {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr))
}

.grid.grid-minmax-15 {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr))
}

.grid.grid-minmax-16 {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr))
}

.grid.grid-minmax-17 {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr))
}

.grid.grid-minmax-18 {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr))
}

.grid.grid-minmax-19 {
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr))
}

.grid.grid-minmax-20 {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr))
}

.grid.grid-gap-1 {
    grid-gap: 1px
}

.grid.grid-gap-2 {
    grid-gap: 2px
}

.grid.grid-gap-3 {
    grid-gap: 3px
}

.grid.grid-gap-4 {
    grid-gap: 4px
}

.grid.grid-gap-5 {
    grid-gap: 5px
}

.grid.grid-gap-6 {
    grid-gap: 6px
}

.grid.grid-gap-7 {
    grid-gap: 7px
}

.grid.grid-gap-8 {
    grid-gap: 8px
}

.grid.grid-gap-9 {
    grid-gap: 9px
}

.grid.grid-gap-10 {
    grid-gap: 10px
}

.grid.grid-gap-11 {
    grid-gap: 11px
}

.grid.grid-gap-12 {
    grid-gap: 12px
}

.grid.grid-gap-13 {
    grid-gap: 13px
}

.grid.grid-gap-14 {
    grid-gap: 14px
}

.grid.grid-gap-15 {
    grid-gap: 15px
}

.grid.grid-gap-16 {
    grid-gap: 16px
}

.grid.grid-gap-17 {
    grid-gap: 17px
}

.grid.grid-gap-18 {
    grid-gap: 18px
}

.grid.grid-gap-19 {
    grid-gap: 19px
}

.grid.grid-gap-20 {
    grid-gap: 20px
}

@media only screen and (max-width: 767px) {
    .grid.grid-md-gap-1 {
        grid-gap: 1px
    }

    .grid.grid-md-gap-2 {
        grid-gap: 2px
    }

    .grid.grid-md-gap-3 {
        grid-gap: 3px
    }

    .grid.grid-md-gap-4 {
        grid-gap: 4px
    }

    .grid.grid-md-gap-5 {
        grid-gap: 5px
    }

    .grid.grid-md-gap-6 {
        grid-gap: 6px
    }

    .grid.grid-md-gap-7 {
        grid-gap: 7px
    }

    .grid.grid-md-gap-8 {
        grid-gap: 8px
    }

    .grid.grid-md-gap-9 {
        grid-gap: 9px
    }

    .grid.grid-md-gap-10 {
        grid-gap: 10px
    }

    .grid.grid-md-gap-11 {
        grid-gap: 11px
    }

    .grid.grid-md-gap-12 {
        grid-gap: 12px
    }

    .grid.grid-md-gap-13 {
        grid-gap: 13px
    }

    .grid.grid-md-gap-14 {
        grid-gap: 14px
    }

    .grid.grid-md-gap-15 {
        grid-gap: 15px
    }

    .grid.grid-md-gap-16 {
        grid-gap: 16px
    }

    .grid.grid-md-gap-17 {
        grid-gap: 17px
    }

    .grid.grid-md-gap-18 {
        grid-gap: 18px
    }

    .grid.grid-md-gap-19 {
        grid-gap: 19px
    }

    .grid.grid-md-gap-20 {
        grid-gap: 20px
    }
}

@media only screen and (max-width: 576px) {
    .grid.grid-sm-gap-1 {
        grid-gap: 1px
    }

    .grid.grid-sm-gap-2 {
        grid-gap: 2px
    }

    .grid.grid-sm-gap-3 {
        grid-gap: 3px
    }

    .grid.grid-sm-gap-4 {
        grid-gap: 4px
    }

    .grid.grid-sm-gap-5 {
        grid-gap: 5px
    }

    .grid.grid-sm-gap-6 {
        grid-gap: 6px
    }

    .grid.grid-sm-gap-7 {
        grid-gap: 7px
    }

    .grid.grid-sm-gap-8 {
        grid-gap: 8px
    }

    .grid.grid-sm-gap-9 {
        grid-gap: 9px
    }

    .grid.grid-sm-gap-10 {
        grid-gap: 10px
    }

    .grid.grid-sm-gap-11 {
        grid-gap: 11px
    }

    .grid.grid-sm-gap-12 {
        grid-gap: 12px
    }

    .grid.grid-sm-gap-13 {
        grid-gap: 13px
    }

    .grid.grid-sm-gap-14 {
        grid-gap: 14px
    }

    .grid.grid-sm-gap-15 {
        grid-gap: 15px
    }

    .grid.grid-sm-gap-16 {
        grid-gap: 16px
    }

    .grid.grid-sm-gap-17 {
        grid-gap: 17px
    }

    .grid.grid-sm-gap-18 {
        grid-gap: 18px
    }

    .grid.grid-sm-gap-19 {
        grid-gap: 19px
    }

    .grid.grid-sm-gap-20 {
        grid-gap: 20px
    }

    .grid.grid-sm-minmax-1 {
        grid-template-columns: repeat(auto-fit, minmax(1rem, 1fr))
    }

    .grid.grid-sm-minmax-2 {
        grid-template-columns: repeat(auto-fit, minmax(2rem, 1fr))
    }

    .grid.grid-sm-minmax-3 {
        grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr))
    }

    .grid.grid-sm-minmax-4 {
        grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr))
    }

    .grid.grid-sm-minmax-5 {
        grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr))
    }

    .grid.grid-sm-minmax-6 {
        grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr))
    }

    .grid.grid-sm-minmax-7 {
        grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr))
    }

    .grid.grid-sm-minmax-8 {
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr))
    }

    .grid.grid-sm-minmax-9 {
        grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr))
    }

    .grid.grid-sm-minmax-10 {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr))
    }

    .grid.grid-sm-minmax-11 {
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr))
    }

    .grid.grid-sm-minmax-12 {
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr))
    }

    .grid.grid-sm-minmax-13 {
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr))
    }

    .grid.grid-sm-minmax-14 {
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr))
    }

    .grid.grid-sm-minmax-15 {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr))
    }

    .grid.grid-sm-minmax-16 {
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr))
    }

    .grid.grid-sm-minmax-17 {
        grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr))
    }

    .grid.grid-sm-minmax-18 {
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr))
    }

    .grid.grid-sm-minmax-19 {
        grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr))
    }

    .grid.grid-sm-minmax-20 {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr))
    }
}

.store-feature {
    text-align: center
}

.store-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 80px;
    height: 80px;
    position: relative;
    font-size: var(--font-xxxlg);
    color: var(--color-primary);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px
}

.store-feature__icon i {
    opacity: .85
}

.store-feature__icon:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    opacity: .1;
    pointer-events: none
}

.store-feature .title {
    margin: 0 0 5px
}

.store-feature p {
    margin: 0;
    color: #666;
    color: var(--color-text-light);
    max-width: 80%;
    margin: 0 auto
}

@media only screen and (max-width: 767px) {
    .store-feature {
        margin-bottom: 50px
    }

    .store-feature.last {
        margin-bottom: 0
    }
}

.testimonial-entry {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px
}

.testimonial-entry>* {
    width: 100%
}

.testimonial-entry__info {
    flex: initial;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 15px
}

.testimonial-entry__info .avatar-wrapper {
    flex-shrink: 0;
    margin-left: 10px
}

.testimonial-entry__info div.title {
    flex: auto
}

.testimonial-entry__info div.title small {
    display: block;
    color: var(--color-text);
    opacity: .6
}

.testimonial-entry__excerpt {
    flex: 1
}

.testimonial-entry__excerpt p {
    margin: 0;
    font-family: var(--font-main);
    font-size: var(--font-sm)
}

.testimonial-entry__wrapper {
    padding: 30px 30px 20px
}

.testimonial-entry__wrapper>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 23px
}

.testimonial-entry__wrapper>div span {
    display: inline-block;
    margin-right: 20px;
    font-size: var(--font-sm);
    font-weight: 700;
    color: var(--color-primary)
}

.testimonial-entry__wrapper>div span>span {
    font-size: var(--font-sm);
    color: #99a4ae;
    display: block;
    margin: 5px 0 0
}

.testimonial-entry__wrapper p {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5
}

.testimonial-entry__rate {
    margin-top: 10px;
    line-height: 1
}

.testimonial-entry__rate .btn,
.testimonial-entry__rate .shipping-tracker>a {
    display: inline-block;
    pointer-events: none
}

.vission-and-mission {
    margin-top: 100px;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    padding: 40px 55px;
    padding-left: 70px;
    border-radius: 10px;
    position: relative
}

.vission-and-mission:after {
    font-family: sallaicons;
    content: "";
    height: 60px;
    width: 60px;
    color: #fff;
    font-size: var(--font-xxlg);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #46d7dc;
    position: absolute;
    border-radius: 10px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%)
}

.vission-and-mission h5 {
    color: #46d7dc;
    font-size: var(--font-lg);
    font-weight: 700
}

.vission-and-mission p {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0
}

.breadcrumb {
    padding: 20px 0
}

.breadcrumb a,
.breadcrumb span {
    display: inline-block;
    position: relative;
    font-size: var(--font-sm);
    color: #999;
    color: var(--color-text-lighter)
}

.breadcrumb a {
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    color: var(--color-primary)
}

.breadcrumb a:hover {
    color: var(--color-primary)
}

.breadcrumb .separate {
    padding: 0 10px
}

.breadcrumb--dark {
    background: var(--color-text)
}

.breadcrumb--dark a,
.breadcrumb--dark span {
    color: var(--color-text-reverse)
}

.breadcrumb-bg span {
    color: #fff
}

.loyal__banner-bg {
    display: flex;
    justify-content: center;
    align-items: center
}

.filters__content>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 40px
}

.filters__content .filters-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.filters__content .filters-price>div {
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    padding: 0 15px;
    flex: 0 0 calc(50% - 20px)
}

.filters__content .filters-price>div .form-control {
    color: var(color-text) !important
}

.filters__content .filters-price>div .form-control {
    border: none;
    width: 30px;
    flex: auto;
    background-color: transparent;
    position: relative
}

.filters__content .filters-price>div .form-control:active,
.filters__content .filters-price>div .form-control:focus {
    border: none !important
}

.filters__content .filters-price>div .form-control:active,
.filters__content .filters-price>div .form-control:focus {
    background-color: transparent;
    outline: none;
    box-shadow: none
}

.filters__content .filters-price>div .form-control::-moz-placeholder {
    color: var(color-text) !important
}

.filters__content .filters-price>div .form-control::placeholder {
    color: var(color-text) !important
}

.filters__content .filters-price>div span,
.filters__content .filters-price>div .form-control {
    line-height: 36px;
    color: var(color-text)
}

.add-comment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.add-comment img {
    width: 40px;
    margin-left: 15px
}

.add-comment div {
    flex: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column
}

.add-comment div textarea,
.add-comment div .view-comment textarea {
    height: 86px;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border: none;
    outline: none;
    border-radius: 10px;
    resize: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 20px;
    font-size: var(--font-sm);
    color: var(--color-text);
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    font-weight: 500
}

.add-comment div textarea::-moz-placeholder,
.add-comment div .view-comment textarea::-moz-placeholder {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500
}

.add-comment div textarea::placeholder,
.add-comment div .view-comment textarea::placeholder {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500
}

.add-comment div textarea:hover,
.add-comment div textarea:focus,
.add-comment div .view-comment textarea:hover,
.add-comment div .view-comment textarea:focus {
    background-color: #e8edf2;
    background-color: var(--color-secondary-darker)
}

.add-comment div .btn,
.add-comment div .shipping-tracker>a {
    margin: 0;
    padding: 11px 30px;
    font-size: var(--font-sm)
}

.insert-question,
.view-comment .comments-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--color-text)
}

.view-comment {
    margin-top: 50px
}

.view-comment__comment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 30px
}

.view-comment__comment img {
    width: 40px;
    height: 40px;
    margin-left: 20px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    flex-shrink: 0
}

.view-comment__comment .comment-wrapper {
    position: relative;
    width: 100%
}

.view-comment__comment .comment-wrapper .user-info {
    font-size: var(--font-sm);
    line-height: 16px;
    white-space: nowrap;
    align-items: center
}

.view-comment__comment .comment-wrapper .badge {
    background-color: #fbd34c;
    margin: 0 10px;
    border-radius: 20px;
    padding: 0 14px;
    height: 21px;
    display: inline-flex;
    align-items: center
}

.view-comment__comment .comment-wrapper .badge .icon {
    margin-left: 5px
}

.view-comment__comment .comment-wrapper .rating {
    margin: 10px 0 5px;
    font-size: var(--font-sm)
}

.view-comment__comment .comment-wrapper .rating span {
    color: #ccc
}

.view-comment__comment .comment-wrapper .rating .checked {
    color: #fbd34c
}

.view-comment__comment .comment-wrapper .name {
    color: var(--color-primary);
    margin-left: 13px;
    font-weight: 700
}

.view-comment__comment .comment-wrapper .admin .name {
    color: #46d7dc
}

.view-comment__comment .comment-wrapper .name-rating-wrapper {
    align-items: center
}

@media(max-width: 480px) {
    .view-comment__comment .comment-wrapper .name-rating-wrapper {
        flex-direction: column;
        align-items: flex-start
    }

    .view-comment__comment .comment-wrapper .name-rating-wrapper .name {
        margin-bottom: 5px
    }

    .view-comment__comment .comment-wrapper .name-rating-wrapper .badge {
        margin-right: 0
    }
}

.view-comment__comment .comment-wrapper p {
    margin: 0;
    font-size: var(--font-sm);
    color: var(--color-text);
    line-height: 1.7
}

.view-comment__comment .comment-wrapper .btn,
.view-comment__comment .comment-wrapper .shipping-tracker>a {
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #99a4ae;
    margin-top: 5px
}

.view-comment__comment .comment-wrapper .btn:hover,
.view-comment__comment .comment-wrapper .shipping-tracker>a:hover {
    color: #b2b8be
}

.view-comment__comment .comment-wrapper .add-comment {
    margin-top: 15px;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    height: 40px;
    opacity: 1;
    transition: all .4s linear;
    margin-bottom: 20px
}

.view-comment__comment .comment-wrapper .add-comment img {
    margin-left: 10px
}

.view-comment__comment .comment-wrapper .add-comment textarea {
    border-radius: 999px;
    height: 40px;
    padding: 11px 20px;
    width: 70%
}

.view-comment__comment .comment-wrapper .add-comment.hide {
    overflow: hidden;
    opacity: 0;
    height: 0;
    margin-bottom: 0
}

.view-comment__comment .comment-wrapper .comment-date {
    font-size: 14px;
    font-weight: 500;
    color: #99a4ae;
    left: 0;
    top: 2px
}

.view-comment__comment .comment-wrapper .btn-hide-replays {
    color: #636b74;
    margin: 10px 0 20px;
    display: none
}

.view-comment__comment--has-replays {
    position: relative;
    margin-bottom: 10px
}

.view-comment__comment--has-replays:before {
    content: "";
    position: absolute;
    right: 19px;
    top: 46px;
    height: calc(100% - 150px);
    width: 2px;
    background-color: #e8edf2
}

.view-comment__comment--has-replays .btn-hide-replays {
    display: block !important
}

.view-comment__comment--has-replays .replay-wrapper {
    margin-bottom: 15px
}

.view-comment__comment--has-replays .replay-wrapper .comment-wrapper--replay p {
    width: 70%
}

.upload--profile-img input[type=file] {
    opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer
}

.upload--profile-img input[type=file]+label {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    border-radius: 50%
}

.upload--profile-img input[type=file]+label i {
    color: #fff;
    position: absolute;
    top: 30%;
    left: 30%;
    font-size: var(--font-sm);
    height: 13px;
    z-index: 5
}

.upload--profile-img input[type=file]+label:after {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.upload--profile-img input[type=file]+label:before {
    content: "";
    height: 36px;
    width: 36px;
    background-color: #fff;
    background-color: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: 0
}

.product-option-uploader .s-file-upload-wrapper {
    min-height: 120px
}

.product-option-uploader .s-file-upload-wrapper .filepond--list-scroller {
    overflow-y: inherit !important
}

.product-option-uploader .s-file-upload-wrapper .filepond--drop-label {
    min-height: 120px !important
}

.product-option-uploader .s-file-upload-wrapper .filepond--drop-label {
    background-color: #f3f4f6;
    cursor: pointer;
    border: 1px dashed #d1d5db;
    border-radius: .375rem
}

.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder-icon {
    margin-bottom: 5px
}

.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder-icon i {
    color: #7c8082;
    font-size: 23px
}

.table-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-left: 25px;
    position: relative;
    width: 100%
}

.table-list li:not(:last-of-type) {
    border-bottom: 1px solid #e8edf2
}

.table-list li span {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500;
    color: #99a4ae
}

.table-list li a {
    font-size: var(--font-sm);
    color: var(--color-text);
    font-weight: 500;
    display: block
}

.table-list--orders li {
    padding: 20px 30px
}

.table-list--orders li a {
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.table-list--orders li a:hover {
    color: var(--color-primary)
}

.table-list--orders li .price {
    font-weight: 700
}

.table-list--orders li .status {
    flex: 0 0 12%
}

.table-list--orders li .status i {
    position: relative;
    top: 3px;
    margin-left: 5px
}

.table-list--orders li .status--shipping {
    color: #ffc02e
}

.table-list--orders li .status--shipped {
    color: #46d7dc
}

.table-list--order-details li {
    border-bottom: none !important;
    align-items: flex-start !important
}

.table-list--order-details li {
    padding: 20px 30px 20px 50px
}

.table-list--order-details li .items-wrap {
    flex-basis: 50%;
    justify-content: space-between
}

.table-list--order-details li .item-label {
    font-weight: 300;
    color: #999
}

.table-list--order-details li span {
    color: var(--color-text);
    font-weight: 700
}

.table-list--order-details li span.product-img {
    flex-basis: 50px
}

.table-list--order-details li span.product-img img {
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block
}

.table-list--order-details li span.product-name {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    flex-direction: row
}

.table-list--order-details li:first-of-type {
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border-top: 1px solid #e8edf2;
    border-top: 1px bottom #e8edf2
}

.table-list--order-details li:not(:last-of-type) {
    border-top: 1px solid #e8edf2
}

.table-list--order-details li.total {
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 40px
}

.table-list--order-details li.total div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 50%
}

.table-list--order-details li.total div span {
    flex: initial
}

.table-list--order-details li.total div.cart-total {
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border-radius: 10px
}

.table-list--order-details li.total div.cart-total span {
    color: var(--color-primary)
}

.table-list--order-details li.total div.shipping-total span {
    color: #636b74
}

.table-list--order-details li.total div.total {
    border-radius: 10px;
    background-color: var(--color-primary)
}

.table-list--order-details li.total div.total span {
    color: #fff
}

.order-details__header {
    border-radius: 12px 12px 0 0;
    flex-direction: row;
    margin-bottom: 30px
}

.order-details__header ul {
    flex: 1;
    padding: 20px
}

.order-details__header ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.order-details__header ul li label {
    color: #666;
    color: var(--color-text-light);
    margin-left: 20px;
    white-space: nowrap
}

.order-details__header ul li .shipping-logo {
    display: inline-block;
    vertical-align: middle
}

.order-details__header ul li .shipping-logo img {
    display: block;
    max-height: 20px
}

.order-details__header ul li:not(:last-of-type) {
    margin-bottom: 15px
}

@media only screen and (max-width: 992px) {
    .order-details {
        padding: 15px
    }

    .order-details__header {
        flex-direction: column;
        margin-bottom: 15px
    }
}

@media only screen and (max-width: 767px) {
    .order-shippings .avatar-wrapper {
        padding: 0
    }

    .order-shippings__item-title {
        margin-top: 10px;
        margin-bottom: 10px
    }
}

.order-shippings .list--table__head>*>*:last-child,
.order-shippings .product-block__info>*:last-child {
    text-align: left !important;
    text-align: initial !important
}

.accordion__panel .accordion__title {
    display: block;
    width: 100%;
    position: relative;
    padding: 15px;
    border-radius: 4px;
    color: var(--color-text);
    font-size: var(--font-base);
    line-height: 1;
    cursor: pointer;
    transition: .3s;
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.accordion__panel .accordion__title:hover {
    color: var(--color-text-reverse);
    background-color: var(--color-primary)
}

.accordion__panel .accordion__title:after {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-base);
    color: inherit;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px
}

.accordion__panel .accordion__title.is-opend:after {
    content: ""
}

.accordion__panel .accordion__title.is-opend+.accordion__body {
    padding-bottom: 30px;
    max-height: 1000px
}

.accordion__panel .accordion__body {
    opacity: 1;
    padding: 20px 0 0;
    transition: .4s cubic-bezier(.55, 0, .1, 1) 0s;
    max-height: 0;
    overflow: hidden
}

.accordion__panel .accordion__body .checkbox {
    height: 35px
}

.checkbox {
    cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox input[type=radio] {
    display: none
}

.checkbox input[type=checkbox]+label,
.checkbox input[type=radio]+label {
    width: 100%;
    position: relative;
    padding-right: 35px;
    cursor: pointer
}

.checkbox input[type=checkbox]+label:before,
.checkbox input[type=radio]+label:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark);
    top: 0;
    right: 0;
    border-radius: 4px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.checkbox input[type=checkbox]+label:after,
.checkbox input[type=radio]+label:after {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-xsm);
    position: absolute;
    top: 3px;
    right: 3px;
    opacity: 0;
    visibility: hidden;
    background-color: transparent;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    transform: scale(0)
}

.checkbox input[type=checkbox]:checked+label:after,
.checkbox input[type=radio]:checked+label:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.checkbox input[type=checkbox]:disabled+label,
.checkbox input[type=radio]:disabled+label {
    opacity: .35;
    cursor: not-allowed
}

.checkbox input[type=checkbox]+label:after {
    color: #fff;
    color: var(--color-white)
}

.checkbox input[type=checkbox]+label .sicon-star {
    margin-left: 3px
}

.checkbox input[type=checkbox]:checked+label:before {
    background: var(--color-text)
}

.checkbox input[type=radio]+label:before {
    border-radius: 50%;
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark)
}

.checkbox input[type=radio]+label:after {
    content: "";
    font-family: inherit;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text);
    top: 5px;
    right: 5px
}

.checkbox--large input[type=checkbox]+label:before,
.checkbox--large input[type=radio]+label:before {
    width: 22px;
    height: 22px
}

.checkbox--large input[type=checkbox]+label:after,
.checkbox--large input[type=radio]+label:after {
    top: 5px;
    right: 5px
}

.checkbox--large input[type=radio]+label:after {
    width: 10px;
    height: 10px;
    top: 6px;
    right: 6px
}

.checkbox--primary input[type=checkbox]:checked+label,
.checkbox--primary input[type=radio]:checked+label {
    color: var(--color-primary)
}

.checkbox--primary input[type=checkbox]:checked+label:before,
.checkbox--primary input[type=radio]:checked+label:before {
    background-color: var(--color-primary)
}

.checkbox--primary input[type=checkbox]:checked+label:after,
.checkbox--primary input[type=radio]:checked+label:after {
    color: var(--color-text-reverse)
}

.checkbox--primary input[type=radio]:checked+label:after {
    background: var(--color-text-reverse)
}

.checkbox--white input[type=checkbox]:checked+label,
.checkbox--white input[type=radio]:checked+label {
    color: var(--color-text-reverse)
}

.checkbox--white input[type=checkbox]:checked+label:before,
.checkbox--white input[type=radio]:checked+label:before {
    background-color: #fff;
    background-color: var(--color-white)
}

.checkbox--white input[type=checkbox]:checked+label:after,
.checkbox--white input[type=radio]:checked+label:after {
    color: var(--color-text-reverse)
}

.checkbox--white input[type=radio]:checked+label:after {
    background: #fff;
    background: var(--color-white)
}

.checkbox--colors input[type=checkbox]+label,
.checkbox--colors input[type=radio]+label {
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.checkbox--colors input[type=checkbox]+label:before,
.checkbox--colors input[type=checkbox]+label:after,
.checkbox--colors input[type=radio]+label:before,
.checkbox--colors input[type=radio]+label:after {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: all .5s cubic-bezier(.2, 1, .3, 1) .5s cubic-bezier(.2, 1, .3, 1)
}

.checkbox--colors input[type=checkbox]+label:before,
.checkbox--colors input[type=radio]+label:before {
    background-color: transparent;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .3)
}

.checkbox--colors input[type=checkbox]+label:after,
.checkbox--colors input[type=radio]+label:after {
    content: "";
    font-family: sallaicons;
    font-size: var(--font-base);
    color: #bbb;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 30px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: scale(0)
}

.checkbox--colors input[type=checkbox]:checked+label:after,
.checkbox--colors input[type=radio]:checked+label:after {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

.checkbox--colors input[type=checkbox]:checked+label:before,
.checkbox--colors input[type=radio]:checked+label:before {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .6)
}

.checkbox--thumbs input[type=checkbox]+label,
.checkbox--thumbs input[type=radio]+label {
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 4px;
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: border-color .5s cubic-bezier(.2, 1, .3, 1)
}

.checkbox--thumbs input[type=checkbox]+label:before,
.checkbox--thumbs input[type=radio]+label:before {
    display: none
}

.checkbox--thumbs input[type=checkbox]+label:after,
.checkbox--thumbs input[type=radio]+label:after {
    content: "";
    font-family: sallaicons;
    line-height: 1;
    font-size: var(--font-xxsm);
    color: var(--color-text-reverse);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 1px;
    padding-right: 1px;
    transition: all .25s cubic-bezier(.46, 0, .48, 1.33);
    transform: translate(15px, -15px)
}

.checkbox--thumbs input[type=checkbox]:checked+label,
.checkbox--thumbs input[type=radio]:checked+label {
    border-color: var(--color-primary)
}

.checkbox--thumbs input[type=checkbox]:checked+label:after,
.checkbox--thumbs input[type=radio]:checked+label:after {
    opacity: 1;
    visibility: visible;
    transform: translate(35%, -35%)
}

@keyframes line-scale {
    0% {
        transform: scaley(1)
    }

    50% {
        transform: scaley(.4)
    }

    100% {
        transform: scaley(1)
    }
}

.line-scale {
    text-align: center;
    margin: 40px auto 0 0;
    text-align: center
}

.line-scale>div:nth-of-type(1) {
    animation: line-scale 1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.line-scale>div:nth-of-type(2) {
    animation: line-scale 1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.line-scale>div:nth-of-type(3) {
    animation: line-scale 1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.line-scale>div:nth-of-type(4) {
    animation: line-scale 1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.line-scale>div:nth-of-type(5) {
    animation: line-scale 1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.line-scale>div {
    background-color: var(--color-primary);
    width: 4px;
    height: 32px;
    border-radius: 2px;
    margin: 2px;
    animation-fill-mode: both;
    display: inline-block
}

.line-scale>div:nth-of-type(2) {
    animation-delay: .1s
}

.line-scale>div:nth-of-type(3) {
    animation-delay: .2s
}

.line-scale>div:nth-of-type(4) {
    animation-delay: .3s
}

.line-scale>div:nth-of-type(5) {
    animation-delay: .4s
}

.footer {
    border-top: 1px solid #f0f2f5;
    border-top: 1px solid var(--color-grey-dark)
}

.footer .footer-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    list-style: none;
    text-align: right;
    margin: 0;
    padding: 0;
    width: 100%
}

@media only screen and (min-width: 767px) {
    .footer .footer-list.store-links-items a {
        padding: 5px 0
    }
}

.footer .footer-list.more-links {
    display: none
}

.footer .footer-list.more-links a {
    color: #b9bec7;
    transition: all .2s ease;
    font-size: 110%
}

.footer .footer-list.more-links a i {
    color: var(--color-primary);
    transition: all .2s ease
}

.footer .footer-list.more-links.links-expanded i {
    transform: rotateZ(180deg) scale3d(1.5, 1.5, 1.5)
}

.footer .footer-list li {
    width: 100%
}

.footer .footer-list li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0;
    color: var(--color-text);
    transition: color .5s cubic-bezier(.2, 1, .3, 1)
}

.footer .footer-list li a i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px
}

.footer .footer-list li a img {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    max-height: 25px
}

.footer .footer-list li a:hover {
    color: var(--color-primary)
}

.footer .footer-list--row {
    flex-direction: row;
    flex-wrap: wrap
}

.footer .footer-list--row li {
    width: auto;
    margin-left: 10px
}

.footer .footer-list--row li a {
    width: auto
}

.footer .footer-list--payment-methods {
    justify-content: flex-end;
    align-items: center;
    width: auto
}

.footer .footer-list--payment-methods li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 3.25rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, .15);
    height: 32px;
    margin: .2rem
}

.footer .footer-list--payment-methods li img {
    width: auto;
    max-height: 40px;
    max-width: 45px;
    vertical-align: middle;
    display: inline-block;
    -o-object-fit: contain;
    object-fit: contain
}

.footer .footer-list--payment-methods li a {
    padding: 0
}

@media only screen and (max-width: 767px) {
    .footer .footer-list--payment-methods {
        justify-content: center
    }

    .footer .footer-list--payment-methods li img {
        max-height: 32px;
        max-width: none;
        max-width: initial
    }
}

.footer .payment-methods-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

@media only screen and (max-width: 767px) {
    .footer .payment-methods-wrap {
        justify-content: center;
        flex-direction: column
    }
}

.footer__block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%
}

.footer__block>*:first-child {
    flex: auto
}

.footer__block p,
.footer__block a {
    font-size: var(--font-sm)
}

.footer__block p {
    margin: 0
}

@media only screen and (max-width: 767px) {
    .footer__block {
        padding: 0 0 20px
    }
}

.footer__top {
    padding: 50px 0
}

@media only screen and (max-width: 767px) {
    .footer__top {
        padding: 40px 0 20px
    }
}

.footer__mid {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #f0f2f5;
    border-top: 1px solid var(--color-grey-dark)
}

.footer__bottom {
    padding: 15px 0;
    background-color: #f0f2f5;
    background-color: var(--color-grey-dark);
    font-size: var(--font-sm)
}

.footer__bottom .container {
    opacity: .8
}

.footer__bottom a {
    color: var(--color-primary)
}

.footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

@media only screen and (max-width: 767px) {
    .footer__bottom .container {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .footer__bottom .container>*:last-child {
        margin-top: 10px
    }
}

body ul.footer-list--social-links {
    margin: 10px 0 0
}

body ul.footer-list--social-links li {
    margin: 0;
    display: inline-block;
    width: auto
}

body ul.footer-list--social-links li a {
    display: flex !important;
    width: 40px !important;
    height: 40px !important
}

body ul.footer-list--social-links li a {
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: var(--color-text);
    border-radius: 50%;
    font-size: var(--font-lg);
    text-align: center;
    transition: background .5s cubic-bezier(.2, 1, .3, 1)
}

body ul.footer-list--social-links li a i {
    margin: 0 !important
}

body ul.footer-list--social-links li a i {
    vertical-align: baseline;
    display: inline-block
}

body ul.footer-list--social-links li:hover a {
    background: #f8f8f8;
    background: var(--color-grey-light);
    color: var(--color-primary)
}

.store-certificate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px
}

.store-certificate__text {
    font-size: var(--font-sm)
}

.store-certificate__text .number {
    color: #666;
    color: var(--color-text-light)
}

.store-certificate img {
    max-width: 40px;
    max-height: 20px;
    margin-left: 5px
}

@media only screen and (min-width: 767px) {
    .store-certificate {
        margin-bottom: 0;
        padding-left: 10px;
        margin-left: 10px;
        border-left: 1px solid #eee
    }
}

.swal2-container {
    z-index: 99999 !important
}

.swal2-container .swal2-popup {
    max-width: 400px;
    padding: 0;
    border-radius: 4px
}

.swal2-container .swal2-popup .swal2-header {
    margin: 0;
    padding: 20px 20px 0
}

.swal2-container .swal2-popup .swal2-header .swal2-title {
    font-family: var(--font-medium);
    font-size: var(--font-xlg);
    font-weight: 100;
    color: var(--color-title);
    margin: 0
}

.swal2-container .swal2-popup .swal2-content {
    padding: 20px
}

.swal2-container .swal2-popup .swal2-content .swal2-html-container {
    font-size: var(--font-base);
    color: var(--color-text)
}

.swal2-container .swal2-popup .swal2-actions {
    margin: 0;
    padding: 0 10px 20px
}

.swal2-container .swal2-popup .swal2-actions>* {
    flex: 1
}

.swal2-container .swal2-popup .swal2-actions button {
    font-family: var(--font-main);
    font-weight: 100;
    flex: 1;
    margin: 0 10px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.swal2-container .swal2-popup .swal2-actions button.swal2-confirm {
    background: var(--color-primary) !important;
    box-shadow: none !important
}

.swal2-container .swal2-popup .swal2-actions button.swal2-confirm {
    color: var(--color-text-reverse);
    border-radius: 4px
}

.swal2-container .swal2-popup .swal2-actions button.swal2-cancel {
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.swal2-container .swal2-popup .swal2-actions button.swal2-cancel:hover {
    background: #f0f2f5;
    background: var(--color-grey-dark)
}

.swal2-container .swal2-popup.swal2-toast {
    max-width: 300px;
    padding: 5px 10px 10px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .0705882353)
}

.swal2-container .swal2-popup.swal2-toast .swal2-icon {
    animation: none !important
}

.swal2-container .swal2-popup.swal2-toast .swal2-icon {
    transform: scale(.6);
    margin-right: -5px
}

.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    border-color: #fff;
    border-color: var(--color-white)
}

.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-tip,
.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-long {
    background: #fff
}

.swal2-container .swal2-popup.swal2-toast .swal2-title {
    font-family: var(--font-base);
    font-size: var(--font-xsm);
    text-align: right;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
    grid-row: 1/99;
    align-self: center
}

.swal2-container .swal2-popup.swal2-toast .swal2-close {
    transform: scale(.6);
    margin-left: -5px;
    flex-shrink: 0
}

.swal2-container .swal2-popup.swal2-toast .swal2-timer-progress-bar-container {
    height: 2px
}

.swal2-container .swal2-popup.swal2-toast .swal2-timer-progress-bar {
    background: #ddd
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-error {
    background: #ff443a;
    background: var(--color-danger)
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-error * {
    color: #fff
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-error {
    border-color: #fff;
    border-color: var(--color-white)
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-right,
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-left {
    background-color: #fff;
    background-color: var(--color-white)
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-success {
    background: #30d158;
    background: var(--color-success)
}

.swal2-container .swal2-popup.swal2-toast.swal2-icon-success * {
    color: #fff
}

@media only screen and (max-width: 480px) {
    .swal2-container {
        width: 100%
    }

    .swal2-container .swal2-popup {
        max-width: 100% !important
    }
}

@media only screen and (max-width: 1439px) {
    .splide--products-slider .splide__arrows {
        left: 0;
        top: -65px;
        transform: none;
        width: 82px;
        height: 36px
    }

    .splide--products-slider .splide__arrows button {
        height: 36px;
        width: 36px;
        margin: 0
    }

    .splide--products-slider .splide__arrows button:first-of-type {
        right: 0;
        left: auto
    }

    .splide--products-slider .splide__arrows button:last-of-type {
        left: 0;
        right: auto
    }

    .splide--testimonials>div.splide__arrows {
        left: 10px
    }

    .tabs-body .splide--products-slider .splide__arrows {
        top: -53px
    }
}

@media only screen and (max-width: 1350px) {
    .splide--products-slider .splide__arrows {
        left: 15px
    }

    .home-block--products-slider .row:last-child .col-sm-12 {
        padding: 0
    }
}

@media only screen and (max-width: 1199px) {
    .top-header ul li:last-of-type .dropdown-menu {
        right: 35%
    }

    .special-offer {
        order: 1;
        margin-top: 20px
    }
}

@media only screen and (max-width: 992px) {
    footer.footer {
        padding-bottom: 65px
    }

    .nav-mobile {
        display: block
    }

    header .site-header__inner {
        flex-wrap: wrap
    }

    header .site-header__inner>div:first-of-type {
        margin-bottom: 20px;
        flex: auto;
        width: 30%
    }

    header .site-header__inner>div:first-of-type h4 {
        font-size: var(--font-base)
    }

    header .site-header__inner>div:first-of-type h4 span {
        font-size: var(--font-sm)
    }

    header .site-header__inner>div:nth-of-type(2) {
        flex: auto;
        width: 70%
    }

    header .site-header__inner>div:nth-of-type(2) .form-group {
        width: 100%
    }

    header .site-header__inner>div:nth-of-type(3) {
        flex: 0 0 100%
    }

    .top-header .top-header__info {
        margin: 0 -5px
    }

    .top-header .top-header__info li {
        margin: 0 5px
    }

    .nav-desktop {
        display: none
    }
}

@media only screen and (max-width: 767px) {
    header#site-header-outer {
        box-shadow: 0 0 10px rgba(0, 0, 0, .2)
    }

    .top-header {
        padding: 1rem 0
    }

    .top-header .container {
        flex-wrap: wrap;
        row-gap: 1rem
    }

    .top-header .container .d-flex {
        flex-wrap: wrap
    }

    header .site-header {
        padding: 10px 0
    }

    header .site-header__wrapper {
        flex-wrap: wrap
    }

    header .site-header__inner>div:first-of-type {
        margin-bottom: 0
    }

    header .site-header__inner>div:last-of-type {
        display: none
    }

    header .site-header .theme-logo a {
        flex-basis: auto;
        margin-left: 15px
    }

    header .site-header .theme-logo a img {
        height: 45px
    }

    header .site-header .main-header-components {
        justify-content: flex-end;
        flex-grow: 1
    }

    .fixed-header .site-header__search {
        display: none
    }

    .hero {
        padding-top: 20px
    }

    .hero__content {
        flex-direction: column
    }

    .splide {
        overflow: visible !important
    }

    .splide--main-slider .splide__bullets {
        top: auto;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        left: 0;
        height: auto;
        bottom: -25px
    }

    .splide--main-slider .splide__bullets button.splide__bullet {
        width: 20px;
        height: 3px;
        margin: 0 10px
    }

    .splide--products-slider .splide__arrows {
        display: none
    }

    .category {
        padding-top: 20px
    }

    .category .btn-filters {
        display: block
    }

    .category .category-title {
        margin-bottom: 20px
    }

    .category .category-title a {
        display: block
    }

    .side-panel {
        transition: all .5s cubic-bezier(.2, 1, .3, 1);
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        width: 100%;
        height: 100%;
        z-index: 9999999999999
    }

    .side-panel__content {
        content: "";
        height: 100%;
        width: 80%;
        max-width: 400px;
        min-width: 280px;
        left: 0;
        top: 0;
        padding: 30px 20px 20px;
        position: absolute;
        z-index: 0;
        background: #fff;
        background: var(--color-white);
        overflow-y: auto;
        box-shadow: 0 0 3px 3px rgba(0, 0, 0, .15)
    }

    .side-panel.filters-show {
        transform: translateX(0) !important
    }

    .footer__wrapper {
        flex-wrap: wrap
    }

    .footer__wrapper div {
        flex: 0 0 50% !important
    }

    .footer__wrapper div h5 {
        margin-bottom: 15px
    }

    .footer__wrapper div:not(:last-of-type) {
        margin-bottom: 30px
    }
}

@media only screen and (max-width: 576px) {
    .home-block--testimonials .row:last-child .col-sm-12 {
        padding: 0
    }

    .splide--testimonial__container {
        padding-right: 0
    }

    .splide--testimonial div.splide__arrows {
        left: 0
    }

    .testimonial .title {
        padding-right: 15px
    }

    .feature {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px
    }

    .feature h6 {
        margin-top: 10px
    }
}

@media only screen and (max-width: 480px) {
    .tabs .tabs-nav {
        flex-wrap: wrap
    }

    .tabs .tabs-nav li {
        margin-bottom: 10px
    }

    .tabs--slider .tabs-nav {
        margin-bottom: 20px
    }

    .tabs--slider .tabs-nav li a {
        font-size: var(--font-xsm);
        padding: 8px 15px
    }

    .order-details__header ul li h6 {
        flex: 0 0 40%
    }

    .view-comment__comment--has-replays .replay-wrapper .comment-wrapper--replay p {
        width: 100%
    }

    .theme-logo a .text-nowrap {
        display: none !important
    }
}

@media only screen and (max-width: 375px) {
    .splide--main-slider .splide__track ul li {
        padding-right: 0
    }

    .splide--main-slider .splide__track ul li div {
        margin: 0 auto
    }

    .splide--main-slider .splide__track ul li div h4 {
        font-size: var(--font-xxlg)
    }

    .splide--main-slider .splide__track ul li div img {
        width: 80%
    }

    .special-offer .timer ul li {
        width: 55px;
        height: 55px
    }

    .tabs .tabs-nav li:not(:last-of-type) {
        padding-left: 5px
    }

    .tabs .tabs-nav-text li:not(:last-of-type) {
        padding-left: 20px
    }

    .footer__wrapper div {
        flex: 0 0 100% !important
    }

    .footer__wrapper div {
        max-width: 100%
    }

    .add-comment div textarea {
        width: 100%
    }

    .product-details__product-images .images-thumbs a {
        width: 70px;
        height: 70px
    }

    .product-details__product-images .images-slider {
        height: auto
    }

    .product-details__product-images .images-slider img {
        width: 180px;
        height: 300px
    }

    .product-details__product-options .product-selection li span {
        font-size: var(--font-sm);
        flex: 0 0 19%
    }

    .product-details__product-options .product-selection li div a {
        padding: 6px 10px !important
    }

    .product-details__product-options .product-selection li div a {
        font-size: var(--font-sm);
        text-align: center
    }
}

.home-block {
    position: relative;
    padding: 40px 0
}

@media only screen and (max-width: 767px) {
    .home-block--main-slider {
        padding: 0 0 20px !important
    }

    .home-block--main-slider .container {
        padding: 0;
        overflow: hidden
    }
}

.home-block--square-images {
    padding-bottom: 20px
}

@media only screen and (max-width: 767px) {
    .home-block--square-images {
        margin: 0
    }
}

.home-block--bg {
    background: #f5f7f9;
    background: var(--color-grey)
}

@media only screen and (max-width: 767px) {
    .home-block--bg {
        padding: 40px 0
    }
}

.home-block--parallax {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 450px;
    background: var(--color-primary)
}

.home-block--parallax .container {
    z-index: 2
}

.home-block--parallax .bg-holder {
    opacity: .4 !important
}

.home-block--parallax .bg-holder {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: 50% 50%/cover;
    background-attachment: fixed;
    z-index: 0
}

@media only screen and (max-width: 767px) {
    .home-block--parallax .bg-holder {
        background-attachment: scroll
    }
}

.home-block--parallax.clear .bg-holder {
    opacity: 1 !important
}

@media only screen and (max-width: 767px) {
    .home-block--parallax {
        height: 200px
    }
}

.home-block--testimonial-alert {
    padding-bottom: 0
}

@media only screen and (max-width: 767px) {
    .home-block--testimonial-alert {
        padding: 20px 0 !important
    }
}

.home-block--fixed-products.show-all .title.title--x-large,
.home-block--slide-products.show-all .title.title--x-large {
    padding-left: 100px
}

.home-block--fixed-products.show-all .title.title--x-large .btn,
.home-block--fixed-products.show-all .title.title--x-large .shipping-tracker>a,
.home-block--slide-products.show-all .title.title--x-large .btn,
.home-block--slide-products.show-all .title.title--x-large .shipping-tracker>a {
    height: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    line-height: 1.7
}

.home-block--slide-products .title.title--x-large {
    padding-left: 100px
}

.home-block--slide-products.show-all .title.title--x-large {
    padding-left: 200px
}

@media only screen and (max-width: 1439px) {
    .home-block--slide-products.show-all .splide--products-slider .splide__arrows {
        left: 100px
    }
}

@media only screen and (max-width: 1350px) {
    .home-block--slide-products.show-all .splide--products-slider .splide__arrows {
        left: 110px
    }
}

@media only screen and (max-width: 767px) {
    .home-block--slide-products.show-all .title.title--x-large {
        padding-left: 100px
    }
}

@media only screen and (max-width: 767px) {
    .home-block:not(.home-block--bg):not(.home-block--main-slider) {
        padding: 30px 0
    }

    .home-block.home-block--parallax {
        padding: 0
    }
}

.page-wrapper {
    position: relative;
    min-height: 50vh;
    padding: 50px 0
}

.page-wrapper--product-details {
    padding: 80px 0
}

@media only screen and (max-width: 1023px) {
    .page-wrapper {
        padding: 30px 0
    }
}

.page-wrapper .curved-bg {
    height: 375px;
    background-size: cover;
    background-position: 50%;
    position: relative;
    margin-bottom: -200px;
    z-index: 0
}

@media only screen and (max-width: 767px) {
    .page-wrapper .curved-bg {
        height: 300px
    }
}

.page-wrapper .curved-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .6)
}

.page-wrapper .curved-bg svg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    fill: #fcfcfc;
    fill: var(--color-grey-lighter);
    transform: scaleY(-1)
}

.grid-block {
    display: grid;
    grid-gap: 10px
}

.grid-block--col-1 {
    grid-template-columns: repeat(1, 1fr)
}

@media only screen and (max-width: 767px) {
    .grid-block--col-1 {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 1199px) {
    .grid-block--xl {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 992px) {
    .grid-block--lg {
        grid-template-columns: repeat(1, 1fr)
    }
}

.grid-block--col-2 {
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 767px) {
    .grid-block--col-2 {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 1199px) {
    .grid-block--xl {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 992px) {
    .grid-block--lg {
        grid-template-columns: repeat(1, 1fr)
    }
}

.grid-block--col-3 {
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 1023px) {
    .grid-block--col-3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .grid-block--col-3 {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 1199px) {
    .grid-block--xl {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 992px) {
    .grid-block--lg {
        grid-template-columns: repeat(1, 1fr)
    }
}

.grid-block--col-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media only screen and (max-width: 767px) {
    .grid-block--col-4 {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 1199px) {
    .grid-block--xl {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 992px) {
    .grid-block--lg {
        grid-template-columns: repeat(1, 1fr)
    }
}

.grid-block--col-5 {
    grid-template-columns: repeat(5, 1fr)
}

@media only screen and (max-width: 767px) {
    .grid-block--col-5 {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 1199px) {
    .grid-block--xl {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media only screen and (max-width: 992px) {
    .grid-block--lg {
        grid-template-columns: repeat(1, 1fr)
    }
}

.grid-block--gap-10 {
    grid-gap: 10px
}

@media only screen and (max-width: 1439px) {
    .grid-block--gap-10 {
        grid-gap: 5px
    }
}

.grid-block--gap-20 {
    grid-gap: 20px
}

@media only screen and (max-width: 1439px) {
    .grid-block--gap-20 {
        grid-gap: 10px
    }
}

.grid-block--gap-30 {
    grid-gap: 30px
}

@media only screen and (max-width: 1439px) {
    .grid-block--gap-30 {
        grid-gap: 15px
    }
}

.grid-block--auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)) !important
}

.products-list-container,
.s-products-list-vertical-cards {
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(220px, 4fr));
    grid-gap: 20px
}

.products-list-container--center,
.s-products-list-vertical-cards--center {
    justify-content: center
}

@media only screen and (max-width: 992px) {

    .products-list-container,
    .s-products-list-vertical-cards {
        grid-gap: 15px
    }
}

@media only screen and (max-width: 480px) {

    .products-list-container,
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important
    }
}

.products-list-container.centered,
.s-products-list-vertical-cards.centered {
    justify-content: center
}

.products-list-container--auto-fit-4-col,
.s-products-list-vertical-cards--auto-fit-4-col {
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 20px), 4fr))
}

.products-list-container--auto-fit-3-col,
.s-products-list-vertical-cards--auto-fit-3-col {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 20px), 3fr))
}

.horizontal-products {
    height: 100%;
    grid-template-columns: 50%;
    grid-auto-flow: column;
    grid-gap: 30px
}

@media only screen and (max-width: 1023px) {
    .horizontal-products {
        grid-template-columns: 100%;
        grid-auto-flow: row;
        grid-gap: 30px
    }
}

.horizontal-products.singleton {
    grid-template-columns: 100%
}

.avatar-wrapper {
    display: block;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 80px
}

.avatar-wrapper i {
    display: inline-block;
    vertical-align: middle;
    font-size: var(--font-xxlg)
}

.avatar-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.avatar-wrapper--circular {
    border-radius: 50%;
    overflow: hidden
}

.avatar-wrapper--rounded {
    border-radius: 4px;
    overflow: hidden
}

.avatar-wrapper--bordered {
    border: 2px solid #f5f7f9;
    border: 2px solid var(--color-grey)
}

.avatar-wrapper--primary {
    background: var(--color-primary)
}

.avatar-wrapper--primary * {
    color: var(--color-text-reverse)
}

.avatar-wrapper--tiny {
    width: 30px;
    height: 30px
}

.avatar-wrapper--small {
    width: 50px;
    height: 50px
}

.avatar-wrapper--medium {
    width: 100px;
    height: 100px;
    line-height: 100px
}

.avatar-wrapper--medium i {
    font-size: var(--font-xxlg)
}

@media only screen and (max-width: 767px) {
    .avatar-wrapper--medium {
        width: 80px;
        height: 80px;
        line-height: 80px
    }
}

.avatar-wrapper--large {
    width: 120px;
    height: 120px;
    line-height: 120px
}

.avatar-wrapper--large i {
    font-size: var(--font-xxxlg)
}

@media only screen and (max-width: 767px) {
    .avatar-wrapper--large {
        width: 100px;
        height: 100px;
        line-height: 100px
    }
}

.avatar-wrapper.placeholder {
    background: #f5f7f9;
    background: var(--color-grey)
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.videoWrapper>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-width: initial
}

.parallax-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2
}

.parallax-wrapper .title {
    font-family: var(--font-main);
    text-align: center;
    margin-bottom: 30px
}

.placeholder-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    text-align: center
}

.placeholder-block i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: var(--font-xxxlg);
    color: #999;
    color: var(--color-text-lighter);
    background: #f5f7f9;
    background: var(--color-grey);
    margin: 0 0 20px
}

.placeholder-block p {
    font-size: var(--font-lg);
    color: #666;
    color: var(--color-text-light);
    margin: 0
}

.placeholder-block p span {
    display: block;
    margin: 0 0 5px;
    font-size: var(--font-base);
    color: #bbb;
    color: var(--color-text-muted)
}

.placeholder-block p span.search-results-title * {
    font-size: var(--font-lg);
    color: #666;
    color: var(--color-text-light)
}

.placeholder-block.white i {
    background: #fff;
    background: var(--color-white)
}

.article {
    display: block;
    width: 100%;
    position: relative;
    color: var(--color-text)
}

.article p {
    margin-top: 0
}

.article>* {
    margin-bottom: 15px
}

.article h1 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article h2 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article h3 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article h4 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article h5 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article h6 {
    font-family: var(--font-medium);
    color: var(--color-title)
}

.article a {
    color: var(--color-text)
}

.article ul,
.article ol {
    padding-right: 20px;
    list-style-type: revert
}

.article ul li,
.article ol li {
    padding-right: 10px;
    margin-bottom: 5px
}

.article ul li ul,
.article ul li ol,
.article ol li ul,
.article ol li ol {
    margin-top: 10px;
    margin-right: 5px
}

.article iframe {
    display: block;
    width: 100%
}

.article img {
    display: block;
    width: auto;
    max-width: 100%
}

.article .ql-video {
    height: 30vw
}

@media only screen and (max-width: 480px) {
    .article .ql-video {
        height: 50vw
    }
}

.article--center-content {
    text-align: center
}

.article--center-content * {
    text-align: center
}

.article--small {
    font-size: var(--font-sm)
}

.article--product-details {
    overflow: hidden
}

.article--product-details.pd-exp {
    margin-bottom: 0 !important
}

.article--product-details.pd-exp {
    position: relative
}

.article--product-details.pd-exp:after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: #fff;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    pointer-events: none
}

.article--product-details.pd-exp.expanded:after {
    opacity: 0
}

.popup-trigger {
    display: inline-block
}

.popup-modal-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 300ms ease-in-out
}

.popup-modal-wrap .popup-modal {
    width: 96%;
    max-width: 500px;
    max-height: 98vh;
    overflow: auto;
    transition: all .5s cubic-bezier(.55, 0, .1, 1);
    transform: translateY(-30px);
    border-radius: 8px;
    background-color: #fff
}

.popup-modal-wrap .popup-modal::-webkit-scrollbar {
    width: 2px
}

.popup-modal-wrap .popup-modal::-webkit-scrollbar-track {
    background: rgba(#F8F8F8, 0.8);
    background: rgba(var(--color-grey-light), 0.8);
    border-radius: 0
}

.popup-modal-wrap .popup-modal::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-primary)
}

.popup-modal-wrap .popup-modal::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(var(--color-primary), 0.5)
}

.popup-modal-wrap .popup-modal__header {
    padding: 30px 20px 0
}

.popup-modal-wrap .popup-modal__header .avatar-wrapper {
    margin: 0 auto 15px
}

.popup-modal-wrap .popup-modal__header.bordered {
    padding: 20px 20px 15px;
    border: none;
    border-bottom: 1px solid #f0f2f5;
    border-bottom: 1px solid var(--color-grey-dark)
}

@media only screen and (max-width: 767px) {
    .popup-modal-wrap .popup-modal__header {
        padding: 20px 20px 0
    }
}

.popup-modal-wrap .popup-modal__header--has-icon .icon {
    margin-left: 20px
}

.popup-modal-wrap .popup-modal__header--has-icon h2 {
    font-size: var(--font-xxlg)
}

.popup-modal-wrap .popup-modal__header--has-icon p {
    line-height: 1.4;
    font-size: var(--font-sm);
    max-width: 90%;
    color: #666;
    color: var(--color-text-light)
}

@media only screen and (max-width: 767px) {
    .popup-modal-wrap .popup-modal__header--has-icon {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px
    }

    .popup-modal-wrap .popup-modal__header--has-icon .icon {
        margin: 0 0 15px
    }

    .popup-modal-wrap .popup-modal__header--has-icon p {
        max-width: 100%
    }
}

.popup-modal-wrap .popup-modal__body {
    padding: 20px
}

.popup-modal-wrap .popup-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 0 20px 20px
}

.popup-modal-wrap .popup-modal__footer>* {
    flex: 1;
    padding: 0 10px
}

.popup-modal-wrap .popup-modal__footer>*:first-child {
    padding-right: 0
}

.popup-modal-wrap .popup-modal__footer>*:last-child {
    padding-left: 0
}

@media only screen and (max-width: 767px) {
    .popup-modal-wrap .popup-modal__footer {
        padding: 0 15px 15px
    }
}

.popup-modal-wrap .popup-modal__close {
    position: absolute;
    font-size: var(--fonx-lg);
    left: 10px;
    top: 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #99a4ae;
    border-radius: 50%;
    transition: color .3s
}

.popup-modal-wrap .popup-modal__close:hover {
    color: var(--color-primary)
}

.popup-modal-wrap .popup-modal__back {
    top: 10px;
    right: 10px;
    background-color: #f5f7f9
}

.popup-modal-wrap .popup-modal:not(.is-animated-complete) .anime-item {
    opacity: 0
}

.popup-modal-wrap .popup-modal.offers-modal .popup-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.popup-modal-wrap .popup-modal.offers-modal .popup-modal__header .offer__title {
    padding-left: 20px
}

.popup-modal-wrap .popup-modal.offers-modal .popup-modal__header .offer__title span {
    display: inline-block;
    margin: 0 2px;
    color: var(--color-primary)
}

.popup-modal-wrap .popup-modal.offers-modal .popup-modal__body .offer-categories li {
    margin: 0 0 10px 10px
}

.popup-modal-wrap .popup-modal.offers-modal .popup-modal__body .offer-categories li a i {
    margin-left: 5px
}

.popup-modal-wrap .popup-modal.loyalty-modal .tabs-body .splide--products-slider .splide__arrows {
    width: 98% !important;
    left: 1% !important
}

.popup-modal-wrap .popup-modal.loyalty-modal .tabs-body .splide--products-slider .splide__arrows {
    top: 50%
}

.popup-modal-wrap .popup-modal.loyalty-modal label {
    transition: .3s;
    cursor: pointer
}

.popup-modal-wrap .popup-modal.loyalty-modal input:checked+label {
    border-color: var(--color-primary);
    transform: translateY(-3px)
}

.popup-modal-wrap .popup-modal.loyalty-modal input:checked+label .product-block__points {
    margin: auto 0 1px;
    width: calc(100% - 2px)
}

.popup-modal-wrap .popup-modal.loyalty-modal .popup-modal__body {
    padding: 30px
}

@media(max-width: 1024px) {
    .popup-modal-wrap .popup-modal.loyalty-modal .tab-body {
        margin: 0 -30px
    }
}

.popup-modal-wrap .popup-modal.loyalty-confirm-modal {
    overflow: hidden
}

.popup-modal-wrap .popup-modal.loyalty-confirm-modal #loyalty-confirm-btn:before {
    margin-left: 5px
}

.popup-modal-wrap.is--visible {
    opacity: 1;
    visibility: visible
}

.popup-modal-wrap.is--visible .popup-modal {
    transform: translateY(0);
    pointer-events: auto
}

.popup-modal-wrap--small .popup-modal {
    max-width: 400px
}

.popup-modal-wrap--large .popup-modal {
    max-width: 768px
}

.popup-modal-wrap--xlarge .popup-modal {
    max-width: 1000px
}

.popup-modal-wrap--scroll .popup-modal__body {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 20px 0
}

.popup-modal-wrap--scroll .popup-modal__body::-webkit-scrollbar {
    width: 2px
}

.popup-modal-wrap--scroll .popup-modal__body::-webkit-scrollbar-track {
    background: rgba(#F8F8F8, 0.8);
    background: rgba(var(--color-grey-light), 0.8);
    border-radius: 0
}

.popup-modal-wrap--scroll .popup-modal__body::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-primary)
}

.popup-modal-wrap--scroll .popup-modal__body::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(var(--color-primary), 0.5)
}

#login-methods a h6 {
    font-weight: 100
}

.pie-wrapper {
    display: block;
    height: 72px;
    width: 72px;
    border-radius: 100%;
    position: relative
}

.pie-wrapper .pie-svg circle {
    transition: stroke-dashoffset 1s linear;
    stroke: #e8edf2;
    stroke-width: 2px;
    stroke-linecap: round;
    fill: none
}

.pie-wrapper .pie-svg .circle_base {
    transition: stroke-dashoffset 1s linear;
    stroke: #e8edf2;
    stroke-width: 3px
}

.pie-wrapper .pie-svg .circle_bar {
    stroke: #99a4ae;
    stroke-linecap: round;
    stroke: var(--color-primary);
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    position: relative
}

.list>* {
    width: 100%;
    position: relative
}

.list--auto-width>* {
    width: auto !important
}

.list--horizontal {
    flex-direction: row
}

.list--vertical {
    flex-direction: column
}

.list--s-between {
    justify-content: space-between
}

.list--end {
    justify-content: flex-end
}

.list--bordered li {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.list--bordered li:last-child {
    border: none !important;
    margin-bottom: 0 !important
}

.list--bordered.short li {
    margin: 0 0 10px;
    padding: 0 0 10px
}

.list--table {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column
}

.list--table__head {
    background: transparent none repeat 0 0/auto auto padding-box border-box scroll !important;
    background: initial !important;
    border-bottom-width: 2px !important
}

.list--table__head>* {
    display: flex !important;
    text-align: right !important;
    padding: 0 !important
}

.list--table__head>* {
    align-items: center;
    justify-content: space-between;
    flex: 1
}

.list--table__head>*>* {
    flex: 1;
    padding: 15px
}

.list--table__head>*>*:last-child {
    text-align: left
}

.list--table__head>*>*:first-child {
    text-align: right
}

.list--table li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    position: relative;
    padding: 0 -15px;
    transition: background .5s cubic-bezier(.2, 1, .3, 1)
}

.list--table li:not(:last-of-type) {
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.list--table li>span,
.list--table li>a {
    display: block;
    color: var(--color-text);
    padding: 15px;
    flex: 1
}

.list--table li>spana:hover {
    color: var(--color-primary)
}

.list--table li>aa:hover {
    color: var(--color-primary)
}

.list--table li>spanspan:last-child {
    text-align: left
}

.list--table li>aspan:last-child {
    text-align: left
}

.list--table li .summary {
    padding-left: 15px
}

.list--table li .summary>* {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row
}

.list--table li .summary>*:not(:last-child) {
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.list--table li .summary>*>* {
    padding: 10px 0;
    flex: 1
}

.list--table li .summary>*>*:last-child {
    font-family: var(--font-bold);
    text-align: left
}

.list--table li *[data-title]:before {
    content: attr(data-title);
    display: none;
    width: auto;
    height: auto;
    font-family: var(--font-regular);
    font-size: var(--font-sm);
    color: #999;
    color: var(--color-text-lighter)
}

.list--table li:hover {
    background: #fcfcfc;
    background: var(--color-grey-lighter)
}

@media only screen and (max-width: 767px) {
    .list--table li {
        flex-direction: column;
        align-items: flex-start
    }

    .list--table li *a {
        padding: 10px
    }

    .list--table li *span {
        padding: 10px
    }

    .list--table li *[data-title] {
        display: flex !important
    }

    .list--table li *[data-title] {
        width: 100%;
        text-align: left
    }

    .list--table li *[data-title]:before {
        display: inline-block;
        margin-left: auto
    }
}

.list--table li.cart-product-entry {
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid #f5f7f9;
    border-top: 1px solid var(--color-grey)
}

.list--table li.cart-product-entry .product-block--inline {
    align-items: center
}

@media only screen and (max-width: 767px) {
    .list--table li.cart-product-entry .product-block--inline .product-block__info {
        flex-direction: column
    }

    .list--table li.cart-product-entry .product-block--inline .product-block__info *[data-title] {
        flex-direction: row
    }

    .list--table li.cart-product-entry .product-block--inline .product-block__info *[data-title]:before {
        display: inline-block
    }
}

.list--table li.cart-product-entry .cart-product-entry__options {
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f5f7f9;
    border-top: 1px solid var(--color-grey)
}

.list--table li.cart-product-entry .cart-product-entry__options .product-section {
    padding: 0 15px
}

@media only screen and (min-width: 767px) {
    .list--table li.cart-product-entry .cart-product-entry__options .product-section--has-label>* {
        width: 50%;
        flex: 0 0 50%
    }
}

.list--table li.cart-product-entry .cart-product-entry__options .product-section--has-label button.title i {
    font-size: 12px;
    margin-left: 5px
}

.list--table li.cart-product-entry .cart-product-entry__options .product-section:last-child {
    margin-bottom: 0
}

@media only screen and (max-width: 767px) {
    .list--table li.cart-product-entry.padded-10 {
        padding: 0 0 10px !important
    }
}

.list--table li.cart-product-entry .offer-name {
    display: inline-block;
    margin-right: 10px
}

.list--table li.cart-product-entry .offer-name:before {
    content: "";
    font-family: sallaicons, serif;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px
}

.list--table.link li {
    background: transparent !important
}

.list--table.link li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    color: var(--color-text);
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    padding: 0
}

.list--table.link li>a>span {
    display: block;
    padding: 15px;
    flex: 1
}

.list--table.link li>a>span:last-child {
    text-align: left
}

.list--table.link li>a:hover {
    color: var(--color-text);
    background: #f5f7f9;
    background: var(--color-grey)
}

.list--table.link li>a:hover>span:first-child {
    color: var(--color-primary)
}

@media only screen and (max-width: 767px) {
    .list--table.link li {
        border: none
    }

    .list--table.link li>a {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, .05);
        padding: 10px
    }

    .list--table.link li>a>span {
        padding: 0 0 10px
    }

    .list--table.link li>a>span:last-child {
        padding: 0
    }

    .list--table.link li>a:hover {
        background: transparent
    }

    .list--table.link li:not(:last-child) {
        margin-bottom: 20px
    }
}

.list--table.order-details li {
    background: transparent !important
}

.list--table.order-details li {
    align-items: flex-start
}

.list--table.order-details li>* {
    flex: 1
}

.list--table.order-details li.total .total span {
    padding: 0 10px
}

@media only screen and (max-width: 767px) {
    .list--table.order-details *[data-title] {
        display: block !important
    }

    .list--table.order-details *[data-title] {
        width: 100%;
        text-align: inherit
    }

    .list--table.order-details *[data-title]:before {
        display: block;
        margin-left: 0;
        margin-left: initial
    }
}

.list--table.notifications li a>span p {
    display: inline-block;
    margin: 0 0 3px
}

.list--table.notifications li a>span:first-child:before {
    content: "";
    display: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff443a;
    background: var(--color-danger);
    margin-left: 5px;
    transform: translate(-1px)
}

.list--table.notifications li a>span:last-child {
    font-size: var(--font-xsm);
    color: #666;
    color: var(--color-text-light)
}

.list--table.notifications li.unread a>span:first-child:before {
    display: inline-block
}

@media only screen and (max-width: 767px) {
    .list--table__head {
        display: none !important
    }

    .list--table .summary {
        padding: 0 !important
    }

    .list--table .summary {
        width: 100%
    }

    .list--table .summary .sub-total {
        margin-top: 0 !important;
        border-radius: 0 !important
    }

    .list--table .summary .total {
        margin: 0 !important;
        border-radius: 0 0 8px 8px !important
    }
}

.list--table.borderless li {
    border: none
}

.list--tags li {
    width: auto;
    margin: 0 0 10px 10px
}

.list--tags li:last-child {
    margin-left: 0
}

.list--categories li a:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    font-family: sallaicons;
    font-size: var(--font-sm);
    color: #dde4ec;
    color: var(--color-grey-darkest);
    margin-left: 10px
}

.list--categories li.active a {
    color: var(--color-primary) !important
}

.list--spaced>*:not(:last-child) {
    margin-left: 20px
}

@media only screen and (max-width: 767px) {
    .list--spaced>*:not(:last-child) {
        margin-left: 15px
    }
}

.list--numeric {
    counter-reset: numeric-counter
}

.list--numeric li {
    counter-increment: numeric-counter
}

.list--numeric li:before {
    content: counter(numeric-counter);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #f5f7f9;
    background: var(--color-grey);
    border: 1px solid #ecf0f5;
    border: 1px solid var(--color-grey-darker);
    border-radius: 50%;
    text-align: center;
    font-size: var(--font-sm);
    margin-left: 10px
}

.list--download-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.list--download-items li>span {
    font-size: var(--font-xsm)
}

.list--download-items li>span small {
    display: inline-block;
    font-size: var(--font-sm);
    color: #bbb;
    color: var(--color-text-muted);
    margin: 0 0 0 5px
}

.list--download-items li>span .btn,
.list--download-items li>span .shipping-tracker>a {
    font-size: var(--font-xsm)
}

.list--download-items li>span .btn.less,
.list--download-items li>span .shipping-tracker>a {
    padding: 5px 10px
}

.list--download-items li>span:first-child {
    flex: 1 0 50%;
    padding-left: 30px
}

@media only screen and (max-width: 374px) {
    .list--download-items li {
        flex-direction: column;
        align-items: flex-start
    }

    .list--download-items li span:first-child {
        margin: 0 0 10px;
        padding: 0
    }
}

.list--download-items.grid li {
    padding: 15px 0;
    margin: 0
}

.list--download-items.grid li>* {
    flex: 0 0 50%
}

.list--download-items.grid li>span {
    margin: 0
}

.list--download-items.grid li>span:last-child {
    text-align: left
}

.list--download-items.grid li:first-child {
    padding-top: 0
}

.list--download-items.grid li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

@media only screen and (max-width: 480px) {
    .list--download-items.grid li {
        flex-direction: column;
        align-items: flex-start
    }

    .list--download-items.grid li>span:first-child {
        padding-left: 0;
        margin-bottom: 10px
    }

    .list--download-items.grid li>span:last-child {
        cursor: pointer;
        position: relative
    }

    .list--download-items.grid li>span:last-child>button {
        position: static;
        position: initial
    }

    .list--download-items.grid li>span:last-child>button span {
        top: -4px
    }

    .list--download-items.grid li>span:last-child:hover>button {
        opacity: 1
    }

    .list--download-items.grid li>span:last-child:hover>button span {
        opacity: 1 !important;
        visibility: visible !important
    }
}

.list--table-view__row {
    margin: 0 !important
}

.list--table-view__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 40px
}

.list--table-view__row:not(:last-of-type) {
    border-bottom: 1px solid #eee
}

.list--table-view__cell {
    flex: 1 0 auto;
    padding: 4px 10px;
    word-break: normal
}

.list--table-view__cell i {
    display: inline-block;
    vertical-align: middle
}

.list--table-view__cell.key {
    flex: 0 0 30%
}

@media only screen and (max-width: 767px) {
    .list--table-view__cell.key {
        flex: 0 0 50%
    }
}

.list--table-view__cell.value {
    flex: auto
}

.list.product-options li {
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 15px
}

.list.product-options li span {
    flex: initial;
    padding: 0;
    font-size: var(--font-xsm);
    color: #666;
    color: var(--color-text-light)
}

.list.product-options li span a {
    padding: 0;
    text-decoration: underline;
    color: #666;
    color: var(--color-text-light)
}

.list.product-options li span a:hover {
    color: var(--color-text)
}

.list.product-options li span:first-child {
    padding-left: 20px;
    font-family: var(--font-medium);
    text-align: right
}

.list.product-options li:last-child {
    margin: 0
}

@media only screen and (max-width: 767px) {
    .list.rating-list li a {
        flex-direction: row;
        padding: 15px 10px
    }

    .list.rating-list li a span {
        padding: 0
    }
}

.list.wrap {
    flex-wrap: wrap
}

.list.app-links li a {
    display: block
}

.list.app-links li a img {
    display: block;
    max-width: 115px;
    height: auto
}

.list.app-links li:not(:last-child) {
    margin-left: 10px
}

@media only screen and (max-width: 767px) {
    .list.app-links {
        justify-content: center;
        margin-bottom: 20px
    }
}

.list--vertical span.s-button-text {
    top: -5px;
    position: relative
}

.purchase-hot {
    display: block;
    position: relative;
    margin: 0
}

.purchase-hot i,
.purchase-hot span {
    display: inline-block;
    vertical-align: baseline;
    color: #ff443a;
    color: var(--color-danger)
}

.purchase-hot i {
    margin-left: 5px
}

.purchase-hot span {
    margin-right: 5px
}

.share-wrapper {
    position: relative;
    z-index: 1
}

.share-wrapper button.btn {
    z-index: 9
}

.share-btns-list {
    position: absolute;
    left: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    background-color: var(--color-white);
    box-shadow: 0 0 10px 0 rgba(51, 51, 51, .1);
    border-radius: 999px;
    top: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    z-index: 8;
    height: 0;
    opacity: 0;
    overflow: hidden
}

.share-btns-list li {
    opacity: 0
}

.share-btns-list li a {
    display: block;
    padding: 8px 11px;
    color: #666;
    color: var(--color-text-light)
}

.share-btns-list li a i {
    position: static;
    position: initial;
    font-size: var(--font-lg);
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.share-btns-list li a:hover {
    color: var(--color-primary)
}

.share-btns-list.visible {
    opacity: 1;
    height: auto
}

.quick-buy {
    padding: 25px;
    min-height: 100px;
    border-radius: 8px
}

.quick-buy__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.quick-buy__body {
    max-height: 0;
    transition: .5s cubic-bezier(.55, 0, .1, 1) 0s
}

.quick-buy__body .quick-buy-wrapper {
    padding-top: 20px
}

.quick-buy__body:not(.is-active) {
    overflow: hidden
}

.quick-buy__body.is-active {
    max-height: 800px
}

.quick-buy__toggle.btn,
.shipping-tracker>a.quick-buy__toggle {
    flex-shrink: 0;
    position: relative;
    width: 130px;
    max-width: 50%;
    padding: 0 20px;
    font-size: var(--font-base);
    transition: .4s cubic-bezier(.55, 0, .1, 1) 0s;
    line-height: 1;
    overflow: hidden
}

.quick-buy__toggle.btn .text,
.shipping-tracker>a.quick-buy__toggle .text {
    display: inline-block;
    transition: .3s cubic-bezier(.55, 0, .1, 1) 0s;
    white-space: nowrap
}

.quick-buy__toggle.btn .icon,
.shipping-tracker>a.quick-buy__toggle .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: var(--font-xlg);
    opacity: 0;
    visibility: hidden;
    transition: .5s
}

.quick-buy__toggle.btn.is-active,
.shipping-tracker>a.quick-buy__toggle.is-active {
    width: 45px;
    overflow: hidden
}

.quick-buy__toggle.btn.is-active .text,
.shipping-tracker>a.quick-buy__toggle.is-active .text {
    transform: translateY(-2px) translateX(100%);
    opacity: 0
}

.quick-buy__toggle.btn.is-active .icon,
.shipping-tracker>a.quick-buy__toggle.is-active .icon {
    opacity: 1;
    visibility: visible;
    left: 12px
}

.quick-buy:not(.is-animated-complete) .form-group {
    opacity: 0
}

.quick-buy--main {
    background-color: var(--color-primary)
}

.quick-buy--main .quick-buy__header * {
    color: var(--color-text-reverse)
}

.quick-buy--main .quick-buy__body label,
.quick-buy--main .quick-buy__body .color-primary {
    color: var(--color-text-reverse) !important
}

.quick-buy--main .quick-buy__toggle.btn,
.quick-buy--main .shipping-tracker>a.quick-buy__toggle {
    color: var(--color-primary);
    background-color: var(--color-text-reverse)
}

.quick-buy--main .quick-buy__toggle.btn .text,
.quick-buy--main .shipping-tracker>a.quick-buy__toggle .text {
    color: var(--color-primary)
}

.quick-buy--main .quick-buy__toggle.btn.is-active .icon,
.quick-buy--main .shipping-tracker>a.quick-buy__toggle.is-active .icon {
    color: var(--color-primary)
}

.quick-buy--light {
    background-color: #fff;
    background-color: var(--color-white);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.quick-buy--light .quick-buy__header * {
    color: var(--color-text)
}

.quick-buy--light .quick-buy__body label {
    color: var(--color-text)
}

.quick-buy--light .quick-buy__body .checkbox input[type=checkbox]+label {
    color: var(--color-text) !important
}

.quick-buy--light .quick-buy__body .checkbox input[type=checkbox]+label:before {
    background: #f0f2f5 !important;
    background: var(--color-grey-dark) !important;
    border: 1px solid #f0f2f5 !important;
    border: 1px solid var(--color-grey-dark) !important
}

.quick-buy--light .quick-buy__body .checkbox input[type=checkbox]+label:after {
    color: var(--color-text) !important
}

.quick-buy--light .quick-buy__toggle.btn,
.quick-buy--light .shipping-tracker>a.quick-buy__toggle {
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.quick-buy--light .quick-buy__toggle.btn .text,
.quick-buy--light .shipping-tracker>a.quick-buy__toggle .text {
    color: var(--color-text)
}

.quick-buy--light .quick-buy__toggle.btn.is-active .icon,
.quick-buy--light .shipping-tracker>a.quick-buy__toggle.is-active .icon {
    color: var(--color-text)
}

.quick-buy--light .qo-submit {
    color: var(--color-text);
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.quick-buy--grey {
    background-color: #f5f7f9;
    background-color: var(--color-grey);
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.quick-buy--grey .quick-buy__header *,
.quick-buy--grey .quick-buy__body label {
    color: var(--color-text)
}

.quick-buy--grey .quick-buy__body .form-group .form-control,
.quick-buy--grey .quick-buy__body .form-group .form-control:focus,
.quick-buy--grey .quick-buy__body .form-group .form-control:hover {
    background: #fff
}

.quick-buy--grey .quick-buy__body .checkbox input[type=checkbox]+label {
    color: var(--color-text) !important
}

.quick-buy--grey .quick-buy__body .checkbox input[type=checkbox]+label:before {
    background: #fff !important;
    border: 1px solid #f0f2f5 !important;
    border: 1px solid var(--color-grey-dark) !important
}

.quick-buy--grey .quick-buy__body .checkbox input[type=checkbox]+label:after {
    color: var(--color-text) !important
}

.quick-buy--grey .quick-buy__toggle.btn,
.quick-buy--grey .shipping-tracker>a.quick-buy__toggle {
    color: var(--color-text);
    background-color: #dde4ec;
    background-color: var(--color-grey-darkest);
    border: 1px solid #dde4ec;
    border: 1px solid var(--color-grey-darkest)
}

.quick-buy--grey .quick-buy__toggle.btn .text,
.quick-buy--grey .shipping-tracker>a.quick-buy__toggle .text {
    color: var(--color-text)
}

.quick-buy--grey .quick-buy__toggle.btn.is-active .icon,
.quick-buy--grey .shipping-tracker>a.quick-buy__toggle.is-active .icon {
    color: var(--color-text)
}

.quick-buy--grey .qo-submit {
    color: var(--color-text);
    background-color: #dde4ec;
    background-color: var(--color-grey-darkest);
    border: 1px solid #dde4ec;
    border: 1px solid var(--color-grey-darkest)
}

.quick-buy.confirmed {
    padding-top: 35px
}

.progress-bar__bg {
    position: relative;
    height: 14px;
    width: 100%;
    border-radius: 2px;
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.progress-bar__progress {
    padding: 0 !important
}

.progress-bar__progress {
    width: attr(data-width);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 2px;
    background-color: #ecf0f5;
    background-color: var(--color-grey-darker);
    transition: .6s cubic-bezier(.55, 0, .1, 1) 0s
}

.progress-bar__progress i {
    position: absolute;
    top: -25px;
    transform: translateX(15px) scaleX(-1)
}

.progress-bar--small .progress-bar__bg {
    height: 7px
}

.progress-bar--oval .progress-bar__bg {
    border-radius: 50px
}

.progress-bar--oval .progress-bar__progress {
    border-radius: 50px
}

.progress-bar--round .progress-bar__bg {
    border-radius: 4px
}

.progress-bar--round .progress-bar__progress {
    border-radius: 4px
}

.progress-bar--primary .progress-bar__progress {
    color: var(--color-primary);
    background-color: var(--color-primary)
}

.s-product-options-donation-wrapper {
    position: relative
}

.s-product-options-donation-progress {
    width: 100%
}

.s-product-options-donation-amount-currency {
    bottom: .5rem;
    top: auto;
    top: initial
}

.dropdonw-menu-wrap {
    position: relative
}

.dropdonw-menu-wrap .dropdown-menu {
    position: absolute;
    pointer-events: none;
    left: 0;
    right: auto;
    transform: translateY(20px);
    opacity: 0;
    transition: .3s cubic-bezier(.55, 0, .1, 1);
    border-radius: 0 0 8px 8px;
    width: 100%;
    min-width: 230px;
    z-index: 9999;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .07)
}

.dropdonw-menu-wrap .dropdown-menu::-webkit-scrollbar {
    width: 4px
}

.dropdonw-menu-wrap .dropdown-menu::-webkit-scrollbar-track {
    background: rgba(#F8F8F8, 0.8);
    background: rgba(var(--color-grey-light), 0.8);
    border-radius: 0
}

.dropdonw-menu-wrap .dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-primary)
}

.dropdonw-menu-wrap .dropdown-menu::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(var(--color-primary), 0.5)
}

.dropdonw-menu-wrap .dropdown-menu>ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden
}

.dropdonw-menu-wrap .dropdown-menu li {
    width: 100%;
    position: static;
    padding: 0;
    overflow: hidden;
    transition: background .5s cubic-bezier(.2, 1, .3, 1);
    background-color: #fff;
    background-color: var(--color-white)
}

.dropdonw-menu-wrap .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #f5f7f9;
    border-bottom: 1px solid var(--color-grey)
}

.dropdonw-menu-wrap .dropdown-menu li:first-child {
    border-radius: 8px 8px 0 0
}

.dropdonw-menu-wrap .dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px
}

.dropdonw-menu-wrap .dropdown-menu li.parent>a:after {
    font-family: sallaicons;
    content: "";
    display: inline-block;
    margin-right: 3px;
    color: var(--color-text);
    position: absolute;
    left: 15px
}

.dropdonw-menu-wrap .dropdown-menu li .wrapper {
    position: absolute;
    right: 100%;
    transform: translateY(-20px);
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    width: 100%;
    transition: .3s cubic-bezier(.55, 0, .1, 1);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .07);
    background-color: #fff;
    background-color: var(--color-white);
    border-radius: 0 0 10px 10px
}

.dropdonw-menu-wrap .dropdown-menu li:hover {
    background: #f5f7f9;
    background: var(--color-grey)
}

.dropdonw-menu-wrap .dropdown-menu li.has-badge a {
    padding-left: 40px
}

.dropdonw-menu-wrap .dropdown-menu li.has-badge a .badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px
}

.dropdonw-menu-wrap .dropdown-menu li:hover .wrapper {
    transform: translateY(-38px);
    opacity: 1;
    visibility: visible
}

.dropdonw-menu-wrap .dropdown-menu a {
    color: var(--color-text);
    font-weight: 400;
    font-size: var(--font-sm);
    padding: 8px 15px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    display: flex;
    align-items: center;
    width: 100%;
    position: relative
}

.dropdonw-menu-wrap .dropdown-menu a.notifications {
    justify-content: space-between
}

.dropdonw-menu-wrap .dropdown-menu a i {
    margin-left: 10px;
    font-size: var(--font-sm);
    color: inherit
}

.dropdonw-menu-wrap .dropdown-menu a .currency-flag {
    width: 22px;
    height: 14px
}

.dropdonw-menu-wrap .dropdown-menu a img {
    width: auto;
    height: 20px;
    vertical-align: middle
}

.dropdonw-menu-wrap .dropdown-menu a.is-active {
    background-color: #f5f7f9;
    color: var(--color-primary)
}

.dropdonw-menu-wrap .dropdown-menu a:hover {
    text-decoration: none
}

.dropdonw-menu-wrap .dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(9px);
    z-index: 9;
    pointer-events: auto
}

.dropdonw-menu-wrap .dropdown-menu--padded li {
    padding: 10px
}

.dropdonw-menu-wrap .dropdown-menu.limited-height {
    max-height: 200px
}

@media only screen and (max-width: 767px) {
    .dropdonw-menu-wrap .dropdown-menu.limited-height {
        max-height: 0
    }
}

.dropdonw-menu-wrap.sort .btn--padded,
.dropdonw-menu-wrap.sort .shipping-tracker>a {
    padding-left: 5px
}

.dropdonw-menu-wrap.sort .checkbox input+label {
    font-size: var(--font-sm);
    padding: 10px 40px 10px 20px
}

.dropdonw-menu-wrap.sort .checkbox input+label:before {
    top: 11px;
    right: 11px
}

.dropdonw-menu-wrap.sort .checkbox input+label:after {
    top: 7px ;
    right: 16px
}

.dropdonw-menu-wrap.has-badge:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff443a;
    background: var(--color-danger);
    position: absolute;
    top: 2px;
    right: 2px
}

.switcher-toggler .btn,
.switcher-toggler .shipping-tracker>a {
    padding-right: 10px !important
}

.switcher-toggler .btn,
.switcher-toggler .shipping-tracker>a {
    min-height: 36px
}

.switcher-toggler .btn .flag.currency-flag,
.switcher-toggler .shipping-tracker>a .flag.currency-flag {
    width: 22px;
    height: 14px
}

.choices__inner {
    border: 1px solid #f0f2f5 !important;
    border: 1px solid var(--color-grey-dark) !important
}

.choices__inner {
    min-height: 0;
    min-height: initial;
    height: 40px;
    background: #f5f7f9;
    background: var(--color-grey);
    padding-right: 15px;
    border-radius: 4px
}

.choices__list--single {
    padding: 2px 16px 0 0
}

.choices__list--single .choices__item--selectable {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.choices__list--dropdown {
    border: 1px solid #f0f2f5 !important;
    border: 1px solid var(--color-grey-dark) !important
}

.choices__list--dropdown {
    box-shadow: none;
    z-index: 6
}

.choices__list--dropdown .choices__item {
    word-break: break-word
}

.choices__list--dropdown .choices__item:after {
    display: none
}

.choices[data-type*=select-one]:after {
    border-color: transparent !important;
    margin-top: -11px !important
}

.choices[data-type*=select-one]:after {
    font-family: sallaicons;
    content: "";
    width: auto;
    height: auto;
    color: var(--color-text);
    top: 18px;
    left: 7.5px;
    right: auto
}

.choices.is-open .choices__inner {
    border-radius: 4px 4px 0 0
}

.choices.is-open.is-flipped .choices__list--dropdown {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.choices.is-open.is-flipped .choices__inner {
    border-radius: 0 0 10px 10px
}

.choices[data-type*=select-one] .choices__input {
    border-color: #f5f7f9;
    border-color: var(--color-grey)
}

.choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

@media(min-width: 640px) {
    .choices__item--selectable {
        padding-left: 20px;
        padding-right: 0
    }

    .choices__item--selectable:after {
        left: 10px;
        right: auto
    }
}

.offers-block {
    padding: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f5f7f9;
    border: 1px solid var(--color-grey)
}

.offers-block__title-wrapper {
    padding-left: 60px
}

.offers-block__title-wrapper h2 strong {
    color: var(--color-primary)
}

.offers-block__title-wrapper p span b {
    color: var(--color-primary)
}

.offers-block__discounts_table {
    padding: 0 10px
}

.offers-block__discounts_table li {
    border-bottom: 1px solid #eee;
    border-bottom: 1px solid var(--color-grey-border);
    font-weight: 400;
    font-size: 14px;
    padding: 15px 0
}

.offers-block__discounts_table li:last-child {
    border: medium currentColor;
    border: initial
}

.offers-block__products {
    flex-wrap: wrap;
    justify-content: center
}

@media only screen and (max-width: 767px) {
    .offers-block {
        padding: 20px
    }
}

.product-sections-wrapper {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f2f5;
    border: 1px solid var(--color-grey-dark)
}

.product-sections-wrapper .product-section {
    margin: 0 0 20px
}

.product-section {
    position: relative;
    margin-bottom: 20px
}

.product-section .textarea-collapsed {
    transition: .5s cubic-bezier(.55, 0, .1, 1) 0s;
    min-height: 70px
}

.product-section .textarea-collapsed.collapsed {
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transform: scale(0);
    height: 0;
    min-height: 0;
    min-height: initial
}

.product-section .upload-file {
    transition: .5s cubic-bezier(.55, 0, .1, 1) 0s
}

.product-section--has-label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.product-section--has-label small {
    display: block;
    font-size: var(--font-xsm);
    color: #bbb;
    color: var(--color-text-muted);
    margin: 0
}

.product-section--has-label>*:first-child {
    flex: initial;
    padding-left: 15px;
    transform: translateY(2px)
}

@media only screen and (min-width: 767px) {
    .product-section--has-label>*:first-child {
        width: 30%;
        flex-shrink: 0
    }
}

.product-section--has-label>*:last-child {
    width: 100%;
    flex: auto
}

@media only screen and (min-width: 767px) {
    .product-section--has-label>*:last-child {
        max-width: 70%
    }
}

@media only screen and (max-width: 767px) {
    .product-section--has-label {
        flex-direction: column
    }

    .product-section--has-label>* {
        padding: 0;
        margin: 0 0 10px
    }

    .product-section--has-label>*:last-child {
        margin: 0
    }
}

.product-section.splitter {
    border-bottom: 3px solid #f8f8f8;
    border-bottom: 3px solid var(--color-grey-light);
    margin-bottom: 40px
}

.product-section--quantity {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.product-section--quantity .qty-wrapper {
    flex-shrink: 0;
    padding-left: 15px
}

@media only screen and (max-width: 767px) {
    .product-section--quantity.has-quick-purchase {
        flex-wrap: wrap
    }

    .product-section--quantity.has-quick-purchase .qty-wrapper {
        flex: 1 0 100%;
        padding-left: 0;
        margin-bottom: 20px
    }

    .product-section--quantity.has-quick-purchase .qty-wrapper .s-quantity-input-input {
        flex: 1 !important
    }

    .product-section--quantity.has-quick-purchase .qty-wrapper .qty button {
        width: 60px
    }

    .product-section--quantity.has-quick-purchase .s-add-product-button-with-quick-buy {
        flex-direction: column
    }

    .product-section--quantity.has-quick-purchase .s-add-product-button-with-quick-buy salla-quick-buy,
    .product-section--quantity.has-quick-purchase .s-add-product-button-with-quick-buy>salla-button {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .product-section--quantity.has-quick-purchase .s-add-product-button-with-quick-buy salla-quick-buy,
    .product-section--quantity.has-quick-purchase .s-add-product-button-with-quick-buy>salla-button {
        margin-bottom: 15px
    }

    .product-section--quantity.has-quick-purchase .btn--wide {
        width: 50%
    }

    .product-section--quantity.has-quick-purchase .btn--wide[data-quick-purchase] {
        width: calc(50% - 10px)
    }
}

.product-section--notify {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row
}

.product-section--notify>* {
    flex: 1
}

.product-section--totals {
    padding: 15px 0 !important
}

.product-section--totals {
    align-items: center
}

.product-section--totals>div {
    margin: 0 !important
}

.product-section--totals .price-wrapper {
    float: left;
    width: -moz-fit-content;
    width: fit-content
}

@media only screen and (max-width: 767px) {
    .product-section--totals {
        flex-direction: row
    }
}

.size-guide-item .popup-trigger {
    color: var(--color-primary);
    transition: .3s
}

.size-guide-item .popup-trigger .icon {
    font-size: 18px;
    transition: .3s
}

.size-guide-item .popup-trigger:hover {
    color: var(--color-primary-d)
}

.size-guide-item .popup-trigger:hover .icon {
    transform: translateX(-5px)
}

.tooltip-toggle {
    position: relative;
    overflow: visible
}

.tooltip-toggle .tooltip-content {
    padding: 6px 12px !important
}

.tooltip-toggle .tooltip-content {
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 4px;
    transition: all .5s cubic-bezier(.2, 1, .3, 1);
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
    cursor: default;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap
}

.tooltip-toggle .tooltip-content small {
    font-size: var(--font-xxsm);
    margin: 0;
    text-align: right
}

.tooltip-toggle .tooltip-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #fff;
    border-top: 0;
    margin-left: -8px;
    margin-top: -8px
}

.tooltip-toggle .tooltip-content--fixed-width {
    width: 200px;
    max-width: 200px
}

.tooltip-toggle .tooltip-content--fixed-width p {
    white-space: normal;
    line-height: 1.2;
    text-align: right;
    margin: 0
}

@media only screen and (max-width: 767px) {
    .tooltip-toggle .tooltip-content:not(.xs-visible) {
        display: none
    }
}

.tooltip-toggle.bottom .tooltip-content {
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(20px)
}

.tooltip-toggle.top .tooltip-content {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px)
}

.tooltip-toggle.top .tooltip-content:after {
    top: auto !important;
    top: initial !important
}

.tooltip-toggle.top .tooltip-content:after {
    bottom: -8px;
    transform: rotate(180deg)
}

.tooltip-toggle.left-position .tooltip-content {
    transform: translateX(0) translateY(-10px) !important
}

.tooltip-toggle.left-position .tooltip-content {
    left: 0
}

.tooltip-toggle.left-position .tooltip-content:after {
    left: 25px
}

.tooltip-toggle.trans .tooltip-content {
    color: var(--color-text-reverse) !important
}

.tooltip-toggle.trans .tooltip-content {
    background: var(--color-primary)
}

.tooltip-toggle.trans .tooltip-content * {
    color: var(--color-text-reverse) !important
}

.tooltip-toggle.trans .tooltip-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: var(--color-primary);
    border-top: 0;
    margin-left: -8px;
    margin-top: -8px
}

.tooltip-toggle.primary {
    border: 1px solid var(--color-primary) !important;
    background: transparent !important
}

.tooltip-toggle.primary * {
    color: var(--color-primary) !important
}

.tooltip-toggle.primary .tooltip-content {
    background: var(--color-primary)
}

.tooltip-toggle.primary .tooltip-content * {
    color: var(--color-text-reverse) !important
}

.tooltip-toggle.primary .tooltip-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: var(--color-primary);
    border-top: 0;
    margin-left: -8px;
    margin-top: -8px
}

.tooltip-toggle:hover .tooltip-content {
    opacity: 1;
    visibility: visible
}

.tooltip-toggle:hover.top .tooltip-content {
    transform: translateX(-50%) translateY(-5px)
}

.tooltip-toggle:hover.bottom .tooltip-content {
    transform: translateX(-50%) translateY(15px)
}

.tooltip-toggle--closable .tooltip-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.tooltip-toggle--closable .tooltip-content .close-tooltip {
    margin-right: 10px
}

.tooltip-toggle--closable .tooltip-content .close-tooltip:hover,
.tooltip-toggle--closable .tooltip-content .close-tooltip:focus {
    box-shadow: none
}

.tooltip-toggle--closable .tooltip-content .close-tooltip i {
    color: #ff443a;
    font-size: 15px
}

.tooltip-toggle--closable:hover .tooltip-content {
    opacity: 0;
    visibility: hidden
}

.tooltip-toggle--closable.visible .tooltip-content {
    opacity: 1;
    visibility: visible
}

.tooltip-toggle--closable.visible.top .tooltip-content {
    transform: translateX(-50%) translateY(-15px)
}

.tooltip-toggle--closable.visible.bottom .tooltip-content {
    transform: translateX(-50%) translateY(15px)
}

.tooltip-toggle--clickable:hover {
    opacity: 1
}

.speech-bubble {
    position: relative
}

.speech-bubble:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent #f5f7f9 transparent;
    border-color: transparent transparent var(--color-grey) transparent
}

.speech-bubble.dark:after {
    border-color: transparent transparent var(--color-text) transparent
}

.speech-bubble.primary:after {
    border-color: transparent transparent var(--color-primary) transparent
}

.speech-bubble.top:after {
    top: -10px
}

.speech-bubble.start:after {
    right: 20px
}

.speech-bubble.end:after {
    left: 20px
}

.spinner {
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 50%;
    border-top: 3px solid rgba(0, 0, 0, .2);
    border-right: 3px solid rgba(0, 0, 0, .2);
    border-bottom: 3px solid rgba(0, 0, 0, .2);
    border-left: 3px solid #999;
    border-left: 3px solid var(--color-text-lighter);
    transform: translateZ(0);
    animation: load8 1.1s infinite linear
}

.spinner:after {
    border-radius: 50%;
    width: 30px;
    height: 30px
}

.spinner--small {
    width: 18px;
    height: 18px
}

.spinner--small:after {
    width: 18px;
    height: 18px
}

@keyframes load8 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.store-notify {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    min-height: 40px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 5px 30px 5px 45px;
    z-index: 3500
}

.store-notify * {
    color: inherit
}

.store-notify i {
    display: inline-block;
    margin-left: 10px;
    color: inherit;
    padding: 8px 10px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 4px
}

.store-notify #notify_close {
    display: block;
    width: 27px;
    height: 27px;
    margin: 0;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    transition: background-color .5s ease
}

.store-notify #notify_close i {
    margin: 0;
    padding: 0;
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    right: 50%
}

.store-notify #notify_close:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, .1)
}

.store-notify #notify_close:hover:after {
    display: none
}

.store-notify p {
    color: inherit;
    line-height: 1;
    font-size: var(--font-sm);
    text-align: center;
    margin: 0 10px;
    padding: 0 0 3px
}

.store-notify a {
    display: inline-block;
    margin: 0;
    position: relative;
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.store-notify a:after:not(.btn-store-alert) {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -6px;
    right: 0;
    background-color: rgba(255, 255, 255, .3);
    transform-origin: right;
    transform: scaleX(0);
    transition: all .5s cubic-bezier(.2, 1, .3, 1)
}

.store-notify a:hover {
    color: inherit
}

.store-notify a:hover:after {
    transform: scaleX(1)
}

@media only screen and (max-width: 767px) {
    .store-notify {
        padding: 5px 10px 5px 45px
    }
}

.maintenance-alert {
    background-color: #1a263d;
    color: #fff;
    position: inherit;
    padding: 5px 30px
}

.maintenance-alert .store-alert-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px
}

.maintenance-alert .store-alert-content .text {
    display: flex;
    align-items: center
}

.maintenance-alert .store-alert-content .text h2 {
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700
}

.maintenance-alert .store-alert-content .thumb {
    margin-left: 20px
}

.maintenance-alert .store-alert-content .btn-store-alert {
    background: #5dd5c4;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285715;
    border-radius: 3px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #5dd5c4
}

.maintenance-alert .store-alert-content .btn-store-alert:hover {
    background: #35cbb5
}

.maintenance-alert .store-alert-content .btn-store-alert .visible-xs {
    display: none
}

@media only screen and (max-width: 767px) {
    .maintenance-alert .store-alert-content {
        flex-direction: row;
        padding: 0
    }

    .maintenance-alert .store-alert-content .thumb {
        display: none !important
    }

    .maintenance-alert .store-alert-content .text h2 {
        line-height: 1.4;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 700
    }

    .maintenance-alert .store-alert-content .text p {
        font-size: 10px;
        text-align: right
    }

    .maintenance-alert .store-alert-content .btn,
    .maintenance-alert .store-alert-content .shipping-tracker>a {
        padding: 10px
    }

    .maintenance-alert .store-alert-content .btn .visible-xs,
    .maintenance-alert .store-alert-content .shipping-tracker>a .visible-xs {
        display: block !important
    }

    .maintenance-alert .store-alert-content .btn .hidden-xs,
    .maintenance-alert .store-alert-content .shipping-tracker>a .hidden-xs {
        display: none !important
    }
}

@media only screen and (max-width: 767px) {
    .maintenance-alert {
        padding: 5px 10px
    }
}

.url-copy {
    display: grid;
    grid-template-columns: 40px max-content
}

.url-copy .btn,
.url-copy .shipping-tracker>a {
    flex-shrink: 0
}

.url-copy .btn--copy:before {
    font-size: var(--font-sm)
}

.url-copy .url-wrapper {
    flex-shrink: 1
}

.url-copy>* {
    height: 100%
}

.url-copy.padded>* {
    padding: 8px 20px !important
}

.url-copy.padded.less>*,
.shipping-tracker>a.url-copy.padded>* {
    padding: 8px 15px !important
}

.url-copy.padded.narrow>* {
    padding: 5px 12px !important
}

@media only screen and (max-width: 767px) {
    .url-copy.padded>* {
        padding: 5px 12px !important
    }
}

.url-copy--oval>* {
    border: 1px solid #eee;
    border: 1px solid var(--color-grey-border)
}

.url-copy--oval .btn,
.url-copy--oval .shipping-tracker>a {
    border-radius: 0 50px 50px 0
}

.url-copy--oval .url-wrapper {
    border-right: 0;
    border-radius: 50px 0 0 50px
}

.url-copy--oval .url-wrapper>span {
    display: block;
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.url-copy--oval.primary .btn--copy:before {
    color: var(--color-main)
}

.url-copy--oval.primary>* {
    border-color: var(--color-main)
}

@media only screen and (max-width: 767px) {
    .url-copy--mobile-shrink {
        grid-template-columns: initial
    }

    .url-copy--mobile-shrink .btn.btn--copy,
    .url-copy--mobile-shrink .shipping-tracker>a.btn--copy {
        padding: 5px 15px !important
    }

    .url-copy--mobile-shrink .btn.btn--copy,
    .url-copy--mobile-shrink .shipping-tracker>a.btn--copy {
        border-radius: 50px
    }

    .url-copy--mobile-shrink .btn.btn--copy.copied .copy-text,
    .url-copy--mobile-shrink .shipping-tracker>a.btn--copy.copied .copy-text {
        display: none !important
    }

    .url-copy--mobile-shrink .btn.btn--copy.copied .copy-text-confirm,
    .url-copy--mobile-shrink .shipping-tracker>a.btn--copy.copied .copy-text-confirm {
        display: inline-block !important
    }

    .url-copy--mobile-shrink .url-wrapper {
        display: none
    }
}

.model-viewer {
    width: 100%;
    height: 100%
}

.model-viewer__poster {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.post-entry {
    position: relative
}

.post-entry__placeholder {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.post-entry__placeholder {
    background-color: #f5f7f9;
    background-color: var(--color-grey)
}

.post-entry--row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row
}

.post-entry--row .post-entry__thumb {
    flex: 0 0 40%
}

@media only screen and (max-width: 1350px) {
    .post-entry--row .post-entry__meta {
        flex-direction: column !important;
        align-items: flex-start !important
    }

    .post-entry--row .post-entry__meta>span:first-child {
        margin: 0 0 5px !important
    }
}

.post-entry--row .post-entry__body {
    flex: auto
}

@media only screen and (max-width: 767px) {
    .post-entry--row {
        flex-direction: column
    }
}

.post-entry--short {
    min-height: 350px
}

.post-entry--short .post-entry__thumb {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.post-entry--short .post-entry__meta {
    z-index: 2;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0
}

.post-entry--short:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7019607843) 100%) 0 0 no-repeat padding-box;
    pointer-events: none
}

.blog-single-img img {
    max-height: 420px;
    -o-object-fit: cover;
    object-fit: cover
}

.side-menu__close {
    display: none;
    z-index: 999
}

@media(min-width: 992px) {
    .side-menu__toggle {
        display: none !important
    }
}

@media(max-width: 992px) {
    .side-menu {
        padding: 20px;
        position: fixed;
        left: 0;
        top: 0;
        width: 80%;
        max-width: 350px;
        height: 100%;
        background: #fff;
        background: var(--color-white);
        z-index: 999999999999999;
        overflow-y: auto;
        transition: all .3s;
        transform: translateX(-100%)
    }

    .side-menu.active {
        transform: translateX(0);
        box-shadow: 15px 0 20px 0 rgba(0, 0, 0, .15)
    }

    .side-menu__overlay {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .65);
        z-index: 99999999999;
        visibility: hidden;
        opacity: 0;
        transition: all .5s cubic-bezier(.2, 1, .3, 1)
    }

    .side-menu__overlay.active {
        visibility: visible;
        opacity: 1
    }

    .side-menu__close {
        display: block
    }
}

@media(min-width: 992px) {
    .sidebar {
        position: sticky !important
    }

    .sidebar {
        display: block;
        top: 95px
    }
}

.virtooal {
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #e5e5e5
}

.virtooal--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

@media screen and (min-width: 768px) {
    .virtooal--content {
        padding: 18px
    }
}

.virtooal--details {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column
}

@media only screen and (max-width: 768px) {
    .virtooal--details {
        display: none
    }
}

.virtooal--details--title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937
}

.virtooal--details--desc {
    font-size: 13px;
    color: #7c8082;
    font-weight: 400
}

@media only screen and (max-width: 768px) {
    .virtooal--action {
        width: 100%
    }
}

.virtooal--action button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 30px
}

@media only screen and (max-width: 768px) {
    .virtooal--action button {
        width: 100%
    }
}

.virtooal--action button .icon {
    width: 14px;
    height: 14px;
    margin-left: .75rem
}

body.mm-ocd-opened,
body.modal-open,
body.fancybox-open,
body.backdrop--opened {
    overflow: hidden
}

body.mm-ocd-opened #tidio-chat-iframe,
body.mm-ocd-opened [id^=gb-widget],
body.mm-ocd-opened [class$=__feedback],
body.mm-ocd-opened #fb-root,
body.mm-ocd-opened .fb_reset,
body.mm-ocd-opened .smt-app,
body.mm-ocd-opened .tawk-widget,
body.mm-ocd-opened #intercom-container,
body.mm-ocd-opened #chat-widget-container,
body.modal-open #tidio-chat-iframe,
body.modal-open [id^=gb-widget],
body.modal-open [class$=__feedback],
body.modal-open #fb-root,
body.modal-open .fb_reset,
body.modal-open .smt-app,
body.modal-open .tawk-widget,
body.modal-open #intercom-container,
body.modal-open #chat-widget-container,
body.fancybox-open #tidio-chat-iframe,
body.fancybox-open [id^=gb-widget],
body.fancybox-open [class$=__feedback],
body.fancybox-open #fb-root,
body.fancybox-open .fb_reset,
body.fancybox-open .smt-app,
body.fancybox-open .tawk-widget,
body.fancybox-open #intercom-container,
body.fancybox-open #chat-widget-container,
body.backdrop--opened #tidio-chat-iframe,
body.backdrop--opened [id^=gb-widget],
body.backdrop--opened [class$=__feedback],
body.backdrop--opened #fb-root,
body.backdrop--opened .fb_reset,
body.backdrop--opened .smt-app,
body.backdrop--opened .tawk-widget,
body.backdrop--opened #intercom-container,
body.backdrop--opened #chat-widget-container {
    display: none !important
}

@supports(-webkit-touch-callout:none) {
    @media screen and (max-width: 767px) {
        .mobile #button {
            transform: translateY(-58px);
            margin-left: 5px
        }
    }
}

@media only screen and (max-width: 992px) {
    #tidio-chat {
        z-index: 16000160;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none
    }

    #tidio-chat #tidio-chat-iframe {
        bottom: 70px !important
    }

    #tidio-chat #tidio-chat-iframe {
        pointer-events: auto
    }

    [id^=gb-widget] {
        bottom: 90px !important;
        z-index: 9999 !important
    }

    #fb-root .fb_dialog iframe[data-testid=bubble_iframe] {
        bottom: 90px !important
    }

    body.salla-y iframe.tawk-widget {
        bottom: 90px !important
    }

    #chat-widget-container {
        bottom: 65px !important
    }

    #chat-widget-container {
        height: calc(100% - 65px)
    }

    .smt-app.smt-app-whatsapp.force-mobile .waves-whatsapp.sm-fixed {
        bottom: 90px !important
    }

    iframe#intercom-frame {
        bottom: 90px !important
    }

    iframe#intercom-frame {
        display: block;
        position: absolute
    }

    .intercom-lightweight-app .intercom-lightweight-app-launcher {
        bottom: 90px
    }

    #intercom-container .intercom-app .intercom-messenger-frame {
        z-index: 9999999999
    }

    #intercom-container .intercom-app .intercom-launcher-frame {
        bottom: 90px
    }

    .smt-app.smt-app-faq .sm-button,
    .smt-app.smt-app-whatsapp .sm-button {
        bottom: 90px !important
    }

    body.nav-mobile-hide .nav-mobile {
        display: none
    }
}

lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 720px
}

lite-youtube::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all .2s cubic-bezier(0, 0, .2, 1)
}

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: 56.25%
}

lite-youtube>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0
}

lite-youtube>.lty-playbtn {
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDY4IDQ4Ij48cGF0aCBmaWxsPSIjZjAwIiBmaWxsLW9wYWNpdHk9IjAuOCIgZD0iTTY2LjUyLDcuNzRjLTAuNzgtMi45My0yLjQ5LTUuNDEtNS40Mi02LjE5QzU1Ljc5LC4xMywzNCwwLDM0LDBTMTIuMjEsLjEzLDYuOSwxLjU1IEMzLjk3LDIuMzMsMi4yNyw0LjgxLDEuNDgsNy43NEMwLjA2LDEzLjA1LDAsMjQsMCwyNHMwLjA2LDEwLjk1LDEuNDgsMTYuMjZjMC43OCwyLjkzLDIuNDksNS40MSw1LjQyLDYuMTkgQzEyLjIxLDQ3Ljg3LDM0LDQ4LDM0LDQ4czIxLjc5LTAuMTMsMjcuMS0xLjU1YzIuOTMtMC43OCw0LjY0LTMuMjYsNS40Mi02LjE5QzY3Ljk0LDM0Ljk1LDY4LDI0LDY4LDI0UzY3Ljk0LDEzLjA1LDY2LjUyLDcuNzR6Ij48L3BhdGg+PHBhdGggZD0iTSA0NSwyNCAyNywxNCAyNywzNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==);
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, .2, 1);
    border: none
}

lite-youtube:hover>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none
}

lite-youtube.lyt-activated {
    cursor: inherit
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
    opacity: 0;
    pointer-events: none
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.mobile-webview .tamara-popup .tamara-popup__close,
.mobile-webview .tabby-promo-wrapper #tabby-promo-close,
.mobile-webview .spotii-popup__wrap .spotii-popup__close {
    display: none !important
}

.swal2-popup.swal2-toast {
    grid-column: 1/4 !important;
    grid-row: 1/4 !important
}

.swal2-popup.swal2-toast {
    box-sizing: border-box;
    grid-template-columns: min-content auto min-content;
    padding: 1em;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, .075), 0 1px 2px rgba(0, 0, 0, .075), 1px 2px 4px rgba(0, 0, 0, .075), 1px 3px 8px rgba(0, 0, 0, .075), 2px 4px 16px rgba(0, 0, 0, .075);
    pointer-events: all
}

.swal2-popup.swal2-toast>* {
    grid-column: 2
}

.swal2-popup.swal2-toast .swal2-title {
    margin: .5em 1em;
    padding: 0;
    font-size: 1em;
    text-align: left;
    text-align: initial
}

.swal2-popup.swal2-toast .swal2-loading {
    justify-content: center
}

.swal2-popup.swal2-toast .swal2-input {
    height: 2em;
    margin: .5em;
    font-size: 1em
}

.swal2-popup.swal2-toast .swal2-validation-message {
    font-size: 1em
}

.swal2-popup.swal2-toast .swal2-footer {
    margin: .5em 0 0;
    padding: .5em 0 0;
    font-size: .8em
}

.swal2-popup.swal2-toast .swal2-close {
    grid-column: 3/3;
    grid-row: 1/99;
    align-self: center;
    width: .8em;
    height: .8em;
    margin: 0;
    font-size: 2em
}

.swal2-popup.swal2-toast .swal2-html-container {
    margin: .5em 1em;
    padding: 0;
    overflow: visible;
    overflow: initial;
    font-size: 1em;
    text-align: left;
    text-align: initial
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
    padding: 0
}

.swal2-popup.swal2-toast .swal2-loader {
    grid-column: 1;
    grid-row: 1/99;
    align-self: center;
    width: 2em;
    height: 2em;
    margin: .25em
}

.swal2-popup.swal2-toast .swal2-icon {
    grid-column: 1;
    grid-row: 1/99;
    align-self: center;
    width: 2em;
    min-width: 2em;
    height: 2em;
    margin: 0 .5em 0 0
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    top: .875em;
    width: 1.375em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: .3125em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: .3125em
}

.swal2-popup.swal2-toast .swal2-actions {
    justify-content: flex-start;
    height: auto;
    margin: 0;
    margin-top: .5em;
    padding: 0 .5em
}

.swal2-popup.swal2-toast .swal2-styled {
    margin: .25em .5em;
    padding: .4em .6em;
    font-size: 1em
}

.swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 1.6em;
    height: 3em;
    transform: rotate(45deg);
    border-radius: 50%
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -.8em;
    left: -.5em;
    transform: rotate(-45deg);
    transform-origin: 2em 2em;
    border-radius: 4em 0 0 4em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -.25em;
    left: .9375em;
    transform-origin: 0 1.5em;
    border-radius: 0 4em 4em 0
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
    top: 0;
    left: .4375em;
    width: .4375em;
    height: 2.6875em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
    height: .3125em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
    top: 1.125em;
    left: .1875em;
    width: .75em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
    top: .9375em;
    right: .1875em;
    width: 1.375em
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: swal2-toast-animate-success-line-tip .75s
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: swal2-toast-animate-success-line-long .75s
}

.swal2-popup.swal2-toast.swal2-show {
    animation: swal2-toast-show .5s
}

.swal2-popup.swal2-toast.swal2-hide {
    animation: swal2-toast-hide .1s forwards
}

.swal2-container {
    display: grid;
    position: fixed;
    z-index: 1060;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    grid-template-areas: "top-start     top            top-end""center-start  center         center-end""bottom-start  bottom-center  bottom-end";
    grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
    height: 100%;
    padding: .625em;
    overflow-x: hidden;
    transition: background-color .1s;
    -webkit-overflow-scrolling: touch
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, .4)
}

.swal2-container.swal2-backdrop-hide {
    background: transparent !important
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-center-start,
.swal2-container.swal2-bottom-start {
    grid-template-columns: minmax(0, 1fr) auto auto
}

.swal2-container.swal2-top,
.swal2-container.swal2-center,
.swal2-container.swal2-bottom {
    grid-template-columns: auto minmax(0, 1fr) auto
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-center-end,
.swal2-container.swal2-bottom-end {
    grid-template-columns: auto auto minmax(0, 1fr)
}

.swal2-container.swal2-top-start>.swal2-popup {
    align-self: start
}

.swal2-container.swal2-top>.swal2-popup {
    grid-column: 2;
    align-self: start;
    justify-self: center
}

.swal2-container.swal2-top-end>.swal2-popup,
.swal2-container.swal2-top-right>.swal2-popup {
    grid-column: 3;
    align-self: start;
    justify-self: end
}

.swal2-container.swal2-center-start>.swal2-popup,
.swal2-container.swal2-center-left>.swal2-popup {
    grid-row: 2;
    align-self: center
}

.swal2-container.swal2-center>.swal2-popup {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center
}

.swal2-container.swal2-center-end>.swal2-popup,
.swal2-container.swal2-center-right>.swal2-popup {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    justify-self: end
}

.swal2-container.swal2-bottom-start>.swal2-popup,
.swal2-container.swal2-bottom-left>.swal2-popup {
    grid-column: 1;
    grid-row: 3;
    align-self: end
}

.swal2-container.swal2-bottom>.swal2-popup {
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
    align-self: end
}

.swal2-container.swal2-bottom-end>.swal2-popup,
.swal2-container.swal2-bottom-right>.swal2-popup {
    grid-column: 3;
    grid-row: 3;
    align-self: end;
    justify-self: end
}

.swal2-container.swal2-grow-row>.swal2-popup,
.swal2-container.swal2-grow-fullscreen>.swal2-popup {
    grid-column: 1/4;
    width: 100%
}

.swal2-container.swal2-grow-column>.swal2-popup,
.swal2-container.swal2-grow-fullscreen>.swal2-popup {
    grid-row: 1/4;
    align-self: stretch
}

.swal2-container.swal2-no-transition {
    transition: none !important
}

.swal2-popup {
    display: none;
    position: relative;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 100%);
    width: 32em;
    max-width: 100%;
    padding: 0 0 1.25em;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #545454;
    font-family: inherit;
    font-size: 1rem
}

.swal2-popup:focus {
    outline: none
}

.swal2-popup.swal2-loading {
    overflow-y: hidden
}

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: .8em 1em 0;
    color: inherit;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word
}

.swal2-actions {
    display: flex;
    z-index: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 1.25em auto 0;
    padding: 0
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: .4
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))
}

.swal2-loader {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    margin: 0 1.875em;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border-width: .25em;
    border-style: solid;
    border-radius: 100%;
    border-color: #2778c4 transparent #2778c4 transparent
}

.swal2-styled {
    margin: .3125em;
    padding: .625em 1.1em;
    transition: box-shadow .1s;
    box-shadow: 0 0 0 3px transparent;
    font-weight: 500
}

.swal2-styled:not([disabled]) {
    cursor: pointer
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: .25em;
    background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
    background: initial;
    background-color: #7066e0;
    color: #fff;
    font-size: 1em
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(112, 102, 224, .5)
}

.swal2-styled.swal2-deny {
    border: 0;
    border-radius: .25em;
    background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
    background: initial;
    background-color: #dc3741;
    color: #fff;
    font-size: 1em
}

.swal2-styled.swal2-deny:focus {
    box-shadow: 0 0 0 3px rgba(220, 55, 65, .5)
}

.swal2-styled.swal2-cancel {
    border: 0;
    border-radius: .25em;
    background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
    background: initial;
    background-color: #6e7881;
    color: #fff;
    font-size: 1em
}

.swal2-styled.swal2-cancel:focus {
    box-shadow: 0 0 0 3px rgba(110, 120, 129, .5)
}

.swal2-styled.swal2-default-outline:focus {
    box-shadow: 0 0 0 3px rgba(100, 150, 200, .5)
}

.swal2-styled:focus {
    outline: none
}

.swal2-styled::-moz-focus-inner {
    border: 0
}

.swal2-footer {
    justify-content: center;
    margin: 1em 0 0;
    padding: 1em 1em 0;
    border-top: 1px solid #eee;
    color: inherit;
    font-size: 1em
}

.swal2-timer-progress-bar-container {
    grid-column: auto !important
}

.swal2-timer-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

.swal2-timer-progress-bar {
    width: 100%;
    height: .25em;
    background: rgba(0, 0, 0, .2)
}

.swal2-image {
    max-width: 100%;
    margin: 2em auto 1em
}

.swal2-close {
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: -1.2em;
    padding: 0;
    overflow: hidden;
    transition: color .1s, box-shadow .1s;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: #ccc;
    font-family: serif;
    font-family: monospace;
    font-size: 2.5em;
    cursor: pointer;
    justify-self: end
}

.swal2-close:hover {
    transform: none;
    background: transparent;
    color: #f27474
}

.swal2-close:focus {
    outline: none;
    box-shadow: inset 0 0 0 3px rgba(100, 150, 200, .5)
}

.swal2-close::-moz-focus-inner {
    border: 0
}

.swal2-html-container {
    z-index: 1;
    justify-content: center;
    margin: 1em 1.6em .3em;
    padding: 0;
    overflow: auto;
    color: inherit;
    font-size: 1.125em;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
    margin: 1em 2em 3px
}

.swal2-input,
.swal2-file,
.swal2-textarea {
    box-sizing: border-box;
    width: auto;
    transition: border-color .1s, box-shadow .1s;
    border: 1px solid #d9d9d9;
    border-radius: .1875em;
    background: transparent;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px transparent;
    color: inherit;
    font-size: 1.125em
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px rgba(100, 150, 200, .5)
}

.swal2-input::-moz-placeholder,
.swal2-file::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
    color: #ccc
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
    color: #ccc
}

.swal2-range {
    margin: 1em 2em 3px;
    background: #fff
}

.swal2-range input {
    width: 80%
}

.swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center
}

.swal2-range input,
.swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1.125em;
    line-height: 2.625em
}

.swal2-input {
    height: 2.625em;
    padding: 0 .75em
}

.swal2-file {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    background: transparent;
    font-size: 1.125em
}

.swal2-textarea {
    height: 6.75em;
    padding: .75em
}

.swal2-select {
    min-width: 50%;
    max-width: 100%;
    padding: .375em .625em;
    background: transparent;
    color: inherit;
    font-size: 1.125em
}

.swal2-radio,
.swal2-checkbox {
    align-items: center;
    justify-content: center;
    background: #fff;
    color: inherit
}

.swal2-radio label,
.swal2-checkbox label {
    margin: 0 .6em;
    font-size: 1.125em
}

.swal2-radio input,
.swal2-checkbox input {
    flex-shrink: 0;
    margin: 0 .4em
}

.swal2-input-label {
    display: flex;
    justify-content: center;
    margin: 1em auto 0
}

.swal2-validation-message {
    align-items: center;
    justify-content: center;
    margin: 1em 0 0;
    padding: .625em;
    overflow: hidden;
    background: #f0f0f0;
    color: #666;
    font-size: 1em;
    font-weight: 300
}

.swal2-validation-message::before {
    content: "!";
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    margin: 0 .625em;
    border-radius: 50%;
    background-color: #f27474;
    color: #fff;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center
}

.swal2-icon {
    position: relative;
    box-sizing: content-box;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 2.5em auto .6em;
    border: .25em solid transparent;
    border-radius: 50%;
    border-color: #000;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 3.75em
}

.swal2-icon.swal2-error {
    border-color: #f27474;
    color: #f27474
}

.swal2-icon.swal2-error .swal2-x-mark {
    position: relative;
    flex-grow: 1
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    display: block;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em;
    height: .3125em;
    border-radius: .125em;
    background-color: #f27474
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 1.0625em;
    transform: rotate(45deg)
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 1em;
    transform: rotate(-45deg)
}

.swal2-icon.swal2-error.swal2-icon-show {
    animation: swal2-animate-error-icon .5s
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
    animation: swal2-animate-error-x-mark .5s
}

.swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86
}

.swal2-icon.swal2-warning.swal2-icon-show {
    animation: swal2-animate-error-icon .5s
}

.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-i-mark .5s
}

.swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee
}

.swal2-icon.swal2-info.swal2-icon-show {
    animation: swal2-animate-error-icon .5s
}

.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-i-mark .8s
}

.swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd
}

.swal2-icon.swal2-question.swal2-icon-show {
    animation: swal2-animate-error-icon .5s
}

.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-question-mark .8s
}

.swal2-icon.swal2-success {
    border-color: #a5dc86;
    color: #a5dc86
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 3.75em;
    height: 7.5em;
    transform: rotate(45deg);
    border-radius: 50%
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -.4375em;
    left: -2.0635em;
    transform: rotate(-45deg);
    transform-origin: 3.75em 3.75em;
    border-radius: 7.5em 0 0 7.5em
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -.6875em;
    left: 1.875em;
    transform: rotate(-45deg);
    transform-origin: 0 3.75em;
    border-radius: 0 7.5em 7.5em 0
}

.swal2-icon.swal2-success .swal2-success-ring {
    position: absolute;
    z-index: 2;
    top: -.25em;
    left: -.25em;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    border: .25em solid rgba(165, 220, 134, .3);
    border-radius: 50%
}

.swal2-icon.swal2-success .swal2-success-fix {
    position: absolute;
    z-index: 1;
    top: .5em;
    left: 1.625em;
    width: .4375em;
    height: 5.625em;
    transform: rotate(-45deg)
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    z-index: 2;
    height: .3125em;
    border-radius: .125em;
    background-color: #a5dc86
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 2.875em;
    left: .8125em;
    width: 1.5625em;
    transform: rotate(45deg)
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
    transform: rotate(-45deg)
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: swal2-animate-success-line-tip .75s
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: swal2-animate-success-line-long .75s
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    animation: swal2-rotate-success-circular-line 4.25s ease-in
}

.swal2-progress-steps {
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    margin: 1.25em auto;
    padding: 0;
    background: transparent;
    font-weight: 600
}

.swal2-progress-steps li {
    display: inline-block;
    position: relative
}

.swal2-progress-steps .swal2-progress-step {
    z-index: 20;
    flex-shrink: 0;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background: #2778c4;
    color: #fff;
    line-height: 2em;
    text-align: center
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background: #2778c4
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step {
    background: #add8e6;
    color: #fff
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
    background: #add8e6
}

.swal2-progress-steps .swal2-progress-step-line {
    z-index: 10;
    flex-shrink: 0;
    width: 2.5em;
    height: .4em;
    margin: 0 -1px;
    background: #2778c4
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent
}

.swal2-show {
    animation: swal2-show .3s
}

.swal2-hide {
    animation: swal2-hide .15s forwards
}

.swal2-noanimation {
    transition: none
}

.swal2-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.swal2-rtl .swal2-close {
    margin-right: 0;
    margin-right: initial;
    margin-left: 0
}

.swal2-rtl .swal2-timer-progress-bar {
    right: 0;
    left: auto
}

@keyframes swal2-toast-show {
    0% {
        transform: translateY(-0.625em) rotateZ(2deg)
    }

    33% {
        transform: translateY(0) rotateZ(-2deg)
    }

    66% {
        transform: translateY(0.3125em) rotateZ(2deg)
    }

    100% {
        transform: translateY(0) rotateZ(0deg)
    }
}

@keyframes swal2-toast-hide {
    100% {
        transform: rotateZ(1deg);
        opacity: 0
    }
}

@keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: .5625em;
        left: .0625em;
        width: 0
    }

    54% {
        top: .125em;
        left: .125em;
        width: 0
    }

    70% {
        top: .625em;
        left: -.25em;
        width: 1.625em
    }

    84% {
        top: 1.0625em;
        left: .75em;
        width: .5em
    }

    100% {
        top: 1.125em;
        left: .1875em;
        width: .75em
    }
}

@keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0
    }

    65% {
        top: 1.25em;
        right: .9375em;
        width: 0
    }

    84% {
        top: .9375em;
        right: 0;
        width: 1.125em
    }

    100% {
        top: .9375em;
        right: .1875em;
        width: 1.375em
    }
}

@keyframes swal2-show {
    0% {
        transform: scale(.7)
    }

    45% {
        transform: scale(1.05)
    }

    80% {
        transform: scale(.95)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: .0625em;
        width: 0
    }

    54% {
        top: 1.0625em;
        left: .125em;
        width: 0
    }

    70% {
        top: 2.1875em;
        left: -.375em;
        width: 3.125em
    }

    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em
    }

    100% {
        top: 2.8125em;
        left: .8125em;
        width: 1.5625em
    }
}

@keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em
    }

    100% {
        top: 2.375em;
        right: .5em;
        width: 2.9375em
    }
}

@keyframes swal2-rotate-success-circular-line {
    0% {
        transform: rotate(-45deg)
    }

    5% {
        transform: rotate(-45deg)
    }

    12% {
        transform: rotate(-405deg)
    }

    100% {
        transform: rotate(-405deg)
    }
}

@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        transform: scale(.4);
        opacity: 0
    }

    50% {
        margin-top: 1.625em;
        transform: scale(.4);
        opacity: 0
    }

    80% {
        margin-top: -.375em;
        transform: scale(1.15)
    }

    100% {
        margin-top: 0;
        transform: scale(1);
        opacity: 1
    }
}

@keyframes swal2-animate-error-icon {
    0% {
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1
    }
}

@keyframes swal2-rotate-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes swal2-animate-question-mark {
    0% {
        transform: rotateY(-360deg)
    }

    100% {
        transform: rotateY(0)
    }
}

@keyframes swal2-animate-i-mark {
    0% {
        transform: rotateZ(45deg);
        opacity: 0
    }

    25% {
        transform: rotateZ(-25deg);
        opacity: .4
    }

    50% {
        transform: rotateZ(15deg);
        opacity: .8
    }

    75% {
        transform: rotateZ(-5deg);
        opacity: 1
    }

    100% {
        transform: rotateX(0);
        opacity: 1
    }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: hidden
}

body.swal2-height-auto {
    height: auto !important
}

body.swal2-no-backdrop .swal2-container {
    background-color: transparent !important
}

body.swal2-no-backdrop .swal2-container {
    pointer-events: none
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
    pointer-events: all
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4)
}

@media print {
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow-y: scroll !important
    }

    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true] {
        display: none
    }

    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
        position: static !important
    }
}

body.swal2-toast-shown .swal2-container {
    box-sizing: border-box;
    width: 360px;
    max-width: 100%;
    background-color: transparent;
    pointer-events: none
}

body.swal2-toast-shown .swal2-container.swal2-top {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-center {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%)
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto
}
