.es-form-overlay {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.es-form-header {
    font-family: 'Helvetica Neue', Helvetica, Arial, 'lucida grande',tahoma,verdana,arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 50%);
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    height: 16px;
    padding: 13px 10px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAqCAMAAABFoMFOAAAAWlBMVEVOaaJDYJxCX5xBXptIZJ9MZ6E/XJpFYZ1KZqA9W5lGYp5HY55MaKFJZZ9LZqBEYZ1NaaJNaKJNaKFAXZtAXZpLZ6E+XJo+W5lJZaA9Wpk8Wpk8Wpg8WZg7WZj2xcGWAAAANElEQVR42lWGSQoAIBDDHCjo0f8/UxBxQDQuFwlpqgBZBq6+P+unVY1GnDgwqbD2zGz5e1lBdwvGGPE6OgAAAABJRU5ErkJggg==);
    background-repeat: repeat-x;
    background-color: #4c66a4;
    display: flex;
    justify-content: space-between;
}

.es-form-body {
    padding: 20px;
}

.es-form-body input, .es-form-body select {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    margin-bottom: 15px;
}

.es-form-body input[type="submit"] {
    margin-bottom: 0;
}

.es-form-header-close {
    width: 20px;
    height: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 8px;
}

.es-form-popup {
    width: 100%;
    max-width: 380px;
    border: 1px solid #d6d6d6;
    background: #f3f4f5;
}

.es-form-body-field-validation {
    position: absolute;
    margin-top: -14px;
    line-height: 10px;
    margin-left: 7px;
    font-size: 10px;
    display: none;
    color: red
}
.es-form-body-field-validation.active {
    display: block;
}

.es-form-success {
    font-family: Arial;
    padding: 10px;
    text-align: center;
    background-color: #8dff8d;
    color: green;
    font-weight: bold;
    border: 1px solid green;
}

.es-form-error {
    font-family: Arial;
    padding: 10px;
    text-align: center;
    background-color: #ff8d8d;
    color: rgb(128, 0, 0);
    font-weight: bold;
    border: 1px solid rgb(128, 0, 0);
}