body.react-confirm-alert-body-element {
    overflow: hidden
}

.react-confirm-alert-blur {
    filter: url(#gaussian-blur);
    filter: blur(2px);
    -webkit-filter: blur(2px)
}

.react-confirm-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: hsla(0,0%,100%,.9);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    opacity: 0;
    animation: react-confirm-alert-fadeIn .5s .2s forwards
}

.react-confirm-alert-body {
    font-family: Arial,Helvetica,sans-serif;
    width: 400px;
    padding: 30px;
    text-align: left;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 75px rgba(0,0,0,.13);
    color: #666
}

.react-confirm-alert-svg {
    position: absolute;
    top: 0;
    left: 0
}

.react-confirm-alert-body>h1 {
    margin-top: 0
}

.react-confirm-alert-body>h3 {
    margin: 0;
    font-size: 16px
}

.react-confirm-alert-button-group {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    margin-top: 20px
}

.react-confirm-alert-button-group>button {
    outline: none;
    background: #333;
    border: none;
    display: inline-block;
    padding: 6px 18px;
    color: #eee;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer
}

@keyframes react-confirm-alert-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev {
    display: none!important
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0,0%,100%,.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translate3d(0,0,var(--toastify-z-index) px);
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width:100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: pointer;
    direction: ltr
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast-body {
    margin: auto 0;
    flex: 1 1 auto;
    padding: 6px;
    display: flex;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    flex: 1
}

.Toastify__toast-icon {
    margin-inline-end:10px;width: 20px;
    flex-shrink: 0;
    display: flex
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: .7s
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: .3s
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom:0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 2px solid;
    border-right: 2px solid var(--toastify-spinner-color);
    animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(110%,0,0)
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-110%,0,0)
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,500px,0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-500px,0)
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

#nprogress {
    pointer-events: none
}

#nprogress .bar {
    background: #29d;
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d,0 0 5px #29d;
    opacity: 1;
    transform: rotate(3deg) translateY(-4px)
}

#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border-color: #29d transparent transparent #29d;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    animation: nprogress-spinner .4s linear infinite
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative
}

.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner {
    position: absolute
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}


@charset "UTF-8";/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
@media (min-width: 640px) {
    .sm\:left-4 {
        left:1rem
    }

    .sm\:right-4 {
        right: 1rem
    }

    .sm\:left-12 {
        left: 3rem
    }

    .sm\:order-2 {
        order: 2
    }

    .sm\:order-1 {
        order: 1
    }

    .sm\:col-span-6 {
        grid-column: span 6/span 6
    }

    .sm\:col-span-11 {
        grid-column: span 11/span 11
    }

    .sm\:col-span-10 {
        grid-column: span 10/span 10
    }

    .sm\:col-span-3 {
        grid-column: span 3/span 3
    }

    .sm\:col-span-9 {
        grid-column: span 9/span 9
    }

    .sm\:col-span-2 {
        grid-column: span 2/span 2
    }

    .sm\:col-span-12 {
        grid-column: span 12/span 12
    }

    .sm\:\!col-start-5 {
        grid-column-start: 5!important
    }

    .sm\:mt-20 {
        margin-top: 5rem
    }

    .sm\:mt-8 {
        margin-top: 2rem
    }

    .sm\:ml-0 {
        margin-left: 0
    }

    .sm\:mt-0 {
        margin-top: 0
    }

    .sm\:mt-12 {
        margin-top: 3rem
    }

    .sm\:mb-0 {
        margin-bottom: 0
    }

    .sm\:mb-4 {
        margin-bottom: 1rem
    }

    .sm\:mt-4 {
        margin-top: 1rem
    }

    .sm\:mr-0 {
        margin-right: 0
    }

    .sm\:mr-2 {
        margin-right: .5rem
    }

    .sm\:mt-6 {
        margin-top: 1.5rem
    }

    .sm\:mb-6 {
        margin-bottom: 1.5rem
    }

    .sm\:mt-3 {
        margin-top: .75rem
    }

    .sm\:mt-10 {
        margin-top: 2.5rem
    }

    .sm\:block {
        display: block
    }

    .sm\:flex {
        display: flex
    }

    .sm\:hidden {
        display: none
    }

    .sm\:h-6 {
        height: 1.5rem
    }

    .sm\:h-\[30px\] {
        height: 30px
    }

    .sm\:h-full {
        height: 100%
    }

    .sm\:h-\[12px\] {
        height: 12px
    }

    .sm\:h-\[32px\] {
        height: 32px
    }

    .sm\:h-\[150px\] {
        height: 150px
    }

    .sm\:w-3\/4 {
        width: 75%
    }

    .sm\:w-3\/5 {
        width: 60%
    }

    .sm\:w-64 {
        width: 16rem
    }

    .sm\:w-\[30px\] {
        width: 30px
    }

    .sm\:w-4\/6 {
        width: 66.666667%
    }

    .sm\:w-full {
        width: 100%
    }

    .sm\:w-11\/12 {
        width: 91.666667%
    }

    .sm\:w-\[150px\] {
        width: 150px
    }

    .sm\:w-\[45\%\] {
        width: 45%
    }

    .sm\:max-w-full {
        max-width: 100%
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .sm\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .sm\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .sm\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:flex-col {
        flex-direction: column
    }

    .sm\:items-start {
        align-items: flex-start
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:justify-center {
        justify-content: center
    }

    .sm\:gap-4 {
        gap: 1rem
    }

    .sm\:gap-3 {
        gap: .75rem
    }

    .sm\:gap-0 {
        gap: 0
    }

    .sm\:gap-x-4 {
        column-gap: 1rem
    }

    .sm\:space-x-0>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0px * var(--tw-space-x-reverse));
        margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)))
    }

    .sm\:space-y-4>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse))
    }

    .sm\:space-y-2>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
    }

    .sm\:p-0 {
        padding: 0
    }

    .sm\:p-4 {
        padding: 1rem
    }

    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .sm\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .sm\:pl-4 {
        padding-left: 1rem
    }

    .sm\:pr-0 {
        padding-right: 0
    }

    .sm\:pt-20 {
        padding-top: 5rem
    }

    .sm\:pb-4 {
        padding-bottom: 1rem
    }

    .sm\:pt-0 {
        padding-top: 0
    }

    .sm\:pt-12 {
        padding-top: 3rem
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media (min-width: 768px) {
    .md\:left-5 {
        left:1.25rem
    }

    .md\:right-5 {
        right: 1.25rem
    }

    .md\:left-12 {
        left: 3rem
    }

    .md\:right-0 {
        right: 0
    }

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

    .md\:col-span-3 {
        grid-column: span 3/span 3
    }

    .md\:col-span-4 {
        grid-column: span 4/span 4
    }

    .md\:col-span-8 {
        grid-column: span 8/span 8
    }

    .md\:col-span-2 {
        grid-column: span 2/span 2
    }

    .md\:col-span-6 {
        grid-column: span 6/span 6
    }

    .md\:\!col-start-5 {
        grid-column-start: 5!important
    }

    .md\:mt-20 {
        margin-top: 5rem
    }

    .md\:mt-8 {
        margin-top: 2rem
    }

    .md\:ml-0 {
        margin-left: 0
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:mb-0 {
        margin-bottom: 0
    }

    .md\:mb-4 {
        margin-bottom: 1rem
    }

    .md\:mt-4 {
        margin-top: 1rem
    }

    .md\:mr-8 {
        margin-right: 2rem
    }

    .md\:mr-2 {
        margin-right: .5rem
    }

    .md\:mt-6 {
        margin-top: 1.5rem
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem
    }

    .md\:mt-10 {
        margin-top: 2.5rem
    }

    .md\:block {
        display: block
    }

    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none
    }

    .md\:h-7 {
        height: 1.75rem
    }

    .md\:h-\[40px\] {
        height: 40px
    }

    .md\:h-full {
        height: 100%
    }

    .md\:h-\[12px\] {
        height: 12px
    }

    .md\:h-\[200px\] {
        height: 200px
    }

    .md\:w-72 {
        width: 18rem
    }

    .md\:w-3\/4 {
        width: 75%
    }

    .md\:w-4\/12 {
        width: 33.333333%
    }

    .md\:w-64 {
        width: 16rem
    }

    .md\:w-\[40px\] {
        width: 40px
    }

    .md\:w-3\/5 {
        width: 60%
    }

    .md\:w-4\/6 {
        width: 66.666667%
    }

    .md\:w-11\/12 {
        width: 91.666667%
    }

    .md\:w-2\/5 {
        width: 40%
    }

    .md\:w-\[200px\] {
        width: 200px
    }

    .md\:w-\[45\%\] {
        width: 45%
    }

    .md\:w-full {
        width: 100%
    }

    .md\:min-w-0 {
        min-width: 0
    }

    .md\:max-w-\[200px\] {
        max-width: 200px
    }

    .md\:flex-shrink-0 {
        flex-shrink: 0
    }

    .md\:flex-grow-0 {
        flex-grow: 0
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .md\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .md\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .md\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .md\:grid-cols-10 {
        grid-template-columns: repeat(10,minmax(0,1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-col {
        flex-direction: column
    }

    .md\:items-center {
        align-items: center
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:justify-center {
        justify-content: center
    }

    .md\:gap-4 {
        gap: 1rem
    }

    .md\:gap-3 {
        gap: .75rem
    }

    .md\:gap-6 {
        gap: 1.5rem
    }

    .md\:gap-0 {
        gap: 0
    }

    .md\:gap-8 {
        gap: 2rem
    }

    .md\:gap-x-6 {
        column-gap: 1.5rem
    }

    .md\:space-x-6>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-x-10>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-y-0>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .md\:space-x-2>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.5rem * var(--tw-space-x-reverse));
        margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-y-2>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
    }

    .md\:p-0 {
        padding: 0
    }

    .md\:p-8 {
        padding: 2rem
    }

    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .md\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .md\:pl-4 {
        padding-left: 1rem
    }

    .md\:pr-0 {
        padding-right: 0
    }

    .md\:pt-20 {
        padding-top: 5rem
    }

    .md\:pb-4 {
        padding-bottom: 1rem
    }

    .md\:pt-0 {
        padding-top: 0
    }

    .md\:pt-12 {
        padding-top: 3rem
    }

    .md\:pt-8 {
        padding-top: 2rem
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media (min-width: 1024px) {
    .lg\:left-5 {
        left:1.25rem
    }

    .lg\:right-5 {
        right: 1.25rem
    }

    .lg\:left-1\/2 {
        left: 50%
    }

    .lg\:right-0 {
        right: 0
    }

    .lg\:order-1 {
        order: 1
    }

    .lg\:order-2 {
        order: 2
    }

    .lg\:col-span-4 {
        grid-column: span 4/span 4
    }

    .lg\:col-span-2 {
        grid-column: span 2/span 2
    }

    .lg\:col-span-3 {
        grid-column: span 3/span 3
    }

    .lg\:col-span-8 {
        grid-column: span 8/span 8
    }

    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }

    .lg\:mt-20 {
        margin-top: 5rem
    }

    .lg\:mt-8 {
        margin-top: 2rem
    }

    .lg\:ml-64 {
        margin-left: 16rem
    }

    .lg\:mt-4 {
        margin-top: 1rem
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:mt-12 {
        margin-top: 3rem
    }

    .lg\:mb-0 {
        margin-bottom: 0
    }

    .lg\:mb-4 {
        margin-bottom: 1rem
    }

    .lg\:mr-8 {
        margin-right: 2rem
    }

    .lg\:mr-2 {
        margin-right: .5rem
    }

    .lg\:mt-6 {
        margin-top: 1.5rem
    }

    .lg\:mb-6 {
        margin-bottom: 1.5rem
    }

    .lg\:mt-10 {
        margin-top: 2.5rem
    }

    .lg\:block {
        display: block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:h-7 {
        height: 1.75rem
    }

    .lg\:h-\[40px\] {
        height: 40px
    }

    .lg\:h-full {
        height: 100%
    }

    .lg\:h-\[12px\] {
        height: 12px
    }

    .lg\:h-\[200px\] {
        height: 200px
    }

    .lg\:w-2\/5 {
        width: 40%
    }

    .lg\:w-4\/12 {
        width: 33.333333%
    }

    .lg\:w-64 {
        width: 16rem
    }

    .lg\:w-\[40px\] {
        width: 40px
    }

    .lg\:w-3\/5 {
        width: 60%
    }

    .lg\:w-3\/4 {
        width: 75%
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:w-1\/2,.lg\:w-3\/6 {
        width: 50%
    }

    .lg\:w-11\/12 {
        width: 91.666667%
    }

    .lg\:w-\[200px\] {
        width: 200px
    }

    .lg\:w-\[45\%\] {
        width: 45%
    }

    .lg\:max-w-\[200px\] {
        max-width: 200px
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .lg\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .lg\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5,minmax(0,1fr))
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6,minmax(0,1fr))
    }

    .lg\:grid-cols-10 {
        grid-template-columns: repeat(10,minmax(0,1fr))
    }

    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:items-center {
        align-items: center
    }

    .lg\:justify-center {
        justify-content: center
    }

    .lg\:gap-6 {
        gap: 1.5rem
    }

    .lg\:gap-3 {
        gap: .75rem
    }

    .lg\:gap-4 {
        gap: 1rem
    }

    .lg\:gap-0 {
        gap: 0
    }

    .lg\:gap-x-10 {
        column-gap: 2.5rem
    }

    .lg\:space-x-6>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-10>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-y-0>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .lg\:space-x-2>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.5rem * var(--tw-space-x-reverse));
        margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:p-0 {
        padding: 0
    }

    .lg\:p-12 {
        padding: 3rem
    }

    .lg\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .lg\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .lg\:pl-4 {
        padding-left: 1rem
    }

    .lg\:pr-0 {
        padding-right: 0
    }

    .lg\:pt-20 {
        padding-top: 5rem
    }

    .lg\:pb-4 {
        padding-bottom: 1rem
    }

    .lg\:pt-0 {
        padding-top: 0
    }

    .lg\:pt-12 {
        padding-top: 3rem
    }

    .lg\:pt-8 {
        padding-top: 2rem
    }

    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

header {
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 999999999;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 5px 5px -7px #989898;
    transition: position 10s
}

.sticky-header>div {
    z-index: 89999!important;
    position: relative
}

header.fixed-header {
    position: fixed;
    width: calc(100% + 15px);
    animation: fixedHeader .3s ease-in;
    top: 0
}

@keyframes fixedHeader {
    0% {
        opacity: 0;
        top: -80px;
        position: relative
    }

    to {
        opacity: .5;
        top: 0;
        position: fixed
    }
}

.logo {
    flex: 0.1
}

.logo,.logo .logo-main {
    -webkit-tap-highlight-color: transparent
}

.logo .logo-main {
    position: relative;
    width: 87.5px;
    height: 50px
}

.logo .logo-main.big {
    height: 75px
}

.logo .logo-main.small {
    position: relative;
    width: 87.5px;
    height: 50px
}

.logo .logo-main.big {
    position: relative;
    width: 120px;
    height: 70px
}

.nav-links {
    flex: 0.8
}

.nav-links.force-mobile:not(.header-icons-main) {
    display: none!important
}

.nav-links.force-mobile+.header-icons-main {
    flex: 1
}

.nav-links.center {
    flex: unset
}

.nav-links ul li {
    padding: 0 15px;
    position: relative
}

.nav-links ul li a.parent {
    color: var(--primary-textColor);
    padding: 2px 0;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg,var(--primary-color),var(--primary-color)) no-repeat 100% 100% /0 1.5px;
    transition: background-size .25s
}

.nav-links ul li a.parent.p-hover:hover {
    color: var(--primary-color)
}

.nav-links ul li a.parent.special-link:hover,.nav-links ul li a.parent:hover {
    background-size: 100% 1.5px;
    background-position-x: left
}

header.fixed-header .nav-links .nav-links-sub-main {
    padding: 15px;
    position: fixed;
    top: 70px;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    background: #fff;
    z-index: 999;
    min-width: 160px;
    transition: all .3s;
    margin-top: -20px;
    height: 0;
    overflow: hidden
}

header.fixed-header .nav-links .nav-links-sub-main.active {
    visibility: visible!important;
    opacity: 1!important;
    box-shadow: 1px 1px 3px 0 #dcdcdc;
    margin-top: 0;
    height: unset;
    overflow: unset
}

header.header .nav-links .announcement-show.nav-links-sub-main {
    padding: 16px;
    position: absolute;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    background: #fff;
    z-index: 999;
    min-width: 160px;
    transition: all .3s;
    margin-top: -20px;
    height: 0;
    overflow: hidden;
    border-top: 0 solid #eee
}

header.header .nav-links .announcement-show.nav-links-sub-main.active {
    visibility: visible!important;
    opacity: 1!important;
    box-shadow: 1px 1px 3px 0 #dcdcdc;
    margin-top: 0;
    border-top: 1px solid #eee;
    height: unset;
    overflow: unset
}

header.header .nav-links .announcement-hide.nav-links-sub-main {
    padding: 15px;
    position: absolute;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    background: #fff;
    z-index: 999;
    min-width: 160px;
    transition: all .3s;
    margin-top: -20px;
    height: 0;
    overflow: hidden
}

header.header .nav-links .announcement-hide.nav-links-sub-main.active {
    visibility: visible!important;
    opacity: 1!important;
    box-shadow: 1px 1px 3px 0 #dcdcdc;
    margin-top: 0;
    height: unset;
    overflow: unset
}

.nav-links .nav-links-sub-main ul.children-links {
    line-height: 40px
}

.nav-links .nav-links-sub-main a.sub-link {
    color: var(--primary-textColor);
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 19px
}

.nav-links .nav-links-sub-main div.sub-main-div:not(:last-child) {
    padding-bottom: 8px;
    position: relative;
    min-width: 130px
}

.nav-links .nav-links-sub-main a.sub-link.p-hover:hover {
    color: var(--primary-color)
}

.nav-links .nav-links-sub-main ul.children-links li a.sub-link.active {
    color: var(--primary-color)!important;
    font-size: 16px;
    font-weight: 900
}

.nav-links .nav-links-sub-main ul.children-links li:hover .sub-link-icon {
    display: flex
}

.nav-links .nav-links-sub-main ul.children-links li .sub-link-icon {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    display: none
}

.nav-links .nav-links-sub-main ul.children-links li .sub-link-icon.active {
    display: flex
}

.nav-links .nav-links-sub-main ul li a.sub-link-deep {
    color: var(--primary-textColor);
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    display: flex;
    white-space: nowrap
}

.nav-links .nav-links-sub-main ul li a.sub-link-deep.p-hover:hover {
    color: var(--primary-color)
}

.header-icons-main {
    flex: 0.1
}

.header-icons-main.same-line-icons {
    position: absolute;
    top: 45px
}

.header-icons-main.center {
    flex: 1!important
}

.header-icons-main ul li {
    cursor: pointer;
    margin-left: 20px;
    padding: 0;
    z-index: 2
}

.overflow-links li {
    cursor: pointer;
    margin-left: 0!important;
    padding: 0 15px!important
}

.header-icons-main ul li.basket-bag span,.header-icons-main ul li.favorite span {
    position: absolute;
    background-color: var(--primary-color);
    display: flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px
}

.mobile-menu {
    width: 40px;
    display: none
}

.mobile-menu.force-mobile {
    display: flex!important
}

.search-wrapper {
    background-color: #fff;
    width: 100%;
    height: 65%;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999999999;
    padding: 20px;
    transition: .2s;
    display: none;
    overflow-y: auto
}

.search-wrapper.active {
    display: block
}

.search-wrapper .search-input {
    width: 100%;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    background-color: #fbfbfb;
    border: 1px solid #b1b1b1!important;
    padding: 10px 47px;
    border-radius: 0;
    color: #232323
}

.search-wrapper .search-input.rounded {
    border-radius: 100px!important
}

.search-wrapper .overlay-search-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #232323!important;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center
}

.search-wrapper .overlay-delete-icon:hover,.search-wrapper .overlay-search-icon:hover {
    color: #5a5a5a!important
}

.search-wrapper .overlay-delete-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: transparent;
    border-radius: 50%
}

.search-wrapper .overlay-close-icon,.search-wrapper .overlay-delete-icon {
    color: #333!important;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center
}

.search-wrapper .overlay-close-icon {
    background-color: #f5f5f5
}

.search-wrapper .overlay-close-icon.rounded {
    border-radius: 50%!important
}

.search-wrapper .overlay-close-icon:hover {
    background-color: #ededed
}

.search-wrapper .search-input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #585858!important
}

.search-wrapper .search-input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #585858!important
}

.header-search-bg-overlay {
    position: fixed;
    height: 100%;
    background: hsla(0,0%,7%,.36);
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 65%;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.locale-change-bar {
    display: flex;
    align-items: center;
    justify-content: center
}

.locale-bar-main {
    background-color: #444;
    color: #fff;
    display: flex;
    height: 70px;
    padding: 0 20px;
    align-items: center
}

.locale-change-description {
    width: 35%;
    font-size: 13px;
    margin-right: 20px
}

#locale-select {
    color: #fff;
    width: 200px;
    background: #6b6b6b!important;
    border: 1px solid #8c8c8c;
    border-radius: 4px
}

#locale-select,#locale-select-modal {
    padding: 5px;
    margin-right: 20px;
    outline: none
}

#locale-select-modal {
    color: #333;
    width: 235px;
    background: #fff!important;
    border: 1px solid #333;
    border-radius: 4px;
    height: 42px
}

.locale-change-btn,.locale-change-btn-modal {
    background-color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 4px;
    border: 1px solid #6b6b6b;
    cursor: pointer;
    transition: all .3s
}

.locale-change-btn-modal {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 250px);
    height: 42px
}

.locale-change-btn-modal:hover,.locale-change-btn:hover {
    background-color: var(--primary-hoverColor)
}

.locale-change-close-btn {
    margin-left: 30px;
    cursor: pointer
}

.locale-select-main {
    display: flex;
    flex-direction: row
}

.subdeep-child {
    position: absolute;
    left: 100%;
    background: #fff;
    padding: 16px;
    margin-top: -38px;
    box-shadow: 1px 1px 3px 0 #dcdcdc;
    min-width: 140px;
    transition: all .3s;
    z-index: 1
}

.subdeep-child.active {
    opacity: 1;
    visibility: visible;
    margin-left: 0
}

.subdeep-child.passive {
    opacity: 0;
    visibility: hidden;
    margin-left: -10px
}

.sub-link-deep-active {
    background-color: #d8d8d8
}

.cookie-bar {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 9999;
    width: 300px;
    padding: 15px;
    bottom: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,.12);
    right: 30px;
    opacity: .86;
    font-size: 14px;
    background-color: rgba(0,0,0,.85)!important
}

.cookie-bar.is-left {
    right: unset;
    left: 30px
}

.banner,.cookie-close {
    color: #fff;
    display: flex
}

.banner {
    background-color: var(--primary-color);
    align-items: center;
    justify-content: center;
    padding: 14px 0
}

.search-results-container::-webkit-scrollbar,header.header .nav-links .announcement-show.nav-links-sub-main.active::-webkit-scrollbar {
    width: 3px
}

.search-results-container::-webkit-scrollbar-track,header.header .nav-links .announcement-show.nav-links-sub-main.active::-webkit-scrollbar-track {
    background: #f1f1f1
}

.search-results-container::-webkit-scrollbar-thumb,header.header .nav-links .announcement-show.nav-links-sub-main.active::-webkit-scrollbar-thumb {
    background: #888
}

.search-results-container::-webkit-scrollbar-thumb:hover,header.header .nav-links .announcement-show.nav-links-sub-main.active::-webkit-scrollbar-thumb:hover {
    background: #555
}

.locale-flag {
    width: 60px;
    height: 60px
}

.slider-banner {
    text-align: center;
    padding: 10px 0
}

.placeholder-flag {
    width: 65px;
    height: 65px
}

.placeholder-country-name,.placeholder-flag {
    background: #f6f7f8;
    background-image: linear-gradient(90deg,#f6f7f8 0,#edeef1 20%,#f6f7f8 40%,#f6f7f8);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    margin-bottom: 12px;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear
}

.placeholder-country-name {
    width: 200px;
    height: 12px
}

@keyframes placeholderShimmer {
    0% {
        background-position: -468px 0
    }

    to {
        background-position: 468px 0
    }
}

.announcement-text {
    letter-spacing: .04em;
    font-size: 12px
}

.announcement-text.uppercase {
    text-transform: uppercase
}

.language-select-main {
    position: absolute;
    top: 35px;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 5px 20px -1px rgb(0 0 0/6%);
    right: 0;
    border: 1px solid #f6f6f6;
    min-width: 200px
}

.language-select {
    background-color: #f3f3f3;
    border: 0;
    color: #3a3a3a
}

.language-name {
    font-size: 14px
}

.fast-link,.fast-link-main a {
    width: 49%!important;
    font-size: 13px;
    display: flex
}

.fast-link-main a {
    justify-content: center;
    text-align: center;
    font-weight: 500;
    white-space: nowrap
}

.sub-link span:first-child {
    flex: 1
}

.link-bottom-icons-search-bar {
    border: 1px solid #f6f6f6;
    border-radius: 35px;
    width: 300px;
    background-color: #fafafa;
    height: 100%;
    padding-right: 20px;
    font-size: 12px;
    padding-left: 40px;
    outline: none;
    height: 35px
}

.to-top-button {
    position: fixed;
    bottom: 50px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 1px 0 4px 1px #ededed;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all .3s
}

.to-top-button.active {
    bottom: 100px;
    visibility: visible;
    opacity: 1
}

.transparent-header {
    position: absolute;
    background-color: transparent!important
}

.sticky .transparent-header:not(.__sticky_announcement) {
    top: 0!important
}

.mega-menu-main {
    padding: 48px 24px;
    visibility: hidden;
    opacity: 0;
    top: 80px;
    transition: all .3s
}

.mega-menu-main.active {
    visibility: visible;
    opacity: 1;
    border-top: 1px solid #f1f1f1
}

.sticky .transparent-header-fast-links-main {
    top: 60px!important
}

.nav-links.force-mobile .overflow-links {
    visibility: hidden
}

#helper-bar-main {
    position: relative;
    z-index: 99990
}

