.webopt-banner-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;

    display: block;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);
}

.webopt-banner-popup--hidden {
    display: none;
}

.webopt-banner-popup__dialog {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 300px;
    height: 400px;

    transform: translate(-50%, -50%);
}

.webopt-banner-popup__picture {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;
}

.webopt-banner-popup__image {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: auto;
    height: 100%;
    max-width: none;

    transform: translate(-50%, -50%);
}

.webopt-banner-popup__link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;
}

.webopt-banner-popup__close {
    position: absolute;
    bottom: -70px;
    left: 50%;
    z-index: 3;

    display: block;

    width: 42px;
    height: 42px;
    margin-left: -21px;
    padding: 0;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
}

.webopt-banner-popup__close::before,
.webopt-banner-popup__close::after {
    content: "";

    position: absolute;
    top: 18.75px;
    left: 4px;

    display: block;

    width: 30px;
    height: 2px;

    background: #ffffff;
}

.webopt-banner-popup__close::before {
    transform: rotate(-45deg);
}

.webopt-banner-popup__close::after {
    transform: rotate(45deg);
}

@media screen and (min-width: 991px) {
    .webopt-banner-popup__dialog {
        width: 800px;
        height: 450px;
    }

    .webopt-banner-popup__image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .webopt-banner-popup__close {
        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .webopt-banner-popup__close::before,
    .webopt-banner-popup__close::after {
        top: 27.75px;
        left: 8px;

        width: 40px;
    }
}