.popup-ipol {
    display: none;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: #fff;
    padding: 50px 20px 20px;
    top: 50%;
    left: 50%;
    position: fixed;
    width: 400px;
    max-width: 100%;
    z-index: 999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .6);
    box-sizing: border-box;
}

.popup-ipol__new-year {
    background: url(img/img-ny-01.png) #fff no-repeat;
    background-size: 300px;
    background-position: 150% -50px;
}

@media screen and (max-width: 400px) {
    .popup-ipol {
        padding: 50px 20px 20px;
    }
}

.popup-ipol__close {
    cursor: pointer;
    font-size: 23px;
    line-height: 29px;
    color: #000;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 999;
    background: #fff;
    border-radius: 16px;
    width: 30px;
    height: 30px;
    padding-left: 2px;
    text-align: center;
    opacity: 0.8;
    border: 1px solid #ca0600;
}
.popup-ipol__close:hover {
    opacity: 1;
}

.popup-ipol__title {
    text-align: center;
    font-size: 40px;
    font-style: italic;
    line-height: normal;
    margin-bottom: 18px;
}

@media screen and (max-width: 400px) {
    .popup-ipol__title {
        font-size: 30px;
    }
}

.popup-ipol__title strong {
    color: red;
    display: block;
    text-align: center;
    font-style: normal;
}

.popup-ipol__date {
    font-size: 25px;
    color: #ccc;
    text-align: center;
    margin-bottom: 20px;
}

.popup-ipol__descr {
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.popup-ipol__btn {
    text-decoration: none;
    background-color: #a4682e;
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    line-height: initial;
    margin: 20px auto 0;
    display: table;
}