@font-face {
    font-family: 'SE';
    src: url('fonts/SuisseIntlCondensed-Bold.eot');
    src: url('fonts/SuisseIntlCondensed-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/SuisseIntlCondensed-Bold.svg#SuisseIntlCondensed-Bold') format('svg'),
    url('fonts/SuisseIntlCondensed-Bold.ttf') format('truetype'),
    url('fonts/SuisseIntlCondensed-Bold.woff') format('woff'),
    url('fonts/SuisseIntlCondensed-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SE';
    src: url('fonts/SuisseIntlCondensed-Medium.eot');
    src: url('fonts/SuisseIntlCondensed-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/SuisseIntlCondensed-Medium.svg#SuisseIntlCondensed-Medium') format('svg'),
    url('fonts/SuisseIntlCondensed-Medium.ttf') format('truetype'),
    url('fonts/SuisseIntlCondensed-Medium.woff') format('woff'),
    url('fonts/SuisseIntlCondensed-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -ms-box-sizing: border-box !important;
    box-sizing: border-box !important;   
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 1.6vw;
    line-height: 1;
    cursor: default;
}

body {
    margin: 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    supported by Chrome, Edge, Opera and Firefox */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0px 0px 1px rgba(0,0,0,0.004);
    font-family: 'SE';
    font-weight: bold;
    color: #B7AFA6;
    cursor: default;
}

body::-webkit-scrollbar {
    display: none;
}

#index {
    overflow: hidden;
}

/* Preloader */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: calc(100 * var(--vh));
    width: 100%;
    background-color: #77B2D6;
    z-index: 100;
    cursor: pointer;
    color: #FFDC00;
    font-size: 2.5rem;
    letter-spacing: -0.05rem;
    -webkit-text-stroke-width: 0.8px;
    -webkit-text-stroke-color: black;
}

#preloader div {
    position: absolute;
    bottom: 1rem;
    z-index: 10;
}

#preloader #new-item {
    width: 100%;
    text-align: center;
}

canvas {
    position: relative;
}

.gone {
    transform: translateY(-100vh);
    -webkit-transform: translateY(-100vh);
    -ms-transform: translateY(-100vh);
    -webkit-transition: transform .8s cubic-bezier(0.75, 0.1, 0.18, 1);
    -webkit-transition: -webkit-transform .8s cubic-bezier(0.75, 0.1, 0.18, 1);
    transition: -webkit-transform .8s cubic-bezier(0.75, 0.1, 0.18, 1);
    transition: transform .8s cubic-bezier(0.75, 0.1, 0.18, 1);
    transition: transform .8s cubic-bezier(0.75, 0.1, 0.18, 1), -webkit-transform .8s cubic-bezier(0.75, 0.1, 0.18, 1);
    
}

/* Main */

header {
    position: sticky;
    top: 0;
    width: 100%;
    font-size: 0;
    background-color: white;
    z-index: 2;
}

.menu {
    display: inline-block;
    padding: 0.66rem 0;
    width: 100%;
    text-align: center;
}

.logotype {
    width: 40vw;
    vertical-align: top;
}

.rotating-icon {
    width: fit-content;
    height: fit-content;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: -0.2rem;
    margin-top: -0.333333rem;
    cursor: help;
    font-size: 1.3vw;
}

@keyframes switch {
    0% {
        transform: rotateY(0);
        -webkit-transform: rotateY(0);
        -ms-transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }
}

@keyframes switchback {
    0% {
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
    }
    50% {
        transform: rotateY(0);
        -webkit-transform: rotateY(0);
        -ms-transform: rotateY(0);
    }
    100% {
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
    }
}

#cart {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    visibility:visible;
    backface-visibility: hidden;
    animation: switch linear 3s infinite;
}

#cart img {
    width: 3.5vw;
}

#counter {
    position: absolute;
    top: 25%;
    left: 9.5%;
    width: 100%;
    color: white;
    text-align: center;
}