.home-slider-main .slick-dots {
    position: absolute;
    bottom: 15px
}

.home-slider-main .slick-dots>li {
    margin: 0 .5rem!important;
    width: unset!important;
    height: unset!important
}

.home-slider-main .slick-dots>li>button {
    width: 8px;
    height: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
    border-radius: 50%;
    background-color: #fff;
    padding: 0;
    display: block;
    margin-bottom: .5rem;
    transition: all .2s ease-in-out
}

.home-slider-main .slick-dots>li.slick-active>button {
    background-color: var(--primary-color)!important;
    width: 2rem;
    border-radius: 10rem;
    background-color: #fff
}

.home-slider-main .slick-arrow.slick-prev {
    left: 3%!important;
    z-index: 2;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    transition: all .3s
}

.home-slider-main .slick-arrow.slick-next {
    right: 3%!important;
    z-index: 2;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    transition: all .3s
}

.home-slider-main .slick-arrow.slick-next.with-bg,.home-slider-main .slick-arrow.slick-prev.with-bg {
    border: 0!important;
    background-color: var(--primary-color);
    border-radius: 4px
}

.home-slider-main .slick-arrow.slick-next.with-bg:not(.arrow-color) svg,.home-slider-main .slick-arrow.slick-prev.with-bg:not(.arrow-color) svg {
    color: #fff!important
}

.home-slider-main .slick-arrow.slick-next:hover,.home-slider-main .slick-arrow.slick-prev:hover {
    background-color: #efefef
}

.home-slider-main .slick-arrow.slick-next.with-bg:hover,.home-slider-main .slick-arrow.slick-prev.with-bg:hover {
    background-color: var(--primary-color)
}

.home-slider-main .slick-arrow {
    display: flex!important;
    justify-content: center!important;
    align-items: center!important
}

.home-slider-main .slick-prev:before,
.home-slider-main .slick-next:before {
    font-size: 28px !important;
    color: #000 !important;
    opacity: 1 !important;
    font-family: Arial, sans-serif !important;
}

.home-slider-main .slick-prev:before {
    content: "‹" !important;
}

.home-slider-main .slick-next:before {
    content: "›" !important;
}

.home-slider-main .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 2
}

.home-slider-main .slider-content.left.top {
    top: 10%;
    transform: unset
}

.home-slider-main .slider-content.left.top,.home-slider-main .slider-content.left.v-center {
    position: absolute;
    left: 10%;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%;
    right: unset
}

.home-slider-main .slider-content.left.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.home-slider-main .slider-content.left.bottom {
    position: absolute;
    bottom: 10%;
    left: 10%;
    transform: unset;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%;
    top: unset;
    right: unset
}

.home-slider-main .slider-content.center.v-center {
    top: 50%;
    transform: translate(-50%,-50%)
}

.home-slider-main .slider-content.center.bottom,.home-slider-main .slider-content.center.v-center {
    position: absolute;
    left: 50%;
    text-align: center;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.home-slider-main .slider-content.center.bottom {
    bottom: 10%;
    top: unset;
    transform: translateX(-50%)
}

.home-slider-main .slider-content.center.top {
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}

.home-slider-main .slider-content.center.top,.home-slider-main .slider-content.right.top {
    position: absolute;
    top: 10%;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.home-slider-main .slider-content.right.top {
    right: 10%;
    left: unset;
    transform: unset;
    text-align: right
}

.home-slider-main .slider-content.right.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.home-slider-main .slider-content.right.bottom,.home-slider-main .slider-content.right.v-center {
    position: absolute;
    left: unset;
    right: 10%;
    text-align: right;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.home-slider-main .slider-content.right.bottom {
    bottom: 10%;
    transform: unset;
    top: unset
}

.home-slider-main .slider-content h1 {
    color: #fff;
    font-size: 6vh;
    font-weight: 900;
    line-height: 75px
}

.home-slider-main .slider-content p {
    color: #fff;
    font-size: 3vh;
    font-weight: 900;
    line-height: 45px
}

.home-slider-main .slider-content a {
    color: #000;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    min-width: 195px;
    transition: all .3s;
    display: inline-block;
    text-align: center!important;
    letter-spacing: .05em
}

.home-slider-main .slider-content a.transparent__ {
    background-color: #00000000!important
}

.home-slider-main .slider-content a:hover {
    color: #fff;
    background-color: var(--primary-color)
}

.home-slider-main .slider-grid-main {
    display: grid!important;
    grid-template-columns: repeat(9,1fr);
    grid-template-rows: repeat(10,4.5vw)
}

.home-slider-main .slider-grid-main .slider-grid {
    grid-column-start: 1;
    grid-column-end: 10;
    grid-row-start: 1;
    grid-row-end: 11;
    height: 100%;
    position: relative
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
    z-index: 1
}

.mobile-image-slider {
    display: none
}

.home__slider__swiper__arrow {
    z-index: 2;
    border: 2px solid #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home__slider__swiper__arrow.with-bg {
    border: 0!important;
    background-color: var(--primary-color);
    border-radius: 4px
}

.home__slider__swiper__arrow.with-bg:not(.custom-arrows) svg {
    color: #fff!important
}

.category-image-slider-main .slick-dots {
    position: absolute;
    bottom: 30px
}

.category-image-slider-main .slick-dots>li {
    margin: 0 .5rem!important;
    width: unset!important;
    height: unset!important
}

.category-image-slider-main .slick-dots>li>button {
    width: 8px;
    height: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
    border-radius: 50%;
    background-color: silver;
    padding: 0;
    display: block;
    margin-bottom: .5rem;
    transition: all .2s ease-in-out
}

.category-image-slider-main .slick-dots>li.slick-active>button {
    background-color: var(--primary-color)!important;
    width: 2rem;
    border-radius: 10rem;
    background-color: #fff
}

.category-image-banner-main .category-image-banner-title {
    position: absolute;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    width: 95%;
    text-align: center
}

.category-image-banner-main .category-image-banner-title.outside {
    position: relative;
    bottom: unset;
    display: flex;
    top: unset;
    flex-direction: column;
    left: unset;
    transform: unset;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 16px
}

.category-image-banner-main img {
    transition: all .4s;
    overflow: hidden
}

.category-image-banner-main:hover img.is-scalable {
    transform: scale(1.1);
    overflow: hidden
}

.category-image-banner-main .category-image-banner-title :is(h1,h2,h3,h4,h5,h6).title,.category-image-banner-main .category-image-banner-title span.title {
    font-size: 2rem;
    color: #fff;
    font-weight: 900
}

.category-image-banner-main .category-image-banner-title .sub-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 700
}

.category-image-banner-main .category-image-banner-title-grid span.title {
    font-size: 2rem;
    color: #fff;
    font-weight: 900
}

.category-image-banner-main .category-image-banner-title-grid span.title.small {
    font-size: 1rem
}

.category-image-banner-main .category-image-banner-title-grid span.title.medium {
    font-size: 1.5rem
}

.category-image-banner-main .category-image-banner-title-grid span.title.large {
    font-size: 2rem
}

.category-image-banner-main .category-image-banner-title-grid .sub-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 700
}

.category-image-banner-main .category-image-banner-title-grid .sub-text.small {
    font-size: .4rem
}

.category-image-banner-main .category-image-banner-title-grid .sub-text.medium {
    font-size: .8rem
}

.category-image-banner-main .category-image-banner-title-grid .sub-text.large {
    font-size: 1rem
}

.category-image-banner-main .category-image-banner-title-grid {
    position: absolute;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    white-space: normal;
    width: 90%
}

.category-image-banner-main .category-image-banner-title .link {
    color: #000;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background-color: #fff;
    margin-top: 10px;
    min-width: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    letter-spacing: .05em
}

.category-image-banner-main .category-image-banner-title .link:hover {
    color: #fff;
    background-color: var(--primary-color)
}

.category-image-slider-main .slick-slide>div {
    padding: 0 5px
}

.outside-swiper .swiper-pagination-bullets {
    left: 0;
    width: 100%
}

.overlay-category-drawer-main .basket-bag span {
    position: absolute;
    background-color: var(--primary-color);
    display: flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px
}

.overlay-category-drawer-main .account-links a:first-child {
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 0 10px;
    margin-left: 25px;
    font-size: 14px;
    display: flex;
    align-items: center
}

.overlay-category-drawer-main .account-links a:nth-child(3) {
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 14px;
    display: flex;
    align-items: center
}

.overlay-category-drawer-main span.close {
    position: absolute;
    top: 17px;
    left: 15px
}

.overlay-category-drawer-main .account-links a.logout {
    font-weight: 900;
    color: #ec3434;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 14px;
    margin-left: 25px;
    display: flex;
    align-items: center
}

.overlay-category-drawer-main .drawer-top {
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    height: 61px
}

.overlay-category-drawer-main .overlay-category-links {
    padding: 20px
}

.overlay-category-drawer-main .overlay-category-links .children li {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.overlay-category-drawer-main .overlay-category-links .children li a {
    margin-right: 15px
}

.deep-children li {
    margin-top: 20px
}

.deep-children li a.deep-children-link {
    font-weight: 900;
    margin-right: 15px
}

.products-slider-main .products-slider-title :is(h1,h2,h3,h4,h5,h6,p) {
    font-size: 2.2rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 20px;
    padding: 0 10px
}

.products-slider-main .products-slider-image {
    -o-object-fit: contain;
    object-fit: contain
}

.products-slider-main .products-slider-image:not(.remove-bg) {
    background-color: #fff
}

.products-slider-main .products-slider-info-main .brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.products-slider-main .products-slider-info-main .product-name {
    color: #000;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px
}

.products-slider-main .products-slider-info-main .product-name.full-name {
    text-overflow: unset;
    white-space: unset;
    overflow: unset
}

.products-slider-main .products-slider-info-main .variant {
    font-size: 13px;
    height: 20px;
    color: var(--primary-color)
}

.products-slider-main .products-slider-info-main .price-main {
    font-weight: 900;
    font-size: 18px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    margin-top: 10px
}

.products-slider-main .products-slider-info-main .price-main .discount-percent {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    font-weight: 900
}

.products-slider-main .products-slider-info-main .price-main .discount-price span:first-child {
    text-decoration: line-through;
    color: var(--line-throughColor);
    font-size: 16px;
    font-weight: 400!important;
    line-height: 15px
}

.products-slider-main .slick-arrow.slick-prev {
    left: 10px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-100%)
}

.products-slider-main .slick-arrow.slick-next {
    right: 10px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-100%)
}

.products-slider-main .slick-arrow {
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: all .3s
}

.products-slider-main:hover .slick-arrow {
    display: flex!important;
    margin-top: 0;
    opacity: 1;
    visibility: visible
}

.products-slider-main .slick-arrow.slick-next:hover,.products-slider-main .slick-arrow.slick-prev:hover {
    background-color: #efefef
}

.products-slider-main .slick-arrow.slick-next.with-bg,.products-slider-main .slick-arrow.slick-prev.with-bg {
    border: 0!important;
    background-color: var(--primary-color);
    border-radius: 4px
}

.products-slider-main .slick-arrow.slick-next.with-bg:not(.arrow-color) svg,.products-slider-main .slick-arrow.slick-prev.with-bg:not(.arrow-color) svg {
    color: #fff!important
}

.products-slider-main .slick-arrow.slick-next.with-bg:hover,.products-slider-main .slick-arrow.slick-prev.with-bg:hover {
    background-color: var(--primary-color)
}

.products-slider-main .slick-next:before,.products-slider-main .slick-prev:before {
    content: ""!important
}

.stock-status {
    position: absolute;
    z-index: 2;
    background-color: hsla(0,0%,95%,.53);
    width: 100%;
    height: 100%
}

.free-shipping-label span,.stock-status span {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px;
    font-size: 12px;
    letter-spacing: .05em
}

.free-shipping-label span {
    z-index: 2
}

.component-render .products-slider-main .products-slider-info-main .price-main .discount-price span:first-child {
    font-size: 12px
}

.component-render .products-slider-main .products-slider-info-main .price-main .discount-price span:nth-child(2) {
    font-size: 14px;
    white-space: nowrap
}

.component-render .products-slider-main .slick-arrow.slick-next,.component-render .products-slider-main .slick-arrow.slick-prev {
    width: 30px;
    height: 30px
}

.component-render .products-slider-main {
    padding: 0!important
}

.overlay-hover {
    width: 90%!important;
    left: 5%;
    visibility: hidden;
    opacity: 0;
    bottom: .5rem!important;
    transition: all .3s!important
}

.product-container:not(.mobile):hover .overlay-hover {
    bottom: 1rem!important;
    visibility: visible;
    opacity: 1
}

.product-container:not(.mobile):hover .overlay-hover.hide {
    display: none!important;
    visibility: hidden!important;
    opacity: 0!important
}

.product-slider-video-container video {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.border-effect:hover {
    box-shadow: 0 0 10px 0 rgba(40,40,40,.3);
    transition: box-shadow .3s
}

.hero-image-banner-main {
    background-image: linear-gradient(to top,#fff 20%,var(--primary-color) 20%);
    padding-bottom: 30px
}

.hero-image-banner-main h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff
}

.hero-image-main .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%
}

.hero-image-main .content.left.top {
    top: 10%;
    transform: unset
}

.hero-image-main .content.left.top,.hero-image-main .content.left.v-center {
    position: absolute;
    left: 10%;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 90%;
    right: unset
}

.hero-image-main .content.left.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.hero-image-main .content.left.bottom {
    position: absolute;
    bottom: 10%;
    left: 10%;
    transform: unset;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 90%;
    top: unset;
    right: unset
}

.hero-image-main .content.center.v-center {
    top: 50%;
    transform: translate(-50%,-50%)
}

.hero-image-main .content.center.bottom,.hero-image-main .content.center.v-center {
    position: absolute;
    left: 50%;
    text-align: center;
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 90%
}

.hero-image-main .content.center.bottom {
    bottom: 10%;
    top: unset;
    transform: translateX(-50%)
}

.hero-image-main .content.center.top {
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}

.hero-image-main .content.center.top,.hero-image-main .content.right.top {
    position: absolute;
    top: 10%;
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 90%
}

.hero-image-main .content.right.top {
    right: 10%;
    left: unset;
    transform: unset;
    text-align: right
}

.hero-image-main .content.right.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.hero-image-main .content.right.bottom,.hero-image-main .content.right.v-center {
    position: absolute;
    left: unset;
    right: 10%;
    text-align: right;
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 90%
}

.hero-image-main .content.right.bottom {
    bottom: 10%;
    transform: unset;
    top: unset
}

.hero-image-main .content h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900
}

.hero-image-main .content a {
    color: #000;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background-color: #fff;
    margin-top: 20px;
    transition: all .3s;
    min-width: 195px;
    letter-spacing: .05em
}

.hero-image-main .content a:hover {
    color: #fff;
    background-color: var(--primary-color)
}

.features .feature {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center
}

.features .feature span:nth-child(2) {
    margin-top: 15px;
    font-size: 14px
}

.features .feature span:nth-child(3) {
    margin-top: 6px;
    font-size: 14px
}

.features .feature span:first-child {
    color: #333
}

.features .feature .features-image {
    width: 35px;
    height: 35px
}

.features .feature .features-big-image {
    width: 70px;
    height: 70px
}

.features .feature .features-big-image img {
    width: 70px!important;
    height: 70px!important
}

.features .feature .features-image img {
    width: 35px!important;
    height: 35px!important
}

.gallery {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: repeat(8,5vw);
    grid-gap: 1.5rem
}

.gallery img {
    width: 100%!important;
    height: 100%!important;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: all .3s
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 5;
    height: 100%;
    position: relative
}

.gallery__item--1.enabled-zoom:hover img,.gallery__item--2.enabled-zoom:hover img,.gallery__item--3.enabled-zoom:hover img,.gallery__item--4.enabled-zoom:hover img {
    transform: scale(1.1)
}

.gallery__item--2 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 9;
    height: 100%;
    position: relative
}

.gallery__item--3 {
    grid-column-start: 1;
    grid-column-end: 3
}

.gallery__item--3,.gallery__item--4 {
    grid-row-start: 5;
    grid-row-end: 9;
    height: 100%;
    position: relative
}

.gallery__item--4 {
    grid-column-start: 3;
    grid-column-end: 5
}

.gallery__item--1.three-layout {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 9;
    height: 100%;
    position: relative
}

.gallery__item--2.three-layout {
    grid-row-start: 1;
    grid-row-end: 5
}

.gallery__item--2.three-layout,.gallery__item--3.three-layout {
    grid-column-start: 5;
    grid-column-end: 9;
    height: 100%;
    position: relative
}

.gallery__item--3.three-layout {
    grid-row-start: 5;
    grid-row-end: 9
}

footer .footer-title {
    font-size: 18px;
    padding: 10px 0;
    font-weight: 600
}

footer .footer-links li {
    margin-bottom: 10px
}

footer .footer-links li a {
    font-size: 14px;
    color: var(--primary-linkColor);
    transition: all .3s
}

footer .footer-links a:hover {
    color: var(--primary-color);
    margin-left: 2px
}

footer .footer-copyright {
    background-color: var(--primary-color);
    margin-top: 30px;
    padding: 20px 0;
    font-size: 13px;
    color: #fff
}

footer .footer-links {
    transition: all .3s
}

footer .footer-links.hide {
    display: none;
    height: 0
}

footer .footer-links.active {
    overflow: auto;
    height: auto!important;
    display: block
}

footer .mobile-footer {
    display: none!important
}

footer .footer-img {
    width: 100px;
    height: 50px
}

.footer-logo {
    width: 87.5px;
    height: 50px
}

footer .social-links li {
    margin-right: 24px;
    transition: all .3s
}

footer .social-links li:hover {
    transform: scale(1.2)
}

footer .social-links li a {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    align-items: center;
    color: var(--primary-color)
}

footer .social-links li a:hover {
    color: var(--primary-hoverColor)!important
}

.footer-right-container {
    padding: 10px 0
}

.payment-cards-main {
    height: 1.5rem
}

.payment-cards-main img {
    height: 1.5rem;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.rtl-grid {
    direction: rtl
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cart-drawer-header .title {
    letter-spacing: .05em
}

.cart-drawer-checkout {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7px 20px;
    font-weight: 700;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 15px
}

.cart-drawer-checkout:hover {
    background-color: var(--primary-hoverColor)
}

.cart-item-name {
    width: 85%;
    display: block;
    margin-bottom: 5px
}

.cart-drawer-variant,.cart-item-name {
    color: var(--primary-textColor);
    font-size: 14px
}

.cart-drawer-variant {
    margin: 3px 0;
    display: flex;
    flex-wrap: wrap
}

.cart-drawer-variant .variant-type {
    color: var(--primary-linkColor);
    margin-right: 5px;
    font-size: 13px
}

.cart-drawer-variant .variant-name {
    margin-right: 20px;
    font-size: 13px
}

.empty-basket-button {
    background-color: var(--primary-color)!important;
    font-size: 16px;
    color: #fff;
    font-weight: 700!important;
    margin-top: 10px;
    transition: all .3s
}

.empty-basket-button:hover {
    background-color: var(--primary-hoverColor)!important
}

.checkout-button {
    background-color: var(--primary-color)!important;
    font-size: 16px;
    color: #fff;
    font-weight: 700!important;
    margin-bottom: 10px
}

.checkout-button:hover {
    background-color: var(--primary-hoverColor)!important
}

.checkout-btn-main {
    z-index: 999999999;
    transition: all .3s
}

.z-max {
    z-index: 99999999999999
}

.checkout-btn-main:hover {
    background-color: var(--primary-hoverColor)!important
}

.checkout-btn-main .basket-link {
    font-weight: 900
}

.cart-drawer-brand-name {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 13px!important
}

.payment-link {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #232323;
    font-size: 14px;
    letter-spacing: .05em;
    cursor: pointer;
    font-weight: 600
}

.product-bundle-box {
    transition: all .2s
}

.product-bundle-box.passive {
    visibility: hidden;
    opacity: 0;
    max-height: 0
}

.product-bundle-box.active {
    visibility: visible;
    opacity: 1;
    max-height: 1000px
}

.cart__drawer__image {
    width: 64px!important;
    height: 64px!important;
    flex-shrink: 0!important;
    position: relative!important
}

.product-detail-page-slider {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: repeat(8,3vw);
    grid-gap: 5px
}

.crosshair {
    cursor: crosshair
}

.product-detail-page-slider .variant-images-small {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 9;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    height: 90%!important
}

.product-detail-page-slider .variant-images-large {
    grid-column-start: 2;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 9;
    width: 100%
}

.product-detail-page-slider .variant-images-large-modal {
    grid-column-start: 1!important;
    grid-column-end: 9!important;
    grid-row-start: 1!important;
    grid-row-end: 9!important;
    width: 100%
}

.product-detail-page-slider .variant-images-small .small-images-main {
    margin-bottom: 10px!important;
    padding-bottom: 10px!important;
    width: 50%
}

.product-detail-page-slider .variant-images-small .small-images-main.active-image {
    border-bottom: 2px solid var(--primary-color)
}

.product-detail-page-detail-box .product-name-main .brand-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color)
}

.product-detail-page-detail-box .product-name-main .product-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-textColor)
}

.product-detail-page-detail-box span.add-favorite-basket {
    color: var(--primary-color)
}

.product-detail-page-detail-categories .categories-detail {
    margin-bottom: 16px;
    display: flex;
    font-size: 13px
}

.product-detail-page-detail-categories .categories-detail span:first-child {
    display: flex;
    color: var(--prefix-color);
    font-weight: 500
}

.product-detail-page-detail-categories .categories-detail span:nth-child(2) {
    color: var(--prefix-color);
    font-weight: 500;
    margin-left: 5px
}

.product-detail-page-buy-box .add-to-cart {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 3.5rem;
    letter-spacing: .05em;
    font-weight: 900;
    cursor: pointer;
    transition: all .3s
}

.product-detail-page-buy-box .add-to-cart.out-of-stock {
    background-color: #ececec;
    display: flex;
    align-items: center;
    color: #383838;
    justify-content: center;
    font-weight: 900;
    cursor: pointer!important
}

.product-detail-page-buy-box .add-to-cart.stock.loading {
    background-color: #ececec;
    display: flex;
    align-items: center;
    color: #383838;
    justify-content: center;
    font-weight: 900;
    cursor: progress!important
}

.tiered-discount-add-button.loading {
    background-color: #ececec!important;
    color: #383838!important;
    cursor: progress!important
}

.product-detail-page-buy-box .add-to-cart:hover {
    background-color: var(--primary-hoverColor)
}

.product-detail-page-buy-box .buy-now {
    background-color: var(--primary-textColor);
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    border-radius: 10rem;
    height: 3.5rem;
    font-weight: 700;
    cursor: pointer
}

.product-detail-page-buy-box .add-to-cart.disabled {
    background-color: #ececec!important;
    display: flex;
    align-items: center;
    color: #383838!important;
    justify-content: center;
    font-weight: 900;
    cursor: not-allowed
}

.product-detail-page-buy-box .buy-now:hover {
    background-color: var(--primary-color)
}

.product-detail-page-buy-box .quantity-box {
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--primary-color);
    justify-content: center;
    border-radius: 10rem;
    height: 3.5rem;
    width: 100%;
    font-weight: 700
}

.product-detail-page-buy-box .quantity-box .quantity-box-minus {
    font-weight: 700
}

.product-detail-page-buy-box .quantity-box .quantity-box-minus,.product-detail-page-buy-box .quantity-box .quantity-box-plus {
    justify-content: center;
    align-items: center;
    width: 25%;
    display: flex;
    color: var(--primary-textColor);
    cursor: pointer
}

.product-detail-page-buy-box .quantity-box input {
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-weight: 700;
    font-size: 20px
}

.product-detail-page-buy-box .quantity-box input:focus {
    outline: none
}

.product-detail-page-tabs .tab {
    display: flex;
    cursor: pointer;
    font-size: 14px
}

.product-detail-page-tabs .tab:hover .title {
    text-decoration: underline
}

.product-detail-page-tabs .tab.active {
    padding: 0 10px;
    border-radius: 40px;
    border: 2px solid var(--primary-color)!important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    cursor: pointer;
    color: var(--primary-color)!important
}

.product-detail-page-tabs .tab-content {
    color: var(--primary-textColor);
    font-size: 13px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 15px;
    font-weight: 400!important;
    cursor: default
}

.product-detail-page-easy-refund {
    padding: 10px 0;
    align-items: center;
    display: flex
}

.product-detail-page-easy-refund .easy-refund {
    display: flex;
    align-items: center
}

.product-detail-page-easy-refund .easy-refund .easy-refund-image {
    margin-right: 15px
}

.product-detail-page-easy-refund .easy-refund span:nth-child(2) {
    font-weight: 400;
    font-size: 13px;
    width: 60%
}

.product-detail-page-easy-refund .easy-refund span.single-line:nth-child(2) {
    width: 90%
}

.product-detail-page-slider {
    height: 700px
}

.product-detail-page-slider-modal {
    height: 500px
}

.product-detail-page-variants .selected-circle {
    background-color: var(--primary-color)!important
}

.product-detail-page-variants .first-image-circle,.product-detail-page-variants .selected-circle {
    border: 1px solid var(--primary-color)!important;
    color: #fff
}

.product-detail-page-variants .selected-circle span.variant-name {
    color: var(--primary-variantSelectedNameColor)!important
}

