/* Modal Window */

.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.modal.active{
    display: flex;
}
.modal-background {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    opacity: 0.5;
    position: absolute;
}
.modal-window {
    padding: 20px;
    margin: 100px;
    border-radius: 10px;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    width: auto;
    display: flex;
    flex-direction: column;
}
.modal-window-header{
    flex-shrink: 0;
    height: 40px;
}
.modal-window-body{
    height: 100%;
}
.modal-window-body iframe {
    height: 1px;
    width: 1px;
    opacity: 1;
    transition: opacity 1s ease;
    border: none;
}
.hide-button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0px 6px;
}

.loading iframe{
    opacity: 0;
}