
.custom-modal.visible-popup {
    visibility: visible;
    overflow: initial;
    opacity: 1;
    pointer-events: auto;
	z-index: 99996;
}

.custom-modal.block {
	display: flex;
}

.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .88);
    z-index: 8888888;
}

.custom-modal iframe {
    width: 90%;
    max-width: 1200px;
}

.custom-modal .close-modal {
    position: absolute;
    top: 50px;
    right: 50px;
}

.custom-modal .close-modal:hover {
    cursor: pointer;
}

.custom-modal .close-modal:before,
.custom-modal .close-modal:after {
    content: '';
    display: block;
    width: 19px;
    height: 3px;
    border-radius: 5px;
    background: #fff;
}

.custom-modal .close-modal:before {
    transform: rotate(45deg);
}

.custom-modal .close-modal:after {
    transform: rotate(-45deg);
    margin-top: -3px;
}
