html,
body {
    -webkit-overflow-scrolling: touch;
}

.open-customization-pop {
    overflow: hidden;
}

.product-variant-wrapper>.button-add-to-cart {
    display: none;
}

.product-variant-wrapper #js-sku-chosen {
    min-height: 0;
    max-height: 0;
    overflow: hidden;
}

.customilyLoadingWrapper {
    width: 100% !important;
    background-color: #fafafa;
    border-radius: 7px;
    padding: 6px 16px 16px;
}

.loadingTitle {
    display: block;
    width: 230px;
    background-color: #f1f1f1;
    margin: 5px 0;
    min-height: 22.39px;
    border-radius: 5px;
}

.loadingContent {
    display: flex;
    gap: 12px;
    grid-gap: 12px;
}

.loadingContentBox {
    width: 66px;
    height: 66px;
    min-width: 66px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.customilyLoadingSelect {
    width: 100%;
    border-radius: 5px;
    height: 44px;
}

.loadingWrap+.loadingWrap {
    margin-top: 16px;
}

.loadingPreview {
    border-radius: 11px;
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 16px;
}

.LoadingProductActions {
    display: grid;
    grid-template-columns: 170px auto;
    grid-gap: 16px;
    margin: 8px 0 16px 0;
}

.loadingQuantityBox,
.loadingAddBox {
    border-radius: 11px;
    height: 64px;
}

.product-variant-wrapper .variant-loading-effect {
    display: none;
}

.customilyLoading {
    background: linear-gradient(45deg, rgba(209, 209, 209, 0.35), rgba(11, 11, 11, 0.1), rgba(209, 209, 209, 0.1), rgba(209, 209, 209, 0.15));
    background-size: 400% 400%;
    animation: gradient 3000ms ease infinite;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.customilyLoadingVariant {
    height: 44px;
    width: 56px;
    border-radius: 5px;
}

.btn-preview-persion {
    font-size: 18px;
    line-height: 24px;
    color: #60656a;
    border: 2px solid #d8d8d8;
    border-radius: 12px;
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 16px;
    transition: all 200ms ease-in-out;
    animation: shake 850ms cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    animation-iteration-count: 3;
    backface-visibility: hidden;
    perspective: 1000px;
}




@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.btn-preview-persion:hover {
    border-color: #ff6100;
    color: #ff6100;
}

.customization-btn-custom {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    border: 1px solid transparent;
    transition: background-color .25s ease-out, color .25s ease-out;
    font-family: inherit;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    background-color: #6071ec;
    font-weight: 500;
    min-width: 130px !important;
    padding: 1rem 2.4rem;
    border-radius: var(--large-padding);
    color: var(--white);
    font-size: 16px;
    order: 4;
    width: 100%;
}

.custom-product-popup-action-wrapper {
    min-height: 56px;
}

.customization-wrapper {
    --site: 1280px;

    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1111;
    transition: var(--trans);
    opacity: 0;
    pointer-events: none;
}

.open-customization-pop .customization-wrapper {
    opacity: 1;
    pointer-events: all;
}

.customization-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(11 11 11 / 44%);
}

.customization-content-wrapper {
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0 rgb(0 0 0 / 14%), 0 1px 12px 0 rgb(0 0 0 / 10%);
    max-width: var(--site);
    margin: 40px auto;
    min-height: 300px;
    display: block;
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 680px;
    grid-template-columns: 680px calc(100% - 680px);
    grid-template-rows: auto 86px;
    grid-gap: 0;
    grid-template-areas:
        "cImage cInfo"
        "cImage cFooter";
    justify-content: space-between;
}

.close-customization-pop {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -16px;
    right: -16px;
    border-radius: 36px;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0 rgb(0 0 0 / 14%), 0 1px 12px 0 rgb(0 0 0 / 10%);
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    cursor: pointer;
    user-select: none;
}

.close-customization-pop:hover {
    color: var(--primary)
}

.customization-content-image {
    position: relative;
    grid-area: cImage;
    padding: 0;
    /* background-color: #f1f1f1; */
    /* box-shadow: 0 3px 18px rgba(11 11 11 / 22%); */
    min-height: 500px;
}

.customization-content-info {
    position: relative;
}

.customization-content-info.loading {
    overflow: hidden !important;
}

.customization-content-info {
    --l: 16px;
    grid-area: cInfo;
    padding: var(--l);
    /*max-height: 80vh;*/
    /*overflow-x: hidden;*/
    /*overflow-y: auto;*/
}

.customization-content-footer {
    grid-area: cFooter;
    position: relative;
}

.customization-product-title {
    font-size: calc(17px + (21 - 17) * ((100vw - 300px)/(1920 - 300)));
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;

}

.customization-option {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 8px;
}

.customization-option:empty {
    display: none;
}

.customization-info-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
}