#about {
    position: absolute;
    width: 94%;
    height: 100%;
    top: 0;
    left: 10%;
    background-color: #77B2D6;
    border-radius: 100px;
    padding-top: 2px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    visibility:visible;
    backface-visibility: hidden;
    animation: switchback linear 3s infinite;
}

.bag {
    position: absolute;
    left: 0;
    width: 100%;
    margin-top: -0.5rem;
    font-size: 1rem;
    cursor: default;
    display: none;
    z-index: 2;
}

#total {
    text-align: center;
}

.about-wrapper {
    padding: 0 1rem 0.66666rem;
    line-height: 1.1;
    text-align: center;
    background-color: white;
}

.about-wrapper > * {
    width: 50%;
    margin: 0 auto;
    display: inline-block;
}

.h1 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.33rem;
}

.about-wrapper p {
    margin: 0 0 1rem 0;
}

.about-wrapper p:last-child {
    margin-bottom: 0;
}

a {
    color: #B7AFA6;
    text-decoration: none;
}

.policy a:hover {
    opacity: 0.5;
}

.bag-items {
    display: none;
    justify-content: space-between;
    align-items: start;
}

@media screen and (max-width: 640px) {
    header .bag-items {
        border-bottom-left-radius: 27px;
        border-bottom-right-radius: 27px;
    }
}

.product-type:after {
    display: inline;
    content: ' ';
    white-space: pre;
}

.product-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0.5;
}

.product-size {
    text-transform: uppercase;
}

.product-size::before {
    display: inline;
    content: ' size ';
    white-space: pre;
    text-transform: lowercase;
}

.product-quantity::before {
    display: inline;
    content: ' x ';
    white-space: pre;
}

.product-size.one-size::before {
    content: ' ';
}

.product-price {
    display: none;
}

.action-line {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-auto-rows: 1fr;
    align-items: center;
    cursor: pointer;
    color: white;
    border-left: 1px solid white;
    background-color: #77B2D6;
}

.action-line > * {
    padding: calc(0.66rem - 0.5px) 1rem;
}

.action-line button {
    border-radius: 49%;
    background-color: white;
    color: #77B2D6;
    padding: 0 0.66rem;
    margin-right: 0.66rem;
    border: none;
    font: inherit;
    cursor: inherit;
    width: fit-content;
    justify-self: end;
    height: 1.4em;
}

.plus, .minus {
    margin-top: -1px;
    cursor: pointer;
}

#empty-bag {
    position: absolute;
    width: 100%;
    background-color: #77B2D6;
    color: white; 
    padding: 0.66rem 1rem;
    text-align: center;   
}

#order-list {
    width: 50%;
    background-color: #77B2D6;
    color: white;
}

#order-item-clone {
    display: none;
}

.order-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

.order-item > * {
    padding: calc(0.66rem - 0.5px) 0;
}

#checkout {
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-auto-rows: 1fr;
    padding: 0 1rem;
    margin-top: 1rem;
}

.grid-item {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
}

.archive {
    font-size: 1.4rem;
    cursor: default;
}

.bubble {
    padding: 0.33333333rem;
    border: solid 1px #B7AFA6;
    font-size: 1rem;
    line-height: 1.1;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    font-weight: normal;
    z-index: 1;
    font-feature-settings: "tnum" 1;
    opacity: 0;
}

.bubble::after {
    content: '';
    width: 100%;
    height: 0.33rem;
    left: 0;
    bottom: 0;
    position: absolute;
    background-color: white;
}

.countdown {
    white-space: pre;
}

.related-name {
    white-space: pre;
}

.triangle {
    position: absolute;
    bottom: -2.8rem;
    right: 3.1rem;
    height: 3rem;
}

.triangle-mobile {
    position: absolute;
    top: calc(-1 * var(--vh) - 0.2rem - 0.5px);
    left: 45%;
    height: calc(5 * var(--vh));
    z-index: 10;
    display: none;
}

