:root {
    --small-padding: 8px;
    --middle-padding: 16px;
}

[ng-cloak],
.ng-cloak {
    display: none !important;
}

#main-header {
    position: relative;
}

.product-gallery-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.product-left-wrapper {
    --nav: 92px;
    --thumbColorGuide: 60px;
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 calc(50% - 14px);
    width: calc(50% - 14px);
}

.sent-preview-inprocessing {
    font-style: italic;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
}

.product-slider-wrapper {
    justify-content: center;
    flex-direction: column;
    grid-gap: 10px;
}

.product-gallery-main {
    width: 100%;
    position: relative;
}

.product-gallery-box {
    width: 100%;
    order: 2;
    height: 640px;
    overflow: hidden;
    position: static;
}

#customizationOptions label {
    user-select: none;
}

.product-gallery-box .swiper-button-next,
.product-gallery-box .swiper-button-prev {
    opacity: 0;
    transition: all 250ms ease-in-out;
}

.product-gallery-box.swiper-initialized
    .swiper-button-next:not(.swiper-button-disabled),
.product-gallery-box.swiper-initialized
    .swiper-button-prev:not(.swiper-button-disabled) {
    opacity: 1;
}

.product-gallery-nav {
    width: 100%;
    padding-right: 6px;
    max-height: 614px;
    overflow: hidden;
    order: 1;
    display: flex;
}

.product-gallery-nav .swiper-wrapper {
    display: flex;
}

.product-gallery-nav .swiper-wrapper .gallery-nav-item {
    margin-bottom: 6px;
}

.product-gallery-box.full-image {
    width: 100%;
}

@keyframes upDown {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(20%);
    }

    100% {
        transform: translateY(0%);
    }
}

.loader01 {
    width: 31px;
    height: 31px;
    border: 2px solid #595959;
    border-right-color: transparent;
    border-radius: 50%;
    animation: loader-rotate 0.5s linear infinite;
    top: calc(50% + 14px);
    left: calc(50% - 15px);
    margin: -28px auto 0;
    position: absolute;
}

.loader01:after {
    content: "";
    width: 2px;
    height: 2px;
    background: var(--pr-color-primary);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: 16px;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.product-gallery-item picture {
    height: 100%;
    width: 100%;
    flex: 0 0 100%;
}

.product-gallery-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.gallery-nav-item {
    background-color: #fff;
    position: relative;
    display: flex;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-nav-item::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-nav-item img {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    opacity: 1;
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 300ms ease-in-out;
}

.gallery-nav-item:not(.swiper-slide-thumb-active) {
    opacity: 0.5;
    transition: transform 0.6s, opacity 0.6s;
}

.gallery-nav-item.swiper-slide:hover {
    opacity: 1;
}

.product-right-wrapper {
    flex: 0 0 50%;
    width: 50%;
    padding-left: 24px;
    border: none !important;
}

.product-name {
    font-size: 26px;
    margin: 0 0 10px;
    color: var(--primary);
    font-weight: 600;
}

.product-rating {
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 3px;
    padding-bottom: var(--gap16);
}

.rating-star {
    width: 18px;
    min-width: 18px;
    height: 18px;
    display: block;
    margin-right: 2px;
    background-color: var(--secondary);
    -webkit-mask-image: url(/images/star.svg);
    mask-image: url(/images/star.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
}

.product-price-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    margin-bottom: 8px;
}

.product-price-content .product-price {
    font-size: 26px;
    font-weight: 600;
    color: var(--price-color);
}

.product-price-content .product-high-price {
    font-size: 18px;

    text-decoration: line-through;
    align-items: center;
    justify-content: flex-start;
    color: var(--gray);
    margin: 0 8px 0 4px;
    padding: 0 !important;
    font-weight: 600;
}

.payment-content {
    position: relative;
    margin-bottom: 8px;
    font-size: 12px;
}

.payment-container {
    align-items: flex-end;
}

.payment-logo {
    height: var(--gap20);
    margin-right: 4px;
}

.payment-logo img {
    height: var(--gap20);
    width: auto;
}

.payment-content a {
    margin-left: 4px;
    color: var(--primary);
    text-decoration: underline;
}

.swatch-options {
    margin-bottom: 16px;
    padding-top: 0;
}

.swatch-options .swatch {
    margin-bottom: 12px;
}

.swatch-options .option-title {
    width: 100%;
    font-weight: 700;
    color: var(--gray);
    font-size: 14px;
    user-select: none;
    margin-bottom: var(--gap6);
    text-transform: uppercase;
}

.swatch-options .option-title #js-variant-name-2 {
    color: var(--secondary);
}

.swatch-options .select {
    border: var(--border-width) solid var(--border-color) !important;
    min-height: 46px;
}

.swatch-option-item input {
    display: none;
}

.swatch-option-item input:checked + .swatch-element {
    border-color: var(--secondary);
    color: var(--secondary);
}

.swatch-option-item input:checked + .swatch-element label {
    color: var(--secondary);
}

.swap-swatch {
    grid-gap: 6px;
}

.swatch-element {
    position: relative;
    margin: 0;
    transform: translateZ(0);
    min-width: 34px;
    height: 100%;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
    background: #fff;
}

.swatch-element:hover {
    border-color: var(--secondary);
}

.swatch-option-item label {
    font-size: 14px;
    min-width: 36px;
    height: 36px;
    text-transform: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    color: var(--gray);
    border-radius: var(--border-radius);
    padding: 8px 10px;
}

.swatch-option-item .swatch-element .crossed-out {
    display: none;
}

.swatch-element.color,
.swatch-element.color label {
    border-radius: var(--border-radius);
    border: #e2e2e2 1px solid;
}

.swatch-option-item input:checked + .swatch-element.color {
    border-width: 2px;
}

.swatch .tooltip {
    text-align: center;
    background: #333;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    bottom: 100%;
    padding: 5px 10px;
    display: block;
    position: absolute;
    width: 120px;
    font-size: 13px;
    left: -35px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-out;
    box-shadow: 2px 2px 6px #00000047;
    z-index: 10000;
    border-radius: 5px;
    pointer-events: none;
}

.swatch .swatch-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.swatch .tooltip:before {
    content: "";
    bottom: -120px;
    display: block;
    height: var(--gap20);
    left: 0;
    position: absolute;
    width: 100%;
}

.swatch .tooltip:after {
    content: "";
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid rgba(51, 51, 51, 0.9) 10px;
    bottom: -10px;
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
}

.swatch-element.color.swatch-element label {
    padding: 0;
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius);
    display: block;
    overflow: hidden;
}

.swatch-element.color.swatch-element label img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.swap-swatch {
    flex-wrap: wrap;
}

.quantity-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--border-width) solid var(--flash);
    border-radius: var(--border-radius);
    min-width: 170px;
    min-height: 50px;
}

.quantity-box .quantity-input {
    min-height: 1px;
}

.quantity-box button {
    border: none;
    width: 36px;
    min-width: 36px;
    outline: none;
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
}

.quantity-input,
.quantity-input:hover,
.quantity-input:focus {
    border: none;
    cursor: pointer;
    user-select: none;
    padding: 12px 6px;
    border-width: 2px;
    border-radius: 5px;
    text-align: center;
}

#pod-module-content {
    padding: 0 !important;
}

#pod-module-content + .product-actions {
    margin-top: 24px;
}

#pod-module-content .product-variant-item-box {
    margin: 10px 0;
    padding: 0;
}

#pod-module-content .add-images,
#pod-module-content .form-control {
    border-radius: 10px !important;
}

.product-variant-heading {
    font-weight: 600 !important;
    color: var(--black);
}

.product-actions {
    margin: 16px 0;
}

.product-right-wrapper .product-variant-box {
    width: 100%;
    padding-left: 16px;
    box-shadow: none;
}

.product-right-wrapper .product-actions .add-to-cart,
.product-right-wrapper .product-actions .custom-now {
    width: calc(100% - 182px);
}

