﻿#shop_cart_side {
    width: 450px;
    height: 100vh;
    position: fixed;
    z-index: 9999999;
    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;
    }


.bg-awix-modal {
    display: none;
    /* content: " "; */
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #00000073;
    z-index: 999;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.awix-modal {
    width: 800px;
    max-width: 90vw;
    background-color: white;
    padding: 21px;
    border-radius: 6px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow: auto;
}

    .awix-modal .awix-modal-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 13px;
        align-items: center;
        border-bottom: 1px solid #0000001f;
        padding-bottom: 10px;
    }

        .awix-modal .awix-modal-header .amh-title {
        }

        .awix-modal .awix-modal-header .amh-close {
            cursor: pointer;
        }

            .awix-modal .awix-modal-header .amh-close i {
                font-size: 22px;
                font-weight: 300;
            }

    .awix-modal .awix-modal-body {
        /* margin-top: 30px; */
        overflow: auto;
        min-height: 150px;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.sub-products-table {
}

@media(max-width:600px) {

    .sub-products-table tr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 11px;
        border-bottom: 1px solid #2256e74a;
        padding-bottom: 20px;
        margin-bottom: 20px;
        width: 100%;
    }

        .sub-products-table tr td {
            width: 100% !important;
            text-align: center !important;
        }
}


.shop-bottom-navigation {
    position: fixed;
    bottom: 0;
    width: 100%;
    /* height: 60px; */
    display: flex;
    background-color: white;
    z-index: 99999;
    align-items: center;
    justify-content: space-evenly;
    border-top: 1px solid #00000033;
    box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
    /* padding-top: 5px; */
    display: none;
}

    .shop-bottom-navigation a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 5px;
        /* flex: 1; */
        /* text-align: center; */
        padding: 12px 7px;
        /* flex: 1; */
    }

        .shop-bottom-navigation a.active {
            background-color: #0cd186;
        }

        .shop-bottom-navigation a i {
        }

        .shop-bottom-navigation a span {
            font-size: 13px;
            white-space: nowrap;
        }


        .shop-bottom-navigation a.active i {
            color: white;
        }

        .shop-bottom-navigation a.active span {
            color: white;
        }

  