#new-element {
    cursor: default;
}

#new-element .bubble {
    left: 5rem;
    right: unset;
    opacity: 1;
    min-width: 21.5vw;
}

#new-element .triangle {
    left: 0.7rem;
}

#new-element img {
    width: 40%;
}

.grid-item:hover .bubble {
    opacity: 1;
}





/* Product */

.fixed-wrapp {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    width: 100%;
    height: calc(100 * var(--vh));
}

.fixed-wrapp header {
    position: relative;
}

.product-page header {
    background-color: transparent;
}

.product-page .triangle {
    transform: scale(-1,1);
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    right: 1.6rem;
}

#indicator {
    position: relative;
    width: 100%;
    display: none;
    flex-direction: row;
    height: auto;
}

.line {
    height: 4px;
    width: 100%;
    background-color: #f2f2f2;
    margin-right: 1px;
}

.line:last-child {
    margin-right: 0;
}

.line-selected {
    background-color: #B7AFA6;
}

.shipping-info {
    position: absolute;
    z-index: 10;
    line-height: 1.2;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    display: none;
}

.shipping-info::-webkit-scrollbar {
    display: none;
}

#size-list {
    position: absolute;
    top: -100%;
    margin: 0;
    list-style: none;
    padding: 0;
    display: none;
}

.slider {
    position: relative;
    height: 0;
    flex-grow : 1;
}

.slider-item {
    width: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: 50%;
    height: 100%;
    margin: 0;
    text-align: center;
    opacity: 0;
}

.slider-item.img-selected {
    opacity: 1;
}

.slider img {
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.4s;
    object-fit: contain;
}

.slide-text {
    display: none;
    margin-top: 1rem;
    line-height: 1.1;
    width: 100%;
    white-space: nowrap;
}

#prev-img, #next-img {
    position: absolute;
    width: 50%;
    display: inline-block;
    height: 100%;
    opacity: 0;
    cursor: none;
    border: none;padding: 0;
}

#next-img {
    right: 0;
}

#slide-number {
    position: fixed;
    margin-top: -0.5rem;
    margin-left: -0.66666rem;
    pointer-events: none;
    z-index: 40;
    opacity: 0;
}

.description {
    display: none;
}

#purchase {
    display: flex;
}

.short-size {
    pointer-events: none;
}

#related {
    position: relative;
    margin-left: auto;
    font-size: 0;
    z-index: 4;
    display: flex;
    width: 10%;
    flex-direction: column;
    transition: opacity 0.4s;
    /* transition-delay: 0.6s; */
}

.related-item {
    cursor: pointer;
    position: relative;
    object-fit: fill;
}

.related-item img {
    width: 100%;
}

.related-item .bubble {
    right: calc(50% - 1.6rem);
    top: initial;
    bottom: calc(50% + 59.41px);
    pointer-events: none;
    margin-top: 8px;
    margin-right: -3px;
}

.related-item:hover .bubble {
    opacity: 1;
}

.swiper-slide:first-child .related-item .bubble {
    top: calc(50% + 59.41px);
    bottom: initial;
    margin-top: -7px;
}

.swiper-slide:first-child .related-item .bubble::after {
    top: 0;
}

.swiper-slide:first-child .related-item .triangle {
    top: -2.8rem;
    transform: scale(-1,-1);
    -webkit-transform: scale(-1,-1);
    -ms-transform: scale(-1,-1);
}

/* .price::before {
    content: '$';
} */

.item-selected img {
    opacity: 0 !important;
}

.item-selected {
    cursor: default;
}

