.window-modal {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: auto;
    position: fixed;
    padding: 15px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999;
    background-color: rgba(0, 0, 0, 0.7);
}

.window-modal__in {
    position: relative;
    max-width: 768px;
    padding: 30px 30px 30px 30px !important;
    width: 100%;
    z-index: 99999999999;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 6px 2px rgba(50, 50, 50, 0.3);
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.window-modal__in iframe {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.window-activated {
    overflow: hidden!important;
}

.js-modal-window-close-btn {
    background: none !important;
    text-decoration: none!important;
    color: #313131!important;
    font-size: 32px!important;
    text-align: right!important;
    position: absolute;
    top: -1px;
    right: 4px;
    cursor: pointer;
    z-index: 8040;
}