.overlay_container{
    width:100%;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    justify-content:center;
    align-items:center;
    z-index:1000;
    background-color:#00000030;
}

.overlay_container[data-show="true"]{
    display:flex !important;
}

.overlay_container[data-show="false"]{
    display:none !important;
}

.overlay_container .main-content{
    background-color:#fff;
    position:relative;
    z-index:2;
    padding:20px 0 0 0;
    width: 90vw;
    max-width: 700px;
    max-height:80vh;
}

.overlay_container .dismiss_container{
    width:100%;
    height:100%;
    position:absolute;
    z-index:1;
}

.overlay_container .close_container{
    text-align:right;
}

.overlay_container .close_container img{
    width:15px !important;
    height:15px !important;
    padding:10px;
    box-sizing: content-box !important;
    cursor:pointer;
}

.overlay_container .close_container.white img{
    filter:invert(1);
}

.overlay_container .h2{
    font-size:25px;
    text-align:center;
}

.overlay_container .img_container{
    margin-bottom:20px;
}