<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.popup-wrapper {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 120;
    display: none;
}

.popup-overlay{

    position: absolute;
    top: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: block;

}

.popup-content {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    /*padding: 24px;*/
    background: #ffffff;
    z-index: 15;
    max-width: 648px;
    min-height: 350px;
}
.popup-content-body{

    padding: 24px;

}

.popup-cart {
    position: absolute;
    top: 24px;
    right: 24px;
    /*padding: 24px;*/
    background: #ffffff;
    z-index: 9999999999;
    max-width: 648px;
    width: 100%;
    height: calc(100vh - 48px);

}

.popup-header {
    padding: 24px;
    border-bottom: 2px solid var(--color-black);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}
.popup-header button {
    cursor: pointer;
}

.popup-cart-actions{
    display: none;
}
.popup-cart .mall-cart-actions{
    display: none;
}
.shipping-popup-wrapper .popup-content {
    max-width: 1300px;
    width: calc(100% - 50px);
    top: 50px;
    transform: unset;
}
.shipping-popup-wrapper .popup-content {
    max-width: 1300px;
    top: 50px;
    transform: unset;
}
.shipping-popup-wrapper .popup-content-body {
    max-height: calc(100vh - 100px);
    min-height: 200px;
    overflow-y: auto;
}
.shipping-popup-wrapper .block_type_header{
    display: flex;
}

@media (max-width: 690px){

    .popup-header {
        padding: 12px;
        border-bottom: 2px solid var(--color-black);
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
    }

    .popup-cart {
        position: absolute;
        top: 12px;
        right: 12px;
        left: 12px;
        /* padding: 24px; */
        background: #ffffff;
        z-index: 9999999999;
        max-width: 648px;
        width: calc(100% - 24px);
        height: calc(100vh - 48px);
    }



}
@media (max-width: 480px){

    .popup-cart .popup-cart-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        flex-direction: column;
        width: 100%;
    }

    .popup-cart .popup-cart-actions a {
        width: 100%;
    }
    .popup-cart .popup-cart-actions a.button.white-button {
        margin-bottom: 12px;
    }

    .popup-cart .mall-cart__wrapper .shopping-cart-col-right {
        padding: 12px;
    }

    .mall-cart__grand-total-price {
        font-size: 26px;
        font-family: var(--font-primary-bold);
        line-height: 30px;
    }
    .shopping-cart-col-right small {
        font-size: 14px;
        line-height: 28px;
    }
    .popup-content {

        max-width: 85%;
    }


}
</pre></body></html>