.custom-now,
.add-to-cart {
    background-color: var(--secondary);
    height: 46px;

    border-radius: 5px;
    color: #fff;
    border: none;
    font-size: 18px;

    text-transform: uppercase;
    font-family: var(--body-fonts);
    cursor: pointer;
}

.add-to-cart:hover,
.add-to-cart:focus {
    outline: none;
    background-color: var(--secondary-dk);
    color: #fff;
}

.custom-now {
    background: var(--info);
}

.custom-now:hover,
.custom-now:focus {
    outline: none;
    background-color: #0396af;
    color: #fff;
}

.shipping-custom .product-delivery {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    color: #3b4148;
    border: 1px solid #cccccc;
}

.shipping-custom .product-delivery > img {
    width: 36px;
    min-width: 36px;
    margin-right: 10px;
}

.shipping-custom-vendor {
    color: var(--info);
    font-weight: 600;
}

.shipping-custom .product-row-text {
    align-items: flex-start;
}

.shipping-custom .product-row-text > * {
    padding-left: 0;
}

.shipping-custom .product-delivery p {
    margin: 6px 0 !important;
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 20px;
    position: relative;
    justify-content: center;
}

.product-tabs-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-tabs-label {
    margin: 0;
    flex-grow: 1;
    word-break: break-word;
    font-weight: 600;
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 0;
    color: var(--gray);
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 3px solid var(--flash);
    padding: 2px 12px 4px;
}

.product-tabs-label.active {
    font-weight: 600;
    background: #ffffff;
    color: #323843;
    margin-bottom: 10px;
}

.product-tabs-label {
    flex-grow: 0;
    width: auto;
}

.product-tabs-label.active {
    border-color: var(--secondary);
    color: var(--secondary);
    margin-bottom: 0;
}

.product-tabs-panel {
    margin-top: 16px;
}

.product-tabs-panel {
    width: 100%;
    display: none;
    word-break: break-word;
    padding: 0;
    background: #ffffff;
    border-top: none;
    text-align: left;
    white-space: normal;

    font-size: 14px;
    order: 10;
    color: var(--primary);
}

.product-detail-description .product-properties-table {
    margin-top: 0 !important;
}

.product-tabs-panel.is-desktop.shipping-box {
    margin-bottom: 10px;
}

.product-tabs-label.is-desktop.shipping-label {
    margin-top: 18px;
}

.product-properties-table {
    width: 100%;
}

.product-properties-table a {
    color: rgb(241, 91, 37);
}

.product-properties-table a:hover {
    text-decoration: underline;
}

.product-properties-table td:first-child,
.product-properties-table th:first-child {
    white-space: nowrap;
}

.product-tabs-panel {
    order: 1;
}

.product-tabs-panel.active {
    display: block;
    max-height: 300px;
    overflow-y: auto;
}

.social_buttons {
    border-top: 1px solid #cccccc;
    padding-top: 16px;
    margin: 16px 0;
}

.share-btn a {
    width: 44px;
    height: 44px;
    display: flex;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid var(--flash);
}

.purchase-row {
    margin-bottom: 16px;
    font-size: 15px;
}

.product-row-text {
    display: flex;
    align-items: center;
}

.protection-box-txt {
    padding-left: var(--gap16);
}

.protection-box-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* .protection-box-txt {
    
} */

/* .product-row-text > img {
    width: 80px;
    height: 80px;
} */

.share-btn a span {
    width: var(--gap20);
    min-width: var(--gap20);
    height: var(--gap20);
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
}

.icon-twitter-share {
    background-image: url(/images/social/twitter.svg);
}

.icon-facebook-share {
    background-image: url(/images/social/facebook.svg);
}

.icon-pinterest-share {
    background-image: url(/images/social/pinterest.svg);
}

.icon-mail-share {
    background-image: url(/images/social/envelope.svg);
}

.share-product-title {
    font-weight: 600;
    color: #323843;
    font-size: 16px;
    margin-bottom: 8px;
}

.list-slider:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: var(--gap24);
}

.list-slider:not(.swiper-initialized)
    .swiper-wrapper
    .product-item-container:nth-child(n + 6) {
    display: none;
}

.related-searches-container.section-product-page {
    margin-top: calc(24px + (48 - 24) * ((100vw - 300px) / (1920 - 300)));
}

.related-searches-container.section-product-page {
    padding: 0;
}

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

.list-slider {
    margin-top: var(--gap12);
}

.list-slider + .list-slider {
    margin-top: var(--gap20);
}

.list-slider:not(.swiper-initialized) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--gap24);
}

.recomatics-title,
.related-searches-title,
.product-tag-heading,
.title-module-review {
    font-size: 30px;
    text-transform: capitalize;
    margin: 0 0 20px;
    font-family: var(--title-fonts);
    font-weight: 600;

    color: var(--secondary);
    min-height: 34px;
    text-align: center;
    user-select: none;
}

.title-module-review {
    text-transform: uppercase !important;
    margin-bottom: 10px;

    font-size: var(--gap24) !important;
    display: contents;
    font-weight: 700 !important;
}

.related-searches-container .related-searches-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.samestore-product-header {
    flex-direction: column;
    margin-bottom: var(--gap20);
}

.samestore-product-header .recomatics-title {
    margin-bottom: 0;
    min-height: 28px;
}

