body.mr-promo-noscroll {
    overflow: hidden;
}
.mr-promo {
    position: fixed;
    z-index: 10;
    background: #fff;
}
.mr-promo.is-hidden {
    display: none;
}
.mr-promo.is-lightbox {
    outline: none;
    top: 50%;
    left: 50%;
    margin: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.mr-promo.is-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mr-promo__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
}
.mr-promo__close-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
}
.mr-promo__close-wrapper button {
    border: none;
    background: #fff;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    margin: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mr-promo__close-wrapper button:after {
    content: "X";
    font-family: Mont-Heavy, Arial Black, Helvetica Neue, Helvetica, sans-serif;
    color: #30bffd;
    font-size: 16px;
    margin-top: 4px;
}

.lightbox-side {
    flex: 0 0 var(--flex-basis);
    background-color: var(--color);
    color: white;
}

.lightbox-side .logo-img {
    float: right;
    max-width: 100px;
}

@media screen and (min-width: 1000px) {
    .mr-promo.is-lightbox {
        width: 800px;
    }
    .mr-promo.is-lightbox.is-lightbox--lg {
        width: 1200px;
        max-width: 95vw;
    }
}
@media screen and (max-width: 1199px) {
    .mr-promo.is-lightbox {
        top: 50%;
    }
}
@media screen and (max-width: 999px) {
    .mr-promo.is-lightbox {
        width: 85vw;
        top: 50%;
    }

    .lightbox-side img {
        max-width: 50%;
    }
    .lightbox-side .logo-img {
        display: none;
    }
    .lightbox-side h1 {
        font-size: 1.1rem;
    }
    .lightbox-side p {
        font-size: .9rem;
    }
}
@media screen and (max-width: 350px) {
    .mr-promo.is-lightbox {
        position: absolute;
        width: 95vw;
        margin-top: -5vh;
        max-height: 90vh;
    }
    .lightbox-side p {
        line-height: 1;
    }
    .lightbox-side img {
        max-width: 30%;
    }    
}
@-moz-document url-prefix() {
    .mr-promo.is-lightbox {
        position: fixed;
    }
}
