.popup-request-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-request {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 480px;
    margin: 0 10px;
    position: relative;
    text-align: center;
}
#popup-request-title {
    margin-bottom: 25px;
    color: #057AC0;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0;
    text-align: center;
}

#popup-request-form-element {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.popup-request button {
    width: 100% !important;
}
.popup-request .popup-close {
    cursor: pointer;
    font-size: 24px;
    display: block;
    text-align: right;
}
#popup-request-result {
    margin-top: 10px;
    font-size: 14px;
    color: green;
}