.samestore-product-header .component-seemore {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.samestore-product-header .component-seemore:hover,
.samestore-product-header .component-seemore:focus {
    color: var(--info);
}

.samestore-product-header .show-more-also-available svg {
    width: 16px;
    height: 16px;
}

.related-searches-list .related-searcher-item {
    width: 80px;
    margin: 0 6px;
}

.icon-mobile {
    display: none;
}

.fixed-mobile {
    display: none;
}

.variant-select {
    min-height: 50px;
}

.variant-loading-effect {
    margin-bottom: 16px;
    border-top: 2px solid #eaeaeb;
    margin-top: 16px;
    padding-top: 16px;
}

.product-right-wrapper .button-add-to-cart {
    border: none;
    font-family: var(--body-fonts);
    background-color: var(--price-color);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    display: flex;
    color: #fff;
    width: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 200px;
    position: relative;
    font-weight: 600;
    font-size: var(--gap16);
    height: auto;
    min-height: 50px;
    margin-left: 0;
    text-transform: uppercase;
}

.product-right-wrapper .btn-preview-persion {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
}

.product-actions {
    gap: 16px;
    grid-gap: 16px;
}

.product-right-wrapper .button-add-to-cart:hover {
    background-color: var(--secondary-dk);
}

.product-right-wrapper .added-to-cart-content {
    display: none;
}

.product-right-wrapper .add-to-cart-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.product-right-wrapper .add-to-cart-content svg {
    margin-right: 6px;
}

.product-right-wrapper .loading-content {
    width: 24px;
    height: 24px;
    display: none;
    position: absolute;
    border: 2px solid #fff;
    border-right-color: rgba(255 255 255 / 10%);
    border-radius: 24px;
    animation: ringRotate 678ms linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.colorGuideThumb {
    position: absolute;
    width: var(--thumbColorGuide);
    height: var(--thumbColorGuide);
    border: 1px solid rgba(122, 122, 122, 0.1);
    bottom: 10px;
    right: 10px;
    background: var(--pr-color-white);
    z-index: 2;
    border-radius: var(--pr-spacing-03);
    cursor: pointer;
    user-select: none;
    box-shadow: var(--pr-shadow-500);
    padding: 1px;
    transform: var(--pr-trans-standard);
    display: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.colorGuideThumb img {
    border-radius: 0.4rem;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.colorGuidePreview {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: var(--thumbColorGuide);
    height: var(--thumbColorGuide);
    background: var(--pr-color-white);
    transition: width 250ms ease-in-out, height 250ms ease-in-out,
        opacity 150ms ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.colorGuidePreview img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    object-position: center;
}

.colorGuidePreview.show {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    opacity: 1;
}

.color-guide-tip {
    color: var(--pr-color-dodgerblue);
    position: absolute;
    top: -55px;
    left: 0;
    font-size: small;
    text-align: center;
    width: 100%;
    animation: upDown 1200ms linear infinite;
    font-weight: var(--pr-font-weight-heading);
    text-shadow: 1px 1px 2px white, 0 0 1em white, 0 0 0.2em white;
}

.animated-gr {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.product-breadcrumb-wrapper {
    margin-top: var(--gap24);
}

.product-breadcrumb-wrapper {
    font-size: 13px;
}

.product-item-title > a {
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-left: 14px;
    padding-right: 14px;
    font-weight: 600;
    min-height: 44px;
}

.price-contact .product-ticket {
    border: none;
    font-family: var(--body-fonts);
    background-color: var(--primary-dk);
    padding: 11px 24px;
    border-radius: 11px;
    display: flex;
    color: #fff;
    width: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 200px;
    min-height: 64px;
    position: relative;
    font-weight: bold;
    font-size: 20px;
}

.price-contact .product-ticket a {
    color: #fff;
    display: flex;
    grid-gap: 8px;
}

.price-contact .product-ticket:hover {
    background: var(--primary-lt);
}

.text-add-note-no-customize {
    cursor: pointer;
    margin-top: 16px;
    width: 100%;
    color: var(--info);
    display: flex;
    align-items: center;
    grid-gap: 6px;
    text-decoration: underline;
}

.text-add-note-no-customize svg {
    color: var(--secondary);
}

.input-text-note-no-customize {
    margin-top: 16px;
    width: 100%;
    position: relative;
}

.input-text-note-no-customize textarea {
    min-width: 100%;
    max-width: 100%;
    border: 2px solid #d8d8d8;
    border-radius: 12px;
    padding: 6px 16px;
    min-height: 56px;
    max-height: 150px;
}

.input-text-note-no-customize textarea:hover,
.input-text-note-no-customize textarea:focus {
    outline: none;
    border-color: var(--info);
}

.input-text-note-no-customize .clear-text-note-no-customize {
    font-size: 20px;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    padding: 1px 8px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e1e1e1;
    border-radius: 25px;
    background: var(--secondary);
    color: #fff;
}

.steps-wrapper {
    margin-top: 32px;
}

.submit-a-ticket {
    grid-gap: 6px;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 15px;
}

.submit-a-ticket a {
    color: rgb(241, 91, 37);
}

.related-searches-container {
    width: 100%;
    background-color: #fff;
    padding: 12px 0px;
}

.related-searches-list {
    display: grid;
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    grid-gap: 8px;
}

.related-searcher-image {
    display: block;
    position: relative;
    margin: 0 0 10px;
    border-radius: 50%;
}

.related-searcher-image::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.related-searcher-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.searcher-item-title {
    font-size: 13px;
    margin: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    user-select: none;
    text-transform: capitalize;
}

.view-sizeguide-nav {
    pointer-events: none;
    transition: all 222ms ease-in-out;
}

.view-sizeguide-nav.active-sizeguide {
    pointer-events: all;
}

.sizeguide-text {
    display: block;
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    left: 0;
    color: var(--black);
    font-size: 9px;
    text-transform: uppercase;
}

.product-variant-heading.has-sizeguide {
    width: 100%;
}

.product-variant-heading.has-sizeguide .btn-open-size-guide {
    font-size: 13px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    grid-gap: 4px;
}

.btn-open-size-guide {
    cursor: pointer;
}

.btn-open-size-guide:hover {
    background-color: #f6f6f6;
    border-radius: var(--border-variant);
}

.note-size-guide {
    background: #fff;
    padding: 16px;
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.add-to-cart-btn {
    transition: all 200ms ease-in-out;
    animation: shake-horizontal 5s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

@keyframes shake-horizontal {
    0% {
        transform: translate3d(0, 0, 0);
    }

    3%,
    27% {
        transform: translate3d(-2px, 0, 0);
    }

    6%,
    24% {
        transform: translate3d(4px, 0, 0);
    }

    9%,
    15%,
    21% {
        transform: translate3d(-6px, 0, 0);
    }

    12%,
    18% {
        transform: translate3d(6px, 0, 0);
    }

    30% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.product-gallery-wrapper .swiper-pagination {
    width: fit-content;
    padding: 8px 15px;
    background: #fff;
    border-radius: 32px;
    margin-left: 15px;
    color: var(--secondary);
    font-size: 15px;

    border: 1px solid var(--secondary);
}

@media (max-width: 360px) {
    .available-product-link img {
        width: 159px;
        height: 159px;
    }
}

@media (min-width: 1024px) {
    .product-size-guide {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 1023px) {
    .product-gallery-wrapper {
        display: block;
        position: sticky;
        top: 30px;
        width: 100%;
        z-index: 1;
    }

    .submit-a-ticket a:hover {
        text-decoration: underline;
    }
}

@media (min-width: 768px) and (max-width: 1336px) and (orientation: portrait) {
    .shipping-custom .product-delivery > img {
        width: 24px;
        min-width: 24px;
        margin-right: 6px;
    }

    .product-gallery-wrapper {
        display: inline-block;
        position: sticky;
        top: 97px;
        width: 100%;
    }

    .product-left-wrapper {
        --nav: 0;
    }

    .product-gallery-nav {
        display: none;
    }

    .product-gallery-main {
        padding: 0;
    }

    .product-slider-wrapper {
        display: block;
    }

    .product-gallery-box,
    .product-gallery-nav,
    .product-canvas-main {
        height: 400px;
        position: relative;
    }

    .product-tabs-panel.active {
        max-height: none;
    }

    .icon-mobile {
        display: block;
        transition: all 300ms ease-out;
    }

    .product-tabs-label.active .icon-mobile {
        transform: rotate(180deg);
        transition: all 300ms ease-out;
    }

    .rte {
        margin-bottom: 16px;
    }

    .quantity-box button {
        padding: 0;
        display: block;
    }

    .quantity-box button svg {
        width: 24px;
    }

    .quantity-box {
        min-width: 120px !important;
    }
}

@media (min-width: 768px) and (max-width: 1336px) and (orientation: landscape) {
    .product-tabs-panel.acitve {
        max-height: none;
    }

    .icon-mobile {
        display: block;
        transition: all 300ms ease-out;
    }

    .product-tabs-label.active .icon-mobile {
        transform: rotate(180deg);
        transition: all 300ms ease-out;
    }

    .rte {
        margin-bottom: 16px;
    }

    .quantity-box {
        min-width: 120px !important;
    }

    .quantity-box button {
        padding: 0;
        display: block;
    }

    .quantity-box button svg {
        width: 24px;
    }
}

@media (max-width: 767px) {
    .related-searches-list {
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto !important;
        grid-gap: 8px 16px;
        padding-left: 8px;
    }

    .related-searcher-item {
        width: 60px;
    }

    .product-gallery-wrapper {
        --swiper-pagination-bullet-width: 12px;
        --swiper-pagination-bullet-height: 12px;
        --swiper-pagination-color: #0094ad;
        margin-bottom: 0;
    }

    .product-gallery-wrapper .swiper-pagination {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2px;
        grid-gap: 2px;
    }

    .swatch-element.not-color label {
        white-space: nowrap;
    }

    .main-content {
        padding-top: 0;
    }

    .product-actions .quantity-box {
        min-width: 140px;
    }

    .quantity-box button {
        padding: 0;
        display: block;
    }

    .quantity-box button svg {
        width: 24px;
    }

    .header-content {
        overflow: hidden;
    }

    .product-page-content {
        display: block;
    }

    .product-left-wrapper {
        --nav: 0;
        width: 100%;
    }

    .product-right-wrapper {
        width: 100%;
        padding-left: 0;
    }

    .product-detail-content-wrapper {
        padding: 0;
    }

    .product-right-wrapper {
        padding: 0 var(--gap16);
    }

    .product-gallery-item picture {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
    }

    .product-gallery-item picture::before {
        content: "";
        padding-top: 100%;
        display: block;
    }

    .swap-swatch {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .swap-swatch .swatch-element {
        margin-bottom: 0;
    }

    .product-slider-wrapper {
        display: block;
    }

    .product-gallery-box,
    .product-gallery-nav,
    .product-canvas-main {
        height: auto;
        width: 100%;
    }

    .personalization-canvas {
        pointer-events: none;
    }

    .product-gallery-box .swiper-wrapper {
        height: auto;
    }

    .product-gallery-box .product-gallery-item {
        width: 100%;
        height: auto;
    }

    .product-gallery-nav .swiper-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 16px;
    }

    .product-gallery-nav .swiper-wrapper .gallery-nav-item {
        margin-bottom: 0;
        max-width: 62.66px;
    }

    .product-gallery-nav .swiper-wrapper .gallery-nav-item:last-child {
        margin-right: 16px;
    }

    .product-gallery-item img {
        border-radius: 0;
    }

    .product-gallery-main {
        padding: 0;
        margin-bottom: 10px;
    }

    .product-tabs-panel.active {
        max-height: none;
    }

    .shipping-custom > div {
        font-size: 14px;
    }

    .icon-mobile {
        display: block;
        transition: all 300ms ease-out;
    }

    .product-tabs-label.active .icon-mobile {
        transform: rotate(180deg);
        transition: all 300ms ease-out;
    }

    .rte {
        margin-bottom: 16px;
    }

    .fixed-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 999;
        padding: 10px;
        width: 100%;
        background: #fff;
        box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
        left: 0;
        transform: translateY(100%);
        transition: all 300ms ease-out;
    }

    .fixed-mobile.fixed-show {
        transform: translateY(0);
        transition: all 300ms ease-out;
    }

    .fixed-mobile button {
        width: 100%;
    }

    .fixed-mobile .button-add-to-cart {
        margin-left: 0;
    }

    .product-right-wrapper .button-add-to-cart {
        min-width: 130px !important;
    }

    #formCustomization .product-actions {
        padding: 0;
    }

    .custom-product-popup-action-wrapper {
        margin-top: 16px;
    }
}

/*Customization popup*/

.custom-now label {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.customization-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    justify-content: center;
    align-items: flex-end;
    z-index: 1000000000;
    transition: all 300ms ease-out;
}

#show-customization-popup:checked ~ .customization-popup-modal {
    pointer-events: all;
    opacity: 1;
    transition: all 300ms ease-out;
}

.customization-popup-modal .overlay-customization-popup {
    position: fixed;
    background-color: rgba(140, 149, 165, 0.6);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.customization-popup-wrapper {
    position: absolute;
    background: #f7f7f7;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    border-radius: 5px;
    width: 70vw;
    height: 70vh;
}

.customization-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;

    z-index: 999;
    box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px -2px 12px 0px rgba(0, 0, 0, 0.2);
}

.customization-popup-close label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customization-popup-content {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.left-popup-content {
    flex: 0 0 50%;
    background: #fff;
    height: 100%;
    position: sticky;
    top: 0;
    border-radius: 5px 0px 0 5px;
    overflow: hidden;
}

.customization-content-image {
    height: 100%;
}

.customization-content-image img {
    height: 100%;
    width: auto;
}

.right-popup-content {
    flex: 0 0 50%;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.customily-option {
    margin-bottom: 24px;
}

.customily-option .swatch-container input {
    display: none;
}

.customily-option .option-name {
    color: var(--primary);
    margin-bottom: 8px;
}

.customily-option .swatch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.customily-option .swatch-container label {
    box-sizing: border-box;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    padding: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
    width: 62px;
    height: 62px;
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 62px;
    background: #fff;
    border-radius: 5px;
}

.customily-option .swatch-container label img {
    max-width: unset;
    max-height: unset;
    width: 40px;
    display: block;
    pointer-events: none;
    object-fit: cover;
}

.customily-option select {
    height: 45px;
    width: 100%;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: none;
}

.customily-option select:focus {
    outline: none;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
    border: none;
}

.customily-option input {
    height: 45px;
    width: 100%;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: none;
}

.customily-option input:focus,
.customily-option input:hover {
    outline: none;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
    border: none;
}

.right-content-footer {
    position: sticky;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 9;
    background: #fff;
    padding: 12px 24px 12px 32px;
    box-shadow: 1px -2px 3px -1px rgba(0, 0, 0, 0.2);
}

.right-content-wrapper {
    position: relative;
    height: calc(100% - 70px);
    padding: 32px 24px 32px 32px;
    overflow-y: auto;
}

.right-content-footer .product-actions {
    margin-bottom: 0;
    align-items: stretch;
}

.icon-desktop {
    display: block;
}

.icon-mobile {
    display: none;
}

.product-row-icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
}

.product-variant-item-box.inline.print-location {
    justify-content: space-between;
}

.product-variant-item-box.inline.print-location .product-variant-heading {
    max-width: unset;
}

.product-variant-item-box.inline.print-location .toggleIcon {
    justify-content: flex-end;
}

.print-location {
    font-size: var(--pr-font-size-body);
    font-weight: var(--pr-font-weight-body);
    padding-bottom: 5px;
}

.toggleIcon,
.quantity-box {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 170px;
    margin-left: auto;
}

.toggleIcon label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    user-select: none;
    cursor: pointer;

    overflow: hidden;
}

.toggleIcon input {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}

.toggle-txt {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--pr-color-flash);
    cursor: pointer;
    user-select: none;
    padding: var(--pr-spacing-03) var(--pr-spacing-07);
}

.toggleIcon label:first-child .toggle-txt {
    border-radius: 10px 0 0 10px;
    border-right: none;
}

.toggleIcon label:last-child .toggle-txt {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.toggle-input:checked ~ .toggle-txt {
    background-color: var(--pr-color-dark-x);
    border-color: var(--pr-color-dark-x);
    color: var(--pr-color-white);
}

.product-variant-heading {
    font-weight: var(--pr-font-weight-body);
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.product-variant-wrap .product-variant-heading {
    margin-bottom: 10px;
    display: flex;
}

.product-variant-item-box.inline {
    display: flex;
    align-items: center;
}

.product-variant-item-box.inline .product-variant-heading {
    min-width: 100px;
    max-width: 120px;

    margin: 0;
    word-break: break-word;
}

.shipping-custom .addition-head {
}

@media (max-width: 1366px) {
    .customization-popup-wrapper {
        height: 60vh;
    }
}

@media (min-width: 768px) and (max-width: 1336px) and (orientation: portrait) {
    .customization-popup-wrapper {
        width: 95vw;
    }

    .customization-popup-wrapper .product-actions .custom-now {
        width: calc(100% - 132px);
    }

    .customization-popup-wrapper .quantity-box {
        width: 120px;
    }

    .product-right-wrapper .product-variant-box.addtocart-action-wrapper {
        width: calc(100% - 120px);
    }

    .quantity-input,
    .quantity-input:hover,
    .quantity-input:focus {
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 1336px) and (orientation: landscape) {
    .customization-popup-wrapper {
        height: 70vh;
        top: 50%;
    }

    .customization-popup-wrapper .product-actions .custom-now {
        width: calc(100% - 132px);
    }

    .customization-popup-wrapper .quantity-box {
        width: 120px;
    }

    .product-right-wrapper .product-variant-box.addtocart-action-wrapper {
        width: calc(100% - 120px);
    }

    .quantity-input,
    .quantity-input:hover,
    .quantity-input:focus {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .customization-popup-wrapper {
        height: 100vh;
        width: 100vw;
        transform: none;
        top: 0;
        left: 0;
    }

    .customization-popup-content {
        flex-wrap: wrap;
    }

    .left-popup-content {
        flex: 0 0 100%;
        height: 40%;
        position: sticky;
        top: 0;
        border-radius: 0;
    }

    .right-popup-content {
        flex: 0 0 100%;
        height: 60%;
    }

    .customization-content-image {
        text-align: center;
    }

    .customization-popup-wrapper .product-actions .custom-now {
        width: calc(100% - 132px);
    }

    .customization-popup-wrapper .quantity-box {
        width: 120px;
    }

    .icon-desktop {
        display: none;
    }

    .icon-mobile {
        display: block;
    }

    .customization-popup-close {
        position: absolute;
        top: 5px;
        left: 5px;
    }

    .designer-list-product-mobile {
        display: grid;
        grid-template-rows: auto auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: var(--gap20);
    }

    .designer-list-product-mobile .product-item {
        width: 147px;
        min-width: 147px;
        padding: 0;
    }

    .product-breadcrumb-box {
        flex-wrap: wrap;
    }

    .samestore-product-header .recomatics-title,
    .recomatics-title,
    .related-searches-title,
    .policy-title,
    .product-tag-heading,
    .title-module-review {
        font-size: 19px !important;
        margin-bottom: 12px;
    }

    .breadcrumb {
        white-space: nowrap;
        overflow-x: auto;
    }

    .product-right-wrapper .product-variant-box {
        padding-left: 0;
    }
}

.product-seller-name {
    display: flex;
    grid-gap: 6px;
    margin-bottom: 12px;

    color: #323843;
    font-size: 14px;
    align-items: center;
}

.product-seller-name svg {
    width: 18px;
    color: var(--secondary);
}

.product-seller-name .name-seller {
    color: var(--secondary) !important;
}

.relative {
    position: relative;
}

.product-canvas-main {
    z-index: 17;
    position: absolute;
    top: 0;
    width: 100%;
    /* overflow: hidden; */
    left: 0;
}

.sale-savings {
    background: var(--successful);
    border-radius: 5px;
    color: var(--white);
    font-size: 13px;
    padding: 3px 8px 3px;
    font-weight: 600;

    text-align: center;
    margin-top: 0;
    text-transform: uppercase;
    margin-left: 8px;
}

.sizing-chart-modal {
    padding-left: 25px;
    text-decoration: underline;

    font-style: normal;
    color: var(--dark);

    text-decoration-color: #12afde;
    position: relative;
    cursor: pointer;
    visibility: hidden;
}

.sizing-chart-modal.show-size-chart {
    visibility: visible !important;
}

.sizing-chart-modal svg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    left: 0;
}

.size-chart-text {
    color: #12afde;
    font-weight: 600;
    font-size: 16px;
}

.order-today {
    font-size: 15px;

    display: flex;
    align-items: center;
    grid-gap: 6px;
    margin-bottom: 10px;
}

.size-chart-modal {
    opacity: 0;
    pointer-events: none;
    background: 0 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    transition: 250ms ease-out;
    padding: 0;
}

.size-chart-background {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.size-chart-content-wrapper {
    background: #fff;
    max-width: 800px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 4vh auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2),
        0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    padding: 0;
}

.sc-modal-header {
    background-color: #ff9728;
    padding: 13px 32px;
    border-bottom: 1px solid #000;
    text-align: center;
    position: sticky;
    top: 0;
}

.sc-modal-header .sc-modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 99;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.sc-modal-header .modal-title-header {
    color: #333;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 4px;
}

.sc-modal-header .modal-title-sub-header {
    color: #333;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
}

.sc-modal-content {
    padding: 16px;
    max-height: 80vh;
    overflow: hidden auto;
}

.sc-modal-content .sc-image img {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.sc-divider {
    width: 100%;
    height: 0.5px;
    margin: 16px 0;
    background: #818078;
}

.sc-layout-group {
    padding: 3px;
    text-align: center;
    display: inline-block;
}

.sc-layout-group .sc-layout-1-3 {
    width: 33.33%;
}

.sc-layout-group .sc-layout-row-2 > div:first-child {
    float: left;
    padding-right: 5px;
}

.kw_title {
    font-size: 15px;
    font-weight: 700;
    padding: 5px;
    width: 100%;
    margin-top: 34px;
    background-color: #000;
    color: white;
}

.kw_img_container img {
    width: 100%;
    height: auto;
    margin: 15px 0 20px;
}

.sc-layout-group .sc-layout-row-2 > div:nth-child(2) {
    padding-left: 5px;
    float: right;
}

.sc-layout-group .sc-layout-2-3 {
    width: 66.66%;
}

.sc-table-content-wrapper {
    min-width: 70%;
    width: auto;
    margin: 0 auto 15px;
}

.sc-table-wrapper {
    max-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sc-unit-toggle {
    border: 1px solid var(--secondary);
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 4px;
}

.sc-unit-toggle-label {
    padding: 3px 8px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.sc-unit-toggle-label.active {
    background-color: var(--secondary);
    color: #fff;
}

.sc-table {
    width: 100%;
    border-top: 1px solid #dcdcdc;
}

.sc-table tr {
    border-bottom: 1px solid #dcdcdc;
}

.sc-table td {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}

.sc-table-cell:first-child {
    font-weight: 700;
    background-color: #ffa555;
    text-transform: uppercase;
    color: #333;
}

.btn-preview-persion {
    font-size: 18px;

    color: #60656a;
    border: 1px solid #60656a;
    border-radius: 12px;
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 16px;
}

body.preview-persion-modal-active {
    overflow: hidden;
}

#preview-persion-input:checked ~ .preview-persion-modal {
    pointer-events: all;
    opacity: 1;
}

.preview-persion-modal {
    opacity: 0;
    pointer-events: none;
    background: 0 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    transition: 250ms ease-out;
    padding: 0;
}

.preview-persion-background {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.preview-persion-content-wrapper {
    background: #fff;
    max-width: 600px;
    width: 100%;
    margin: 10vh auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2),
        0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    padding: 16px;
}

.preview-persion-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    z-index: 9999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-persion-close svg {
    width: 30px;
    height: 30px;
}

.preview-persion-modal .modal-title {
    text-align: center;
    padding: 0 16px;
}

.preview-persion-modal .modal-title-header {
    font-size: 18px;
    font-weight: 700;
}

.preview-persion-modal .modal-title-sub-header {
    font-size: 14px;
}

.preview-persion-modal .image-preview {
    border-radius: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.add-to-cart-preview {
    color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: auto;
    min-width: 180px;
    background: var(--secondary);
    font-family: var(--body-fonts);

    margin: 0 auto;
}

.social_buttons .twitter a:hover {
    background: #09aeec;
}

.social_buttons .facebook a:hover {
    background: #49659d;
}

.social_buttons .pinterest a:hover {
    background: #cb1f2a;
}

.social_buttons .mail a:hover {
    background: #888;
}

.social_buttons a:hover img {
    filter: brightness(0) invert(1);
}

#formCustomization {
    padding: 0;
}

#formCustomization .customization-content-info {
    padding: 0;
}

#formCustomization #pod-module-content {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 32px 16px 16px;
    transform: none;
}

#formCustomization .customization-content-info .customily-form-content {
    width: 100% !important;
    background-color: #f7f7f7;
    border: 1px solid #cccccc;
    border-radius: var(--border-radius);
    padding: 6px 16px 16px;
}

#formCustomization .customily-gr .customily-label-asb {
    font-weight: 700;
    position: relative;
    top: 0;
    font-size: 16px;
    pointer-events: none;
    user-select: none;
    left: 0;
    padding: 0;
    background-color: transparent;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

#formCustomization .swatch-options .option-title.option-title-size {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

#formCustomization .product-actions {
    margin-top: 0;
    grid-gap: 12px;
}

.shipping-custom {
    padding: 0 !important;
}

#formCustomization .customization-info-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

#formCustomization .customization-option-item {
    border-radius: 9px;
    min-width: 56px;
    min-height: 56px;
}

#formCustomization .customization-option-item,
#formCustomization .customization-option-item:hover {
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

#formCustomization .customization-option-item.active {
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--secondary);
}

#formCustomization .customization-option {
    display: flex;
    grid-gap: 12px;
    flex-wrap: wrap;
}

#formCustomization .customization-option-image {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
}

#formCustomization .customily-gr .customily-input {
    border-radius: 9px;
    border-width: var(--border-width) !important;
}