.customization-option-item {
    background-color: #fff;
    padding: 2px;
    border-radius: 3px;
    border: 2px solid #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: border-color 300ms ease-in-out;
}


.customization-option-item.active,
.customization-option-item:hover {
    border-color: var(--primary);
}

.customization-option-item.active {
    cursor: default;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0 rgb(0 0 0 / 14%), 0 1px 12px 0 rgb(0 0 0 / 10%);
}

.customization-option-image {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
    object-fit: contain;
    object-position: center;
}

.customization-option-item-tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    padding: 6px 6px;
    border-radius: 3px;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translate(-50%, 20px);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    line-height: 1.2;
    transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
    text-align: center;
}

.customization-option-item:hover .customization-option-item-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.customization-option-item-tooltip:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0.7);
    border-width: 6px;
    margin-left: -6px;
}

.customily-option:nth-child(n + 2) {
    margin-top: 16px;
}

.text-holder option {
    color: var(--primary);
}

.customily-gr:first-child {
    margin-top: 0px;
}

.customily-gr {
    position: relative;
    margin-top: 16px;
}

.customily-gr .customily-label-asb {
    font-weight: 500;
    position: absolute;
    top: -12px;
    font-size: 14px;
    pointer-events: none;
    user-select: none;
    left: 10px;
    padding: 1px 6px;
    background-color: #fff;
}

.customily-gr-label {
    font-weight: 500;
    font-size: 16px;
    pointer-events: none;
    user-select: none;
    margin-bottom: 16px;
}

.customily-gr .customily-input {
    border-radius: 24px;
    border-width: 2px;
    padding: 11px 14px 9px;
    min-height: 44px;
}

.customily-gr .customily-input:focus {
    border: 2px solid var(--primary);
    box-shadow: none;
}

.customily-list-input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.customily-list-input .label-input {
    margin: 0 12px 6px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}

.label-input span {
    font-weight: 500;
    color: var(--primary)
}

.label-input input {
    position: absolute;
    opacity: 0;
}

.customily-checkbox {
    width: 24px;
    height: 24px;
    min-width: 16px;
    display: block;
    position: relative;
    margin-right: 6px;
    border: 2px solid #e1e1e1;
    border-radius: 3px;
    transition: border-color 300ms ease-in-out;
}

.customily-checkbox::before,
.customily-checkbox::after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 3px;
    background-color: var(--primary);
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

.customily-checkbox::before {
    width: 2px;
    height: 6px;
    transform: rotate(-45deg);
    top: 9px;
    left: 6px;
}

.customily-checkbox::after {
    width: 2px;
    height: 12px;
    transform: rotate(30deg);
    top: 4px;
    left: 11px;
}

.label-input input:checked~.customily-checkbox {
    border-color: var(--primary)
}

.label-input input:checked~.customily-checkbox::before,
.label-input input:checked~.customily-checkbox::after {
    opacity: 1;
}

.customization-add-to-cart {
    border-radius: 36px;
    background-color: var(--secondary);
    padding: 16px 28px;
    color: var(--white);
    min-width: 120px;
    margin-left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
}