.item-selected:before {
    content: '';
    position: absolute;
    top: 18%;
    left: 18%;
    bottom: 18%;
    right: 18%;
    background-image: url('alien.svg?2');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.item-selected .bubble {
    opacity: 1;
    max-width: 40vw;
    pointer-events: all;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bubble-flex {
    display: flex;
    justify-content: space-between;
}

aside:hover .item-selected .bubble {
    opacity: 0;
}

.show-more {
    text-align: right;
    white-space: pre;
    opacity: 0.5;
    margin-left: 2rem;
}

aside:hover .item-selected .bubble {
    pointer-events: none;
}

aside .item-selected:hover .bubble {
    opacity: 1;
    pointer-events: all;
}

.visible {
    display: block;
}

.visible .slide-text{
    display: block;
}

.open {
    display: block !important;
}

.flex-open {
    display: flex !important;
}


/* Checkout */

#products {
    width: 25vw;
    margin: 0 auto 0.66666rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

#products img {
    opacity: 0;
}

.checkout-item {
    width: 100%;
}

.ship-days {
    opacity: 0.5;
}

.checkout-wrapper .bag-items {
    display: flex;
    margin: 0.333333rem 0 0.66666rem;
}

.checkout-wrapper .product-price {
    display: block;
    opacity: 0.5;
}

.checkout-wrapper .product-price::before {
    content: '$';
}

.input-wrapper {
    width: 50%;
}

input {
    width: 100%;
    font-family: inherit;
    font-weight: inherit;
    background-color: #B7AFA6;
    font-size: inherit;
    line-height: 1;
    border: none;
    border-bottom: solid 1px white;
    border-left: solid 1px white;
    padding: 0.666666rem 1rem;
    height: 2.333333rem;
    color: white;
    outline: none;
    text-align: center;
    cursor: pointer;
}

input::placeholder {
    color: white;
    opacity: 0.5;
}

input:focus::placeholder {
    opacity: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #B7AFA6 inset !important;
    box-shadow: 0 0 0 30px #B7AFA6 inset !important;
    -webkit-text-fill-color: white !important;
}

input:-webkit-autofill::first-line {
    font-weight: bold;
    font-family: 'SE';
    font-size: 1rem;
}

@media (orientation: landscape) {
    #preloader .countdown {
        margin-left: 28%;
    }
    #preloader #new-item {
        bottom: 3.5rem;
    }
    .purchase-desktop {
        bottom: 0;
        grid-template-columns: repeat(3,1fr);
        grid-auto-rows: 1fr;
        grid-gap: 0.66666rem;
        width: 100%;
        justify-content: center;
        color: white;
        padding: 1rem;
        z-index: 10;
        background-color: transparent;
        cursor: default;
        position: relative;
    }
    
    .purchase-desktop > * {
        padding: 0.25rem 0.5rem 0.2rem;
        background-color: #B7AFA6 ;
        border-radius: 100px !important;
        border-bottom-left-radius: 0 !important;
        cursor: pointer;
    }
    
    .purchase-desktop .shipping {
        background-color: white ;
        color: #B7AFA6;
        min-width: 7.3vw;
        text-align: center;
    }
    
    .purchase-desktop button {
        border: none;
        font: inherit;
        cursor: pointer;
        color: inherit;
        background-color: #B7AFA6 !important;
        padding: 0.25rem 1.5rem 0.2rem;
    }
    
    .purchase-desktop .shipping-info {
        width: 50%;
        bottom: 100%;
        border-radius: 1rem !important;
        padding: 0.5rem 0.5rem 0.45rem;
        cursor: default;
        max-height: calc(100vh - 3rem);
    }
    
    .purchase-desktop .button-gray {
        background-color: #B7AFA6;
        color: white;
        border-radius: 100px !important;
        border-top-left-radius: 0 !important;
    }
    
    #size-wrapper {
        position: relative;
        display: flex;
        justify-content: space-between;
        min-width: 14.5vw;
    }
    
    .size-arrow {
        transform: scale(1, -1) translateY(18%);
        -webkit-transform: scale(1, -1) translateY(18%);
        -ms-transform: scale(1, -1) translateY(18%);
        margin-left: 0.66666rem;
        margin-right: 0.2rem;
    }
    
    .chinese {
        pointer-events: none;
        margin-left: 0.2rem;
    }
    
    #size-list {
        border-radius: 1rem !important;
        border-bottom-left-radius: 0 !important;
        padding: 0.45rem 0.5rem 0.4rem;
        background-color: #B7AFA6 !important;
        cursor: pointer;
        left: 0;
        top: unset;
        bottom: calc(100% + 1px);
        width: 100%;
    }
    
    #size-list li {
        line-height: 1.1;
    }
    
    #size-list li:hover {
        opacity: 0.5;
    }
}


