/*------POPUPS CONTAINER STYLES------*/
.popup_container
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 109vh;
    justify-content: center;
    align-items: center;
    z-index: 510;
    display: none;
    /*display: flex;*/
    padding: 20px;
}
.popup_box
{
    background-color: var(--color_shade1);
    box-shadow: 0 0 5px 1px var(--color_shade10);
    flex-basis: 600px;
    overflow: hidden;
}
.popup_head
{
border-bottom: 1px solid rgb(224, 224, 224);
padding: 10px 10px 3px 10px;
display: flex;
}
.popus_logo_container
{
    width: 35px;
}
.popup_logo_container img
{
    width: 30%;
}
.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;
    max-height: 80vh;
    overflow: auto;
}

.popup_body p:not(:last-child)
{
   margin-bottom: 20px;
}

.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: 70px;
    height: 70px;
    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: 20px;
}
.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_shde3);
}