#formCustomization .customization-option-item.active:before {
    background-image: url(/assets/images/check-circle_customily.svg);
    background-size: 14px 14px;
    height: 14px;
    width: 14px;
    display: block;
    content: " ";
    position: absolute;
    top: 3px;
    background-color: transparent;
    right: 3px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #formCustomization .customization-option {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    #formCustomization .customization-content-info {
        max-height: none;
        margin-bottom: 12px;
    }
}

@media (min-width: 991px) {
    .product-breadcrumb-box .breadcrumb li:last-child a {
        max-width: 400px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .gallery-nav-item {
        max-width: calc((100% - 24px) / 5);
    }
}

@media (max-width: 767px) {
    .product-left-wrapper {
        --customizationImg: 300px;
        height: var(--customizationImg);
        min-height: 1px;
        top: -120vw;
        height: max-content;
        left: 0;
        transform: all 300ms ease-in-out;
        z-index: 99;
        padding: 0;
        background-color: transparent;
    }

    .show-preview-image .product-left-wrapper {
        top: 0;
    }

    .preview-wrapper.show-button-preview {
        opacity: 1;
        pointer-events: all;
        z-index: 999;
        display: flex !important;
        justify-content: center;
        align-items: stretch;
        gap: 6px;
        grid-gap: 6px;
        padding: 12px 10px;
        background-color: #fff !important;
        position: fixed;
        width: 100%;
        background-image: none !important;
        box-shadow: 0 6px 35px rgba(11 11 11 / 22%);
    }

    .show-preview-image .preview-button {
        background-color: #fff !important;
    }

    .show-button-preview .preview-button,
    #product-page .button-add-to-cart {
        font-size: 18px;
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        cursor: pointer;
        height: auto;
        width: 100%;
        border-radius: 9px;
        font-family: var(--body-fonts);
        text-align: center;
        font-weight: 600;
    }

    .show-preview-image .preview-wrapper .button-add-to-cart {
        display: none !important;
    }

    .button-add-to-cart .loading-search {
        width: 24px;
        height: 24px;
        background-color: var(--secondary) !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%);
        display: none;
    }

    .button-add-to-cart.product-addtocart .loading-search {
        left: calc(50% - 12px) !important;
    }

    .button-add-to-cart .loading-search::before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 50%;
        /* border: 2px solid #fff; */
        animation: ldsRing 700ms linear infinite;
    }

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

        100% {
            transform: rotate(360deg);
        }
    }

    .add-to-cart-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .show-button-preview .preview-button {
        color: #60656a;
        background-image: none !important;
        border: 2px solid #d8d8d8;
    }

    #product-page .button-add-to-cart {
        background: var(--secondary);
        color: var(--white);
        position: relative;
    }

    .icon-preview {
        display: block !important;
    }

    .product-right-wrapper {
        padding: 16px 16px 6px;
    }

    .preview-persion-content-wrapper {
        margin: 6vh auto !important;
    }

    .image-preview img {
        height: 50vh !important;
    }

    .related-searches-container .related-searches-list {
        justify-content: flex-start;
        align-items: flex-start;
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: 8px;
        display: grid;
    }
}