@media (orientation: portrait) {
    html {
        font-size: 3.5vw;
    }
    #preloader {
        font-size: 2rem;
        letter-spacing: 0;
        -webkit-text-stroke-width: 0.5px;
    }
    #preloader .countdown {
        margin-left: 10%;
    }
    #preloader #new-item {
        bottom: 3rem;
    }
    .menu {
        display: flex;
        padding: 1rem 0.66rem 0.5rem;
    }
    .menu a {
        flex-grow: 1;
    }
    .logotype {
        width: unset;
    }
    #cart img {
        width: 9vw;
    }
    .rotating-icon {
        font-size: 3.5vw;
    }
    .about-wrapper > *{
        width: 100%;
    }
    #checkout, input {
        border-left: 0;
    }
    .order-item:last-child {
        border-bottom: 1px solid white;
    }
    .grid-container {
        grid-template-columns: repeat(1,1fr);
        grid-gap: 1rem;
    }
    .bubble {
        opacity: 1;
    }
    .triangle {
        left: 5%;
        bottom: -2.8rem;
    }
    #new-element .triangle {
        left: 22%;
    }
    #new-element img {
        width: 65%;
    }
    #new-element .bubble {
        opacity: 1;
        left: unset;
        right: 0;
        min-width: 60vw;
    }
    .archive {
        font-size: 2rem;
    }
    .bag-items {
        flex-direction: column;
    }
    .action-line, #order-list {
        width: 100%;
        border-left: none;
    }
    .product-page {
        height: calc(100 * var(--vh));
        overflow: hidden;
    }
    .fixed-wrapp {
        position: inherit;
        left: 0;
        height: calc(86 * var(--vh));
        z-index: 10;
    }
    #related {
        flex-direction: row;
        width: fit-content;
        z-index: 10;
        margin: 0;
        padding: calc(1* var(--vh)) 1rem;
    }
    #slide-number {
        display: none !important;
    }
    .shipping-info {
        top: 100%;
        border-top: solid 1px white;
        left: 0;
        background-color: #77B2D6;
        width: 100%;
        height: calc(50 * var(--vh));
    }
    
    #size {
        text-align: center;
    }
    #size::after {
        content: '^';
        display: inline-block;
        transform: scale(1, -1) translateY(18%);
        -webkit-transform: scale(1, -1) translateY(18%);
        -ms-transform: scale(1, -1) translateY(18%);
    }
    #size-list {
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0;
        text-align: center;
        border-top: solid 1px white;
        background-color: #77B2D6;
        z-index: 10;
        line-height: 1.2;
    }
    
    #size-list li {
        padding: 0.66rem 0;
        border-bottom: solid 1px white;
    }
    
    #size-list li:last-child {
        border-bottom: none;
    }
    
    .chinese {
        display: none;
    }
    
    .size-arrow {
        display: none;
    }
    
    .related-item.item-selected {
        pointer-events: none;
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 90%, rgba(255,255,255,0) 100%);
        background-color: white;
        position: sticky;
        left: -1px;
        right: -1px;
        z-index: 10;
        width: 24vw;
    }
    
    .item-selected:before {
        top: 10%;
        bottom: 10%;
        left: 10%;
        right: 10%;
    }
    .item-selected::after {
        content: '';
        position: absolute;
        height: 0.2rem;
        background-color: white;
        z-index: 10;
        left: calc(0.6666666rem + 2px);
        right: calc(0.6666666rem + 4px);
        bottom: unset !important;
        top: calc(-1 * var(--vh) - 1px - 0.2rem);
        transform: translateX(0);
    }
    
    .product-page .triangle {
        display: none;
    }
    .related-item .bubble {
        display: none;
    }
    #purchase {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    #purchase::before {
        content: '';
        position: absolute;
        width: 200%;
        left: -50%;
        height: 100%;
        background-color: #77B2D6;
        z-index: -1;
    }
    #indicator {
        display: flex;
    }
    .slider {
        margin-top: 0;
    }
    .slider-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .slider-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: scale-down
    }
    
    .bubble-mobile {
        position: relative;
        left: 0.66666666rem;
        width: calc(100% - 1.33333333rem);
    }
    .sticky-scroll {
        overflow-x: auto;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .sticky-scroll::-webkit-scrollbar {
        display: none;
    }
    .triangle-mobile {
        display: block;
    }
    .input-wrapper {
        width: 100%;
    }
    #products {
        width: 80vw;
        height: 80vw;
    }
}

