.modal_alert {
    background-color: #fff;
    border: 1px solid red;
    border-radius: 3px;
    padding: 9px 15px;
    position: absolute;
    top: 33px;
    left: 9px;
    font-size: 13px;
    z-index: 100;
    color: red;
}
.modal_alert::before,
.modal_alert::after {
    content: '';
    position: absolute;
    left: 10px;
    top: -20px;
    border: 10px solid transparent;
    border-bottom: 10px solid red;
}
.modal_alert::after {
    border-bottom: 10px solid #fff;
    top: -19px;
}

.webform-answer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px 40px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5em;
    color: #2a4c6b;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
}
.webform-answer-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.webform-answer-close::before,
.webform-answer-close::after {
    content: '';
    width: 27px;
    height: 2px;
    background: #7d7d7d;
    position: absolute;
    top: 9px;
    left: -3px;
    transition: 0.3s ease-out;
}
.webform-answer-close::before {
    transform: rotate(45deg);
}
.webform-answer-close::after {
    transform: rotate(-45deg);
}
.webform-answer-close:hover::before{
    transform: rotate(225deg);
}
.webform-answer-close:hover::after {
    transform: rotate(135deg);
}
