#popUpPromo {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(99, 100, 102, 0.8);
    width: 100%;
    height: 100%;
    z-index: 21474836460;
    cursor: pointer;
    *{
        box-sizing: border-box;
    }
}
#popUpPromoVisible {
    position: fixed;
    z-index: 100001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
    #popUpPromoVisible {
        left: 0;
        transform: translate(0, -50%);
        width:100%;
    }
}
#popUpPromoVisible a {
    text-decoration: underline;
    color: var(--color-10) !important;
}
.popUpPromoDetail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    font-size: 18px;
    @media(min-width:992px){
        font-size: 1.5em;
    }
    @media(min-width:1200px){
        h2{
            font-size: 40px;
        }
    }
}
#popUpPromoClose {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    z-index: 10;
    font-size: 30px;
    cursor: pointer;
}