/*Free return*/
.free-return-box {
    font-size: 16px;
    margin: 6px 0px 16px;
    position: relative;
}

.free-return-box label {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    grid-gap: 8px;
    color: var(--info);
    user-select: none;
    font-size: 15px;
}

.free-return-box label .title {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.free-returns-popover {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 26px rgba(11 11 11 / 22%);
    position: absolute;
    top: 100%;
    left: 0px;
    padding: 16px;
    z-index: 101;
    width: 400px;
    font-size: 14px;
    max-width: 100%;

    opacity: 0;
    pointer-events: none;
}

.free-returns-popover p {
    margin: 0 0 5px;
}

.free-returns-popover a {
    color: var(--info);
}

.free-returns-popover a:hover {
    text-decoration: underline;
}

#free-returns:checked ~ .free-returns-popover {
    pointer-events: all;
    opacity: 1;
}

#free-returns {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

#free-returns:checked:checked ~ .free-returns-popover-background {
    cursor: default;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    opacity: 0;
}

@media (max-width: 767px) {
    .free-returns-popover {
        left: 0;
    }
}

/*End free return*/

.product-tag-wrapper {
    margin-top: var(--gap24);
}

.product-tag-search {
    position: relative;
    height: 40px;
    overflow: hidden;
}

.product-tag-search.active.show-all-tags {
    height: auto;
}

