

 

.modal-banner {
    position: fixed;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100%;
}

.modal-banner-content {
    position: relative;
    width: 100%;           /* ширина модального окна */
    height: 100%;         /* высота модального окна */
    left: 50%;
    z-index: 500;
    padding-left: 70px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}


@media (max-width: 800px) { 
.modal-banner-content { 
    width: 100%;           /* ширина модального окна */
    height: 100%;         /* высота модального окна */ 
}
}

.modal-banner-close {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 26px;
    font-size: 32px;
    color: #ffffff;  /* цвет крестика */
    cursor: pointer;
}

iframe.mod-banner {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-banner-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.6;
    cursor: pointer;
}

@media (max-width: 769px) {
	.modal-banner-content {
        width: 95%;
        height: 100%;
        padding-left: 0;
    }
}


.modal-banner-close .fa-times::before {
    font-size: 50px;
}

.modal-banner-close .fa-times {
    margin: 50px;
}