.customization-add-to-cart.is-added {
    background-color: #47cccc
}

.customization-add-to-cart svg {
    margin-right: 6px;
}

.customization-product-quantity span {
    min-width: 40px;
    text-align: center;
    display: block;
}

.customization-input-control {
    display: block;
    width: 100px;
    padding: .6rem 1rem;
    margin: .5rem;
    line-height: 1.2857143;
    background-color: #fff;
    background-image: none;
    border-radius: 5px;
    font-size: 1.05rem;
    border: 2px solid #d1d1d1;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.customization-option-name {
    cursor: none !important;
    pointer-events: none;
    font-size: smaller;
    padding: 8px;
}

@keyframes loading-opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.customizing-btn {
    animation: loading-opacity 1.2s linear infinite;
}

.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1500ms;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1500ms;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1500ms;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.d-absolute {
    position: absolute;
}

.loading-panel {
    /* background-color: rgba(43, 43, 43, 0.22); */
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    position: absolute;
    /* backdrop-filter: blur(2px); */
}

.loading-panel.min {
    left: auto;
    right: 0;
    width: calc(100% - 680px);
    background-color: rgba(222, 222, 222, 0.1);
    backdrop-filter: blur(0px);
    z-index: 2;
}

.loading-panel .lds-spinner {
    top: 50%;
    position: absolute;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.customization-loading-assets {
    margin-right: auto;
    padding: 0 16px;
}

.text-danger {
    color: red;
}

.animate-once {
    animation: splash 500ms normal infinite;
    animation-iteration-count: 2;
    display: inline-block;
    color: red;
    font-size: 13px;
    font-weight: 400;
}

.mt-2 {
    margin-top: 8px;
}

.p-4 {
    padding: 16px;
}

.w-full {
    width: 100%;
}

.personalization-canvas,
.canvas-container,
#canvas {
    max-width: 100%;
    margin: auto;
}

@keyframes splash {
    from {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2) translateX(6px);
    }

    to {
        transform: scale(1, 1);
    }
}

.preview-wrapper {
    display: none;
}

.customily-gr .input-type-checkbox {
    border-color: #919191;
}

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

.text-add-note:hover {
    color: var(--pr-color-dodgerblue);
}

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

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

.input-text-note 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 textarea:hover,
.input-text-note textarea:focus {
    outline: none;
    border-color: var(--info);
}

.input-text-note .clear-text-note {
    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;
    z-index: 9;
}


@media (max-width: 1200px) and (orientation: landscape) {
    .customization-option {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 8px;
    }

    .customization-content-wrapper {
        grid-template-columns: 50% auto;
        width: 90vw;
    }

    .canvas-container {
        margin: 0 auto;
    }

    .customization-content-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .personalization-canvas {
        width: 500px;
        max-width: 100%;
    }
}

@media (max-width: 990px) {

    .customization-content-wrapper {
        display: block;
        width: 600px;
        margin: 0;
        height: 100%;
    }

    /*.customization-content-footer {*/
    /*    position: fixed;*/
    /*    bottom: 0;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    z-index: 9;*/
    /*}*/

    .customization-content-info {
        padding: 12px;
    }

    .customization-content-image .personalization-canvas {
        width: 500px;
        margin: 0 auto;
    }

    .customization-loading-assets {
        position: absolute;
        width: 100%;
        height: 76px;
        color: #000;
        background-color: white;
        z-index: 2;
        border-radius: 0 0 5px 5px;
    }

    .custom-product-popup-action-wrapper {
        flex-wrap: wrap;
    }

    .custom-product-popup-action-wrapper>div {
        width: 100%;
        justify-content: center;
        padding: 4px;
    }

    .customization-add-to-cart {
        width: 100%;
    }

    .customization-add-to-cart {
        margin: 0px;
    }

    .customization-input-control {
        margin: 0;
    }

    .close-customization-pop {
        top: 10px;
        right: auto;
        left: 10px;
    }

}

