/* ------- modal window ------- */
.atlas-overlay {
    display: none;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.atlas-modal {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 30px;
    max-width: 450px;
    width: 95%;
    display: flex;
    position: relative;
    flex-direction: column;
    box-shadow: 0 0 5px #777777;
}

.atlas-modal h3 {
    font-size: 22px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 30px;
}

.atlas-modal-close {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 5px;
    top: 5px;
    cursor: pointer;
    border: unset;
    font-size: 32px;
    line-height: 32px;
    text-align: center;
}
/* ------- modal window ------- */

/* ------- form elements ------ */

.atlas-modal label,
.atlas-modal input,
.atlas-modal button,
.atlas-modal textarea {
    margin-bottom: 14px;
}

.atlas-modal label {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}
.atlas-modal input {
    background-color: #f3f7fA;
    border: solid 1px #dbe3e9;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    height: 50px;
}
.atlas-modal textarea {
    background-color: #f3f7fA;
    border: solid 1px #dbe3e9;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    height: 120px;
}
.atlas-modal input[type='checkbox'] {
    height: auto;
    margin: 0;
}
.atlas-modal input[type="checkbox"] + span{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
/*.atlas-modal select {
    background-color: #F3F7FA;
    border: solid 1px #DBE3E9;
    border-radius: 10px;
    padding: 15px 20px!important;
    font-size: 16px!important;
    line-height: 18px;
    font-weight: 400;
    height: 50px;
}*/
.atlas-modal button {
    background-color: #187ed7;
    margin-top: 19px;
    margin-bottom: 0;
    width: 100%;
    border: none;
    border-radius: 10px;
    min-height: 55px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.2s;
}
.atlas-modal button:hover {
    background-color: #319af5;
}
/* ------- form elements ------ */