.product-detail-page-variants .variant-types {
    border: 1px solid var(--border-color);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-detail-page-variants .variant-types:hover {
    border: 1px solid var(--primary-color)
}

.product-detail-page-variants .variant-name {
    color: var(--primary-variantNameColor);
    font-weight: 700;
    font-size: 14px
}

.variant-type {
    font-size: 14px
}

.variant-color__name,.variant-type {
    color: var(--variantTitleColor)
}

.primary-border {
    border: 1px solid var(--primary-color)!important
}

.secondary-border {
    border: 1px solid var(--border-color)
}

.secondary-border:hover {
    border: 1px solid var(--primary-color)!important
}

.product-detail-page-detail-price-box .price-main {
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: flex-end;
    margin-top: 10px
}

.product-detail-page-detail-price-box .price-main .discount-percent {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    font-weight: 900
}

.product-detail-page-detail-price-box .price-main .discount-percent.category-page-discount-percent {
    background-color: var(--primary-color)
}

.product-detail-page-detail-price-box .price-main .discount-price span:first-child {
    text-decoration: line-through;
    color: var(--line-throughColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 15px
}

.product-detail-page-slider .slick-arrow.slick-prev,.product-detail-zoom-slider .slick-arrow.slick-prev {
    left: 10px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 40px;
    height: 40px
}

.product-detail-page-slider .slick-arrow.slick-next,.product-detail-zoom-slider .slick-arrow.slick-next {
    right: 10px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 40px;
    height: 40px
}

.product-detail-zoom-slider .slick-arrow.slick-next,.product-detail-zoom-slider .slick-arrow.slick-prev {
    background-color: #fff
}

.product-detail-page-slider .slick-arrow,.product-detail-zoom-slider .slick-arrow {
    display: flex!important;
    justify-content: center!important;
    align-items: center!important
}

.product-detail-page-slider .slick-arrow.hide-arrows {
    display: none!important
}

.product-detail-page-slider:hover .slick-arrow:not(.hide-arrows),.product-detail-zoom-slider:hover .slick-arrow {
    display: flex!important
}

.product-detail-page-slider .slick-next:before,.product-detail-page-slider .slick-prev:before,.product-detail-zoom-slider .slick-next:before,.product-detail-zoom-slider .slick-prev:before {
    content: ""!important
}

.product-detail-page-slider .slick-arrow.slick-next.with-bg,.product-detail-page-slider .slick-arrow.slick-prev.with-bg {
    border: 0!important;
    background-color: var(--primary-color);
    border-radius: 4px
}

.product-detail-page-slider .slick-arrow.slick-next.with-bg svg,.product-detail-page-slider .slick-arrow.slick-prev.with-bg svg {
    color: #fff
}

.product-detail-page-slider .slick-arrow.slick-next.with-bg:hover,.product-detail-page-slider .slick-arrow.slick-prev.with-bg:hover {
    background-color: var(--primary-color)
}

.product-detail-page-slider .slick-arrow.slick-next:hover,.product-detail-page-slider .slick-arrow.slick-prev:hover {
    background-color: #efefef
}

.product-detail-page-slider.show-dots-slider .slick-dots>li {
    margin: 0 .5rem!important;
    width: unset!important;
    height: unset!important
}

.product-detail-page-slider.show-dots-slider .slick-dots>li>button {
    width: 8px;
    height: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
    border-radius: 50%;
    background-color: silver;
    padding: 0;
    display: block;
    margin-bottom: .5rem;
    transition: all .2s ease-in-out
}

.product-detail-page-slider.show-dots-slider .slick-dots>li.slick-active>button {
    background-color: var(--primary-color)!important;
    width: 2rem;
    border-radius: 10rem;
    background-color: #fff
}

.product-detail-table td {
    font-size: 13px
}

.product-detail-table .table-tr:last-child {
    border-bottom: unset
}

.product-detail-tabs-main {
    background: #f8f8f8;
    padding: 0 16px;
    margin-top: 16px
}

.product-detail-zoom-slider .r-0 {
    right: 5px!important
}

.product-detail-zoom-slider .l-0,.product-detail-zoom-slider .r-0 {
    background-color: rgba(30,30,30,.48)!important;
    border: unset!important;
    color: #fff!important;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.product-detail-zoom-slider .l-0 {
    left: 5px!important
}

.product-detail-page-tabs div.tab:last-child {
    border-bottom: unset
}

.show-images-container .r-0 {
    right: 155px!important
}

.zoom-image-modal-active-image {
    border: 3px solid #000
}

.zoom-image-modal-passive-image {
    border: 3px solid transparent
}

.product-detail-page-tabs .tab {
    padding: 16px 0;
    font-weight: 500;
    color: #1f1f1f;
    border-bottom: 1px solid var(--border-color)
}

.product-detail-page-variants .color-image-choice {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px
}

.product-detail-page-variants .color-noimage-choice {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px
}

.react-confirm-alert-button-group button:first-child {
    background-color: var(--primary-color)
}

.react-confirm-alert-button-group button:first-child:hover {
    background-color: var(--primary-hoverColor)
}

.react-confirm-alert-button-group button:nth-child(2) {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: #000
}

.cursor-zoom-in {
    cursor: zoom-in
}

.cursor-zoom-out {
    cursor: zoom-out
}

.zoom-image-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9999999999998;
    background-color: #fff;
    display: flex
}

.zoom-image-mobile .mobile-slider {
    display: block;
    position: relative;
    width: 100%
}

.zoom-image-mobile .container {
    position: relative;
    width: 100%;
    height: 100vh
}

.zoom-image-mobile .deneme {
    position: relative;
    padding-bottom: 100%
}

.zoom-image-mobile .deneme>div {
    flex: 0 0 100%;
    scroll-snap-align: start
}

.zoom-image-mobile .mobile-slider-actions {
    display: flex;
    position: absolute;
    justify-content: space-between;
    width: calc(100% - 32px);
    transform: translateY(-50%);
    top: 50%;
    z-index: 9;
    left: 16px
}

.zoom-image-mobile .mobile-slider-actions .v-hidden {
    visibility: hidden
}

.zoom-image-mobile .mobile-slider-actions .v-visible {
    visibility: visible
}

.zoom-image-mobile .custom-slider-main {
    display: flex;
    flex-flow: row nowrap;
    overflow: auto;
    scroll-snap-type: x mandatory;
    position: relative;
    width: 100%;
    margin: 0 auto
}

.zoom-image-desktop {
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 99999999999;
    background-color: #fff
}

.close-zoom-image {
    z-index: 9999999999999
}

.zoom-image-desktop .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 50px;
    animation: bottomToTop .3s linear
}

@keyframes bottomToTop {
    0% {
        bottom: 0;
        opacity: 0
    }

    20% {
        bottom: 10
    }

    40% {
        bottom: 20
    }

    60% {
        bottom: 30
    }

    80% {
        bottom: 40
    }

    to {
        bottom: 50;
        opacity: 1
    }
}

.zoom-image-desktop .buttons .prev {
    width: 50px;
    height: 50px
}

.zoom-image-desktop .buttons .prev,.zoom-image-desktop .buttons .zoom-close {
    margin-right: 30px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s
}

.zoom-image-desktop .buttons .zoom-close {
    width: 60px;
    height: 60px
}

.zoom-image-desktop .buttons .next {
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: .3s
}

.zoom-image-desktop .buttons .next:hover,.zoom-image-desktop .buttons .prev:hover,.zzoom-image-desktop .buttons .zoom-close:hover {
    transform: scale(1.2)
}

.zoom-image-desktop .zoom-image-grid {
    height: 80vh;
    margin-top: 20px
}

.zoom-icon,.zoom-image-desktop .zoom-image-grid {
    display: flex;
    justify-content: center;
    align-items: center
}

.zoom-icon {
    bottom: 0;
    right: 0;
    background: #e2e2e291;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: none
}

.zoom-image-desktop .react-transform-component,.zoom-image-desktop .react-transform-element {
    width: 100%;
    height: 100%
}

.desktop-zoom {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 25px;
    display: flex;
    outline: none;
    cursor: pointer;
    flex-direction: column;
    z-index: 99;
    background-color: #fff;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 0 3px 0 #949494
}

.desktop-zoom span:first-child,.desktop-zoom span:nth-child(2) {
    color: #000;
    padding: 5px;
    border-bottom: 1px solid #bfbfbf
}

.desktop-zoom span:nth-child(3) {
    color: #000;
    padding: 5px
}

.favorite-modal {
    width: 500px;
    padding: 60px 30px;
    background: #fff;
    box-shadow: 0 20px 75px rgba(0,0,0,.23);
    color: #000
}

.tab-content-bottom {
    color: var(--primary-textColor);
    font-size: 13px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.slider-container {
    position: relative;
    width: 70px
}

.slider-container .slider {
    display: flex;
    flex-direction: column;
    width: 70px;
    height: auto
}

.slider-container .slider .slide {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.slider-container .slider .slide:not(.remove-bg) {
    background-color: #fcfcfc
}

.slider-container .slider-action {
    width: 70px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.option-label {
    font-weight: 600
}

.option-label,.option-optional-text {
    color: var(--productOptionNameColor);
    font-size: 14px
}

.option-optional-text {
    font-weight: 400;
    margin-bottom: 4px;
    opacity: .8
}

.option-text-input {
    padding: 0 8px;
    height: 42px
}

.option-text-area-input,.option-text-input {
    color: #333;
    font-size: 14px;
    border: 1px solid #ccc;
    outline: none
}

.option-text-area-input {
    padding: 8px;
    min-height: 100px;
    resize: vertical
}

.options-main {
    margin-bottom: 16px
}

.options-main:last-child {
    margin-bottom: 0
}

.option-text-popover {
    position: absolute;
    background-color: #efefef;
    padding: 9px;
    width: 160px;
    border-radius: 4px;
    z-index: 9;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    transition: all .3s;
    transform: translateX(-40%);
    box-shadow: 1px 1px 4px 1px #cbcbcb
}

.option-text-popover.passive {
    visibility: hidden;
    opacity: 0;
    top: -10px
}

.option-text-popover.active {
    visibility: visible;
    opacity: 1;
    top: 25px;
    z-index: 100
}

.option-text-popover.active:before {
    content: "";
    position: absolute;
    left: 67px;
    top: -5px;
    background-color: #efefef;
    display: flex;
    width: 10px;
    height: 10px;
    transform: rotate(45deg)
}

.product-options-title {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    border-top: .5px solid #f3f3f3;
    color: #333;
    margin-top: 8px
}

.options .option {
    color: #000;
    font-size: 12px
}

.product-options-main {
    border-bottom: .5px solid #f3f3f3
}

.option-checkbox {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #ebeef5
}

.option-select {
    outline: none;
    color: #333;
    font-size: 14px
}

.react-select__control {
    min-height: 42px!important;
    outline: none!important;
    border: 1px solid #ccc!important;
    box-shadow: unset!important
}

.react-select__control:hover {
    border-color: #ccc!important
}

.picker-input-main {
    background: #efefef;
    width: 60px;
    height: 35px;
    align-items: center;
    justify-content: center;
    display: flex
}

.picker-input-main input {
    background: #efefef
}

.option-box {
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    margin-right: 8px;
    cursor: pointer;
    border-radius: 4px;
    color: #333;
    background-color: #fff;
    transition: all .3s;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px
}

.option-box:hover {
    border-color: #333
}

.option-box.active {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    color: #fff
}

.option-swatch-color {
    border: 1px solid #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 2px #fff,0 0 0 4px #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s
}

.option-swatch-color:hover {
    transform: scale(1.02)
}

.option-swatch-color.active {
    box-shadow: 0 0 0 2px #fff,0 0 0 4px #4d4d4d
}

.option-swatch-image {
    border: 1px solid #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 2px #fff,0 0 0 4px #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s
}

.option-swatch-image img {
    border-radius: 4px
}

.option-swatch-image:hover {
    transform: scale(1.02)
}

.option-swatch-image.active {
    box-shadow: 0 0 0 2px #fff,0 0 0 4px #4d4d4d
}

.react-select__multi-value__remove:hover {
    background-color: #adadad!important;
    color: #333!important
}

.email-modal-input {
    width: 100%;
    border: 1px solid #dfe2e6;
    border-radius: 12px;
    height: 52px;
    padding: 0 16px;
    margin: 8px 0;
    outline: none
}

.email-modal-button {
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    width: 100%
}

.email-modal-button,.email-modal-button.passive {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    letter-spacing: .05em;
    font-weight: 600;
    text-transform: uppercase
}

.email-modal-button.passive {
    background-color: #ececec;
    color: #383838;
    cursor: not-allowed
}

.product-detail-comments-title {
    font-size: 1.5rem;
    color: var(--primary-textColor);
    font-weight: 300
}

.comment-box {
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb
}

.comment-textarea {
    width: 100%;
    border: 1px solid #dfe2e6;
    border-radius: 0;
    min-height: 120px;
    padding: 16px;
    margin: 8px 0;
    outline: none;
    resize: vertical
}

.comment-button {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 48px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: .05em;
    transition: all .3s;
    padding: 5px 20px
}

.comment-button:hover {
    background-color: var(--primary-hoverColor)
}

.comment-button.passive {
    background-color: #ececec;
    display: flex;
    align-items: center;
    color: #383838;
    justify-content: center;
    text-transform: uppercase;
    cursor: not-allowed
}

.comment-input-title {
    width: 100%;
    border: 1px solid #dfe2e6;
    height: 42px;
    padding: 16px;
    margin: 8px 0;
    outline: none;
    border-radius: 0
}

.comment-title {
    font-size: 14px
}

.comment__comment-star-primary {
    color: var(--primary-color);
    font-size: 20px
}

.comment__comment-star {
    color: #f7c603;
    font-size: 20px
}

.comment__comment-title {
    margin-top: 5px;
    letter-spacing: .005em;
    font-weight: 700
}

.comment__comment-writing {
    font-size: 12px;
    color: #919191;
    font-style: italic
}

.comment__comment-content {
    margin-top: 5px;
    font-size: 14px;
    color: #2b2b2b
}

.comment__comments-main {
    margin-bottom: 16px;
    border: .5px solid #ebebeb
}

.comment__comments-main:last-child {
    margin-bottom: 0
}

.comment__comment-reply {
    font-size: 14px;
    border-left: 2px solid var(--primary-color);
    padding-left: 12px;
    margin-left: 12px;
    margin-top: 8px;
    color: #585a63;
    padding-bottom: 12px;
    padding-top: 12px
}

.comment_merchant-name {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500
}

.pagination-main .paginations ul li {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary-linkColor);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer
}

.pagination-main .paginations ul li:not(:last-child) {
    margin-right: 8px;
    transition: all .3s
}

.pagination-main .paginations ul li:hover {
    border: 1px solid var(--primary-color)
}

.pagination-main .paginations ul li.page-active {
    border: 1px solid var(--primary-color);
    color: #333
}

.pagination-main .paginations ul li.page-passive {
    background: #f5f5f5;
    cursor: not-allowed;
    border: 1px solid var(--border-color);
    pointer-events: none
}

.error-select {
    animation: vibration .2s infinite
}

@keyframes vibration {
    0% {
        transform: translateX(-10px)
    }

    25% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }

    75% {
        transform: translateX(-10px)
    }

    to {
        transform: translateX(0)
    }
}

.product-detail-page-bottom-tabs .tab {
    padding: 7px 0;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 15px
}

.product-detail-page-bottom-tabs .tab:not(:last-child) {
    margin-right: 40px
}

.title.bottom-tab-active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px
}

.title.bottom-tab-passive {
    border-bottom: 2px solid transparent;
    padding-bottom: 10px
}

.product-detail-page-bottom-tabs .tab-content {
    color: var(--primary-textColor);
    font-size: 14px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.custom-date-picker {
    color: #333;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 0 8px;
    height: 42px;
    outline: none;
    width: 100%;
    cursor: pointer
}

.react-datepicker__header {
    border-radius: 0!important;
    background-color: var(--primary-color)!important
}

.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month,.react-datepicker__day-name,.react-datepicker__time-name {
    color: #fff!important
}

.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--keyboard-selected,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected,.react-datepicker__year-text--in-range,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--selected {
    background-color: var(--primary-color)!important
}

.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before,.react-datepicker__year-read-view--down-arrow {
    border-color: #fff!important;
    top: 16px!important
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before {
    border-bottom-color: var(--primary-color)!important;
    left: -40px!important
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before {
    border-top-color: var(--primary-color)!important;
    left: -40px!important
}

.react-datepicker {
    border: 1px solid var(--primary-color)!important
}

.react-datepicker__month-select,.react-datepicker__year-select {
    background-color: var(--primary-color)!important;
    color: #fff!important;
    border: 1px solid #fff!important;
    border-radius: 4px;
    font-weight: 500
}

.product-detail-quantity-boxes .product-detail-quantity-box {
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background-color: #fff;
    transition: background-color .3s
}

.product-detail-quantity-boxes .product-detail-quantity-box:hover {
    background-color: #f8f8f8
}

.product-detail-quantity-boxes .product-detail-quantity {
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500
}

.product-option-files .file {
    background-color: #e9e9e9;
    border-radius: 0;
    padding: 3px 40px 3px 10px;
    color: #333;
    font-size: 14px
}

.product-option-files .file .file-delete {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #d6d6d6;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    display: none
}

.product-option-files .file:hover .file-delete {
    display: flex!important
}

.product-option-files .file .file-delete:hover {
    background-color: #dadada
}

[id^=product-option-file-] {
    display: none;
    -webkit-appearance: none
}

.product-option-file-label {
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all .3s
}

.product-option-file-label,.product-option-file-label.passive {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    font-weight: 500
}

.product-option-file-label.passive {
    background-color: #ececec;
    color: #383838;
    cursor: not-allowed;
    pointer-events: none
}

.z-99 {
    z-index: 99
}

.product-detail-page-slider .slick-dots,.product-detail-zoom-slider .slick-dots {
    display: none!important
}

.product-detail-page-slider.show-dots-slider .slick-dots {
    display: block!important
}

.buy-now-button {
    background-color: var(--primary-color);
    height: 3.5rem;
    letter-spacing: .05em
}

.buy-now-button,.buy-now-button:hover {
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s
}

.bottom-slider .slick-slider {
    width: 100%
}

.bottom-slider {
    width: 100%!important
}

.bottom-slider-main {
    margin-top: 10px
}

.slider-container .bottom-slider .slide {
    margin-bottom: unset!important;
    padding-top: unset!important
}

.slider-container .only-picture {
    width: 70px
}

.product-video-main {
    width: 100%;
    height: 100%;
    position: absolute
}

.cursor-zoom-in:not(.image) .product-video-main {
    position: relative!important
}

.variants-slider .slick-next:before,.variants-slider .slick-prev:before {
    content: ""!important
}

.variants-slider .slick-arrow {
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    z-index: 2;
    background-color: #ececec;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 1px 2px 1px rgba(64,64,64,.2)
}

.variants-slider .slick-arrow.slick-next {
    right: 0!important
}

.variants-slider .slick-arrow.slick-prev {
    left: -12px!important
}

.variants-slider .slick-arrow:hover {
    z-index: 9;
    background-color: #efefef
}

.dot-pulse {
    position: relative;
    left: -9984px;
    box-shadow: 9999px 0 0 -5px #636363;
    animation: dotPulse 1.5s linear infinite;
    animation-delay: .25s
}

.dot-pulse,.dot-pulse:after,.dot-pulse:before {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #636363;
    color: #636363
}

.dot-pulse:after,.dot-pulse:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0
}

.dot-pulse:before {
    box-shadow: 9989px 0 0 -5px #636363;
    animation: dotPulseBefore 1.5s linear infinite;
    animation-delay: 0s
}

.dot-pulse:after {
    box-shadow: 10014px 0 0 -5px #636363;
    animation: dotPulseAfter 1.5s linear infinite;
    animation-delay: .5s
}

@keyframes dotPulseBefore {
    0% {
        box-shadow: 9989px 0 0 -5px #636363
    }

    30% {
        box-shadow: 9989px 0 0 2px #636363
    }

    60%,to {
        box-shadow: 9989px 0 0 -5px #636363
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 9999px 0 0 -5px #636363
    }

    30% {
        box-shadow: 9999px 0 0 2px #636363
    }

    60%,to {
        box-shadow: 9999px 0 0 -5px #636363
    }
}

@keyframes dotPulseAfter {
    0% {
        box-shadow: 10014px 0 0 -5px #636363
    }

    30% {
        box-shadow: 10014px 0 0 2px #636363
    }

    60%,to {
        box-shadow: 10014px 0 0 -5px #636363
    }
}

.zoom-image-main {
    position: absolute
}

.add-basket-fixed {
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%)
}

.add-basket-fixed.in-view-show {
    animation: width .2s;
    opacity: 1;
    visibility: visible;
    width: 100%
}

@keyframes width {
    0% {
        width: 50%
    }

    to {
        width: 100%
    }
}

.add-basket-fixed.in-view-hide {
    opacity: 0;
    visibility: hidden;
    width: 50%
}

.quantity-input {
    display: flex;
    width: 50px;
    text-align: center;
    outline: none
}

.shipping-policy {
    font-size: 13px
}

.mobile-swiper-main .swiper-pagination-bullet:not(.custom-bullet-image) {
    background-color: silver;
    opacity: 1;
    margin: 0 .5rem!important
}

.mobile-swiper-main .swiper-pagination-bullet.custom-bullet-image {
    background-color: silver;
    opacity: 1;
    margin: 0 .2rem!important
}

.mobile-swiper-main .swiper-pagination-bullet-active {
    background-color: var(--primary-color)!important;
    width: 2rem;
    border-radius: 10rem
}

.mobile-swiper-main .swiper-pagination-bullet-active.custom-bullet-image img {
    border: 1px solid var(--primary-color)
}

.zoom-modal-container {
    position: fixed;
    z-index: 99998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.6);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.zoom-modal-container .wrapper {
    display: block;
    width: 90vw
}

.zoom-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(30,30,30,.48)!important;
    display: flex
}

.zoom-close-btn span {
    padding: 10px;
    height: 44px;
    display: flex;
    color: #ccc;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.width-input-main input {
    outline: none;
    width: 90%;
    height: 38px;
    margin-top: 8px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    text-align: center;
    font-weight: 500
}

.width-input-main label {
    color: #818181;
    font-size: 14px
}

.width-input-main .number-box span:first-child {
    border-right: 1px solid #e1e1e1;
    border-top: unset;
    left: 0;
    top: 28px
}

.width-input-main .number-box span:first-child,.width-input-main .number-box span:nth-child(2) {
    display: flex;
    width: 38px;
    align-items: center;
    justify-content: center;
    height: 38px;
    cursor: pointer;
    position: absolute
}

.width-input-main .number-box span:nth-child(2) {
    border-left: 1px solid #e1e1e1;
    top: 50%;
    right: 10%;
    top: 28px
}

.use-format-hidden {
    display: none!important
}

.custom__image-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(80,80,80,.4);
    z-index: 9999999991;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear .25s,opacity .25s 0s,transform .25s
}

.custom__image-modal-container.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s,opacity .25s 0s,transform .25s
}

.custom__image-modal {
    width: 1040px;
    height: 700px;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff
}

.custom__image-modal-close {
    background-color: #000;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    right: -30px
}

.product-detail-select-quantity-main {
    border: 1px solid var(--border-color);
    height: 3.5rem;
    padding: 0 12px
}

.product-detail-select-quantity-main select {
    outline: none;
    background-color: transparent
}

.product-detail-m2-format-select {
    border: 1px solid var(--border-color);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-offer-item-main {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    min-height: 260px
}

.selected-bundle-variant {
    outline: 1px solid #fff;
    outline-offset: -1px
}

#bundle-for-furn .bundle-title-main {
    padding: 10px 15px;
    border-width: 1px;
    border-color: #efefef;
    border-bottom: 0
}

#bundle-for-furn .product-bundle-items-main {
    padding: 0 15px;
    border-width: 1px;
    border-color: #efefef;
    border-top: 0
}

#bundle-for-furn .bundle-title-main span {
    font-weight: 500;
    width: 25%;
    font-size: 14px
}

#bundle-for-furn .bundle-title-main.selectable-variant span {
    font-weight: 500;
    width: 20%;
    font-size: 14px
}

#bundle-for-furn .bundle-content-main .content {
    width: 25%
}

#bundle-for-furn .bundle-content-main.selectable-variant .content {
    width: 20%
}

#bundle-for-furn .bundle-header {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-width: 1px;
    border-color: #e5e5e5
}

.bundle-variant-color.out-of-stock:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #707070;
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    z-index: 1
}

.offer-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #151b1c
}

.offer-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #151b1c
}

.offer-product-container {
    padding: 24px;
    display: flex;
    border-radius: 8px;
    border: 1px solid #dad8e3;
    min-height: 240px
}

.offer-product-container.with-bg {
    background-color: #f9f9f9
}

.offer-product-container.with-bg.accepted {
    border: 1px solid var(--primary-color)
}

.offer-product-container img,.offer-product-container video {
    border: .5px solid #dad8e3!important
}

.offer-product-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #151b1c
}

.product-offer-discount {
    padding: 4px 8px;
    background-color: #ef103e;
    font-size: 14px;
    width: -moz-min-content;
    width: min-content;
    font-weight: 500;
    line-height: 20px;
    color: #fff
}

.product-offer-discount-price {
    font-size: 14px;
    color: #a3a0a8;
    font-weight: 400;
    line-height: 20px;
    text-decoration: line-through
}

.product-offer-final-price {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #151b1c
}

.offer-summary-box {
    border-radius: 8px;
    border: 1px solid #dad8e3;
    background: #f9f9f9;
    display: flex;
    padding: 24px
}

.offer-summary-info {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #151b1c
}

.product-offer-add-button {
    width: calc(100% - 48px)
}

.product-offer-accepted-container {
    padding: 4px 8px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -14px;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500
}

.add-button-product-offer-container {
    border-radius: 4px;
    border: 1px solid #dad8e3;
    padding: 24px
}

.add-button-offer-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #151b1c
}

.add-button-offer-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #151b1c
}

.add-buttton-offer-product-container {
    min-height: unset
}

.length-options {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    margin: 0 8px 12px 0;
    font-style: normal;
    text-transform: none;
    border-radius: 0;
    color: #000;
    background-color: #efefef;
    cursor: pointer;
    padding: 20px 18px;
    font-size: 16px
}

.length-options.is-selected {
    box-shadow: 0 0 0 2px #000
}

.length-options.is-selected.is-free-text {
    box-shadow: 0 0 0 2px transparent
}

.length-options.is-free-text {
    padding: 8px
}

.lenght-free-input-container input {
    height: 40px;
    width: 45px;
    border: 2px solid #565656;
    padding: 8px 2px;
    text-align: center
}

