@keyframes cps_fade {
    to {
        opacity: 1;
    }
}
.cps__popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(0,0,0,.35);
    opacity: 0;
}
.cps__popup--active {
    animation: cps_fade 1s forwards;
}
.cps__container {
    position: relative;
    padding: 0;
    max-width: 60%;
    background-color: #efefef;
}
.cps__container a {
    display: block;
}
.cps__close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
.cps__close::after {
    content: '+';
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 4px;
    font-size: 36px;
    transform: rotate( 45deg );
    width: 28px;
    text-align: center;
    vertical-align: middle;
    text-shadow: none;
    font-weight: 100;
    font-family: 'Work Sans', sans-serif;
}
.cps__close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.cps__img--mobile {
    display: none;
}

@media only screen and (max-width: 992px) {
    .cps__img--mobile {
        display: block;
    }
    .cps__img--desktop {
        display: none;
    }
    .cps__close {
        transform: rotate(45deg);
    }
    .cps__close::after {
        position: static;
        font-size: 45px;
    }
}