.popup-ipol {
    display: none;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: #fff;
    color: #a4682e;
    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;
    line-height: normal;
}

@media screen and (max-width: 400px) {
    .popup-ipol {
        padding: 50px 20px 20px;
    }
}

.popup-ipol .pop-up-close {
    cursor: pointer;
}

.popup-ipol__title {
    text-align: center;
    font-size: 40px;
    font-style: italic;
}

@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: #a4682e;
    text-align: center;
    margin-bottom: 20px;
}

.popup-ipol__descr {
    text-align: center;
    font-size: 18px;
    color: #a4682e;
    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;
}