.adbro-modal2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
}

.adbro-modal2__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.7);
}

.adbro-modal2__window {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.adbro-modal2__close {
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 41px;
    height: 41px;
    cursor: pointer;
    box-shadow: none;
    border: none;
    background: url(../images/adbro-modal-close.svg) no-repeat;
    background-size: 100% 100%;
}

.adbro-modal2__close:hover {
    opacity: .8;
}

.adbro-modal2__wrap {
    margin-top: 25px;
    text-align: center;
}

.adbro-modal2__button {
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
}

.adbro-modal2__button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.25);
    opacity: 0;
}

.adbro-modal2__button:hover:after {
    opacity: 1;
}