.length-unit {
    margin-left: 12px;
    font-weight: 600
}

.product-option-swatch-scroll {
    scroll-padding-top: 5px
}

.product-option-swatch-scroll::-webkit-scrollbar {
    height: 6px
}

.product-option-swatch-scroll::-webkit-scrollbar-track {
    background: #f2f2f2
}

.product-option-swatch-scroll::-webkit-scrollbar-thumb {
    background: #c9c9c9
}

.product-option-swatch-scroll::-webkit-scrollbar-thumb:hover {
    background: #555
}

.variant-types-out-of-stock {
    background-color: var(--variant-types-out-of-stock)!important
}

.product-images-container-sticky {
    position: sticky;
    top: 96px
}

.product-option-big-image-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.134);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-option-big-image-container {
    width: 55%;
    height: 60%;
    border-radius: 4px;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff
}

.react-datepicker-popper {
    z-index: 2!important
}

.product-detail-page-bottom-tabs .tab-content img {
    width: 100%!important
}

.product-detail-page-bottom-tabs .tab-content img[width][height] {
    width: unset!important
}

.product-detail-page-variants:hover .select-arrow {
    display: none
}

.__react_component_tooltip {
    display: none!important
}

.__react_component_tooltip.show {
    display: block!important
}

.category-products-main .category-products-info-main .product-name {
    color: #000;
    font-weight: 400;
    font-size: 14px
}

.desktop-filters .sticky-filter::-webkit-scrollbar {
    width: 5px
}

.desktop-filters .sticky-filter::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.desktop-filters .sticky-filter::-webkit-scrollbar-thumb {
    background: #b6b6b6;
    border-radius: 10px
}

.desktop-filters .sticky-filter::-webkit-scrollbar-thumb:hover {
    background: #747474
}

.desktop-filters .filters-scrollable.active::-webkit-scrollbar,.desktop-filters .sub-categories-main::-webkit-scrollbar {
    width: 14px
}

.desktop-filters .filters-scrollable.active::-webkit-scrollbar-thumb,.desktop-filters .sub-categories-main::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 14px 14px #bbbbbe;
    border: 5px solid transparent;
    border-radius: 14px
}

.desktop-filters .filters-scrollable.active::-webkit-scrollbar-track,.desktop-filters .sub-categories-main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 14px 14px transparent;
    border: 5px solid transparent
}

.desktop-filters .filters-scrollable.active {
    opacity: 1;
    max-height: 395px;
    visibility: visible;
    display: flex;
    transition: .3s;
    overflow-x: hidden;
    overflow-y: auto
}

.mobil-filters-bg {
    background-color: #f4f4f4;
    padding: 16px 0;
    margin-bottom: 16px;
    border-radius: 8px
}

.mobil-sorting-bg {
    background-color: rgba(0,0,0,.75);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999999999
}

.search-icon {
    position: absolute;
    right: 17px;
    top: 0;
    font-size: 22px;
    color: #5f5f5f;
    width: 39px;
    height: 39px;
    display: flex;
    background: #f4f4f4;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.search-icon:hover {
    color: #191919;
    background: #c5c5c5
}

.search-input {
    width: 100%;
    border: 1px solid #f4f4f4!important;
    padding: 8px 50px 8px 8px;
    font-size: 14px;
    color: #545454
}

.search-input::-moz-placeholder {
    color: #838383!important;
    font-size: 14px
}

.search-input::placeholder {
    color: #838383!important;
    font-size: 14px
}

.breadcrumbs {
    display: flex;
    align-items: center
}

.breadcrumbs:hover {
    position: relative;
    z-index: 99999
}

.breadcrumbs .breadcrumb-item {
    font-size: 15px;
    display: flex;
    font-weight: 400;
    color: #2c2c2c
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap
}

.breadcrumbs .breadcrumb-item+.breadcrumb-item {
    display: flex;
    padding-left: .5rem
}

.breadcrumbs .breadcrumb-item+.breadcrumb-item:before {
    content: "";
    display: inline-block;
    color: #6c757d
}

.breadcrumbs .breadcrumb-item.active {
    color: #c8ced4;
    padding-right: 3px
}

.sub-categories-main {
    overflow: auto
}

.grid-template {
    position: absolute;
    top: 7px;
    left: 12px
}

.grid-template-two {
    margin-left: -1px
}

.grid-template-choise-one {
    border: 1px solid #c9c9c9;
    border-right: unset;
    border-radius: 2px 0 0 2px;
    width: 33px;
    padding-left: 6px
}

.grid-template-choise-one,.grid-template-choise-two {
    height: 30px;
    display: flex;
    align-items: center;
    color: #484848;
    cursor: pointer
}

.grid-template-choise-two {
    border: 1px solid #c9c9c9;
    border-radius: 0 2px 2px 0;
    width: 35px;
    justify-content: center
}

.grid-template-choise-one.active,.grid-template-choise-two.active {
    color: var(--primary-color)
}

.desktop-sorting {
    border: 1px solid #c1c1c1;
    padding: 0 10px;
    border-radius: 4px
}

.desktop-sorting select {
    outline: none;
    color: #2d2d2d;
    font-size: 14px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff
}

.mobil-sorting-icon,.mobile-sorting {
    display: none
}

.mobile-sorting {
    position: fixed;
    right: 0;
    background: #fdfdfd;
    top: 50%;
    left: 50%;
    z-index: 999999999999;
    border-radius: 4px;
    width: 260px;
    transform: translate(-50%,-50%)
}

.desktop-sort-template {
    background-color: #f7f6f9;
    width: calc(100% - 16rem);
    margin: 0 16px
}

.sort-item {
    color: #232323;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s;
    border-bottom: 2px solid transparent
}

.sort-item.active,.sort-item:hover {
    color: #232323;
    background-color: #f2f2f2;
    border-bottom: 2px solid #232323
}

.checkbox {
    display: flex;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid #bdbdbd;
    position: relative
}

.checkbox span {
    width: 15px;
    height: 15px;
    top: 2px;
    left: 2px
}

.checkbox span,.is-sorting {
    display: flex;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute
}

.is-sorting {
    width: 8px;
    height: 8px;
    top: 0;
    right: -1px
}

.unreset-reset.category__desc p {
    margin: 15px 0
}

.dropdown-sort {
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 99;
    font-size: 12px;
    background-color: #fff;
    margin-top: 0;
    transition: margin .3s;
    opacity: 0;
    visibility: hidden
}

.dropdown-sort.active {
    opacity: 1;
    visibility: visible;
    margin-top: 16px
}

.dropdown-sort .sort-item {
    font-size: 12px;
    padding: 10px 16px
}

.category-list-quantity-boxes .category-list-quantity-box {
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background-color: #fff;
    transition: background-color .3s
}

.category-list-quantity-boxes .category-list-quantity {
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500
}

.category-list-quantity-boxes .category-list-quantity .quantity-input {
    width: 30px;
    font-size: 14px
}

.list-product-mobile-quantity-bar .category-list-quantity-box svg {
    margin-top: 0
}

.list-product-mobile-quantity-bar .category-list-quantity,.list-product-mobile-quantity-bar .category-list-quantity-box {
    height: 30px
}

.category-products-main .category-products-image {
    -o-object-fit: contain;
    object-fit: contain
}

.add-favorite {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--primary-color);
    font-size: 20px;
    z-index: 9
}

.category-products-main .category-products-info-main .brand-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0 0
}

.category-products-main .grid-template-list span:first-child,.category-products-main .grid-template-list span:nth-child(2),.category-products-main .grid-template-list span:nth-child(3),.category-products-main .grid-template-list span:nth-child(4) {
    width: 8px;
    height: 10px;
    display: flex;
    background: #000;
    margin-right: 2px
}

.category-products-main .category-products-info-main .variant {
    font-size: 13px;
    height: 20px;
    color: var(--primary-color)
}

.category-products-main .category-products-info-main .price-main {
    font-weight: 900;
    font-size: 18px;
    height: 20px;
    display: flex;
    align-items: flex-end;
    margin-top: 10px
}

.category-products-main .category-products-info-main .price-main .discount-percent {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    font-weight: 900
}

.category-products-main .category-products-info-main .price-main .discount-price span:first-child {
    text-decoration: line-through;
    color: var(--line-throughColor);
    font-size: 16px;
    font-weight: 400!important;
    line-height: 15px
}

.loading-icon {
    animation: spin 3s infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.desktop-filters .sticky-filter {
    position: sticky;
    top: 100px;
    height: 85vh;
    overflow-y: auto!important;
    overflow-x: hidden!important
}

.desktop-filters .filters-scrollable {
    transition: .3s;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%
}

.mobil-filters {
    display: none
}

.template-list {
    display: flex
}

.search-result-main {
    background: #e8e8e8;
    border-radius: 20px;
    padding: 3px 10px
}

.cart-drawer-header .title {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-textColor)
}

.cart-drawer-header .basket-count {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-textColor)
}

.basket-item-name {
    display: block;
    width: 85%;
    margin-bottom: 5px
}

.basket-item-name,.cart-drawer-text {
    color: var(--primary-textColor);
    font-size: 14px
}

.cart-drawer-text {
    font-weight: 700
}

.basket-drawer-variant,.cart-drawer-text .price {
    color: var(--primary-textColor);
    font-size: 14px
}

.basket-drawer-variant {
    margin: 3px 0;
    display: flex;
    flex-wrap: wrap
}

.basket-drawer-variant .variant-type {
    color: var(--primary-linkColor);
    margin-right: 5px;
    font-size: 13px
}

.basket-drawer-variant .variant-name {
    margin-right: 20px;
    font-size: 13px
}

.cart-drawer-edit {
    color: var(--primary-textColor);
    font-size: 14px
}

.cart-drawer-edit:hover {
    color: var(--primary-color)
}

.quantity-box .icons:hover {
    color: var(--primary-color)!important
}

.trash-icon {
    color: var(--primary-textColor)
}

.empty-basket,.trash-icon:hover {
    color: var(--primary-color)
}

.empty-basket {
    display: flex;
    justify-content: center;
    opacity: .2;
    padding: 20px 0;
    border-top: 1px solid #616161;
    border-bottom: 1px solid #616161;
    margin-top: 10px
}

.keep-shopping-button {
    background-color: var(--primary-textColor)!important;
    border-radius: 30px!important;
    font-size: 16px;
    color: #fff;
    font-weight: 700!important
}

.cart-total-price-main span:first-child {
    color: var(--primary-textColor);
    font-size: 16px
}

.cart-total-price-main span:nth-child(2) {
    color: var(--primary-textColor);
    font-weight: 700;
    font-size: 18px
}

.checkout-btn-main {
    color: #fff;
    background-color: var(--primary-color);
    padding: 17px 20px 19px 24px;
    position: absolute!important;
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    display: flex!important;
    justify-content: space-between;
    align-items: center
}

.checkout-btn-main .basket-total-price span:first-child {
    color: #fff;
    font-size: 14px
}

.checkout-btn-main .basket-total-price span:nth-child(2) {
    color: #fff;
    font-size: 18px;
    font-weight: 900
}

.checkout-btn-main a {
    margin-right: 15px;
    font-weight: 900;
    letter-spacing: -.6px
}

.basket-quantity-main .quantity-box {
    font-size: 13px
}

.basket-quantity-main .price-main {
    font-weight: 500;
    font-size: 14px;
    color: #272727
}

.basket-quantity-main .price-main-cart {
    font-weight: 500;
    font-size: 12px;
    color: #272727
}

.basket-quantity-main .quantity-box span:first-child {
    color: var(--primary-linkColor);
    margin-right: 15px;
    font-size: 14px
}

.basket-quantity-main .quantity-box span:nth-child(2),.basket-quantity-main .quantity-box span:nth-child(3) {
    margin-right: 15px
}

.basket-summary {
    background: #fff;
    padding: 20px 30px;
    border: 1px solid #ededed;
    background: #f7f7f9
}

.basket-summary h3 {
    font-weight: 700;
    padding: 18px 0;
    font-size: 18px
}

.basket-summary .sub-total span:first-child {
    font-size: 14px;
    color: #636363;
    width: 70%
}

.basket-summary .sub-total span:nth-child(2) {
    font-weight: 600;
    font-size: 14px;
    color: #8a8b94
}

.basket-summary .final-total span:first-child {
    color: var(--primary-color);
    font-size: 14px
}

.basket-summary .final-total span:nth-child(2) {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color)
}

.basket-summary .basket-checkout-btn {
    height: 48px;
    display: flex;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    justify-content: center;
    transition: all .3s
}

.basket-summary .basket-checkout-btn span {
    letter-spacing: .05em
}

.basket-summary .basket-checkout-btn:hover {
    background-color: var(--primary-hoverColor)
}

.basket-features .basket-feature {
    display: flex;
    font-size: 12px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    color: #636363
}

.basket-features .basket-feature span:first-child {
    display: flex;
    margin-right: 10px
}

.basket-brand-name {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 13px
}

.basket-top-checkout {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7px 20px;
    font-weight: 700;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 15px;
    display: none
}

.basket-top-checkout:hover,.shopping-button:hover {
    background-color: var(--primary-hoverColor)
}

.shopping-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7px 20px;
    font-weight: 900;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 15px;
    display: flex;
    height: 48px;
    letter-spacing: .05em;
    justify-content: center
}

.cart-item-option-color {
    width: 20px;
    height: 20px;
    border: 1px solid #fafafa;
    border-radius: 4px;
    display: flex
}

.basket-icon {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2
}

.basket-icon img {
    padding: 20px 0!important
}

.basket-info-icons {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0
}

.gray-price-line {
    text-decoration: line-through
}

.gray-price,.gray-price-line {
    font-size: 14px;
    color: #8a8b94
}

.keep-shopping-link {
    text-underline-offset: 4px;
    font-size: 14px;
    letter-spacing: .05em;
    text-decoration-color: #afafaf!important
}

.coupon-code-text {
    color: var(--primary-color);
    text-underline-offset: 2px
}

.coupon-input-main input {
    width: 100%;
    height: 48px;
    font-size: 14px;
    border-left: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 0 20px 0 50px;
    outline: none;
    border-radius: 2px
}

.coupon-input-main input::-moz-placeholder {
    color: #878787!important
}

.coupon-input-main input::placeholder {
    color: #878787!important
}

.coupon-input-main .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: var(--primary-color)
}

.coupon-input-main .close {
    margin-left: 1%;
    cursor: pointer
}

.coupon-input-main .use-btn {
    background-color: var(--primary-color);
    color: #fff;
    height: 100%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500
}

.used-coupon-code {
    padding: 5px 20px 5px 0;
    text-decoration: underline;
    text-underline-offset: 3px
}

.basket__image {
    width: 80px!important;
    height: 80px!important;
    flex-shrink: 0!important;
    position: relative!important
}

.login-main .login {
    color: var(--primary-color);
    margin-right: 50px;
    font-size: 25px
}

.login-main .login-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    transition: .3s;
    text-transform: unset;
    font-weight: 900;
    height: 48px
}

.login-main .login-btn.disabled {
    background-color: #eaeaea;
    color: #fff;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: not-allowed
}

.login-main .login-btn span {
    letter-spacing: .05em
}

.login-main .login-btn:hover {
    background-color: var(--primary-hoverColor)!important
}

.login-bg.with-bg:before {
    background-color: rgba(0,38,138,.2)
}

.login-bg.with-bg:before,.login-bg.without-bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.google-captcha a {
    color: #1967d2;
    letter-spacing: .2px
}

.social-login .google-button {
    border: 1px solid #bebebe;
    color: #000
}

.social-login .facebook-button,.social-login .google-button {
    width: 48%;
    height: 42px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: all .1s
}

.social-login .facebook-button {
    border: 1px solid #4c6fb6;
    color: #4c6fb6
}

.social-login .twitch-button {
    width: 48%;
    border: 1px solid #5a3e85;
    height: 42px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3e85;
    cursor: pointer;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: all .1s
}

.or-line {
    width: 100%;
    height: 2px;
    background-color: #e2e2e2;
    position: relative
}

.or-line span {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    color: #c8c8c8;
    font-weight: 500;
    top: -10px;
    font-size: 14px;
    background: #fff;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .1rem
}

.register-inp-main input {
    width: 100%;
    border-bottom: 1px solid var(--input-borderColor);
    border-radius: 0!important
}

.register-inp-main input:focus {
    outline: none
}

.register-main .register {
    margin-right: 50px;
    color: var(--primary-color);
    font-size: 25px
}

.register-main .register-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    transition: .3s;
    text-transform: unset;
    font-weight: 900;
    height: 48px
}

.register-main .register-btn.disabled {
    background-color: #eaeaea;
    color: #fff;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: not-allowed
}

.register-main .register-btn span {
    letter-spacing: .05em
}

.register-main .register-btn:hover {
    background-color: var(--primary-hoverColor)!important
}

.register-bg {
    background-size: cover!important;
    background-position: 50%!important;
    height: calc(100vh - 80px)!important;
    overflow: hidden!important;
    position: sticky!important
}

.register-bg.with-bg:before {
    background-color: rgba(0,38,138,.2)
}

.register-bg.with-bg:before,.register-bg.without-bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.register-grid {
    width: 80%
}

.checkbox-main .filter-type-list-checkbox {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #ebeef5
}

.checkbox-main .filter-type-list-checkbox.checked {
    background-color: var(--primary-color)
}

.checkbox-main .filter-type-list-check {
    position: absolute;
    top: 3px;
    left: 3px;
    color: #fff;
    font-weight: 900
}

.register-main .react-select__control {
    border: none!important;
    border-bottom: 1px solid var(--input-borderColor)!important
}

.register-main .react-select__value-container {
    padding: 0!important
}

.phone-input input {
    width: 100%;
    border-bottom: 1px solid var(--input-borderColor)!important;
    padding: 7px 10px;
    font-size: 13px;
    border-radius: 0!important;
    outline: none
}

.sms-options {
    border: 1px solid var(--primary-color)!important
}

.sms-options:not(.isactive) {
    background-color: transparent!important;
    transition: all .3s;
    color: var(--primary-color)!important
}

.sms-options:hover {
    background-color: var(--primary-hoverColor)!important;
    transition: all .3s;
    color: #fff!important
}

.register-inp-main input:disabled {
    background-color: #e9ecef!important
}

.account-bg {
    background-image: linear-gradient(90deg,#fbfbfb 29%,#fff 0);
    min-height: 100vh
}

.account-page .link {
    color: var(--primary-linkColor)
}

.account-page .account-inp-main input {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 7px 10px;
    font-size: 13px;
    border-radius: 0!important
}

.account-page .account-inp-main input:focus {
    outline: none
}

.account-page .account-inp-main input:disabled,.phone-input input:disabled {
    background-color: #e9ecef!important
}

.account-page .account-btn {
    background-color: var(--primary-color)!important;
    border-radius: 0;
    height: 48px;
    color: #fff;
    transition: .3s;
    font-weight: 900
}

.account-page .account-btn span {
    letter-spacing: .05em
}

.account-page .account-btn:hover {
    background-color: var(--primary-hoverColor)!important
}

.account-page .new-address {
    color: var(--primary-color)
}

.account-page .modal-bg {
    z-index: 9999
}

.account-page .address-box-left {
    width: 200px
}

.account-page .address-box-right {
    width: calc(100% - 220px)
}

.account-page .back-button {
    display: none
}

.modal-main {
    width: 40%
}

.homepage-link {
    color: var(--primary-color);
    text-decoration: underline
}

.refund-button.active {
    background-color: var(--primary-color);
    color: #fff
}

.refund-button.active,.refund-button.passive {
    cursor: pointer;
    border-radius: 0;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    transition: all .3s;
    font-weight: 300
}

.refund-button.passive {
    background-color: #f7f6f9;
    color: #383838
}

.refund-button.active:hover {
    background-color: var(--primary-hoverColor);
    color: #fff
}

.refund-button-send.active {
    background-color: var(--primary-color);
    color: #fff
}

.refund-button-send.active,.refund-button-send.passive {
    cursor: pointer;
    border-radius: 0;
    display: flex;
    height: 48px;
    align-items: center;
    font-weight: 500;
    transition: all .3s;
    justify-content: center;
    width: 300px
}

.refund-button-send.passive {
    background-color: #ececec;
    color: #383838
}

.refund-button-send.active:hover {
    background-color: var(--primary-hoverColor);
    color: #fff
}

.product-detail-select-variant-type {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #dfe2e6;
    border-radius: 0;
    width: 100%;
    height: 52px;
    padding: 12px;
    outline: none;
    background-color: #fff
}

.select-arrow {
    position: absolute;
    color: var(--primary-textColor);
    top: 50%;
    right: 12px;
    transform: translateY(-50%)
}

.refund-success-icon {
    color: var(--primary-color);
    font-size: 70px
}

.account-action-buttons {
    background-color: #f1f1f1;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 5px
}

.action-box {
    width: 60px;
    display: flex;
    align-items: center
}

.status-tag {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px
}

.placeholder-image,.status-tag {
    align-items: center;
    justify-content: center;
    display: flex
}

.placeholder-image {
    width: 128px;
    height: 128px;
    background-color: #f7f6f9;
    color: #383838;
    font-weight: 700
}

.status-title {
    background-color: #f7f6f9;
    padding: 7px 5px;
    font-size: 14px
}

.placeholder-list-image {
    width: 150px;
    height: 150px;
    background-color: #f7f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    font-weight: 700
}

.account-management-overlay {
    background: hsla(0,0%,100%,0)!important
}

.account-inp-main .select-flag-main {
    flex: 1
}

.forget-password-inp-main input {
    width: 100%;
    border-bottom: 1px solid var(--input-borderColor);
    border-radius: 0!important
}

.forget-password-inp-main input:focus {
    outline: none
}

.forget-password-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0!important
}

.custom-page-main .content {
    width: 75%;
    padding: 30px
}

.custom-page-main .title {
    font-size: 28px
}

.custom-page-main .content h1,.custom-page-main .content h2,.custom-page-main .content h3,.custom-page-main .content h4,.custom-page-main .content h5,.custom-page-main .content h6 {
    font-weight: 700;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-size: 20px
}

.custom-page-main .content h1:first-child,.custom-page-main .content h2:first-child,.custom-page-main .content h3:first-child,.custom-page-main .content h4:first-child,.custom-page-main .content h5:first-child,.custom-page-main .content h6:first-child {
    font-weight: 700;
    margin-top: 0!important;
    margin-bottom: 1em;
    font-size: 20px
}

.custom-page-main .content p {
    margin: 0 0 20px
}

.desktop-filters .filter-type-box {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    margin-bottom: 10px
}

.desktop-filters .filter-type-box.active {
    background-color: var(--primary-color)!important;
    color: #fff;
    font-weight: 700
}

.desktop-filters .filter-type-swatch {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 50%
}

.desktop-filters .swatch-image {
    border-radius: 50%!important
}

.desktop-filters .filter-type-swatch.active {
    border: 2px solid #717171
}

.desktop-filters .filter-type-swatch-check {
    position: absolute;
    top: 6px;
    left: 6px;
    color: #e4e4e4;
    font-weight: 900
}

.desktop-filters .filter-type-list-checkbox {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #ebeef5
}

.desktop-filters .filter-type-list-checkbox.checked {
    background-color: var(--primary-color)
}

.desktop-filters .filter-type-list-check {
    position: absolute;
    top: 3px;
    left: 4px;
    color: #fff;
    font-weight: 900
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #222;
    margin-left: 22px
}

.tooltip .tooltiptext {
    min-width: 20px;
    background-color: #222;
    color: #fff;
    height: 20px;
    opacity: .8;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -30px
}

.tooltip .tooltiptext:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: #222
}

.slider-ticks>div:not(.tick) {
    display: none
}

.filters-drawer {
    z-index: 9999999999!important
}

.filters-drawer-list .filter-type-box {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    margin-bottom: 10px
}

.filters-drawer-list .filter-type-box.active {
    background-color: var(--primary-color)!important;
    color: #fff;
    font-weight: 700
}

.header-drawer-bg {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    background-color: rgba(0,0,0,.616)
}

.filters-drawer-list .filter-type-swatch {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 50%
}

.filters-drawer-list .filter-type-swatch.active {
    border: 2px solid #717171
}

.filters-drawer-list .swatch-image {
    border-radius: 50%!important
}

.filters-drawer-list .filter-type-swatch-check {
    position: absolute;
    top: 6px;
    left: 6px;
    color: #e4e4e4;
    font-weight: 900
}

.filters-drawer-list .filter-type-list-checkbox {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #ebeef5
}

.filters-drawer-list .filter-type-list-checkbox.checked {
    background-color: var(--primary-color)
}

.filters-drawer-list .filter-type-list-check {
    position: absolute;
    top: 3px;
    left: 4px;
    color: #fff;
    font-weight: 900
}

.filters-drawer-list .filters-scrollable {
    transition: .3s;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%
}

.filters-drawer-list .filters-scrollable.active {
    opacity: 1;
    max-height: 395px;
    visibility: visible;
    display: flex;
    transition: .3s;
    overflow-x: hidden;
    overflow-y: auto
}

