.popup_msg {
    position: fixed;
    bottom: 0;
    right: 5%;
    z-index: 111;
    width: 550px;
    padding: 40px;
    background: #3223DC;
    border-radius: 20px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.popup_msg.active {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.popup_msg__close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 19px;
    height: 19px;
    cursor: pointer;
}

.popup_msg__title {
    margin-bottom: 2px;
    font-size: 55px;
    font-weight: bold;
    line-height: 1.1;
}

.popup_msg__body {
    font-size: 22px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .popup_msg {
        right: initial;
        left: 50%;
        margin-left: -275px;
    }

    .popup_msg__title {
        font-size: 40px;
    }

    .popup_msg__body {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .popup_msg {
        width: auto;
        right: 5%;
        left: 5%;
        margin-left: 0;
    }

    .popup_msg__title {
        font-size: 34px;
    }

    .popup_msg__body {
        font-size: 14px;
    }
}