/* Модальный (фон) */
#send-btn {
    text-decoration: underline;
}
#send-btn:hover {
    color: blueviolet;
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px;
}

.cuguzxzvczehq {
    display: none; /* Скрыто по умолчанию */
    justify-content: center;
    align-items: center;
    position: fixed; /* Оставаться на месте */
    z-index: 1000; /* Сидеть на вершине */
    left: 0 !important;
    top: 0 !important;
    width: 100% !important; /* Полная ширина */
    height: 100% !important; /* Полная высота */
    overflow: auto; /* Включите прокрутку, если это необходимо */
    background-color: rgb(0, 0, 0); /* Цвет запасной вариант */
    background-color: rgba(0, 0, 0, 0.4); /* Черный с непрозрачностью */
}
.etzeaesiwlgp {
    display: inline-block;
    color: #705d07;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    font-family: Verdana;
    width: auto;
    height: auto;
    font-size: 16px;
    padding: 10px 50px;
    margin: 10px;
    box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d, 0 2px 4px 0 #d4d4d4;
    -moz-box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d, 0 2px 4px 0 #d4d4d4;
    -webkit-box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d, 0 2px 4px 0 #d4d4d4;
    text-shadow: 0 1px 0 #fff;
    background-image: linear-gradient(to top, #fce374, #fcdf5b);
    background-color: #fce374;
}
.etzeaesiwlgp:hover,
.etzeaesiwlgp:active {
    transition: 1s ease-in-out;
    padding: 10px 100px;
    border: 1px solid #967d09;
    color: teal;
    box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d;
    -moz-box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d;
    -webkit-box-shadow: inset 0 1px 0 0 #fff6ce, inset 0 -1px 0 0 #e3c852,
        inset 0 0 0 1px #fce88d;
    background-color: teal;
}

input {
    width: 80% !important;
}

#form {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;

}
#form span {
    font-weight: 600;
    font-size: 1.8rem;
}

/* Модальное содержание */
.xapkhvgtjdtvxq {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    width: 50%;
    padding: 0;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Кнопка закрытия */
#close {
    color: rgb(255, 251, 251);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#close:hover,
#close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Модальный заголовок */
.cuguzxzvczehq-header {
    padding: 2px 16px;
    background-color: teal;
    color: white;
}

/* Модальное тело */
.glzehooyzpvk {
    padding: 0;
    text-align: center;
    background-color: beige;
}

/* Модальный нижний колонтитул */
.cuguzxzvczehq-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.qphkirytwcpo {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}
@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
    }
    80% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 700px) {
    .xapkhvgtjdtvxq {
        width: 90%;
    }
}
