
/*--------- Popup Styles ------------*/

.popup_container
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    display: none;
    /* display: flex;*/
    padding: 5px;
}

.popup_box
{
    background-color: var(--color_shade1);
    box-shadow: 0 0 5px 1px var(--color_shade7);
    flex-basis: 600px;
    overflow: hidden;
}

.popup_head
{
    border-bottom: 1px solid var(--color_shade4);
    padding: 10px 10px 3px 10px;
    display: flex;
}

.popup_logo_container
{
    width: 35px;
}

.popup_logo_container img
{
    width: 100%;
}

.popup_close_container
{
    
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.popup_close_container span
{
    cursor: pointer;
}

.popup_close_container span:hover, .popup_close_container span:focus
{
    color: var(--highlight_color);
}

.popup_body
{
    padding: 10px 10px 20px 10px;
    max-height: 80vh;
    overflow: auto;
}

/*
.popup_body p
{
    text-align: center;
}
*/

.popup_body p:not(:last-child)
{
    margin-bottom: 20px;
}


.popup_body .popup_para
{
    margin-top: 15px;
}

.popup_body .reset_head
{
    margin: 0 0 10px 0;
}



.popup_body h1, .popup_body h2, .popup_body h3,
.popup_body h4, .popup_body h5, .popup_body h6
{
    margin-bottom: 20px;
}

.popup_body .image_box
{
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 10px;
}

.popup_body .image_box img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup_footer
{
    padding: 10px;
}

.buy_btn_container
{
    display: flex;
}

.buy_btn_content
{
    flex: 1;
}

.buy_btn_content:not(:last-child)
{
    margin-right: 10px;
}

.buy_btn_content button
{
    width: 100%;
    
}


.buy_btn_content .open_btn
{
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--color_shade1)
}


.buy_btn_content .open_btn:hover
{
    opacity: .9;

}

.buy_btn_content .open_btn:focus
{
    border: 1px solid var(--main_color_shade3);
    
}


/* Wishlist modal */

.wishlist_wrapper
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 10px;
    display: none;
}

.wishlist_modal_container
{
    padding: 10px;
    background: var(--color_shade1);
    border-radius: 10px;
   
    flex-basis: 800px;
    /* height: 80vh; */
    overflow: hidden;
}

.wishlist_head
{
    display: flex;
    border-bottom: 1px solid var(--color_shade1);
    padding: 10px;
}


.wishlist_modal_container h3
{
    flex: 1;
}

.wishlist_modal_box
{
    padding: 10px;
    overflow: auto;
    max-height: 70vh;
}

.wishlist_close
{
    margin-left: 10px;
}

.wishlist_close ion-icon
{
    font-size: 28px;
    cursor: pointer;
}


.wishlist_close:hover ion-icon
{
    color: var(--highlight_color);
}