.promopopup-blackout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 499;
    display: none;
}

.promopopup {
    display: none;
    z-index: 500;
    position: fixed;
    font-family: Calibri, Arial, sans-serif;
    background-color: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .4);
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
}

.promopopup p {
    margin-top: 10px;
    text-transform: uppercase;
    color: #666;
    font-size: 16px;
}

.promopopup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    z-index: 99;
    background: #ff0000;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    line-height: 25px;
    text-align: center;
}

/* Позиционирование окон */
.promopopup.center {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}

.promopopup.center_left {
    left: 10px;
    top: 40%;
    transform: translateY(-50%);
}

.promopopup.center_right {
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
}

.promopopup.top_left {
    top:10px;
    left: 10px;
}

.promopopup.top_right {
    top:10px;
    right: 10px;
}

.promopopup.top_center {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.promopopup.bottom_left {
    top:auto;
    left: 10px;
    bottom: 10px;
}

.promopopup.bottom_right {
    top:auto;
    right: 10px;
    bottom: 10px;
}

.promopopup.bottom_center {
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}