.filter-btn-main {
    color: #fff;
    background-color: var(--primary-color)!important;
    padding: 15px;
    position: absolute!important;
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.filter-btn-main:hover {
    background-color: var(--primary-hoverColor)!important
}

.filters-drawer-height {
    height: calc(100% - 95px)!important
}

.login-inp-main input {
    width: 100%;
    border-bottom: 1px solid var(--input-borderColor);
    border-radius: 0!important
}

.login-inp-main input:focus {
    outline: none
}

.login-main .login-modal {
    margin-right: 0!important
}

.login-main .login-modal,.login-main .register {
    color: var(--primary-color);
    font-size: 25px
}

.login-bg {
    background-size: cover!important;
    background-position: 50%!important;
    height: calc(100vh - 80px)!important;
    overflow: hidden!important;
    position: sticky!important
}

.login-grid {
    width: 80%
}

.text-view-main .title {
    font-size: 25px;
    font-weight: 600;
    width: 75%
}

.text-view-main .content {
    width: 50%;
    line-height: 30px
}

.text__view__scroll::-webkit-scrollbar {
    width: 2px
}

.text__view__scroll::-webkit-scrollbar-track {
    background: #f1f1f1
}

.text__view__scroll::-webkit-scrollbar-thumb {
    background: #9e9e9e
}

.text__view__scroll::-webkit-scrollbar-thumb:hover {
    background: #555
}

.unreset body {
    margin: 8px
}

.unreset th {
    font-weight: bolder
}

.unreset caption,.unreset th {
    text-align: left
}

.unreset h1 {
    font-size: 2em;
    margin: 0
}

.unreset h2 {
    font-size: 1.5em;
    margin: 0
}

.unreset h3 {
    font-size: 1.17em;
    margin: 0
}

.unreset blockquote,.unreset dir,.unreset dl,.unreset fieldset,.unreset form,.unreset h4,.unreset menu,.unreset ol,.unreset p,.unreset ul {
    margin: 0
}

.unreset h5 {
    font-size: .83em;
    margin: 0
}

.unreset h6 {
    font-size: .75em;
    margin: 0
}

.unreset b,.unreset h1,.unreset h2,.unreset h3,.unreset h4,.unreset h5,.unreset h6,.unreset strong {
    font-weight: bolder
}

.unreset blockquote {
    margin-top: 10px!important;
    margin-bottom: 10px!important
}

.unreset address,.unreset cite,.unreset em,.unreset i,.unreset var {
    font-style: italic
}

.unreset code,.unreset kbd,.unreset pre,.unreset samp,.unreset tt {
    font-family: monospace
}

.unreset pre {
    white-space: pre
}

.unreset big {
    font-size: 1.17em
}

.unreset small,.unreset sub,.unreset sup {
    font-size: .83em
}

.unreset sub {
    vertical-align: sub
}

.unreset sup {
    vertical-align: super
}

.unreset table {
    border-spacing: 2px;
    border-collapse: collapse
}

.unreset tbody,.unreset tfoot,.unreset thead {
    vertical-align: middle
}

.unreset td,.unreset th,.unreset tr {
    vertical-align: inherit
}

.unreset del,.unreset s,.unreset strike {
    text-decoration: line-through
}

.unreset hr {
    border: 1px inset
}

.unreset dd,.unreset dir,.unreset menu,.unreset ol,.unreset ul {
    margin-left: 40px
}

.unreset ol {
    list-style-type: decimal
}

.unreset ul {
    list-style-type: disc
}

.unreset ol ol,.unreset ol ul,.unreset ul ol,.unreset ul ul {
    margin-top: 0;
    margin-bottom: 0
}

.unreset {
    line-height: 1.2
}

.unreset figure {
    margin: 1em 40px
}

.centered-images img {
    margin: 0 auto
}

.image-list-main,.image-list-main img {
    transition: all .3s
}

.custom_image_list_main .grid-cols-5 {
    grid-template-columns: repeat(5,minmax(0,1fr))
}

.swiper-horizontal.brand-image-list__swiper>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 40px;
    left: 0;
    width: 100%
}

.list__center__text {
    position: absolute!important;
    z-index: 20!important;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)!important
}

.blog-image {
    -o-object-fit: contain;
    object-fit: contain
}

.blog-list-main .blog-content-main .blog-title {
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 1px;
    font-size: 1.1775rem;
    min-height: 57px
}

.blog-list-main .blog-content-main .blog-title.is-row-title {
    font-size: 1.9rem
}

.blog-list-main .blog-content-main p.is-row-clamp {
    color: #000;
    font-weight: 300;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    padding-top: 1rem;
    letter-spacing: 1px;
    min-height: 88px
}

.blog__category__name {
    display: block;
    display: -webkit-box!important;
    -webkit-line-clamp: 1
}

.blog-list-main .blog-content-main p.clamp,.blog__category__name {
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.blog-list-main .blog-content-main p.clamp {
    color: #000;
    font-weight: 300;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    font-size: 16px;
    padding-top: 1rem;
    letter-spacing: 1px;
    min-height: 88px
}

.blog-list-main .blog-writer {
    color: #303030;
    font-weight: 300;
    display: flex;
    letter-spacing: 1px;
    margin-left: 5px
}

.blog-list-main .icon {
    color: #000
}

.blog-list-main .tags .read-more {
    margin: 1.5rem 0 0;
    font-size: 1rem
}

.blog-list-main .tags .read-more,.blog-list-main .tags span {
    color: #32303d;
    text-transform: uppercase;
    letter-spacing: .1rem;
    transition: color .2s ease-in-out
}

.blog-list-main .tags span {
    font-size: .6rem
}

.blog-list-main .tags span.position-top {
    font-size: .9rem
}

.blog-list-main .tags .read-more:after {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    cursor: pointer;
    content: "";
    background-color: #32303d;
    transform: translateY(.25rem)
}

.blog-list-main .blog-created {
    position: absolute;
    display: flex;
    z-index: 2;
    right: 0;
    bottom: 0;
    background: rgba(95,95,95,.5)!important;
    padding: 0 10px;
    color: #fff
}

.read-more-button.left {
    justify-content: flex-start;
    transition: all .3s
}

.read-more-button.center {
    justify-content: center;
    transition: all .3s
}

.read-more-button.right {
    justify-content: flex-end;
    transition: all .3s
}

.read-more-button:not(.disabled-animation):hover {
    margin-right: 2px
}

.read-more-button.center:not(.disabled-animation):hover,.read-more-button.left:not(.disabled-animation):hover {
    margin-left: 2px
}

.blog-detail-image {
    -o-object-fit: cover;
    object-fit: cover
}

.blog-detail-main .blog-content-main h1 {
    color: var(--primary-color);
    margin-top: 10px;
    font-size: 22px
}

.blog-detail-main .blog-content-main h2 {
    color: #6b6b6b;
    font-weight: 300;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    padding-bottom: 10px
}

.blog-detail-main .blog-writer {
    color: #6b6b6b;
    font-weight: 300;
    display: flex;
    margin-left: 5px
}

.blog-detail-main .icon {
    color: var(--primary-color)
}

.blog-detail-main .tags span {
    margin-right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 0 10px;
    border-radius: 12px;
    margin-bottom: 5px;
    font-size: 16px
}

.blog-detail-main .blog-created {
    position: absolute;
    display: flex;
    z-index: 2;
    right: 0;
    bottom: 0;
    background: rgba(95,95,95,.5)!important;
    padding: 0 10px;
    color: #fff
}

.blog-detail-main .product-name {
    line-height: 20px;
    width: 400px
}

.blog-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    color: #fff;
    padding: 2.5rem
}

.blog-detail-overlay-text {
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%
}

.blog-detail-overlay-text .title {
    font-weight: 600;
    font-size: 2.75rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,.4)
}

.blog-detail-overlay-text .title,.blog-title {
    font-style: normal;
    line-height: 1.3;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 4px
}

.blog-title {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 16px
}

.unreset-reset .products-container a {
    text-decoration: unset!important
}

.unreset-reset .products-container a:hover {
    text-decoration: underline!important
}

.blog-breadcrumb-item {
    width: 500px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
    display: block;
    overflow: hidden;
    white-space: nowrap
}

.products-container .product-brand {
    margin: 8px 0
}

.products-container .product-image:not(.blog__product_image__show) {
    visibility: hidden
}

.subscribe-main .subscribe-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2
}

.subscribe-content h3 {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 900
}

.subscribe-content .subtext {
    color: #fff;
    display: block;
    margin-top: 5px
}

.subscribe-input-main input {
    min-width: 280px;
    background-color: #fff;
    height: 47px;
    padding: 0 20px;
    color: #495057;
    border-radius: 0
}

.subscribe-input-main button {
    background-color: var(--primary-color);
    color: #fff;
    height: 47px;
    padding: 14px 15px;
    transition: all .3s;
    font-weight: 700;
    font-size: 14px
}

.subscribe-input-main button.passive {
    cursor: not-allowed
}

.subscribe-input-main button:hover {
    background-color: var(--primary-hoverColor);
    color: #fff
}

.subscribe-input-main input::-moz-placeholder {
    color: #afafaf!important;
    font-size: 16px
}

.subscribe-input-main input::placeholder {
    color: #afafaf!important;
    font-size: 16px
}

.subscribe-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
    z-index: 1
}

.subscribe-success {
    font-weight: 500;
    padding: 10px 50px 10px 10px;
    border-radius: 6px;
    display: flex;
    min-width: 250px;
    align-items: center;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    z-index: 999;
    box-shadow: 0 0 1px 1px #d6d6d6
}

.subscribe-success.passive {
    right: 0
}

.subscribe-success.active {
    visibility: visible;
    opacity: 1;
    right: 20px
}

.comment-star {
    color: var(--primary-color);
    font-size: 20px
}

.comment-title {
    margin-top: 5px;
    letter-spacing: .025em;
    font-weight: 700
}

.comment-writing {
    font-size: 11px;
    color: #000;
    font-style: italic
}

.comment-content {
    margin-top: 5px;
    font-size: 14px;
    color: #2b2b2b
}

.comments-main {
    margin-bottom: 16px;
    border: 1px solid #000
}

.comments-main:last-child {
    margin-bottom: 0
}

.video-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%
}

.video-wrapper:after {
    padding-top: 56.25%;
    display: block;
    content: ""
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-slider-bg {
    background: rgba(0,0,0,.25);
    z-index: 1
}

.ready-video-bg,.video-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%
}

.ready-video-bg {
    background: rgba(0,0,0,.014);
    z-index: 99
}

.ready-video-bg .loading-bar {
    width: 20px;
    height: 5px;
    background-color: #fff;
    animation: deneme .5s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

@keyframes deneme {
    0% {
        width: 20px
    }

    50% {
        width: 30px
    }

    to {
        width: 40px
    }
}

.video-box-main .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 2
}

.video-box-main .slider-content.left.top {
    top: 10%;
    transform: unset
}

.video-box-main .slider-content.left.top,.video-box-main .slider-content.left.v-center {
    position: absolute;
    left: 10%;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%;
    right: unset
}

.video-box-main .slider-content.left.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.video-box-main .slider-content.left.bottom {
    position: absolute;
    bottom: 10%;
    left: 10%;
    transform: unset;
    text-align: left;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%;
    top: unset;
    right: unset
}

.video-box-main .slider-content.center.v-center {
    top: 50%;
    transform: translate(-50%,-50%)
}

.video-box-main .slider-content.center.bottom,.video-box-main .slider-content.center.v-center {
    position: absolute;
    left: 50%;
    text-align: center;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.video-box-main .slider-content.center.bottom {
    bottom: 10%;
    top: unset;
    transform: translateX(-50%)
}

.video-box-main .slider-content.center.top {
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}

.video-box-main .slider-content.center.top,.video-box-main .slider-content.right.top {
    position: absolute;
    top: 10%;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.video-box-main .slider-content.right.top {
    right: 10%;
    left: unset;
    transform: unset;
    text-align: right
}

.video-box-main .slider-content.right.v-center {
    top: 50%;
    transform: translateY(-50%)
}

.video-box-main .slider-content.right.bottom,.video-box-main .slider-content.right.v-center {
    position: absolute;
    left: unset;
    right: 10%;
    text-align: right;
    align-items: unset;
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 90%
}

.video-box-main .slider-content.right.bottom {
    bottom: 10%;
    transform: unset;
    top: unset
}

.video-box-main .slider-content h1 {
    color: #fff;
    font-size: 6vh;
    font-weight: 900;
    line-height: 75px
}

.video-box-main .slider-content p {
    color: #fff;
    font-size: 3vh;
    font-weight: 900;
    line-height: 45px
}

.video-box-main .slider-content a {
    color: #000;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background-color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    min-width: 195px;
    transition: all .3s;
    display: inline-block;
    text-align: center!important
}

.video-box-main .slider-content a:hover {
    color: #fff;
    background-color: var(--primary-color)
}

.ytp-chrome-top .ytp-show-cards-title,.ytp-watermark .yt-uix-sessionlink {
    opacity: 0!important;
    display: none!important
}

.ytp-hide-info-bar .ytp-chrome-top .ytp-overflow-button,.ytp-hide-info-bar .ytp-chrome-top .ytp-playlist-menu-button,.ytp-hide-info-bar .ytp-chrome-top .ytp-share-button,.ytp-hide-info-bar .ytp-chrome-top .ytp-title,.ytp-hide-info-bar .ytp-chrome-top .ytp-watch-later-button,.ytp-hide-info-bar .ytp-gradient-top {
    display: none
}

.lookbook-title-main {
    max-width: 80%;
    margin: 0 auto;
    letter-spacing: .2px
}

.lookbook-link {
    color: #fff;
    padding: 10px 20px;
    font-size: .8rem;
    font-weight: 300;
    background-color: var(--primary-color);
    text-transform: uppercase;
    min-width: 162px;
    transition: all .3s
}

.lookbook-link:hover {
    color: #fff;
    background-color: var(--primary-hoverColor)
}

.lb-image-only {
    margin-right: auto!important
}

.image-gallery-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    z-index: 999999999999999
}

.gallery-bar {
    background-color: rgba(0,0,0,.74);
    width: 100%;
    height: 60px;
    padding: 0 16px
}

.gallery-bar,.image-container {
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: center
}

.image-container {
    width: 80%;
    height: calc(100% - 60px - 200px);
    position: relative;
    margin: 100px auto 0
}

.marquee-container {
    background: #000;
    color: #fff
}

.marquee-container .marquee-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: translateZ(0)
}

.marquee-container .marquee-wrapper .marquee-textcontainer {
    margin: .15em 0;
    white-space: nowrap;
    width: auto;
    perspective: 900;
    animation: marquee-left 1s linear infinite forwards;
    font-size: 18px
}

.marquee-container .marquee-wrapper .marquee-textcontainer span {
    padding: 0 15px
}

@keyframes marquee-left {
    0% {
        transform: translateX(-1%)
    }

    to {
        transform: translateX(-51%)
    }
}

.insta-feed-image,.insta-feed-video {
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 0;
    transform: none;
    display: initial;
    opacity: 1;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border-style: none
}

.insta-feed-container {
    width: 25%;
    padding-top: 25%;
    display: inline-block;
    position: relative;
    vertical-align: top;
    cursor: pointer;
    color: #fff
}

.insta-feed-container.space-pictures {
    width: calc(25% - 10px);
    margin: 5px!important
}

.insta-feed {
    text-align: center;
    clear: both;
    margin: 16px 0;
    position: relative
}

.insta-feed-overlay {
    opacity: 0;
    background-color: transparent;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    transition: all .2s linear;
    display: flex;
    justify-content: center;
    align-items: center
}

.insta-feed-overlay,.insta-feed-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.insta-feed-overlay:after {
    content: " ";
    background-color: #000;
    opacity: .5
}

.insta-feed-container:hover .insta-feed-overlay {
    opacity: 1!important
}

.insta-feed-preview-modal {
    width: 1000px;
    height: 625px;
    background-color: #fff
}

.insta-feed-preview-modal .image-main {
    width: 620px
}

.insta-feed-preview-modal .insta-feed-preview-image {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: none;
    display: initial;
    opacity: 1;
    right: auto!important
}

.insta-feed-preview-modal .description {
    width: 380px;
    padding: 20px;
    overflow-y: auto
}

.insta-feed-preview-modal .caption {
    margin-top: 20px;
    word-wrap: break-word;
    white-space: pre-wrap;
    clear: both;
    color: #666;
    font-weight: 300;
    font-size: 15px
}

.insta-feed-preview-overlay-modal {
    background-color: rgba(0,0,0,.801)!important
}

.insta-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    border: 1px solid #f5f5f5
}

.insta-logo img {
    border-radius: 50%
}

.select-flag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 0;
    opacity: 0;
    border: 0;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.select-flag-img {
    width: 32px
}

.image-card-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0
}

@media screen and (max-width: 992px) {
    .image-card-container {
        flex-direction:column-reverse
    }
}

.image-card-container .content {
    margin: 25px 16px;
    flex-shrink: 5;
    flex-grow: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.image-card-container .content .title {
    max-width: 500px;
    display: block;
    position: relative;
    margin: 0
}

.image-card-container .content .title.container-title {
    max-width: unset;
    padding: 0 20px
}

.image-card-container .imageContainer {
    width: 55vw;
    height: 35vw;
    margin: 25px 0 25px 15px;
    position: relative
}

.image-card-container .imageContainer.reverse {
    margin: 25px 15px 25px 0
}

@media screen and (max-width: 992px) {
    .image-card-container .imageContainer {
        width:auto!important;
        height: 55vw;
        margin: 16px!important
    }
}

.image-card-container .imageContainer .image {
    width: 100%!important;
    height: 100%!important;
    -o-object-position: center center!important;
    object-position: center center!important
}

.image-card-container .content .link-main {
    max-width: 500px;
    display: flex;
    position: relative;
    margin: 24px 0 0;
    text-align: left;
    letter-spacing: .05em;
    width: 100%;
    font-size: 14px
}

.image-card-container .content .link-main.left {
    justify-content: flex-start
}

.image-card-container .content .link-main.center {
    justify-content: center
}

.image-card-container .content .link-main.right {
    justify-content: flex-end
}

.imageContainer .link-main.link-on-picture {
    position: absolute;
    bottom: 25%
}

.imageContainer .link-main.left.link-on-picture {
    left: 10%
}

.imageContainer .link-main.center.link-on-picture {
    left: 50%;
    transform: translateX(-50%)
}

.imageContainer .link-main.right.link-on-picture {
    right: 10%
}

.image-iframe-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0
}

.image-iframe-container iframe {
    width: 100%
}

@media screen and (max-width: 992px) {
    .image-iframe-container {
        flex-direction:column-reverse
    }
}

.image-iframe-container .content {
    margin: 25px 16px;
    width: 50vw;
    height: 35vw;
    display: flex;
    flex-direction: column
}

.image-iframe-container .content .title {
    display: block;
    position: relative;
    margin: 0
}

.image-iframe-container .imageContainer {
    width: 50vw;
    height: 35vw;
    margin: 25px 0 25px 15px;
    position: relative
}

.image-iframe-container .imageContainer.reverse {
    margin: 25px 15px 25px 0
}

@media screen and (max-width: 992px) {
    .image-iframe-container .content,.image-iframe-container .imageContainer {
        width:auto;
        height: 55vw;
        margin: 16px!important
    }
}

.image-iframe-container .imageContainer .image {
    width: 100%!important;
    height: 100%!important;
    -o-object-fit: cover!important;
    object-fit: cover!important;
    -o-object-position: center center!important;
    object-position: center center!important
}

.image-iframe-container .content .link-main {
    max-width: 500px;
    display: flex;
    position: relative;
    margin: 24px 0 0;
    text-align: left;
    letter-spacing: .05em;
    width: 100%;
    font-size: 14px
}

.image-iframe-container .content .link-main.left {
    justify-content: flex-start
}

.image-iframe-container .content .link-main.center {
    justify-content: center
}

.image-iframe-container .content .link-main.right {
    justify-content: flex-end
}

.placeholder-main .image {
    width: 128px;
    height: 128px
}

.collection-image-main {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.collection-list a {
    width: 80px
}

.collection-image-main img {
    border-radius: 50%
}

.collection-name {
    font-size: 12px!important;
    font-weight: 500;
    color: #171717;
    padding: 20px 0;
    line-height: 15px
}

.collection-title {
    padding-right: 24px;
    border-right: 1px solid #ececec;
    margin-right: 24px
}

.btn-link__main,.collection-title {
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-link__main {
    padding: 10px;
    margin-right: 16px;
    margin-bottom: 8px;
    transition: .2s ease-in-out 0s
}

.btn-link__main.zoom-enable:hover {
    scale: 1.02
}

.marquee__image {
    overflow-x: hidden!important;
    display: flex!important;
    flex-direction: row!important;
    position: relative;
    width: 100%
}

.marqueeContent__image {
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: scroll infinite;
    animation-direction: normal
}

.marquee_image__image {
    position: relative;
    height: 180px;
    width: 180px
}

@keyframes scroll {
    0% {
        transform: translateX(-1%)
    }

    to {
        transform: translateX(-51%)
    }
}

.blog-link-text-main {
    padding: 0;
    display: none
}

.blog-link-text-main nav {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px;
    scroll-padding: 0 4px
}

.blog-text-main {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 48px;
    scroll-snap-align: start;
    padding: 0 10.4px
}

.blog-text-main span {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(67,83,100,.65);
    -webkit-text-decoration: none;
    text-decoration: none;
    letter-spacing: .3px
}

.image-category-picker-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: -1px 0 0;
    border-top: 1px solid rgba(67,83,100,.15);
    border-bottom: 1px solid rgba(67,83,100,.15)
}

@media screen and (max-width: 992px) {
    .image-category-picker-container {
        flex-direction:column
    }

    .image-category-picker-container .content {
        padding: 20px 0;
        border-top: 1px solid rgba(67,83,100,.15);
        border-left: unset!important
    }
}

.image-category-picker-container .content {
    flex-shrink: 5;
    flex-grow: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(67,83,100,.15)
}

.image-category-picker-container .content .title {
    max-width: 500px;
    display: block;
    position: relative;
    margin: 0
}

.image-category-picker-container .imageContainer {
    width: 40vw;
    height: 30vw;
    position: relative
}

.image-category-picker-container .imageContainer.reverse {
    margin: 25px 15px 25px 0
}

@media screen and (max-width: 992px) {
    .image-category-picker-container .imageContainer {
        width:auto;
        height: 100vw;
        margin: 20px!important
    }
}

.image-category-picker-container .imageContainer .image {
    width: 100%!important;
    height: 100%!important;
    -o-object-position: center center!important;
    object-position: center center!important
}

.image-category-picker-container .content .link-main {
    max-width: 500px;
    display: flex;
    position: relative;
    margin: 24px 0 0;
    text-align: left;
    letter-spacing: .05em;
    width: 100%;
    font-size: 14px
}

.image-category-picker-container .content .link-main.left {
    justify-content: flex-start
}

.image-category-picker-container .content .link-main.center {
    justify-content: center
}

.image-category-picker-container .content .link-main.right {
    justify-content: flex-end
}

.category-picker-svg {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 0;
    height: 100%;
    transform: translateY(-50%);
    animation: stroke-animation .3s ease-in forwards
}

@keyframes stroke-animation {
    to {
        width: calc(100% + 30px)
    }
}

.placeholder-main {
    position: relative;
    width: 100%
}

.shimmer-bg {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #ddd;
    background: linear-gradient(90deg,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);
    background-size: 1200px 100%
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0
    }

    to {
        background-position: 1200px 0
    }
}

.placeholder-main .title {
    height: 24px;
    width: 30%
}

.placeholder-main .title-w-100 {
    height: 24px;
    width: 100%
}

.placeholder-main .button {
    height: 32px;
    width: 35%
}

.placeholder-main .detail-button {
    height: 38px;
    width: 164px
}

.placeholder-main .small-info {
    height: 24px;
    width: 40%;
    margin-bottom: 12px
}

.placeholder-main .line-title {
    height: 6px;
    width: 100%;
    margin-bottom: 12px;
    margin-top: 12px
}

.placeholder-main .line-content {
    height: 6px;
    width: 100%;
    margin-bottom: 8px
}

.placeholder-main .line-content-w-20 {
    height: 6px;
    width: 20%;
    margin-bottom: 8px
}

.placeholder-main .line-content-w-30 {
    height: 6px;
    width: 30%;
    margin-bottom: 8px
}

.placeholder-main .line-content-w-80 {
    height: 6px;
    width: 80%;
    margin-bottom: 8px
}

.placeholder-main .line-content-w-50 {
    height: 6px;
    width: 50%;
    margin-bottom: 8px
}

.placeholder-main .image {
    width: 100px;
    height: 100px
}

:root {
    --primary-color: #00268a;
    --primary-textColor: #000;
    --primary-linkColor: #9da5af;
    --prefix-color: #6c757d;
    --primary-hoverColor: #001f6e;
    --primary-textHoverColor: #00268a;
    --border-color: #ececec;
    --line-throughColor: #aaa;
    --input-borderColor: #9da5af80;
    --primary-variantNameColor: #000;
    --primary-variantSelectedNameColor: #fff;
    --bodyBackgroundColor: #fff;
    --variantTitleColor: #818181;
    --productOptionNameColor: #3a3a3a;
    --variant-types-out-of-stock: #f4f4f5
}

.single-product-container-main {
    height: 670px
}

.single-product-product-info {
    flex: 0 0 36.6666666667%;
    max-width: 36.6666666667%;
    padding: 40px
}

.single-product-image {
    flex: 0 0 63.3333333333%;
    max-width: 63.3333333333%
}

.single-product-product-name {
    overflow: hidden;
    display: block;
    height: unset;
    margin-bottom: 32px;
    line-height: 58px;
    font-size: 50px;
    font-weight: 600
}

.single-product-price {
    margin-bottom: 24px;
    line-height: 40px;
    font-size: 32px
}

.single-product-buttons-main button,.single-product-buttons-main div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-align: center;
    font-size: 16px;
    transition: all .2s linear;
    font-weight: 500;
    cursor: pointer
}

.single-product-review-button:hover {
    opacity: .7
}

.svg-success {
    display: inline-block;
    vertical-align: top;
    height: 40px;
    width: 40px;
    opacity: 1;
    overflow: visible
}

@keyframes success-tick {
    0% {
        stroke-dashoffset: 16px;
        opacity: 1
    }

    to {
        stroke-dashoffset: 31px;
        opacity: 1
    }
}

@keyframes success-circle-outline {
    0% {
        stroke-dashoffset: 72px;
        opacity: 1
    }

    to {
        stroke-dashoffset: 0px;
        opacity: 1
    }
}