@media (min-width: 767px) and (max-width: 990px) {
    .customization-option {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 8px;
    }

    .customization-content-wrapper {
        overflow: hidden;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .customization-content-info {
        padding: 12px;
        height: calc(100% - 586px);
    }
}

@media (max-width: 767px) {
    .customization-content-wrapper {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        overflow-y: scroll;
        padding-bottom: 100px;
    }

    
    .preview-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        background-color: rgba(11 11 11 / 33%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 200ms ease-in-out;
    }

    .show-preview .preview-wrapper,
    .show-footer-button .customization-content-footer {
        opacity: 1;
        pointer-events: all;
    }

    .preview-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preview-text svg {
        margin-right: 5px;
        display: none;
    }

    .show-preview-image .preview-wrapper .preview-text,
    .close-text {
        display: none;
    }

    .show-preview-image .preview-wrapper .close-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .show-preview-image .preview-wrapper .close-text svg {
        margin-right: 5px;
        display: none;
    }

    .show-preview-image .preview-wrapper {
        background-color: transparent;
    }

    .show-preview-image .preview-button {
        background: linear-gradient(0deg, rgb(79 79 79) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .preview-button {
        color: var(--white);
        font-size: 16px;
        padding: 10px 20px;
        outline: none;
        border: none;
        width: 100%;
        height: 15vw;
        padding: 12px;
        text-align: center;
        background-color: transparent;
    }

    .preview-wrapper.preview-active {
        pointer-events: all;
        opacity: 1;
    }

    .customization-content-footer {
        z-index: 17;
    }

    .customization-content-wrapper #pod-module-content {
        border: none;
        min-height: 80px;
        padding-bottom: 100px;
    }

    .customization-content-image {
        --customizationImg: 300px;
        height: var(--customizationImg);
        min-height: 1px;
        position: sticky;
        top: -85vw;
        height: 100vw;
        left: 0;
        transform: all 300ms ease-in-out;
        z-index: 3;
    }

    .show-preview-image .customization-content-image {
        top: 0;
    }

    .customization-content-info {
        padding: 12px;
        max-height: 100%;
        overflow: visible;
    }

    .customization-content-image .personalization-canvas {
        width: 100vw;
    }

    .close-customization-pop {
        position: fixed;
        z-index: 5;
    }

    .customization-option {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 8px;
    }

}

#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, .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: 8px;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(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;
    line-height: 26px;
}

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

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

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

.notice-option-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;
}

.notice-option-background {
    position: fixed;
    background: rgba(0, 0, 0, .5);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

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

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

.notice-option-close svg {
    width: 30px;
    height: 30px;
}

.notice-option-modal .modal-title {
    text-align: center;
    padding: 0 16px;
}

.notice-option-modal .modal-title-header {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.notice-option-modal .modal-title-sub-header {
    font-size: 14px;
    line-height: 20px;
}

.notice-option-ok {
    background: var(--info);
    color: #fff;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 30px;
    min-width: 150px;
    margin: 12px 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(--bodyFonts);
    font-weight: 500;
    margin: 0 auto;
}

.preview-notice-wrapper {
    text-align: center;
}

.preview-notice-wrapper .modal-title-header {
    margin: 12px 0 0;
}

.preview-notice-wrapper .preview-persion-ok {
    background: var(--info);
    color: #fff;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 30px;
    min-width: 150px;
    margin: 12px 0;
}

.image-preview img {
    height: 60vh;
    width: auto;
    object-fit: contain;
}

.customizing-preview {
    margin: 0 auto !important;
}

.customizing-content {
    display: flex;
    align-items: center;
    grid-gap: 6px;
}

.d-none {
    display: none;
}

#loading_element {
    color: #3b4148;
    font-size: 1.2em;
    margin: 10px 2px 10px 0;
    line-height: 18px;
    display: flex;
}

#loading_element .loading {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #ddd;
    border-top-color: orange;
    animation: loading 2s linear infinite;
    margin-left: 8px;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

.loading-panel-options {
    background-color: rgba(43, 43, 43, 0.22);
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(1px);
}

.loader_11 {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: absolute;
    right: 20px;
    top: 5px;
    background: currentColor;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader_11 0.3s 0.3s linear infinite alternate;
}

.loader_11::after,
.loader_11::before {
    content: '';
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    box-sizing: border-box;
    animation: animloader_11 0.3s 0.45s linear infinite alternate;
}

.loader_11::before {
    left: -20px;
    animation-delay: 0s;
}

@keyframes animloader_11 {
    0% {
        height: 48px
    }

    100% {
        height: 4px
    }
}

.loader_12 {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #F15B25;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation_12 0.45s linear infinite;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    position: absolute;
    left: 5px;
    top: 5px;
}

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

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

.loader_13 {
    width: 28px;
    height: 28px;
    border: 3px solid #FFF;
    border-bottom-color: #f15b25;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation_13 0.45s linear infinite;

    top: calc(50% - 14px);
    left: calc(50% - 14px);
    position: absolute;

}

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

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


/* loading-panel */
.loading-panel .loaderbar {
    animation: rotate 1500ms infinite;
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255 255 255 / 30%);
    border-radius: 50%;
}