.product-tag-search {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.product-search-content {
    grid-gap: 8px;
    align-items: flex-start;
}

.product-tag-link {
    white-space: nowrap;
    color: var(--primary);
    padding: calc(6px + (10 - 6) * ((100vw - 300px) / (1920 - 300)))
        calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    border-radius: 24px;
    font-weight: var(--pr-font-weight-body);

    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
    position: relative;
    text-align: center;
    background-color: rgba(34 34 34 / 7%);
}

.product-tag-link:first-letter {
    text-transform: uppercase;
}

.text-slime {
    color: var(--price-color);
    font-size: 16px;

    margin-top: 0;
    margin-bottom: 16px;
}

.flashsale-box .product-price {
    font-weight: 600;
    font-size: 26px;

    position: relative;
}

@media (min-width: 992px) {
    .product-tag-search {
        position: relative;
        height: 40px;
        overflow: hidden;
    }

    .more-tags .product-tag-link {
        z-index: 2;
        margin: 0;
        color: var(--pr-color-dark);
        height: 40px;
    }

    .more-tags {
        width: 20%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        justify-content: flex-end;
        opacity: 0;
        display: none;
    }

    .product-tag-search.active .more-tags {
        opacity: 1;
        display: flex;
    }

    .product-tag-search.active.show-all-tags .more-tags {
        display: none;
    }

    .product-tag-search.active.show-all-tags {
        height: auto;
    }

    .more-tags::before {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(
            45deg,
            rgba(247, 247, 247, 0) 0%,
            var(--pr-color-white) 60%
        );
        position: absolute;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .product-tag-search .more-tags {
        display: none;
    }
}

@media (max-width: 1023px) {
    .product-tag-search {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

@media (max-width: 992px) {
    .product-search-content {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .product-price-content {
        margin-bottom: 2px;
    }

    .text-slime {
        font-size: 14px;
    }

    .submit-a-ticket {
        font-size: 14px;
        align-items: flex-start;
    }

    .submit-a-ticket svg {
        min-width: 16px;
        transform: translateY(2px);
    }

    .customization-content-info {
        height: auto !important;
    }
}

.product-breadcrumb-box li:last-child a {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.product-breadcrumb-box li {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .product-breadcrumb-box ul:first-child {
        flex: 0 0 50%;
        width: 50%;
    }
}

.js-you-may-also-like {
    position: relative;
    overflow: hidden;
    padding: 0 8px 24px;
}

.js-you-may-also-like:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.js-you-may-also-like .swiper-wrapper {
    height: auto;
}

.js-you-may-also-like .product-item {
    padding: 0;
    box-shadow: 0 4px 10px #00000026;
    border-radius: var(--border-radius);
}

.js-you-may-also-like:not(.swiper-initialized) .swiper-button-next,
.js-you-may-also-like:not(.swiper-initialized) .swiper-button-prev {
    display: none;
}

.designer-list-product-swiper {
    position: relative;
    overflow: hidden;
    padding: 0 8px 24px;
}

.designer-list-product-swiper .swiper-wrapper {
    height: auto;
}

.designer-list-product-swiper .product-item {
    padding: 0;
}

.designer-list-product-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.designer-list-product-swiper:not(.swiper-initialized) .swiper-button-next,
.designer-list-product-swiper:not(.swiper-initialized) .swiper-button-prev {
    display: none;
}

.js-similar-design-product {
    position: relative;
    overflow: hidden;
    padding-bottom: 24px;
}

.js-similar-design-product .swiper-wrapper {
    height: auto;
}

.js-similar-design-product .product-item {
    padding: 0;
}

.js-similar-design-product:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.js-similar-design-product:not(.swiper-initialized) .swiper-button-next,
.js-similar-design-product:not(.swiper-initialized) .swiper-button-prev {
    display: none;
}

.available-product-wrapper {
    margin-top: 20px;
}

.product-gallery-main .swiper-initialized .swiper-button-prev:hover,
.product-gallery-main .swiper-initialized .swiper-button-next:hover,
.product-gallery-main .slick-slider .slick-arrow:hover {
    border-color: var(--secondary);
    color: #fff;
}

#product-page .product-item-image {
    overflow: hidden;
}

#product-page .product-item-image img {
    top: 0;
    left: 0;
    transform: none;
    transition: opacity 0.5s, transform 2s cubic-bezier(0, 0, 0.44, 1.18),
        -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

#product-page .product-item-image:hover img {
    transform: scale(1.09);
}

@media (max-width: 1023px) {
    .js-you-may-also-like .swiper-button-next,
    .js-you-may-also-like .swiper-button-prev,
    .designer-list-product-swiper .swiper-button-next,
    .designer-list-product-swiper .swiper-button-prev,
    .js-similar-design-product .swiper-button-prev,
    .js-similar-design-product .swiper-button-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .js-you-may-also-like .swiper-wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: var(--gap20);
    }

    .js-you-may-also-like .swiper-wrapper .product-item {
        width: 147px;
        min-width: 147px;
        padding: 0;
    }

    .js-similar-design-product .swiper-wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: var(--gap20);
    }

    .js-similar-design-product .swiper-wrapper .product-item {
        width: 147px;
        min-width: 147px;
        padding: 0;
    }
}

.product-properties-table {
    border: 1px solid var(--flash);
    width: 100%;
    border-collapse: collapse;
}

.product-properties-table th,
.product-properties-table td {
    padding: 4px 8px;
    word-break: break-all;
    border: 1px solid var(--flash);
}

.product-properties-table th {
    white-space: nowrap;
    font-weight: 600;
    text-align: left;
}

.tab-categorie-breadcrumb a {
    color: var(--info);
}

.tab-categorie-breadcrumb a:nth-child(n + 2)::before {
    content: "/";
    color: var(--gray);
    margin: 0 4px;
    font-size: 11px;
    opacity: 0.7;
}

.product-properties-table td:nth-child(1) {
    white-space: nowrap;
}

.tab-categorie-breadcrumb a:hover {
    text-decoration: underline;
}

.info-price-rating {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 8px;
}

.info-price-rating .product-rating {
    margin-bottom: 8px;
}

.product-gallery-sizeguide-content {
    width: calc(100% - 110px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-gallery-sizeguide-title {
    font-size: 20px;
    border-bottom: 2px dashed #9e9e9e;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    justify-content: space-between;
}

#SizeGuideModal .sizeguide-menu-title {
    max-width: 100%;
}

#SizeGuideModal .sizeguide-menu-title span {
    white-space: normal;
}

.product-gallery-sizeguide-title #sizeGuideName,
#SizeGuideModal .sizeguide-menu-title span {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

#SizeGuideModal table tr td,
#SizeGuideModal table tr th {
    padding: 6px;
}

.size-guide-table-slide td {
    color: #2a99d6;

    text-align: center;
}

.size-guide-table-slide th,
.size-guide-table-slide td {
    padding: 6px;
    font-size: 15px;
}

.size-guide-table-slide tr td:first-child {
    padding-left: 0;
    text-align: left;
}

#sizeGuideName {
}