@keyframes success-circle-fill {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.svg-success .success-tick {
    fill: none;
    stroke-width: 1px;
    stroke: #fff;
    stroke-dasharray: 15px,15px;
    stroke-dashoffset: -14px;
    animation: success-tick .25s ease .4s forwards;
    opacity: 0
}

.svg-success .success-circle-outline {
    fill: none;
    stroke-width: 1px;
    stroke-dasharray: 72px,72px;
    stroke-dashoffset: 72px;
    animation: success-circle-outline .3s ease-in-out 10ms forwards;
    opacity: 0
}

.svg-success .success-circle-fill {
    stroke: none;
    opacity: 0;
    animation: success-circle-fill .2s ease-out .3s forwards
}

[class*=single-product-container-main],[class*=single-product-container-main] img {
    transition: all .2s linear
}

[class*=single-product-container-main]:hover img {
    scale: 1.05;
    transition: all .2s linear
}

/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
html {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji
}

hr {
    height: 0;
    color: inherit
}

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

b,strong {
    font-weight: bolder
}

code,kbd,pre,samp {
    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;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,select {
    text-transform: none
}

[type=button],[type=reset],[type=submit],button {
    -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,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre {
    margin: 0
}

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

fieldset,ol,ul {
    margin: 0;
    padding: 0
}

ol,ul {
    list-style: none
}

html {
    font-family: F,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    line-height: 1.5
}

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

*,:after,:before {
    box-sizing: border-box;
    border: 0 solid
}

hr {
    border-top-width: 1px
}

img {
    border-style: solid
}

textarea {
    resize: vertical
}

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

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

[role=button],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
}

code,kbd,pre,samp {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace
}

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

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

[hidden] {
    display: none
}

*,:after,:before {
    --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)
}

@media (min-width: 1280px) {
    .container {
        max-width:1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width:1536px
    }
}

.btn {
    display: inline-block;
    height: 2.5rem;
    cursor: pointer;
    border-radius: .25rem;
    --tw-bg-opacity: 1;
    background-color: rgba(161,161,170,var(--tw-bg-opacity));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pointer-events-none {
    pointer-events: none
}

.visible {
    visibility: visible
}

.\!visible {
    visibility: visible!important
}

.invisible {
    visibility: hidden
}

.fixed {
    position: fixed
}

.\!fixed {
    position: fixed!important
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.\!relative {
    position: relative!important
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.top-2 {
    top: .5rem
}

.right-2 {
    right: .5rem
}

.-top-1 {
    top: -.25rem
}

.-right-1 {
    right: -.25rem
}

.right-6 {
    right: 1.5rem
}

.right-0 {
    right: 0
}

.bottom-0 {
    bottom: 0
}

.top-1\/2 {
    top: 50%
}

.left-5 {
    left: 1.25rem
}

.right-5 {
    right: 1.25rem
}

.-bottom-8 {
    bottom: -2rem
}

.left-1\/2 {
    left: 50%
}

.left-0 {
    left: 0
}

.top-4 {
    top: 1rem
}

.right-4 {
    right: 1rem
}

.top-8 {
    top: 2rem
}

.left-6 {
    left: 1.5rem
}

.left-3 {
    left: .75rem
}

.top-0 {
    top: 0
}

.top-full {
    top: 100%
}

.left-12 {
    left: 3rem
}

.bottom-12 {
    bottom: 3rem
}

.top-2\/4 {
    top: 50%
}

.left-4 {
    left: 1rem
}

.right-1 {
    right: .25rem
}

.bottom-3 {
    bottom: .75rem
}

.bottom-16 {
    bottom: 4rem
}

.left-2 {
    left: .5rem
}

.top-\[50\%\] {
    top: 50%
}

.top-\[20\%\] {
    top: 20%
}

.bottom-6 {
    bottom: 1.5rem
}

.right-3 {
    right: .75rem
}

.top-3 {
    top: .75rem
}

.z-20 {
    z-index: 20
}

.z-10 {
    z-index: 10
}

.z-50 {
    z-index: 50
}

.z-\[100\] {
    z-index: 100
}

.z-\[9999999\] {
    z-index: 9999999
}

.order-2 {
    order: 2
}

.order-1 {
    order: 1
}

.col-span-3 {
    grid-column: span 3/span 3
}

.col-span-6 {
    grid-column: span 6/span 6
}

.col-span-12 {
    grid-column: span 12/span 12
}

.col-span-2 {
    grid-column: span 2/span 2
}

.col-span-11 {
    grid-column: span 11/span 11
}

.col-span-10 {
    grid-column: span 10/span 10
}

.col-span-7 {
    grid-column: span 7/span 7
}

.col-span-1 {
    grid-column: span 1/span 1
}

.col-span-9 {
    grid-column: span 9/span 9
}

.col-span-4 {
    grid-column: span 4/span 4
}

.col-start-1 {
    grid-column-start: 1
}

.col-start-3 {
    grid-column-start: 3
}

.col-end-8 {
    grid-column-end: 8
}

.col-end-2 {
    grid-column-end: 2
}

.m-4 {
    margin: 1rem
}

.m-5 {
    margin: 1.25rem
}

.m-auto {
    margin: auto
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.\!my-4 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important
}

.\!mx-\[0\.2rem\] {
    margin-left: .2rem!important;
    margin-right: .2rem!important
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mr-1 {
    margin-right: .25rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-12 {
    margin-top: 3rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-8 {
    margin-top: 2rem
}

.mb-4 {
    margin-bottom: 1rem
}

.ml-2 {
    margin-left: .5rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-1 {
    margin-top: .25rem
}

.mr-3 {
    margin-right: .75rem
}

.\!mb-2 {
    margin-bottom: .5rem!important
}

.\!mt-2 {
    margin-top: .5rem!important
}

.mt-10 {
    margin-top: 2.5rem
}

.\!ml-0 {
    margin-left: 0!important
}

.mr-2 {
    margin-right: .5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-5 {
    margin-left: 1.25rem
}

.ml-4 {
    margin-left: 1rem
}

.mt-\[22px\] {
    margin-top: 22px
}

.mt-3 {
    margin-top: .75rem
}

.ml-0 {
    margin-left: 0
}

.\!mb-4 {
    margin-bottom: 1rem!important
}

.mb-3 {
    margin-bottom: .75rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-40 {
    margin-top: 10rem
}

.mb-40 {
    margin-bottom: 10rem
}

.mt-16 {
    margin-top: 4rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mt-\[3px\] {
    margin-top: 3px
}

.mb-0 {
    margin-bottom: 0
}

.ml-1 {
    margin-left: .25rem
}

.mt-0 {
    margin-top: 0
}

.ml-3 {
    margin-left: .75rem
}

.mt-56 {
    margin-top: 14rem
}

.mr-4 {
    margin-right: 1rem
}

.-ml-2 {
    margin-left: -.5rem
}

.\!mt-3 {
    margin-top: .75rem!important
}

.\!mt-0 {
    margin-top: 0!important
}

.mr-0 {
    margin-right: 0
}

.-mt-1 {
    margin-top: -.25rem
}

.mr-6 {
    margin-right: 1.5rem
}

.ml-6 {
    margin-left: 1.5rem
}

.ml-10 {
    margin-left: 2.5rem
}

.\!mb-0 {
    margin-bottom: 0!important
}

.ml-auto {
    margin-left: auto
}

.ml-12 {
    margin-left: 3rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.\!flex {
    display: flex!important
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.\!hidden {
    display: none!important
}

.h-\[120px\] {
    height: 120px
}

.h-8 {
    height: 2rem
}

.h-5 {
    height: 1.25rem
}

.h-9 {
    height: 2.25rem
}

.h-72 {
    height: 18rem
}

.h-full {
    height: 100%
}

.h-12 {
    height: 3rem
}

.h-10 {
    height: 2.5rem
}

.h-\[30px\] {
    height: 30px
}

.h-6 {
    height: 1.5rem
}

.h-\[68vh\] {
    height: 68vh
}

.h-\[6px\] {
    height: 6px
}

.h-\[300px\] {
    height: 300px
}

.h-14 {
    height: 3.5rem
}

.h-20 {
    height: 5rem
}

.h-0 {
    height: 0
}

.\!h-8 {
    height: 2rem!important
}

.h-\[12px\] {
    height: 12px
}

.h-\[32px\] {
    height: 32px
}

.h-\[21px\] {
    height: 21px
}

.h-\[100vh\] {
    height: 100vh
}

.h-\[75px\] {
    height: 75px
}

.h-\[150px\] {
    height: 150px
}

.h-\[100px\] {
    height: 100px
}

.h-\[80px\] {
    height: 80px
}

.\!h-\[90vh\] {
    height: 90vh!important
}

.h-\[90vh\] {
    height: 90vh
}

.h-3 {
    height: .75rem
}

.h-\[180px\] {
    height: 180px
}

.h-\[140px\] {
    height: 140px
}

.\!h-9 {
    height: 2.25rem!important
}

.h-4 {
    height: 1rem
}

.h-5\/6 {
    height: 83.333333%
}

.h-24 {
    height: 6rem
}

.min-h-\[400px\] {
    min-height: 400px
}

.min-h-\[24px\] {
    min-height: 24px
}

.\!min-h-0 {
    min-height: 0!important
}

.min-h-\[44px\] {
    min-height: 44px
}

.w-full {
    width: 100%
}

.w-9\/12 {
    width: 75%
}

.w-\[120px\] {
    width: 120px
}

.w-\[80px\] {
    width: 80px
}

.w-48 {
    width: 12rem
}

.w-11\/12 {
    width: 91.666667%
}

.w-1\/5 {
    width: 20%
}

.w-2\/5 {
    width: 40%
}

.w-4\/5 {
    width: 80%
}

.w-64 {
    width: 16rem
}

.w-8 {
    width: 2rem
}

.w-3\/4 {
    width: 75%
}

.w-20 {
    width: 5rem
}

.w-10 {
    width: 2.5rem
}

.w-\[30px\] {
    width: 30px
}

.w-36 {
    width: 9rem
}

.w-9 {
    width: 2.25rem
}

.w-\[6px\] {
    width: 6px
}

.w-14 {
    width: 3.5rem
}

.w-12 {
    width: 3rem
}

.w-6 {
    width: 1.5rem
}

.w-\[1px\] {
    width: 1px
}

.w-1\/2 {
    width: 50%
}

.w-11 {
    width: 2.75rem
}

.w-1\/4 {
    width: 25%
}

.w-max {
    width: -moz-max-content;
    width: max-content
}

.w-\[65\%\] {
    width: 65%
}

.w-5 {
    width: 1.25rem
}

.w-5\/6 {
    width: 83.333333%
}

.w-\[150px\] {
    width: 150px
}

.w-\[75px\] {
    width: 75px
}

.w-\[100px\] {
    width: 100px
}

.w-\[45\%\] {
    width: 45%
}

.w-3 {
    width: .75rem
}

.w-\[180px\] {
    width: 180px
}

.w-\[140px\] {
    width: 140px
}

.w-32 {
    width: 8rem
}

.\!w-8 {
    width: 2rem!important
}

.w-px {
    width: 1px
}

.w-\[38px\] {
    width: 38px
}

.w-3\/5 {
    width: 60%
}

.w-28 {
    width: 7rem
}

.w-24 {
    width: 6rem
}

.min-w-full {
    min-width: 100%
}

.\!min-w-\[120px\] {
    min-width: 120px!important
}

.min-w-\[150px\] {
    min-width: 150px
}

.min-w-\[120px\] {
    min-width: 120px
}

.min-w-max {
    min-width: -moz-max-content;
    min-width: max-content
}

.max-w-5xl {
    max-width: 64rem
}

.max-w-md {
    max-width: 28rem
}

.max-w-\[250px\] {
    max-width: 250px
}

.max-w-full {
    max-width: 100%
}

.max-w-max {
    max-width: -moz-max-content;
    max-width: max-content
}

.max-w-lg {
    max-width: 32rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-\[180px\] {
    max-width: 180px
}

.max-w-\[300px\] {
    max-width: 300px
}

.max-w-\[320px\] {
    max-width: 320px
}

.max-w-\[100px\] {
    max-width: 100px
}

.flex-1 {
    flex: 1 1 0%
}

.flex-none {
    flex: none
}

.\!flex-1 {
    flex: 1 1 0%!important
}

.flex-shrink-0 {
    flex-shrink: 0
}

.flex-shrink {
    flex-shrink: 1
}

.flex-grow {
    flex-grow: 1
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: var(--tw-transform)
}

.-translate-x-1\/2,.-translate-x-2\/4 {
    --tw-translate-x: -50%;
    transform: var(--tw-transform)
}

.-translate-y-2\/4 {
    --tw-translate-y: -50%;
    transform: var(--tw-transform)
}

.-rotate-90 {
    --tw-rotate: -90deg
}

.-rotate-90,.rotate-45 {
    transform: var(--tw-transform)
}

.rotate-45 {
    --tw-rotate: 45deg
}

.transform {
    transform: var(--tw-transform)
}

.cursor-pointer {
    cursor: pointer
}

.cursor-default {
    cursor: default
}

.cursor-not-allowed {
    cursor: not-allowed
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.resize {
    resize: both
}

.grid-cols-6 {
    grid-template-columns: repeat(6,minmax(0,1fr))
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

.grid-cols-12 {
    grid-template-columns: repeat(12,minmax(0,1fr))
}

.grid-cols-8 {
    grid-template-columns: repeat(8,minmax(0,1fr))
}

.grid-cols-11 {
    grid-template-columns: repeat(11,minmax(0,1fr))
}

.grid-cols-10 {
    grid-template-columns: repeat(10,minmax(0,1fr))
}

.flex-row {
    flex-direction: row
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.content-start {
    align-content: flex-start
}

.items-start {
    align-items: flex-start
}

.\!items-start {
    align-items: flex-start!important
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-10 {
    gap: 2.5rem
}

.gap-2 {
    gap: .5rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-12 {
    gap: 3rem
}

.gap-3 {
    gap: .75rem
}

.gap-8 {
    gap: 2rem
}

.gap-x-6 {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
}

.gap-y-0 {
    row-gap: 0
}

.gap-x-3 {
    -moz-column-gap: .75rem;
    column-gap: .75rem
}

.gap-y-4 {
    row-gap: 1rem
}

.gap-y-10 {
    row-gap: 2.5rem
}

.gap-x-12 {
    -moz-column-gap: 3rem;
    column-gap: 3rem
}

.gap-y-8 {
    row-gap: 2rem
}

.gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem
}

.gap-y-3 {
    row-gap: .75rem
}

.gap-x-2 {
    -moz-column-gap: .5rem;
    column-gap: .5rem
}

.gap-y-2 {
    row-gap: .5rem
}

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

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

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

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

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

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

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

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

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

.space-y-5>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.75rem * var(--tw-space-y-reverse))
}

.self-center {
    align-self: center
}

.justify-self-center {
    justify-self: center
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-hidden {
    overflow-y: hidden
}

.overflow-y-scroll {
    overflow-y: scroll
}

.truncate {
    overflow: hidden;
    white-space: nowrap
}

.overflow-ellipsis,.truncate {
    text-overflow: ellipsis
}

.whitespace-nowrap {
    white-space: nowrap
}

.rounded {
    border-radius: .25rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-\[4px\] {
    border-radius: 4px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.\!rounded-full {
    border-radius: 9999px!important
}

.rounded-\[6px\] {
    border-radius: 6px
}

.rounded-\[8px\] {
    border-radius: 8px
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-t {
    border-top-width: 1px
}

.border-b {
    border-bottom-width: 1px
}

.border-l {
    border-left-width: 1px
}

.border-b-2 {
    border-bottom-width: 2px
}

.border-r {
    border-right-width: 1px
}

.border-none {
    border-style: none
}

.\!border-none {
    border-style: none!important
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgba(228,228,231,var(--tw-border-opacity))
}

.border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgba(254,226,226,var(--tw-border-opacity))
}

.border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgba(209,250,229,var(--tw-border-opacity))
}

.border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgba(219,234,254,var(--tw-border-opacity))
}

.border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgba(254,243,199,var(--tw-border-opacity))
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgba(212,212,216,var(--tw-border-opacity))
}

.border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgba(113,113,122,var(--tw-border-opacity))
}

.border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgba(248,113,113,var(--tw-border-opacity))
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgba(161,161,170,var(--tw-border-opacity))
}

.border-\[\#e6e6e6\] {
    --tw-border-opacity: 1;
    border-color: rgba(230,230,230,var(--tw-border-opacity))
}

.\!border-\[\#e2e2e2\] {
    --tw-border-opacity: 1!important;
    border-color: rgba(226,226,226,var(--tw-border-opacity))!important
}

.border-transparent {
    border-color: transparent
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgba(0,0,0,var(--tw-border-opacity))
}

.border-\[\#DAD8E3\] {
    --tw-border-opacity: 1;
    border-color: rgba(218,216,227,var(--tw-border-opacity))
}

.border-\[\#cbcbcb\] {
    --tw-border-opacity: 1;
    border-color: rgba(203,203,203,var(--tw-border-opacity))
}

.border-\[\#797979\] {
    --tw-border-opacity: 1;
    border-color: rgba(121,121,121,var(--tw-border-opacity))
}

.bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgba(254,242,242,var(--tw-bg-opacity))
}

.bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgba(236,253,245,var(--tw-bg-opacity))
}

.bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgba(239,246,255,var(--tw-bg-opacity))
}

.bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgba(255,251,235,var(--tw-bg-opacity))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgba(212,212,216,var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgba(0,0,0,var(--tw-bg-opacity))
}

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

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgba(244,244,245,var(--tw-bg-opacity))
}

.bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgba(254,226,226,var(--tw-bg-opacity))
}

.bg-\[\#fafafa\] {
    --tw-bg-opacity: 1;
    background-color: rgba(250,250,250,var(--tw-bg-opacity))
}

.bg-\[\#1313135c\] {
    background-color: #1313135c
}

.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgba(24,24,27,var(--tw-bg-opacity))
}

.bg-\[\#333333b4\] {
    background-color: #333333b4
}

.bg-\[\#ffffffe6\] {
    background-color: #ffffffe6
}

.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgba(209,250,229,var(--tw-bg-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-\[\#ddd\] {
    --tw-bg-opacity: 1;
    background-color: rgba(221,221,221,var(--tw-bg-opacity))
}

.bg-\[\#f8f9fa\] {
    --tw-bg-opacity: 1;
    background-color: rgba(248,249,250,var(--tw-bg-opacity))
}

.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgba(239,68,68,var(--tw-bg-opacity))
}

.bg-\[\#ffffff1b\] {
    background-color: #ffffff1b
}

.bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgba(39,39,42,var(--tw-bg-opacity))
}

.bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgba(161,161,170,var(--tw-bg-opacity))
}

.bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(82,82,91,var(--tw-bg-opacity))
}

.bg-opacity-50 {
    --tw-bg-opacity: 0.5
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.p-4 {
    padding: 1rem
}

.p-3 {
    padding: .75rem
}

.p-1 {
    padding: .25rem
}

.p-0 {
    padding: 0
}

.p-5 {
    padding: 1.25rem
}

.p-14 {
    padding: 3.5rem
}

.\!p-0 {
    padding: 0!important
}

.p-2 {
    padding: .5rem
}

.p-6 {
    padding: 1.5rem
}

.p-\[30px\] {
    padding: 30px
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.\!px-2 {
    padding-left: .5rem!important;
    padding-right: .5rem!important
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.py-\[18px\] {
    padding-top: 18px;
    padding-bottom: 18px
}

.\!py-1 {
    padding-top: .25rem!important;
    padding-bottom: .25rem!important
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-16 {
    padding-top: 4rem
}

.pl-0 {
    padding-left: 0
}

.pr-0 {
    padding-right: 0
}

.pr-5 {
    padding-right: 1.25rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pl-4 {
    padding-left: 1rem
}

.pr-4 {
    padding-right: 1rem
}

.pt-8 {
    padding-top: 2rem
}

.pt-6 {
    padding-top: 1.5rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pb-0 {
    padding-bottom: 0
}

.pt-10 {
    padding-top: 2.5rem
}

.\!pb-28 {
    padding-bottom: 7rem!important
}

.pt-12 {
    padding-top: 3rem
}

.pt-0 {
    padding-top: 0
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-12 {
    padding-bottom: 3rem
}

.pl-6 {
    padding-left: 1.5rem
}

.pl-2 {
    padding-left: .5rem
}

.pb-5 {
    padding-bottom: 1.25rem
}

.pb-\[18px\] {
    padding-bottom: 18px
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-lg {
    font-size: 1.125rem
}

.text-lg,.text-xl {
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1
}

.\!text-xs {
    font-size: .75rem!important;
    line-height: 1rem!important
}

.\!text-base {
    font-size: 1rem!important;
    line-height: 1.5rem!important
}

.text-\[10px\] {
    font-size: 10px
}

.font-extrabold {
    font-weight: 800
}

.font-medium {
    font-weight: 500
}

.font-light {
    font-weight: 300
}

.font-bold {
    font-weight: 700
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.font-black {
    font-weight: 900
}

.\!font-normal {
    font-weight: 400!important
}

.\!font-medium {
    font-weight: 500!important
}

.uppercase {
    text-transform: uppercase
}

.italic {
    font-style: italic
}

.leading-none {
    line-height: 1
}

.leading-8 {
    line-height: 2rem
}

.leading-\[18px\] {
    line-height: 18px
}

.leading-5 {
    line-height: 1.25rem
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-wide {
    letter-spacing: .025em
}

.text-red-600 {
    --tw-text-opacity: 1;
    color: rgba(220,38,38,var(--tw-text-opacity))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgba(82,82,91,var(--tw-text-opacity))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgba(113,113,122,var(--tw-text-opacity))
}

.text-green-600 {
    --tw-text-opacity: 1;
    color: rgba(5,150,105,var(--tw-text-opacity))
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgba(37,99,235,var(--tw-text-opacity))
}

.text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgba(217,119,6,var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgba(239,68,68,var(--tw-text-opacity))
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgba(16,185,129,var(--tw-text-opacity))
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgba(39,39,42,var(--tw-text-opacity))
}

.\!text-\[\#2c2c2c\] {
    --tw-text-opacity: 1!important;
    color: rgba(44,44,44,var(--tw-text-opacity))!important
}

.text-\[\#818181\] {
    --tw-text-opacity: 1;
    color: rgba(129,129,129,var(--tw-text-opacity))
}

.text-black {
    --tw-text-opacity: 1;
    color: rgba(0,0,0,var(--tw-text-opacity))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgba(161,161,170,var(--tw-text-opacity))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgba(63,63,70,var(--tw-text-opacity))
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgba(24,24,27,var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgba(255,255,255,var(--tw-text-opacity))
}

.text-\[\#121926\] {
    --tw-text-opacity: 1;
    color: rgba(18,25,38,var(--tw-text-opacity))
}

.text-\[\#323334\] {
    --tw-text-opacity: 1;
    color: rgba(50,51,52,var(--tw-text-opacity))
}

.text-\[\#151b1c\] {
    --tw-text-opacity: 1;
    color: rgba(21,27,28,var(--tw-text-opacity))
}

.text-red-100 {
    --tw-text-opacity: 1;
    color: rgba(254,226,226,var(--tw-text-opacity))
}

.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgba(245,158,11,var(--tw-text-opacity))
}

.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgba(29,78,216,var(--tw-text-opacity))
}

.underline {
    text-decoration: underline
}

.line-through {
    text-decoration: line-through
}

.no-underline {
    text-decoration: none
}

.\!no-underline {
    text-decoration: none!important
}

.opacity-20 {
    opacity: .2
}

.opacity-40 {
    opacity: .4
}

.opacity-70 {
    opacity: .7
}

.opacity-30 {
    opacity: .3
}

.shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.blur {
    --tw-blur: blur(8px)
}

.blur,.filter {
    filter: var(--tw-filter)
}

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

.transition {
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: background-color,border-color,color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.duration-300 {
    transition-duration: .3s
}

* {
    padding: 0;
    box-sizing: border-box
}

*,body {
    margin: 0
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    background-color: var(--bodyBackgroundColor)
}

.max-w-lg {
    max-width: 32rem!important
}

.max-w-md {
    max-width: 26rem!important
}

::-moz-placeholder {
    color: var(--primary-textColor)!important
}

::placeholder {
    color: var(--primary-textColor)!important
}

input:disabled {
    background-color: transparent!important
}

.container-expand-right {
    margin-right: 0!important;
    margin-left: auto!important
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.slick-slide,.slick-slide * {
    outline: none!important
}

.error-page-main {
    background-size: cover!important;
    background-position: 50%!important;
    height: 100vh
}

.error-page-main:not(.hide-overlay-bg):before {
    content: "";
    background-color: rgba(0,38,138,.2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.slick-disabled {
    opacity: .4!important
}

.faq-answer a {
    text-decoration: underline
}

.c__overlay {
    background-color: rgba(59,59,59,.299);
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .25s
}

.sticky-filter-mobile {
    position: sticky;
    top: 70px;
    z-index: 99999
}

.category-image-banner-main:hover .c__overlay {
    width: 100%;
    height: 100%
}

.select-border {
    border-bottom: 1px solid var(--border-color)
}

.features-grid:not(:last-child) {
    margin-bottom: 24px
}

.category-products-main .category-products-info-main .price-main.range-price {
    height: unset!important
}

.swiper-pagination-bullet {
    background-color: #ccc!important;
    opacity: 1!important;
    margin: 0 .5rem!important
}

.contact-main .flag-input {
    padding-left: 8px
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color)!important;
    width: 2rem!important;
    border-radius: 10rem!important
}

.error-page-link {
    color: #000;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background-color: #fff;
    text-transform: uppercase;
    min-width: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    letter-spacing: .05em;
    margin-top: 20px
}

.error-page-link:hover {
    color: #fff;
    background-color: var(--primary-color)
}

.avarage-tooltip {
    background-color: #f4f4f4;
    color: #000;
    padding: 2px 5px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 99;
    min-width: 33px;
    display: flex;
    align-items: center;
    justify-content: center
}

.locale-bar-modal-custom,.react-confirm-alert-overlay {
    z-index: 99999999999!important
}

.locale-bar-modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(0,0%,100%,.9);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    opacity: 1;
    padding: 0 12px
}

.unreset-reset a {
    text-decoration: underline;
    color: #06c
}

.modal-close-button {
    top: -30px!important;
    right: -30px!important;
    border: 2px solid #000!important;
    padding: 5px!important;
    background: #fff!important
}

.modal-close-button-product {
    top: 5px!important;
    right: 5px!important;
    background-color: #000!important;
    padding: 3px!important;
    color: #fff!important
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.checkbox__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e8e8e8;
    transition: .4s
}

.checkbox__slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .4s
}

input:checked+.checkbox__slider {
    background-color: var(--primary-color)
}

.variant__slider__design {
    overflow-x: auto;
    padding-bottom: 8px;
    align-items: center
}

.variant__slider__design::-webkit-scrollbar {
    height: 5px
}

.variant__slider__design::-webkit-scrollbar-track {
    background-color: #f3f3f3
}

.variant__slider__design::-webkit-scrollbar-thumb {
    background: #dedede
}

.variant__slider__design::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
    -webkit-transition: all .3s;
    transition: all .3s
}

.variant__slider__design .product-variant-choice-image {
    flex-shrink: 0
}

input:checked+.checkbox__slider:before {
    transform: translateX(16px)
}

.checkbox__slider.checkbox__round {
    border-radius: 34px
}

.checkbox__slider.checkbox__round:before {
    border-radius: 50%
}

.product-offer-select-arrow {
    background-color: #fff;
    padding-left: 0;
    right: 1px
}

.product-offer-select-main:hover .product-offer-select {
    cursor: pointer
}

.product-offer-select-main:hover .product-offer-select-arrow {
    display: none
}

.product-offer-select {
    background-color: #fff
}

.testimonial-main {
    min-height: 250px
}

.testimonial-main .writer {
    font-style: italic
}

.activate-button {
    color: #fff;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--primary-color);
    min-width: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    letter-spacing: .05em;
    margin-top: 20px;
    cursor: pointer
}

.product-list-swiper .swiper-pagination-bullet {
    margin: 0!important;
    width: 7px!important;
    height: 7px!important;
    background-color: transparent!important;
    border: 1px solid var(--primary-color)
}

.product-list-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color)!important;
    width: 7px!important;
    height: 7px!important
}

.product-list-swiper .swiper-pagination {
    text-align: left!important;
    left: 2px!important;
    width: 35%!important;
    display: flex;
    flex-wrap: wrap;
    gap: 3px
}

.category_btn_link__main {
    border-radius: 15px
}

.video__gallery__ img {
    width: 100%;
    height: 100%
}

.video__gallery__ .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #000;
    border-radius: 50%
}

.product-container.border-effect:hover {
    box-shadow: 0 0 10px 0 rgba(40,40,40,.3);
    transition: box-shadow .3s
}

.feature-center {
    text-align: center!important;
    align-items: center!important
}

.feature-right {
    text-align: right!important;
    align-items: flex-end!important
}

.feature-left {
    text-align: left!important;
    align-items: flex-start!important
}

.prev-button-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 20px
}

.prev-button-main .prev-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s
}

.prev-button-main .prev-button:hover {
    background-color: var(--primary-hoverColor)
}

.iframe-main iframe {
    width: 100%!important
}

button.glide__bullet--active {
    background-color: #000!important
}

.fade-enter {
    opacity: 0
}

.fade-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .3s,transform .3s
}

.category-link-list-main {
    flex-wrap: wrap
}

.fade-exit {
    opacity: 1
}

.fade-exit-active {
    opacity: 0;
    transition: opacity .3s,transform .3s
}

.slide-right-enter {
    opacity: 0;
    transform: translateX(100%)
}

.slide-right-enter-active {
    transition: opacity .3s,transform .3s
}

.slide-right-enter-active,.slide-right-exit {
    opacity: 1;
    transform: translateX(0)
}

.slide-right-exit-active {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .3s,transform .3s
}

.container {
    width: 100%
}

.contact-textarea {
    width: 100%;
    border-bottom: 1px solid #dfe2e6;
    border-radius: 0;
    outline: none;
    padding: 16px 16px 16px 0;
    resize: none;
    font-weight: 500;
    font-size: 14px
}

.contact-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    transition: .3s;
    font-weight: 900;
    height: 48px
}

.editor-paragraph {
    margin: 15px 0!important
}

.contact-btn span {
    letter-spacing: .05em
}

.contact-btn:hover {
    background-color: var(--primary-hoverColor)!important
}

.product-variant-choice-bg {
    width: 30px;
    height: 30px;
    border: 1px solid #efefef;
    display: flex;
    border-radius: 4px
}

.product-variant-choice-bg.borderless {
    border: none;
    width: 15px
}

.product-variant-choice-bg.choice-circle {
    border-radius: 50%
}

.product-variant-choice-image {
    width: 30px;
    height: 30px;
    border: 1px solid #efefef;
    display: flex;
    border-radius: 4px
}

.product-variant-choice-image img {
    border-radius: 4px
}

.product-variant-choice-image.choice-circle,.product-variant-choice-image.choice-circle img {
    border-radius: 50%
}

.product-options-box {
    transition: all .2s
}

.product-options-box.passive {
    visibility: hidden;
    opacity: 0;
    max-height: 0
}

.product-options-box.active {
    visibility: visible;
    opacity: 1;
    max-height: 1000px
}

.caret {
    transition: all .2s
}

.caret.passive {
    transform: rotate(0)
}

.caret.active {
    transform: rotate(-180deg)
}

.mobile-iframe {
    display: none
}

.add-to-cart-overlay {
    width: 100%;
    transition: all .3s;
    margin-bottom: 8px
}

.add-to-cart-overlay .stock {
    border: 1px solid #000;
    background-color: #fff;
    color: #232323;
    width: 100%;
    font-size: 14px;
    letter-spacing: .05em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    height: 44px;
    transition: all .3s
}

.add-to-cart-overlay .out-of-stock {
    border: 1px solid #000;
    background-color: #ededed;
    color: #000;
    cursor: not-allowed;
    width: 100%;
    font-size: 14px;
    letter-spacing: .05em;
    display: flex;
    justify-content: center;
    font-weight: 700;
    height: 44px;
    align-items: center
}

.add-to-basket-overlay-modal {
    background-color: #232323cc!important
}

.add-to-basket-overlay-modal .add-to-basket-modal {
    max-width: 1020px;
    width: 1020px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 20px 75px rgba(0,0,0,.23);
    color: #000;
    max-height: 95vh;
    overflow: auto;
    min-height: 65vh
}

.add-to-basket-overlay-modal .add-to-basket-modal::-webkit-scrollbar,.cart-drawer-height::-webkit-scrollbar,.search-wrapper::-webkit-scrollbar {
    width: 5px
}

.add-to-basket-overlay-modal .add-to-basket-modal::-webkit-scrollbar-track,.cart-drawer-height::-webkit-scrollbar-track,.search-wrapper::-webkit-scrollbar-track {
    background: #fff
}

.add-to-basket-overlay-modal .add-to-basket-modal::-webkit-scrollbar-thumb,.add-to-basket-overlay-modal .add-to-basket-modal::-webkit-scrollbar-thumb:hover,.cart-drawer-height::-webkit-scrollbar-thumb,.cart-drawer-height::-webkit-scrollbar-thumb:hover,.search-wrapper::-webkit-scrollbar-thumb,.search-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e4e4e4
}

.product-detail-modal-slider-main .product-detail-page-slider .slick-arrow.slick-next {
    right: 5px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 35px;
    height: 35px
}

.product-detail-modal-slider-main .product-detail-page-slider .slick-arrow.slick-prev {
    left: 5px!important;
    z-index: 2;
    border: 2px solid #000;
    width: 35px;
    height: 35px
}

.Toastify__toast-container {
    z-index: 9999999999999!important
}

.filter-search-input {
    border-bottom: 1px solid #ececec;
    outline: none;
    font-size: 14px;
    padding: 6px 8px 6px 20px;
    width: 100%
}

.filter-search-input::-moz-placeholder {
    color: #a1a1a1!important;
    opacity: 1
}

.filter-search-input::placeholder {
    color: #a1a1a1!important;
    opacity: 1
}

.filter-search-input:-ms-input-placeholder {
    color: #a1a1a1!important
}

.filter-search-input::-ms-input-placeholder {
    color: #a1a1a1!important
}

.filter-search-icon {
    color: #a1a1a1!important;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.grid-position {
    bottom: 5%!important;
    transform: unset!important;
    align-items: unset!important
}

.grid-position.center {
    left: 50%!important;
    text-align: center!important;
    align-items: center!important;
    transform: translateX(-50%)!important
}

.grid-position.left {
    left: 0;
    text-align: left!important
}

.grid-position.right {
    right: 0;
    text-align: right!important;
    left: unset!important
}

.comment-image {
    width: 100px;
    height: 100px;
    position: relative;
    margin-right: 8px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #f7f7f7
}

.comment-image img {
    border-radius: 4px
}

.image-preview-modal {
    width: 770px;
    background-color: #fff;
    height: 625px;
    border-radius: 6px
}

.image-preview-modal .image {
    width: 470px;
    border-right: 1px solid #dadada;
    height: 625px
}

.image-preview-modal .comment {
    width: 300px;
    height: 625px;
    display: flex;
    align-items: center;
    padding: 0 20px
}

.brand-logo {
    width: 100%;
    height: 70px;
    position: relative;
    place-self: center;
    max-width: 140px
}

.brand-logo-main {
    display: flex!important;
    align-items: center;
    justify-content: center
}

.brands-slider .slick-dots {
    bottom: -60px!important
}

@media (max-width: 650px) {
    header {
        height:60px!important
    }

    header .logo {
        flex: 0.6!important
    }

    header .header-icons-main {
        flex: 0.4!important
    }

    header .header-icons-main.center {
        flex: 1!important
    }


    .mobile-menu {
        display: flex!important
    }

    header .favorite {
        display: none!important
    }

    .products-slider-main .slick-arrow.slick-prev {
        left: 10px!important;
        z-index: 2;
        width: 35px;
        height: 35px
    }

    .products-slider-main .slick-arrow.hide-arrow {
        display: none!important
    }

    .products-slider-main .slick-arrow.slick-next {
        right: 10px!important;
        z-index: 2;
        width: 35px;
        height: 35px
    }

    .product-detail-page-slider .slick-arrow.slick-next:not(.show-mobile),.product-detail-page-slider .slick-arrow.slick-prev:not(.show-mobile) {
        display: none!important
    }

    .products-slider-main .slick-arrow {
        display: flex!important;
        justify-content: center!important;
        align-items: center!important;
        opacity: 1!important;
        margin-top: 0!important;
        visibility: visible!important
    }

    .products-image-static-title,.products-slider-main .products-slider-title :is(h1,h2,h3,h4,h5,h6,p):not(.custom-size-title-mobile) {
        font-size: 1.5rem!important;
        color: #000;
        font-weight: 900;
        margin-bottom: 20px;
        line-height: 30px
    }

    .products-slider-main .products-slider-title :is(h1,h2,h3,h4,h5,h6).slider__with__link {
        width: 65%
    }

    .product-slider-all-link {
        width: 35%;
        justify-content: flex-end
    }

    h2:not(.collection-name),h2:not(.slider__title__sl),h3:not(.slider__title__sl) {
        font-size: 21px
    }

    .hero-image-main .content h3 {
        font-size: 21px!important
    }

    .features .feature span:nth-child(2) {
        font-size: 12px!important
    }

    footer .footer-copyright {
        padding: 15px 0!important
    }

    footer .footer-links li a {
        font-size: 12px;
        color: var(--primary-linkColor)
    }

    footer .desktop-footer {
        display: none!important
    }

    footer .mobile-footer {
        display: grid!important
    }

    footer .footer-img {
        justify-content: center!important
    }

    .product-detail-page-detail-box {
        margin-top: 20px!important
    }

    .home-slider-main img {
        height: 500px!important;
        -o-object-fit: cover!important;
        object-fit: cover!important
    }

    .product-detail-page-slider .variant-images-small,.slider-container {
        display: none
    }

    .product-detail-page-slider .variant-images-large {
        grid-column-start: 1!important;
        grid-column-end: 9!important;
        grid-row-start: 1;
        grid-row-end: 9
    }

    .home-slider-main:hover .slick-arrow,.login-bg,.register-bg {
        display: none!important
    }

    .login-grid,.register-grid {
        grid-column: span 10/span 10!important;
        max-height: none!important;
        width: 100%!important;
        padding: 20px 20px 70px!important
    }

    .login-grid.hide-image,.register-grid.hide-image {
        grid-column: span 11/span 11!important
    }

    .account-page .right-menu {
        grid-column-start: 1!important;
        grid-column: span 6/span 6!important
    }

    .account-page .left-menu {
        display: none!important
    }

    .account-page {
        background-image: unset!important
    }

    .account-page .back-button {
        display: flex!important
    }

    .modal-main {
        width: 100%!important
    }

    .category-products-main .category-products-info-main .brand-name,.products-slider-main .products-slider-info-main h2 {
        font-size: 14px!important
    }

    .category-products-main .category-products-info-main .product-name {
        font-size: 13px!important
    }

    .products-slider-main .products-slider-info-main .brand {
        font-size: 14px!important
    }

    .products-slider-main .products-slider-info-main .product-name {
        font-size: 13px!important
    }

    .category-products-main .category-products-info-main .variant,.products-slider-main .products-slider-info-main .variant {
        font-size: 12px!important
    }

    .category-products-main .category-products-info-main .price-main .discount-price span:first-child,.products-slider-main .products-slider-info-main .price-main .discount-price span:first-child {
        font-size: 13px!important
    }

    .category-products-main .category-products-info-main .price-main .discount-price span:nth-child(2),.category-products-main .category-products-info-main .price-main .sell-price,.products-slider-main .products-slider-info-main .price-main .discount-price span:last-child,.products-slider-main .products-slider-info-main .price-main .sell-price {
        font-size: 15px!important
    }

    .product-detail-page-detail-box .product-name-main .brand-name {
        font-size: 18px!important
    }

    .home-slider-main .slider-grid-main {
        grid-template-rows: repeat(10,14vw)
    }

    .custom-page-main .content {
        width: 100%!important;
        padding: 30px
    }

    .custom-page-main .title {
        font-size: 24px!important
    }

    .custom-page-main .content h1,.custom-page-main .content h2,.custom-page-main .content h3,.custom-page-main .content h4,.custom-page-main .content h5,.custom-page-main .content h6 {
        font-weight: 700;
        margin-top: 2.5em;
        margin-bottom: 1em;
        font-size: 17px!important
    }

    .custom-page-main .content p {
        font-size: 15px!important
    }

    .desktop-filters {
        display: none!important
    }

    .mobil-filters {
        display: flex
    }

    .template-list {
        display: none
    }

    .zoom-icon {
        display: flex
    }

    .desktop-zoom {
        font-size: 20px!important
    }

    .favorite-modal {
        padding: 50px 20px
    }

    .add-to-basket-modal,.favorite-modal {
        width: 100%!important
    }

    .react-confirm-alert {
        width: 95%!important
    }

    footer .footer-title {
        font-size: 16px!important
    }

    .slick-slider {
        touch-action: auto!important
    }

    .free-shipping-label span,.stock-status span {
        font-size: 12px!important
    }

    .search-wrapper {
        padding: 0!important;
        height: 100%!important
    }

    .header-search-bg-overlay {
        height: 0!important
    }

    .search-wrapper .search-input {
        font-size: 16px!important
    }

    .search-wrapper .search-input::-moz-placeholder {
        font-size: 16px!important
    }

    .search-wrapper .search-input::placeholder {
        font-size: 16px!important
    }

    .basket-summary h3 {
        font-size: 18px!important
    }

    .gallery__item--2 {
        grid-column-start: 5;
        grid-column-end: 9;
        grid-row-start: 1;
        grid-row-end: 5;
        height: 100%;
        position: relative
    }

    .gallery__item--3 {
        grid-column-start: 1;
        grid-column-end: 5
    }

    .gallery__item--3,.gallery__item--4 {
        grid-row-start: 5;
        grid-row-end: 9;
        height: 100%;
        position: relative
    }

    .gallery__item--4 {
        grid-column-start: 5;
        grid-column-end: 9
    }

    .text-view-main .content {
        width: 100%!important;
        padding: 30px!important;
        font-size: 14px
    }

    header.fixed-header {
        width: 100%!important
    }

    .locale-change-bar {
        flex-direction: column
    }

    .locale-change-description {
        width: 85%
    }

    .locale-bar-main {
        height: auto;
        padding: 20px
    }

    .locale-change-close-btn {
        position: absolute;
        top: 10px;
        right: 10px
    }

    .locale-select-main {
        margin-top: 20px
    }

    .mobil-sorting-icon,.mobile-sorting {
        display: flex
    }

    .cookie-bar {
        right: 10px;
        font-size: 13px;
        bottom: 20px
    }

    .blog-detail-main .blog-content-main h2 {
        font-size: 14px!important
    }

    .basket-top-checkout {
        display: flex
    }

    .video-box-main .slider-content h1 {
        font-size: 4vh
    }

    .video-box-main .slider-content p {
        font-size: 2.5vh
    }

    .video-box-main .slider-content a {
        color: #000;
        background-color: #fff;
        text-transform: uppercase;
        margin-top: 20px;
        transition: all .3s
    }

    .banner {
        font-size: 13px!important
    }

    .banner-text {
        width: 75%;
        text-align: center
    }

    .mobile-image-slider {
        display: block
    }

    .desktop-image-slider {
        display: none
    }

    .category-image-banner-title-grid .title {
        font-size: 16px!important
    }

    .category-image-banner-title-grid .sub-text {
        font-size: 12px!important
    }

    .category-image-banner-title-grid .link {
        font-size: 10px!important;
        padding: 10px!important;
        min-width: 120px!important
    }

    .product-detail-page-bottom-tabs .tab {
        padding: 7px 0;
        font-weight: 600;
        color: var(--primary-color);
        cursor: pointer;
        font-size: 12px
    }

    .product-detail-page-bottom-tabs .tab:not(:last-child) {
        margin-right: 15px
    }

    #locale-select-modal {
        width: 190px
    }

    .locale-change-btn-modal {
        width: calc(100% - 170px)
    }

    .add-to-cart-overlay .out-of-stock,.add-to-cart-overlay .stock {
        height: 34px!important;
        font-size: 12px!important;
        font-weight: 500
    }

    .add-to-basket-overlay-modal .add-to-basket-modal {
        max-width: 830px;
        width: 830px;
        padding: 16px;
        background: #fff;
        box-shadow: 0 20px 75px rgba(0,0,0,.23);
        color: #000;
        min-height: 50vh;
        max-height: 75vh;
        overflow: auto
    }

    .product-detail-page-slider-modal {
        margin-top: 12px
    }

    .product-detail-page-slider-modal img {
        -o-object-fit: contain!important;
        object-fit: contain!important
    }

    .comment-image {
        width: 65px;
        height: 65px
    }

    .image-preview-modal {
        width: 100%;
        background-color: #fff;
        height: 65vh;
        border-radius: 6px
    }

    .image-preview-modal .image {
        width: 100%;
        height: 65vh;
        border-right: unset!important
    }

    .image-preview-modal .comment {
        display: none!important
    }

    .image-preview-modal-close svg path {
        color: #000
    }

    .image-preview-modal-close {
        background-color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .marquee-container .marquee-wrapper .marquee-textcontainer,.slider-banner {
        font-size: 14px!important
    }

    .product-detail-page-slider .slick-dots,.zoom-image-mobile .slick-dots {
        display: block!important;
        bottom: 20px
    }

    .product-detail-page-slider .slick-dots>li,.zoom-image-mobile .slick-dots>li {
        margin: 0 .5rem!important;
        width: unset!important;
        height: unset!important
    }

    .product-detail-page-slider .slick-dots>li>button,.zoom-image-mobile .slick-dots>li>button {
        width: 8px;
        height: 8px;
        border: none;
        position: relative;
        overflow: hidden;
        text-indent: -9999px;
        border-radius: 50%;
        background-color: silver;
        padding: 0;
        display: block;
        margin-bottom: .5rem;
        transition: all .2s ease-in-out
    }

    .product-detail-page-slider .slick-dots>li.slick-active>button,.zoom-image-mobile .slick-dots>li.slick-active>button {
        background-color: var(--primary-color)!important;
        width: 2rem;
        border-radius: 10rem;
        background-color: #fff
    }

    .home-slider-main .slider-content h1,.video-box-main .slider-content h1 {
        line-height: 55px
    }

    .home-slider-main .slider-content p,.video-box-main .slider-content p {
        line-height: 30px;
        margin-top: 10px
    }

    .home-slider-main .slider-content a,.video-box-main .slider-content a {
        min-width: unset;
        margin-top: 10px
    }

    .basket-summary {
        padding: 15px 20px
    }

    .account-page .address-box-right {
        width: 95%;
        margin-left: 0
    }

    .account-page .address-box-left {
        width: 100%;
        display: flex;
        justify-content: space-between
    }

    .option-name-w {
        width: 65%
    }

    .insta-feed h2 {
        font-size: 18px!important
    }

    .insta-feed-preview-modal {
        overflow: scroll!important;
        width: unset!important;
        max-height: unset!important;
        flex-direction: column;
        position: relative!important
    }

    .insta-feed-preview-modal .image-main {
        width: unset!important;
        height: 50%
    }

    .insta-feed-preview-modal .description {
        width: unset!important
    }

    .lb-image-main {
        width: 100%;
        margin-right: unset!important
    }

    .gallery {
        grid-template-rows: repeat(8,13vw);
        grid-gap: .5rem
    }

    .action-box {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px
    }

    .logo .logo-main.big {
        position: relative!important;
        width: 87.5px!important;
        height: 50px!important
    }

    .placeholder-image,.placeholder-main .image {
        width: 98px;
        height: 98px
    }

    .placeholder-list-image {
        width: 78px;
        height: 78px
    }

    .home-slider-main .slick-arrow {
        display: none!important
    }

    .modal-close-button {
        top: 5px!important;
        right: 5px!important
    }

    .category-image-slider-main .slick-slide>div {
        padding: 0
    }

    .image-card-container .content .title {
        font-size: 14px
    }

    .product-detail-page-easy-refund .easy-refund span:nth-child(2) {
        width: 90%
    }

    .search-input::-moz-placeholder {
        font-size: 12px
    }

    .search-input::placeholder {
        font-size: 12px
    }

    .product-slider-arrow-right {
        margin-left: 0!important
    }

    .breadcrumbs .breadcrumb-item {
        font-size: 13px
    }

    .product-detail-comments-title {
        font-size: 20px!important
    }

    .social-login .facebook-button,.social-login .google-button {
        font-size: 10px
    }

    .product-list-item-info svg {
        width: 14px!important;
        height: 14px!important;
        margin-top: 5px
    }

    .text-xxs {
        font-size: 11px
    }

    .mobile-iframe {
        display: block
    }

    .only-desktop-show-iframe {
        display: none
    }

    .category-image-banner-main .category-image-banner-title :is(h1,h2,h3,h4,h5,h6).title,.category-image-banner-main .category-image-banner-title span.title {
        font-size: 1.6rem!important
    }

    .category-image-banner-main .category-image-banner-title span.top-title {
        font-size: 1.6rem!important
    }

    .language-name {
        font-size: 10px
    }

    .image-card-container .content .link-main {
        font-size: 12px
    }

    .note-video-clip {
        width: 100%
    }

    .link-bottom-main {
        flex: 0.6!important
    }

    .link-bottom-icons-main {
        flex: 0.4!important;
        margin-top: 0!important
    }

    .blog-detail-overlay-text .title {
        font-size: 2rem
    }

    .image-iframe-container .content {
        margin: 0 16px!important
    }

    .product-detail-page-slider-main {
        min-height: unset!important
    }

    .category_btn_link__main {
        font-size: 10px!important;
        padding: 3px 7px!important;
        margin-right: 8px!important;
        margin-bottom: 4px!important;
        min-width: unset!important
    }

    .category-links-sticky {
        position: sticky;
        top: 40px;
        z-index: 999
    }

    .header-icons-main.same-line-icons {
        position: relative;
        top: unset!important
    }

    .link-bottom-icons-search-bar-main {
        display: none!important
    }

    .marquee_image__image {
        position: relative;
        height: 150px;
        width: 150px
    }

    .blog-link-text-main {
        display: flex;
        min-height: 48px
    }

    .search-icon__new.show {
        position: unset;
        top: unset;
        left: unset
    }

    .text-view-main .title h1 {
        white-space: normal;
        word-break: break-all
    }

    .blog-list-main .blog-content-main .blog-title {
        font-size: 1.1775rem!important
    }

    .products-slider-main .slick-slider .blog-list-main .blog-content-main .blog-title {
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 85px
    }

    .image-card-container .content .title.container-title.space-content {
        padding: 20px!important
    }

    .image-card-container .content {
        margin: 16px
    }

    .category__desc {
        max-width: 100%!important
    }

    .product-detail-page-easy-refund.mobile-center .easy-refund {
        justify-self: center!important
    }

    .product-detail-page-bottom-tabs .tab-content ul {
        padding-inline-start:0!important}

    .center-logo-mobile {
        position: absolute!important;
        left: 50%!important;
        transform: translateX(-50%)!important
    }

    .header-icons-main.center-icons {
        flex: 1!important
    }

    .blog-detail-content .ikas-editor-v1 .editor-img {
        max-width: unset!important;
        width: 100%
    }

    .custom__image-modal {
        width: 95%;
        height: 75vh
    }

    .custom__image-modal-close {
        top: -5px;
        right: -5px
    }

    .product-swiper-arrow-left-main-slider,.product-swiper-arrow-right-main-slider {
        z-index: 2;
        border: 2px solid #000;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .collection-list-sticky .sticky {
        top: 60px!important
    }

    .subscribe-main .subscribe-content {
        width: 85%
    }

    .collection-title {
        padding-right: 0;
        border-right: unset;
        margin-right: 0;
        align-items: unset;
        justify-content: unset;
        margin-bottom: 24px
    }

    .category-products-main .category-products-info-main .price-main.price-range .sell-price {
        font-size: 14px!important
    }

    .custom-features-main__is-flex div:not(.mobile-count) {
        width: 100%!important;
        margin-bottom: 16px
    }

    .features .custom-features-main__is-flex .feature span:nth-child(3) {
        font-size: 12px
    }

    .features .custom-features-main__is-flex .feature {
        padding: 0!important
    }

    .product-offer-item-main,.product-offer-items {
        width: 100%;
        max-width: 100%;
        margin-left: 0!important
    }

    .offer-plus-icon {
        display: none
    }

    .offer-plus-icon-0 {
        display: flex;
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%)
    }

    .offer-main-item {
        margin-bottom: 70px
    }

    #bundle-for-furn .bundle-content-main {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        border-bottom: 1px solid #efefef
    }

    #bundle-for-furn .bundle-content-main .content {
        width: 100%!important;
        margin-bottom: 8px
    }

    #bundle-for-furn .bundle-content-main .content.unit-price {
        display: none
    }

    #bundle-for-furn .bundle-content-main .content:last-child {
        display: flex;
        justify-content: flex-end
    }

    #bundle-for-furn .product-bundle-items-main {
        margin-top: 20px;
        border-bottom: unset
    }

    .layout_images_button_link {
        font-size: 12px;
        bottom: 20px!important
    }

    .blog-breadcrumb-item {
        width: 180px
    }

    .category-image-slider-main .custom-width-percantage .custom-width .category-image-banner-title span.title {
        font-size: 10px
    }

    .category-image-slider-main .custom-width-percantage .category-image-banner-title span.link {
        padding: 5px!important;
        font-size: 12px
    }

    .offer-product-container {
        min-height: unset
    }

    .offer-summary-box {
        min-height: 220px
    }

    .offer-product-image-container {
        width: 80px;
        height: 80px
    }

    .product-offer-accepted-container {
        font-size: 12px
    }

    .gallery.three-layout {
        grid-template-rows: repeat(12,13vw);
        grid-gap: .5rem
    }

    .gallery__item--1.three-layout {
        grid-row-start: 1;
        grid-row-end: 5
    }

    .gallery__item--1.three-layout,.gallery__item--2.three-layout {
        grid-column-start: 1;
        grid-column-end: 9;
        height: 100%;
        position: relative
    }

    .gallery__item--2.three-layout {
        grid-row-start: 5;
        grid-row-end: 9
    }

    .gallery__item--3.three-layout {
        grid-column-start: 1;
        grid-column-end: 9;
        grid-row-start: 9;
        grid-row-end: 13;
        height: 100%;
        position: relative
    }

    .subscribe-content .subtext {
        font-size: 14px!important
    }

    .category-image-text-image-main {
        width: 80px!important;
        height: 80px!important;
        margin-bottom: 8px
    }

    span[class*=category-image-text-] {
        font-size: 14px!important;
        text-align: center
    }

    .faq-answer {
        overflow-x: auto
    }

    .faq-container :is(h1,h2,h3,h4,h5,h6) {
        font-size: 1.5rem!important;
        line-height: 2rem!important
    }

    .product-detail-page-variants .color-image-choice.custom-height:not(.custom-height-mobile),.product-detail-page-variants .color-noimage-choice.custom-height:not(.custom-height-mobile) {
        width: 50px!important;
        height: 50px!important
    }

    .blog-category-name-title {
        font-size: 22px!important
    }

    .subscribe-content h3 {
        line-height: 35px;
        font-size: 1.4rem!important
    }

    .fast-link-main {
        display: flex;
        width: 100%
    }

    .c-w-1 {
        width: 1px
    }

    .show-images-container {
        width: 100%!important;
        height: calc(100% - 75px)
    }

    .zoom-images-container {
        height: 75px!important;
        width: 100%;
        top: calc(100% - 75px)!important;
        left: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .zoom-images-container div {
        flex-shrink: 0
    }

    .show-images-container .r-0 {
        right: 5px!important
    }

    .single-product-product-info {
        flex: 0 0 50%;
        max-width: 100%;
        padding: 16px
    }

    .single-product-image {
        flex: 0 0 50%;
        max-width: 100%
    }

    .single-product-product-name {
        line-height: 35px;
        font-size: 27px
    }

    .single-product-price {
        line-height: 30px;
        font-size: 22px
    }

    .product-variant-choice-image {
        width: 30px!important;
        height: 30px!important
    }

    .product-option-big-image-container {
        height: 65vh;
        width: 95%;
        padding: 20px
    }

    .bundle-img__main {
        width: 120px!important;
        height: 120px!important
    }

    .bundle-img__main .bundle__img {
        width: 100px!important;
        height: 100px!important
    }

    .blog-detail-main .product-name {
        width: 100%
    }
}

@media (min-width: 640px) {
    .container {
        max-width:640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:768px
    }
}

@media (min-width: 651px) and (max-width:1100px) {
    header {
        height:60px!important
    }

    header .logo {
        flex: 1!important
    }

    header .logo.center {
        left: 2.5rem
    }

    header .nav-links {
        display: none!important
    }

    header .header-icons-main {
        flex: 0.8
    }

    header .header-icons-main.center {
        flex: 1!important
    }

    .mobile-menu {
        display: flex!important
    }

    header .favorite {
        display: none!important
    }

    .container-expand-left,.container-expand-right {
        max-width: calc(50% + (1600px / 2))
    }

    .login-bg,.register-bg {
        display: none!important
    }

    .login-grid,.register-grid {
        grid-column: span 10/span 10!important;
        max-height: none!important;
        width: 100%!important;
        padding: 20px!important
    }

    .login-grid.hide-image,.register-grid.hide-image {
        grid-column: span 5/span 5!important;
        grid-column-start: 4!important
    }

    .account-page .right-menu {
        grid-column-start: 1!important;
        grid-column: span 6/span 6!important
    }

    .account-page .left-menu {
        display: none!important
    }

    .account-page {
        background-image: unset!important
    }

    .account-page .back-button {
        display: flex!important
    }

    .modal-main {
        width: 60%!important
    }

    .desktop-filters {
        display: none!important
    }

    .mobil-filters {
        display: flex
    }

    .template-list {
        display: none
    }

    .mobil-sorting-icon,.mobile-sorting {
        display: flex!important
    }

    .insta-feed-preview-modal {
        width: 760px;
        height: 380px
    }

    .insta-feed-preview-modal .image-main {
        width: 400px
    }

    .insta-feed-preview-modal .description {
        width: 360px
    }

    .add-to-basket-overlay-modal .add-to-basket-modal {
        max-width: 90vw;
        width: 90vw
    }

    .tabl-logo {
        position: absolute;
        left: 50%;
        transform: translate(-50%,-50%)
    }

    .header-icons-main.same-line-icons {
        position: relative;
        top: unset!important
    }

    .link-bottom-icons-search-bar-main {
        display: none!important
    }

    .search-icon__new.show {
        position: unset;
        top: unset;
        left: unset
    }

    .category__desc {
        max-width: 100%!important
    }

    .custom__image-modal {
        width: 90%;
        height: 700px
    }

    .product-offer-item-main,.product-offer-items {
        width: 100%;
        max-width: 100%;
        margin-left: 0!important
    }

    .offer-plus-icon {
        display: none
    }

    .offer-plus-icon-0 {
        display: flex;
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%)
    }

    .offer-main-item {
        margin-bottom: 70px
    }

    .category-image-slider-main .custom-width-percantage .custom-width .category-image-banner-title span.title {
        font-size: 16px
    }

    .category-image-slider-main .custom-width-percantage .category-image-banner-title span.link {
        padding: 8px!important
    }

    .center-logo-mobile {
        position: absolute!important;
        left: 50%!important;
        transform: translateX(-50%)!important
    }
}

@media (min-width: 1024px) {
    .container {
        max-width:1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width:1224px
    }
}

@media (min-width: 1400px) {
    .container {
        max-width:1350px
    }
}

@media (min-width: 1500px) {
    .container {
        max-width:1450px
    }
}

@media screen and (max-width: 1260px) {
    .container {
        max-width:1320px
    }
}

@media (min-width: 1650px) {
    .container {
        max-width:1500px
    }
}

@media (min-width: 960px) {
    .container-expand-left,.container-expand-right {
        max-width:calc(47% + (1600px / 2));
        margin-right: 0!important;
        margin-left: auto!important
    }
}

@media screen and (max-width: 1700px) {
    .container-expand-left,.container-expand-right {
        max-width:calc(55% + (1320px / 2));
        margin-right: 0!important;
        margin-left: auto!important
    }
}

@media screen and (max-width: 1450px) {
    .container-expand-left,.container-expand-right {
        max-width:calc(52% + (1140px / 2));
        margin-right: 0!important;
        margin-left: auto!important
    }

    .modal-main {
        width: 50%
    }
}

@media screen and (max-width: 1260px) {
    .container-expand-left,.container-expand-right {
        max-width:calc(38% + (1320px / 2));
        margin-right: 0!important;
        margin-left: auto!important
    }
}

#ikas-popup-container pre {
    font-family: unset
}