@media (max-width: 600px) and (orientation: portrait) {
    html {
        font-size: 4.5vw;
    }
    #preloader {
        font-size: 1.7rem;
    }
    #preloader .countdown {
        margin-left: 4%;
    }
    #preloader #new-item {
        bottom: 2.7rem;
    }
    .fixed-wrapp {
        height: calc(88 * var(--vh));
    }
    .item-selected::after {
        bottom: calc(12 * var(--vh) + 1px);
    }
    .related-item img {
        height: calc(10 * var(--vh)) !important;
    }
}

#order-list .product-price {
    display: none;
}

img[data-src] {
    opacity: 0;
    transition: .3s;
}

.policy-text {
    padding: 0 15px;
}

.policy-text p {
    margin-top: 24px;
}

.policy-text .politicText {
    margin-top: 48px;
}

.policy-text ul {
    padding: 12px 0px 12px 48px;
}

.policy-text h2 {
    text-transform: uppercase;
}

.checkout-wrapper .bag-product .product-type {
    display: unset;
}

.related-item.archive {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (orientation: portrait) {
    .related-item.archive {
        font-size: 20px;
        text-align: center;
    }   
    
    .related-scroll {
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
        height: calc(12 * var(--vh) + 3px);
        position: relative;
        display: flex;
        align-items: center;
        z-index: 10;
        transform: translateY(-0.5px);
    }
    
    .related-scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}

.related-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

#index .bubble:after {
    background-color: #fff !important;
}

body > .preloader-overflow {
    overflow: hidden;
    max-height: 100vh;
}

@media screen and (orientation: portrait) {
    .wrapper .bubble,
    .wrapper .item-selected,
    .wrapper .item-selected:after {
        background-color: #fff !important;
    }
}

#preloader {
    width: 100vw;
    height: 100%;
}

body > .wrapper {
    min-height: 100vh;
}

#size-wrapper.one_size {
    cursor: default;
}

#size-wrapper.one_size #size:after {
    display: none;
}

@media screen and (orientation: landscape) {
    #size-wrapper {
        height: calc(1em + 0.45rem);
    }    
}

.slide-text div::first-letter {
    text-transform: uppercase;
}

/* .lazyload,
.related-item.item-selected .bubble {
    transition: .3s;
    opacity: 0;
} */

.checkout-item {
    position: relative;
    padding-bottom: 94.571%;
    height: 0;
}

.checkout-item img {
    position: absolute;
    width: 100%;
    height: 100%;
}

@media screen and (orientation: portrait) {
    img + .bubble {
        opacity: 0;
        transition: .3s;
    }
}
.grid-item.archive {
    cursor: pointer;
}