.product-gallery-sizeguide-table {
    margin-top: 16px;
    padding: 10px;
    border-radius: var(--border-radius);
    background-color: #fff;
}

.product-gallery-sizeguide-table.has-image {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
    grid-gap: 16px;
}

.product-gallery-sizeguide-table:not(.has-image) {
    display: block;
}

.product-gallery-sizeguide-table img {
    max-width: 100%;
    height: auto;
    position: static;
    transform: unset;
}

.size-guide-table-slide th,
.size-guide-table-slide td {
    border-bottom: 1px solid #d0d0d0;
    border-left: 0;
    border-right: 0;
}

.size-guide-table-slide tr:last-child th,
.size-guide-table-slide tr:last-child td {
    border-bottom: 0;
}

.size-guide-table-slide {
    border-collapse: collapse;
    width: 100%;
}

.product-gallery-sizeguide-table-responsive {
    max-width: 100%;
    overflow-x: auto;
}

.product-gallery-item.product-gallery-sizeguide {
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
}

.large-number-of-size .product-gallery-sizeguide-content {
    justify-content: flex-start;
    padding: 12px 0;
}

.large-number-of-size .product-gallery-sizeguide-table {
    overflow-y: auto;
}

.product-flash-sale {
    background: #f8faff;
    margin-bottom: 20px;
}

.product-flash-sale-wrapper {
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--gap14) 0;
}

.product-flash-sale-item {
    padding: 0 50px;
    text-align: center;
    border-right: 1px solid rgba(28 77 161 / 30%);
}

.product-flash-sale-item:last-child {
    border-right: 0;
}

.product-flash-sale-item-title {
    color: var(--secondary);
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-flash-sale-item-code {
    text-transform: uppercase;
    font-size: var(--gap16);
    color: var(--primary);
}

.product-flash-sale-item-code span {
    padding-left: 4px;
}

.main-content {
    padding: 0;
}

.product-gallery-main .swiper-initialized .swiper-button-prev,
.product-gallery-main .swiper-initialized .swiper-button-next,
.product-gallery-main .slick-slider .slick-arrow {
    border-radius: 5px;
    color: var(--primary);
    border-color: var(--primary);
}

#formCustomization .input-text-note textarea {
    border-width: var(--border-width);
    border-radius: var(--border-radius);
}

#formCustomization .btn-preview-persion {
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    animation: unset;
}

#formCustomization .btn-preview-persion:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

#formCustomization .customization-content-footer {
    margin-top: 16px;
}

.shipping-custom .title-shipping-custom {
    font-size: 15px;

    color: var(--primary);
}

.bought-together {
    margin-top: 20px;
}

.bought-together-title {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.bought-together-content {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
}

.bought-together-item {
    display: grid;
    grid-template-columns: 20px 64px minmax(0, 1fr);
    grid-gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--secondary);
    border-radius: var(--border-radius);
    align-items: flex-start;
}

.bought-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.bought-checkbox input {
    display: none;
}

.bought-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.bought-checkbox input:checked + .checkmark {
    background-color: #1c4da1;
    border-color: #1c4da1;
}

.bought-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.bought-checkbox input:checked + .checkmark::after {
    opacity: 1;
}

