body.stop {
    overflow-y: scroll;
    position: fixed;
}
.teaser-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .75);
    background-image: url(../images/pro-preview-back.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 100%;
    top: 0;
    left: 0;
    z-index: 998;
}
.teaser {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: calc(100% - 40px);
    max-width: 450px;
    justify-items: center;
}
.teaser img {
    width: 100%;
    height: auto;
}
.teaser .bttn {
    margin-top: 25px;
    background: var(--color__6);
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.teaser-mask,
.teaser {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms ease, visibility 0s linear 250ms;
}

.teaser-mask.show,
.teaser.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 250ms ease;
}

.teaser-close {
    width: 32px;
    aspect-ratio: 1;
    background: url(../images/icons/x.svg) no-repeat center;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}