.loading-panel .loaderbar:before,
.loading-panel .loaderbar:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loading-panel .loaderbar:before {
    animation: ball1 1500ms infinite;
    background-color: #2b5d80;
    box-shadow: 30px 0 0 #f15b25;
    margin-bottom: 10px;
}

.loading-panel .loaderbar:after {
    animation: ball2 1500ms infinite;
    background-color: #f15b25;
    box-shadow: 30px 0 0 #4dbbbc;
}

.flex-important {
    display: flex!important;
    grid-gap: 6px;
    pointer-events: all!important;
}

.customization-layer-option {
    margin-bottom: 10px;
}

.spotify-player_playlist {
    margin: 0 auto;
    margin-top: 8px;
    max-height: 300px;
    overflow: auto;
}

.spotify-player_item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.spotify-player_item:hover {
    background: rgba(77, 77, 77, 0.1);
}

.spotify-player_image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 16px;
    flex-shrink: 0;
}

.spotify-player_info {
    flex: 1;
    min-width: 0;
}

.spotify-player_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-player_artist {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge kiểu Vengaboys */
.spotify-player_badge {
    background: linear-gradient(90deg, #ff0090, #ff8c00);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 50%;
    }

    50% {
        transform: rotate(360deg) scale(1);
        opacity: 80%;
    }

    100% {
        transform: rotate(720deg) scale(0.5);
        opacity: 50%;
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #f15b25;
    }

    50% {
        box-shadow: 0 0 0 #f15b25;
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #f15b25;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #4dbbbc;
    }

    50% {
        box-shadow: 0 0 0 #4dbbbc;
        margin-top: -20px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #4dbbbc;
        margin-top: 0;
    }
}
.title-customize {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: .6px;
    text-align: center;
    display: block;
    color: #333;
    padding-top: 20px;
    margin-top: 0 !important;
    font-weight: 700;
    padding-bottom: 8px;
    padding-top: 8px;
    border-bottom: 1px solid #e1e1e1;
    text-transform: uppercase;
}


@media (max-width: 767px) {
    .preview-persion-content-wrapper {
        width: 90%;
    }
    .notice-option-content-wrapper {
        width: 90%;
    }
}

.custom-text-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.custom-text-options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-text-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.custom-text-color-button {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    background-clip: padding-box;
    overflow: hidden;
}

.custom-text-color-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.custom-text-color-button.active {
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.12);
}

.custom-text-color-picker {
    position: relative;
    background: #fff;
    color: #111827;
}

.custom-text-color-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-text-color-picker-icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111827;
    pointer-events: none;
}

.custom-text-color-picker-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.custom-text-font-select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 16px;
    color: #111827;
}

.custom-text-font-select option {
    font-size: 16px;
}