#ikas-popup-container :is(h1,h2,h3,h4,h5,h6) {
    font-weight: unset;
    font-size: unset
}

.last\:mb-0:last-child {
    margin-bottom: 0
}

.last\:border-0:last-child {
    border-width: 0
}

.focus-within\:outline-none:focus-within {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.hover\:border-gray-500:hover {
    --tw-border-opacity: 1;
    border-color: rgba(113,113,122,var(--tw-border-opacity))
}

.hover\:bg-gray-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(250,250,250,var(--tw-bg-opacity))
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(244,244,245,var(--tw-bg-opacity))
}

.hover\:text-red-900:hover {
    --tw-text-opacity: 1;
    color: rgba(127,29,29,var(--tw-text-opacity))
}

.hover\:text-gray-900:hover {
    --tw-text-opacity: 1;
    color: rgba(24,24,27,var(--tw-text-opacity))
}

.hover\:text-gray-700:hover {
    --tw-text-opacity: 1;
    color: rgba(63,63,70,var(--tw-text-opacity))
}

.hover\:text-blue-700:hover {
    --tw-text-opacity: 1;
    color: rgba(29,78,216,var(--tw-text-opacity))
}

.hover\:text-red-700:hover {
    --tw-text-opacity: 1;
    color: rgba(185,28,28,var(--tw-text-opacity))
}

