﻿#shop_cart_side {
    width: 450px;
    height: 100vh;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: white;
    box-shadow: 15px 0px 15px rgba(0,0,0,0.3);
    display: none;
}

    #shop_cart_side .top {
        background-color: #e1e1e1;
        display: flex;
        align-items: center;
        padding: 13px 20px;
    }

        #shop_cart_side .top span {
            margin-right: 16px;
            font-weight: bold;
            color: black;
            font-size: 16px;
        }

        #shop_cart_side .top i {
            font-size: 22px;
            color: black;
            font-weight: bold;
        }

@media(max-width:600px) {
    #shop_cart_side {
        width: 100%;
    }
}

#shop_cart_side iframe {
    width: 100%;
    height: 100%;
}


.shop-register-form input[type=text], .shop-register-form input[type=email], .shop-register-form select, .shop-register-form input[type=number], .shop-register-form input[type=password], .shop-register-form textarea {
    font-size: 17px;
    padding: 10px;
    text-align: center;
}


#shop_slide_lightbox {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999999;
    background-color: rgba(0,0,0,0.5);
    width: 100vw;
    height: 100%;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    /* display: none; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 0;
    margin: 0;
    backdrop-filter: blur(8px);
}

    #shop_slide_lightbox img {
        width: 90vw;
        aspect-ratio: 1;
        object-fit: contain;
        max-height: 95vh;
        margin: 0px auto;
        display: block;
        margin: 0px;
        flex: 1;
    }