.bought-together-item-image {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.bought-together-item-name {
    font-size: 14px;
    color: var(--primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.bought-together-item-info {
    /* display: flex; */
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.bought-together-item-select {
    border: 0;
    font-size: 14px;
    color: var(--gray);
    padding: 3px 0px;
    text-align: left;
    font-family: var(--body-fonts);
    border-radius: 5px;
    cursor: pointer;
}

.bought-together-item-select:hover {
    background: #f7f7f7;
}

.bought-together-item-price-new {
    color: var(--secondary);
    padding-right: 4px;
    font-size: 15px;
}

.bought-together-item-price-old {
    font-size: 15px;
    text-decoration: line-through;
}

.bought-together-add-to-cart {
    font-size: 16px;
    width: 100%;
    margin-top: 8px;
    border: 0;
    background: var(--secondary);
    color: #fff;
    border-radius: var(--border-radius);

    padding: 16px 18px;
    cursor: pointer;
}

.bought-together-add-to-cart-price-old {
    padding-left: 4px;
    text-decoration: line-through;
}

.bought-together-add-to-cart-price {
}

.bought-together-add-to-cart:hover {
    opacity: 0.9;
}

.product-benefits {
    background: #f8faff;
    border-radius: var(--border-radius);
    margin-top: 20px;
    padding: 10px 8px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    grid-gap: var(--gap20);
}

.product-benefit-item {
    display: flex;
    flex-direction: column;
    max-width: 23%;
    grid-gap: var(--gap6);
    width: fit-content;
    font-size: 13px;

    color: var(--primary);
    align-items: center;
    text-align: center;
}

.product-benefit-item svg {
    color: var(--secondary);
}

#product-page .product-item {
    padding: 0;
    height: auto;
    box-shadow: 0 4px 10px #00000026;
    border-radius: var(--border-radius);
}

#product-page .product-price-box {
    padding: 0 12px 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#product-page .js-you-may-also-like .product-price-box {
    flex-direction: row;
    justify-content: flex-start;
}

#product-page .old-price {
    opacity: 1;
    color: var(--gray);
    font-size: 14px;
}

#product-page .new-price {
    color: var(--price-color);
    font-size: 18px;
}

.product-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 6px 0;
    box-shadow: 0 0 9px #0000001f;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.product-sticky-bar.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.product-sticky-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-sticky-bar-image img {
    width: 65px;
    height: 65px;
    border-radius: 50px;
    object-fit: contain;
}

.product-sticky-bar-left {
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr) max-content;
    grid-gap: 12px;
    align-items: center;
}

.product-sticky-bar-name {
    font-size: 14px;

    color: var(--secondary);
    margin-bottom: 4px;
}

.product-sticky-bar-price .product-high-price {
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 6px;
}

.product-sticky-bar-price .product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.product-sticky-bar-variant {
    margin-left: 12px;
    border: 1px solid var(--flash);
    border-radius: var(--border-radius);
    padding: 8px 12px;
    font-size: 15px;
    color: var(--secondary);
}

.product-sticky-bar-right {
    display: flex;
    align-items: center;
    grid-gap: 12px;
}

.product-sticky-bar-button {
    background: var(--secondary);
    color: #fff;
    border: 0;
    border-radius: var(--border-radius);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
}

.product-sticky-bar-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--flash);
    border-radius: var(--border-radius);
    color: var(--secondary);
}

.product-sticky-bar-quantity-button {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    font-size: 18px;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-sticky-bar-quantity-input {
    font-size: 16px;
    border: 0;
    height: 36px;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
}

.product-gallery-nav:not(.swiper-initialized) .gallery-nav-item {
    display: none;
}

@media (min-width: 768px) {
    .is-mobile {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: absolute;
    }

    .product-info-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .product-info-mobile {
        padding: 16px 16px 4px;
        background: #fff;
        position: relative;
        display: block;
    }

    .product-info-mobile .text-slime {
        color: #28a745;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .is-desktop {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: absolute;
    }

    .shipping-return-mobile {
        margin-top: 16px;
    }

    .product-price-content {
        margin-bottom: 2px;
        flex: 0 0 50%;
        flex-wrap: wrap;
        grid-gap: 4px;
    }

    .product-gallery-sizeguide-title {
        border-bottom: 2px dashed #9e9e9e;
        display: flex;
        padding-bottom: 10px;
        padding-top: 10px;
        align-items: center;
        grid-gap: 8px;
    }

    .product-gallery-sizeguide-title .sc-unit-toggle {
        width: fit-content;
        margin-bottom: 0;
    }

    .product-gallery-sizeguide-title #sizeGuideName {
        font-size: 16px;
        font-weight: var(--bold);
    }

    .product-gallery-item.product-gallery-sizeguide {
        background-color: #f8f8f8;
        padding: 0 24px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-gallery-sizeguide-table {
        margin-top: 8px;
        padding: 8px 10px;
    }

    .size-guide-table-slide {
        width: 100%;
        border-collapse: collapse;
    }

    .product-gallery-sizeguide-content {
        width: 100%;
        justify-content: flex-start;
    }

    .size-guide-table-slide th {
        font-weight: var(--bold);
    }

    .size-guide-table-slide th,
    .size-guide-table-slide td {
        font-size: 14px;
        text-align: center;

        border-bottom: 1px solid #d0d0d0;
    }

    .size-guide-table-slide th:first-child,
    .size-guide-table-slide td:first-child {
        text-align: left;
        padding-left: 0;
    }

    .size-guide-table-slide td {
        color: #2a99d6;
        font-weight: var(--bold);
    }

    .product-gallery-item.product-gallery-sizeguide img {
        width: 120px;
        height: 120px;
        position: static;
        transform: unset;
        margin-bottom: 10px;
    }

    .size-guide-table-slide td {
        color: #2a99d6;
        font-weight: var(--bold);
    }

    .product-gallery-item.product-gallery-sizeguide img {
        width: 120px;
        height: 120px;
        position: static;
        transform: unset;
        margin-bottom: 10px;
    }

    .product-name.js-product-name {
        font-size: 16px;
    }

    .product-price-content {
        margin-bottom: 10px;
    }

    .product-benefits {
        flex-wrap: wrap;
        grid-gap: 12px;
        padding: 12px 8px;
    }

    .product-benefit-item {
        width: calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        grid-gap: 4px;
    }
}

.late-delivery-wrapper {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    min-height: 40px;
    grid-gap: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 5px;
}

.late-delivery-wrapper > img {
    width: 45px;
    min-width: 45px;
}

.late-delivery-gr {
    display: flex;
    justify-content: center;
    align-content: center;
    grid-gap: 16px;
    width: 100%;
}

.late-delivery-wrapper::before {
    content: "";
    height: 100%;
    width: 60px;
    background-color: #ffdd00;
    display: block;
    position: absolute;
    transform: skewX(25deg);
    z-index: 1;
    left: -20px;
}

.late-delivery-wrapper > * {
    position: relative;
    z-index: 2;
}

.late-delivery-item {
    grid-gap: 8px;
    color: #fff;
    margin: 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.late-delivery-item svg {
    width: 17px;
    min-width: 17px;
}

a.late-delivery-item:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-style: dashed;
}

@media (max-width: 760px) {
    .late-delivery-item {
        font-size: 13px;
    }

    .product-sticky-bar-left {
        display: none;
    }

    .product-sticky-bar-right {
        display: grid;
        grid-template-columns: max-content minmax(0, 1fr);
        width: 100%;
        grid-gap: 24px;
    }

    .product-flash-sale-item {
        padding: 6px;
    }

    .product-flash-sale-item-title {
        font-size: 20px;
    }

    .product-flash-sale-item-code {
        font-size: 13px;
    }

    .product-flash-sale-wrapper {
        padding: 0;
    }

    .product-tabs-label {
        margin-right: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .product-tabs {
        margin-bottom: 10px;
    }

    .js-you-may-also-like {
        padding: 0;
    }

    .js-you-may-also-like:not(.swiper-initialized) .swiper-wrapper {
        grid-gap: 12px;
        padding-bottom: 8px;
    }

    .designer-list-product-swiper {
        padding: 0;
    }

    .designer-list-product-swiper:not(.swiper-initialized) .swiper-wrapper {
        padding-bottom: 8px;
    }
}

.product-right-wrapper {
    position: relative;
}

#js-drift-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
    display: none;
    margin-left: 24px;
}

#js-drift-pane.active {
    display: block;
}

.drift-zoom-pane {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.drift-bounding-box {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    cursor: zoom-in;
    z-index: 999;
}

.drift-zoom-pane.drift-open {
    max-height: 570px;
    max-width: 570px;
    z-index: 999;
    background-color: #fff;
}

.product-gallery-zoom-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 0 5px #00000017;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    pointer-events: none;
}

.product-gallery-zoom-btn svg {
    width: 16px;
    height: 16px;
}

.list-product-also-available .swiper-pointer-events {
    overflow: hidden;
    position: relative;
    padding: 0 8px 8px;
}