.hover\:text-green-700:hover {
    --tw-text-opacity: 1;
    color: rgba(4,120,87,var(--tw-text-opacity))
}

.hover\:text-red-800:hover {
    --tw-text-opacity: 1;
    color: rgba(153,27,27,var(--tw-text-opacity))
}

.hover\:underline:hover {
    text-decoration: underline
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed
}

.disabled\:bg-gray-300:disabled {
    --tw-bg-opacity: 1;
    background-color: rgba(212,212,216,var(--tw-bg-opacity))
}

@media (min-width: 640px) {
    .sm\:left-4 {
        left:1rem
    }

    .sm\:right-4 {
        right: 1rem
    }

    .sm\:left-12 {
        left: 3rem
    }

    .sm\:order-2 {
        order: 2
    }

    .sm\:order-1 {
        order: 1
    }

    .sm\:col-span-6 {
        grid-column: span 6/span 6
    }

    .sm\:col-span-11 {
        grid-column: span 11/span 11
    }

    .sm\:col-span-10 {
        grid-column: span 10/span 10
    }

    .sm\:col-span-3 {
        grid-column: span 3/span 3
    }

    .sm\:col-span-9 {
        grid-column: span 9/span 9
    }

    .sm\:col-span-2 {
        grid-column: span 2/span 2
    }

    .sm\:col-span-12 {
        grid-column: span 12/span 12
    }

    .sm\:\!col-start-5 {
        grid-column-start: 5!important
    }

    .sm\:mt-20 {
        margin-top: 5rem
    }

    .sm\:mt-8 {
        margin-top: 2rem
    }

    .sm\:ml-0 {
        margin-left: 0
    }

    .sm\:mt-0 {
        margin-top: 0
    }

    .sm\:mt-12 {
        margin-top: 3rem
    }

    .sm\:mb-0 {
        margin-bottom: 0
    }

    .sm\:mb-4 {
        margin-bottom: 1rem
    }

    .sm\:mt-4 {
        margin-top: 1rem
    }

    .sm\:mr-0 {
        margin-right: 0
    }

    .sm\:mr-2 {
        margin-right: .5rem
    }

    .sm\:mt-6 {
        margin-top: 1.5rem
    }

    .sm\:mb-6 {
        margin-bottom: 1.5rem
    }

    .sm\:mt-3 {
        margin-top: .75rem
    }

    .sm\:mt-10 {
        margin-top: 2.5rem
    }

    .sm\:block {
        display: block
    }

    .sm\:flex {
        display: flex
    }

    .sm\:hidden {
        display: none
    }

    .sm\:h-6 {
        height: 1.5rem
    }

    .sm\:h-\[30px\] {
        height: 30px
    }

    .sm\:h-full {
        height: 100%
    }

    .sm\:h-\[12px\] {
        height: 12px
    }

    .sm\:h-\[32px\] {
        height: 32px
    }

    .sm\:h-\[150px\] {
        height: 150px
    }

    .sm\:w-3\/4 {
        width: 75%
    }

    .sm\:w-3\/5 {
        width: 60%
    }

    .sm\:w-64 {
        width: 16rem
    }

    .sm\:w-\[30px\] {
        width: 30px
    }

    .sm\:w-4\/6 {
        width: 66.666667%
    }

    .sm\:w-full {
        width: 100%
    }

    .sm\:w-11\/12 {
        width: 91.666667%
    }

    .sm\:w-\[150px\] {
        width: 150px
    }

    .sm\:w-\[45\%\] {
        width: 45%
    }

    .sm\:max-w-full {
        max-width: 100%
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .sm\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .sm\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .sm\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:flex-col {
        flex-direction: column
    }

    .sm\:items-start {
        align-items: flex-start
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:justify-center {
        justify-content: center
    }

    .sm\:gap-4 {
        gap: 1rem
    }

    .sm\:gap-3 {
        gap: .75rem
    }

    .sm\:gap-0 {
        gap: 0
    }

    .sm\:gap-x-4 {
        -moz-column-gap: 1rem;
        column-gap: 1rem
    }

    .sm\:space-x-0>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0px * var(--tw-space-x-reverse));
        margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)))
    }

    .sm\:space-y-4>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse))
    }

    .sm\:space-y-2>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
    }

    .sm\:p-0 {
        padding: 0
    }

    .sm\:p-4 {
        padding: 1rem
    }

    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .sm\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .sm\:pl-4 {
        padding-left: 1rem
    }

    .sm\:pr-0 {
        padding-right: 0
    }

    .sm\:pt-20 {
        padding-top: 5rem
    }

    .sm\:pb-4 {
        padding-bottom: 1rem
    }

    .sm\:pt-0 {
        padding-top: 0
    }

    .sm\:pt-12 {
        padding-top: 3rem
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media (min-width: 768px) {
    .md\:left-5 {
        left:1.25rem
    }

    .md\:right-5 {
        right: 1.25rem
    }

    .md\:left-12 {
        left: 3rem
    }

    .md\:right-0 {
        right: 0
    }

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

    .md\:col-span-3 {
        grid-column: span 3/span 3
    }

    .md\:col-span-4 {
        grid-column: span 4/span 4
    }

    .md\:col-span-8 {
        grid-column: span 8/span 8
    }

    .md\:col-span-2 {
        grid-column: span 2/span 2
    }

    .md\:col-span-6 {
        grid-column: span 6/span 6
    }

    .md\:\!col-start-5 {
        grid-column-start: 5!important
    }

    .md\:mt-20 {
        margin-top: 5rem
    }

    .md\:mt-8 {
        margin-top: 2rem
    }

    .md\:ml-0 {
        margin-left: 0
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:mb-0 {
        margin-bottom: 0
    }

    .md\:mb-4 {
        margin-bottom: 1rem
    }

    .md\:mt-4 {
        margin-top: 1rem
    }

    .md\:mr-8 {
        margin-right: 2rem
    }

    .md\:mr-2 {
        margin-right: .5rem
    }

    .md\:mt-6 {
        margin-top: 1.5rem
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem
    }

    .md\:mt-10 {
        margin-top: 2.5rem
    }

    .md\:block {
        display: block
    }

    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none
    }

    .md\:h-7 {
        height: 1.75rem
    }

    .md\:h-\[40px\] {
        height: 40px
    }

    .md\:h-full {
        height: 100%
    }

    .md\:h-\[12px\] {
        height: 12px
    }

    .md\:h-\[200px\] {
        height: 200px
    }

    .md\:w-72 {
        width: 18rem
    }

    .md\:w-3\/4 {
        width: 75%
    }

    .md\:w-4\/12 {
        width: 33.333333%
    }

    .md\:w-64 {
        width: 16rem
    }

    .md\:w-\[40px\] {
        width: 40px
    }

    .md\:w-3\/5 {
        width: 60%
    }

    .md\:w-4\/6 {
        width: 66.666667%
    }

    .md\:w-11\/12 {
        width: 91.666667%
    }

    .md\:w-2\/5 {
        width: 40%
    }

    .md\:w-\[200px\] {
        width: 200px
    }

    .md\:w-\[45\%\] {
        width: 45%
    }

    .md\:w-full {
        width: 100%
    }

    .md\:min-w-0 {
        min-width: 0
    }

    .md\:max-w-\[200px\] {
        max-width: 200px
    }

    .md\:flex-shrink-0 {
        flex-shrink: 0
    }

    .md\:flex-grow-0 {
        flex-grow: 0
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .md\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .md\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .md\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .md\:grid-cols-10 {
        grid-template-columns: repeat(10,minmax(0,1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-col {
        flex-direction: column
    }

    .md\:items-center {
        align-items: center
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:justify-center {
        justify-content: center
    }

    .md\:gap-4 {
        gap: 1rem
    }

    .md\:gap-3 {
        gap: .75rem
    }

    .md\:gap-6 {
        gap: 1.5rem
    }

    .md\:gap-0 {
        gap: 0
    }

    .md\:gap-8 {
        gap: 2rem
    }

    .md\:gap-x-6 {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem
    }

    .md\:space-x-6>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-x-10>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-y-0>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .md\:space-x-2>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.5rem * var(--tw-space-x-reverse));
        margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:space-y-2>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
    }

    .md\:p-0 {
        padding: 0
    }

    .md\:p-8 {
        padding: 2rem
    }

    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .md\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .md\:pl-4 {
        padding-left: 1rem
    }

    .md\:pr-0 {
        padding-right: 0
    }

    .md\:pt-20 {
        padding-top: 5rem
    }

    .md\:pb-4 {
        padding-bottom: 1rem
    }

    .md\:pt-0 {
        padding-top: 0
    }

    .md\:pt-12 {
        padding-top: 3rem
    }

    .md\:pt-8 {
        padding-top: 2rem
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media (min-width: 1024px) {
    .lg\:left-5 {
        left:1.25rem
    }

    .lg\:right-5 {
        right: 1.25rem
    }

    .lg\:left-1\/2 {
        left: 50%
    }

    .lg\:right-0 {
        right: 0
    }

    .lg\:order-1 {
        order: 1
    }

    .lg\:order-2 {
        order: 2
    }

    .lg\:col-span-4 {
        grid-column: span 4/span 4
    }

    .lg\:col-span-2 {
        grid-column: span 2/span 2
    }

    .lg\:col-span-3 {
        grid-column: span 3/span 3
    }

    .lg\:col-span-8 {
        grid-column: span 8/span 8
    }

    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }

    .lg\:mt-20 {
        margin-top: 5rem
    }

    .lg\:mt-8 {
        margin-top: 2rem
    }

    .lg\:ml-64 {
        margin-left: 16rem
    }

    .lg\:mt-4 {
        margin-top: 1rem
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:mt-12 {
        margin-top: 3rem
    }

    .lg\:mb-0 {
        margin-bottom: 0
    }

    .lg\:mb-4 {
        margin-bottom: 1rem
    }

    .lg\:mr-8 {
        margin-right: 2rem
    }

    .lg\:mr-2 {
        margin-right: .5rem
    }

    .lg\:mt-6 {
        margin-top: 1.5rem
    }

    .lg\:mb-6 {
        margin-bottom: 1.5rem
    }

    .lg\:mt-10 {
        margin-top: 2.5rem
    }

    .lg\:block {
        display: block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:h-7 {
        height: 1.75rem
    }

    .lg\:h-\[40px\] {
        height: 40px
    }

    .lg\:h-full {
        height: 100%
    }

    .lg\:h-\[12px\] {
        height: 12px
    }

    .lg\:h-\[200px\] {
        height: 200px
    }

    .lg\:w-2\/5 {
        width: 40%
    }

    .lg\:w-4\/12 {
        width: 33.333333%
    }

    .lg\:w-64 {
        width: 16rem
    }

    .lg\:w-\[40px\] {
        width: 40px
    }

    .lg\:w-3\/5 {
        width: 60%
    }

    .lg\:w-3\/4 {
        width: 75%
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:w-1\/2,.lg\:w-3\/6 {
        width: 50%
    }

    .lg\:w-11\/12 {
        width: 91.666667%
    }

    .lg\:w-\[200px\] {
        width: 200px
    }

    .lg\:w-\[45\%\] {
        width: 45%
    }

    .lg\:max-w-\[200px\] {
        max-width: 200px
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .lg\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .lg\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5,minmax(0,1fr))
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6,minmax(0,1fr))
    }

    .lg\:grid-cols-10 {
        grid-template-columns: repeat(10,minmax(0,1fr))
    }

    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:items-center {
        align-items: center
    }

    .lg\:justify-center {
        justify-content: center
    }

    .lg\:gap-6 {
        gap: 1.5rem
    }

    .lg\:gap-3 {
        gap: .75rem
    }

    .lg\:gap-4 {
        gap: 1rem
    }

    .lg\:gap-0 {
        gap: 0
    }

    .lg\:gap-x-10 {
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem
    }

    .lg\:space-x-6>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-10>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-y-0>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .lg\:space-x-2>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.5rem * var(--tw-space-x-reverse));
        margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:p-0 {
        padding: 0
    }

    .lg\:p-12 {
        padding: 3rem
    }

    .lg\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .lg\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .lg\:pl-4 {
        padding-left: 1rem
    }

    .lg\:pr-0 {
        padding-right: 0
    }

    .lg\:pt-20 {
        padding-top: 5rem
    }

    .lg\:pb-4 {
        padding-bottom: 1rem
    }

    .lg\:pt-0 {
        padding-top: 0
    }

    .lg\:pt-12 {
        padding-top: 3rem
    }

    .lg\:pt-8 {
        padding-top: 2rem
    }

    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media (min-width: 1280px) {
    .xl\:left-1\/2 {
        left:50%
    }

    .xl\:col-span-4 {
        grid-column: span 4/span 4
    }

    .xl\:col-span-2 {
        grid-column: span 2/span 2
    }

    .xl\:col-span-8 {
        grid-column: span 8/span 8
    }

    .xl\:col-span-12 {
        grid-column: span 12/span 12
    }

    .xl\:col-span-3 {
        grid-column: span 3/span 3
    }

    .xl\:col-span-1 {
        grid-column: span 1/span 1
    }

    .xl\:\!col-start-5 {
        grid-column-start: 5!important
    }

    .xl\:mb-4 {
        margin-bottom: 1rem
    }

    .xl\:mt-8 {
        margin-top: 2rem
    }

    .xl\:flex {
        display: flex
    }

    .xl\:w-3\/5 {
        width: 60%
    }

    .xl\:w-3\/4 {
        width: 75%
    }

    .xl\:w-3\/6 {
        width: 50%
    }

    .xl\:w-11\/12 {
        width: 91.666667%
    }

    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .xl\:grid-cols-7 {
        grid-template-columns: repeat(7,minmax(0,1fr))
    }

    .xl\:grid-cols-8 {
        grid-template-columns: repeat(8,minmax(0,1fr))
    }

    .xl\:grid-cols-5 {
        grid-template-columns: repeat(5,minmax(0,1fr))
    }

    .xl\:grid-cols-6 {
        grid-template-columns: repeat(6,minmax(0,1fr))
    }

    .xl\:grid-cols-10 {
        grid-template-columns: repeat(10,minmax(0,1fr))
    }

    .xl\:flex-row {
        flex-direction: row
    }

    .xl\:gap-16 {
        gap: 4rem
    }

    .xl\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .xl\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .xl\:px-4 {
        padding-right: 1rem
    }

    .xl\:pl-4,.xl\:px-4 {
        padding-left: 1rem
    }

    .xl\:pr-0 {
        padding-right: 0
    }

    .xl\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list,.slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,.slick-track:before {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: #fff url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/ajax-loader.0b80f665.gif) 50% no-repeat
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/slick.25572f22.eot);
    src: url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/slick.25572f22.eot?#iefix) format("embedded-opentype"),url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/slick.653a4cbb.woff) format("woff"),url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/slick.6aa1ee46.ttf) format("truetype"),url(https://cdn.myikas.com/sf/v1/a0d8f719-b23b-480f-8c54-4dad95df3c81/af371111-9719-4ec7-9505-1da9bc9013cb/1775824457071/_next/static/media/slick.f895cfdf.svg#slick) format("svg")
}

.slick-next,.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    border: none
}

.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover {
    color: transparent;
    outline: none;
    background: transparent
}

.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: "←"
}

[dir=rtl] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: "→"
}

[dir=rtl] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0
}

.slick-dots li,.slick-dots li button {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent
}

.slick-dots li button:focus,.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:focus:before,.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-android .swiper-slide,.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start:var(--swiper-centered-offset-before)}

.swiper-centered.swiper-horizontal>.swiper-wrapper: before {
    height:100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start:var(--swiper-centered-offset-before)}

.swiper-centered.swiper-vertical>.swiper-wrapper: before {
    width:100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none!important
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity,.2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity,1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0,-50%,0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s,top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s,left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s,right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border-radius: 50%;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-top: 4px solid transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}
@media (max-width: 1100px) {
    header .nav-links.mobile-menu-show {
        display: block !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 999999 !important;
        padding: 24px 20px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,.12) !important;
    }

    header .nav-links.mobile-menu-show ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    header .nav-links.mobile-menu-show li,
    header .nav-links.mobile-menu-show a {
        width: 100% !important;
        display: block !important;
    }

    header .nav-links.mobile-menu-show .mega-menu-main {
        display: none !important;
    }
}