.grid-item.display_none {
    display: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.grid-item.archive .js-archive-closer {
    margin-right: .5rem;
}

.grid-item.archive .js-archive-closer:after {
    content: '+';
}

.grid-item.archive .js-archive-closer:before {
    content: '';
}

.grid-item.archive.active .js-archive-closer:after {
    content: '';
}

.grid-item.archive.active .js-archive-closer:before {
    content: '−';
}

#indicator {
    height: 4px;
}

.related-item.archive {
    white-space: nowrap;
    font-size: 1.2rem;
}

#delivery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(0.66666rem - 0.5px) 1rem;
    border-bottom: solid 1px white;
    border-top: solid 1px white;
}

.product-page .related-item.archive {
    min-height: unset;
}

.contacts a:hover {
    opacity: 0.5;
}

.checkout-wrapper .input-wrapper input {
    font-family: 'Helvetica';
    border-radius: 0;
}

.shipping-and-returns {
    user-select: text;
}

.grid-container .grid-item {
    padding-bottom: 94.56%;
    height: 0;
}

.grid-container .grid-item img {
    position: absolute;
    top: 0;
}

.grid-item.archive {
    padding: 0;
    height: unset;
}

.related-item img {
    height: auto;
    width: 100%;
}


@media (orientation: portrait) {
    .related-item img {
        height: calc(12 * var(--vh));
        width: auto;
    }
}

.rotating-icon {
    width: 3.5vw;
    position: relative;
}

@media (orientation: portrait) {
    .rotating-icon {
        width: 9vw;
    }
}

.rotating-icon #about {
    height: 0;
    padding-top: 100%;
}

.rotating-icon #about span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.related-item {
    cursor: pointer;
    position: relative;
    object-fit: fill;
}

.swiper-related {
    height: 100vh !important;
    max-height: 100vh;
    width: 10%;
    right: 0;
    position: absolute;
}

.swiper-related .swiper-slide {
    width: 100%;
    height: 0;
    padding-bottom: 94.57%;
    position: relative;
}

.swiper-related .swiper-slide .related-item {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-page {
    overflow: hidden;
}

#related {
    display: none;
}

.bubble {
    text-align: initial;
}

@media screen and (orientation: portrait) {
    #related {
        display: flex;
    }
    
    .js-swiper-related {
        display: none;
    }

    .wrapper .grid-container .grid-item .bubble {
        opacity: 1;
    }
}

@media (orientation: portrait) {
    .js-swiper-related {
        display: none;
    }
    
}

#size .short-size,
#size-list .short-size {
    text-transform: uppercase;
}

@media screen and (orientation: portrait) {
    .bubble {
        background-color: unset !important;
        background: unset !important;
    }

    .fixed-wrapp {
        position: sticky;
    }
}

.shipping-info a {
    color: #fff;
}

.slide-text.display_none {
    display: none
}

.one_size {
    pointer-events: none;
}

.one_size .size-arrow {
    display: none;
}

.product-page {
    display: grid;
    grid-template-rows: auto 1fr;
    height: calc(100 * var(--vh));
}

.checkout-wrapper #order-list {
    display: grid;
    grid-template-columns: 1fr;
}

.checkout-wrapper #order-list #delivery {
    grid-row-start: 1000;
}

.related-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-x: auto;
}

.related-wrapper::-webkit-scrollbar {
    display: none;
}
@media screen and (orientation: portrait) {
    #related .related-item .triangle-mobile {
        display: none;
    }
    
    #related .related-item.item-selected .triangle-mobile {
        display: block;
    }

    .sticky-scroll {
        overflow: hidden;
    }
}

.bubble.bubble-mobile {
    margin-top: -1px;
    transform: translateY(1px);
}

#purchase #size {
    line-height: 1;
}

.order-item {
    max-width: 100vw;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1em;
}

.product-type {
    white-space: nowrap;
}

.order-item .minus,
.order-item .plus {
    padding-left: 1em;
    padding-right: 1em;
}

.bag-product {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
}

.swiper-slide.archive {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide.archive span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.product-page header {
    z-index: 1;
}

#delivery a {
    color: #fff;
}

