
/* Modal form */

.modal-form {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
    overflow: auto;
}
.modal-form__shadow {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0, .5);
    cursor: pointer;
}
.modal-form__inner{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    width: 420px;
    max-width: 90%;
    padding: 34px 40px;
    border-radius: 6px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.modal-form.show .modal-form__inner {
    opacity: 1;
    transform: translateY(0);
}
.modal-form__close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.modal-form__close-svg {
    width: 100%;
    height: 100%;
    fill:#c7c7c7;
}

.modal-form__header {
    margin-bottom: 20px;
    text-align: center;
}
.modal-form__title {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.modal-form__subtitle {
    font-size: 14px;
    color: #666;
}
.modal-form__row {
    margin-bottom: 15px;
}
.modal-form__body > *:last-child {
    margin-bottom: 0;
}

.modal-form__body {
    margin-bottom: 30px;
}
.modal-form__agreement {
    margin-top: 30px;
}
.modal-form__agreement  .span-checkbox {
    font-size: 13px;
    color: #666;
}
.modal-form__submit {
    height: 50px;
}

