/*GLOBAL*/

.lightbox-overlay{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background: #6a498f;
    opacity: 0.75;
    z-index: 1001;
    cursor: pointer;
}
.lightbox-modal{
    position: fixed;
    background-color: transparent;
    width: 75%!important;
    height: 75%;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    border-radius: 10px;
}
.lightbox-modal_header{
    position: absolute;
    right: 1em;
    top: 1em;
}
.ds_lightbox_cancel{
    cursor: pointer;
    color: white;
    font-weight: bold;
    z-index: 2000;
    width: 40px;
    height: 40px;
    padding: 10px;
    float: right;
}
.lightbox-modal_body{
    width: 100%;
    height: 100%;
}
.lightbox-modal_body iframe{
    width: 100%;
    height: 100%;
}
.lightbox-modal_body img{
    width: 100%;
}

.btn_x_close{
    background-image: none!important;
    width: 3em;
    height: 3em;
    background-color: white;
    z-index: 11;
}