#delivery a:hover {
    opacity: 0.5;
}

.margin-top_24px {
    margin-top: 24px;
}

.color_gainsboro {
    color: #dfdfdc;
}

.color_lightgray {
    color: #d5d1ce;
}

.product-page .archive span {
    font-size: 1rem;
}

.price {
    white-space: nowrap;
}

.header[style="background-color: white;"] {
    z-index: 2;
}

#size-list {
    grid-template-columns: 1fr;
}

#size-list.open {
    display: grid !important;
}

#size-list li[data-product-sort="1"] {
    grid-row-start: 1;
}

#size-list li[data-product-sort="2"] {
    grid-row-start: 2;
}

#size-list li[data-product-sort="3"] {
    grid-row-start: 3;
}

#size-list li[data-product-sort="4"] {
    grid-row-start: 4;
}

.js-swiper-related:hover .related-item.item-selected .bubble {
    display: none;
}

.related-item.item-selected:hover .bubble {
    display: block !important;
}

#purchase {
    padding: 0.5rem 1rem 0.6666666rem;
    grid-gap: 0.3rem;
}

@media screen and (max-width: 640px) {
    #purchase .shipping {
        opacity: 0.5;
    }
}

.product-page .archive span {
    padding: 0 1rem;
}

.checkout-wrapper .shipping-and-returns__head h1 {
    margin-bottom: 0.33333rem;
}

#paypal-button-container {
    margin: 1rem;
}

.input-wrapper-text {
    text-align: center;
    padding: 1rem 0 1rem;
}

.input-wrapper-text ~ p.policy {
    text-align: center;
}

.checkout-wrapper #checkout.action-line {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}

#empty-bag {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

@media screen and (max-width: 700px) {
    #checkout.action-line {
        border-bottom-left-radius: 27px;
        border-bottom-right-radius: 27px;
    }

    .product-page .fixed-wrapp {
        display: grid;
        grid-template-rows: auto auto auto 1fr;
    }

    .product-page .fixed-wrapp .slider {
        width: 100%;
        height: 100%;
    }

    .product-page .fixed-wrapp #purchase {
        grid-row-start: 3;
        padding: 0;
    }
}

.js-swiper-related .swiper-slide:hover {
    z-index: 9999;
}

.product-page.product-page--instagram .fixed-wrapp {
    height: calc(100vh - 102px);
}

.product-page.product-page--instagram .related-wrapper img {
    height: 85px !important;
    width: 90px;
}

.product-page .fixed-wrapp {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
}

.product-page .fixed-wrapp .slider {
    height: 100%;
}

.product-page .fixed-wrapp #purchase {
    grid-row-start: 5;
}

@media screen and (max-width: 640px) {
    .product-page .fixed-wrapp {
        display: flex;
    }
}

.checkout-wrapper .checkout-paypal {
    background-color: #ffc439;
    border-radius: 100px;
    border: unset;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.checkout-wrapper .checkout-paypal:hover {
    filter: brightness(0.95);
}

.checkout-wrapper .policy {
    margin-top: 1rem;
}

.display_none {
    display: none !important;
}

.checkout-paypal__wrapper {
    display: flex;
    justify-content: center;
}

.checkout-paypal {
    max-width: 270px;
}

.bag-items .input-wrapper {
    border-bottom-right-radius: 32px;
    overflow: hidden;
}

.bag-items #order-list {
    border-bottom-left-radius: 32px;
    overflow: hidden;
}

.bag-items #order-list.rounded {
    border-bottom-right-radius: 32px;
}

#order-list .order-item:last-child {
    border-bottom: 0;
}

@media screen and (max-width: 768px) {
    #order-list {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    #order-list .order-item:last-child {
        border-bottom: 1px solid #fff;
    }
}

.checkout-wrapper #order-list {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;    
}

.text-align_center {
    text-align: center;
}

#delivery {
    background-color: #ffdc00;
}

#delivery span {
    opacity: 0.5;
}