.modal {
    font-family: var(--second-family);
    background: rgba(30, 30, 30, .6);
    display: none;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 9999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.modal.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: activeAnim .5s forwards;
    animation: activeAnim .5s forwards;
    overflow: auto;
    visibility: visible;
}

.modal-container {
    background: #fff;
    border-radius: 4px;
    color: #1b1c1c;
    margin: auto;
    max-width: 490px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 5;
}

.modal .close {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    opacity: 1;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    z-index: 9;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    color: #fff;
    justify-content: center;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

#compare .close {
    color: rgba(0, 0, 0, .4);
}

.modal .modal-content {
    padding: 25px 36px;
}

.form__title {
    line-height: 1.2;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-top: 13px;
}

.form__desc {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.02em;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.2;
    text-align: center;
}

.finish__form {
    margin-top: 13px;
}

.form__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
    row-gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form__field {
    width: 100%;
}

.form__field input {
    background-color: #f2f4f5;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 7px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #1b1c1c;
    font-family: var(--bv-font-family-second);
    font-size: 16px;
    font-weight: 500;
    height: 55px;
    outline: none;
    padding: 10px 20px;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    width: 100%;
}

.form__field input.not-empty, .form__field input:focus {
    border-color: #6aa9dc;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    cursor: pointer;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: -.05em;
    line-height: 1.2;
    outline: none;
    padding: 23px 19px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    white-space: nowrap;
    width: 100%;
}

.btn.btn-default {
    background-color: #6aa9dc;
    border-color: #6aa9dc;
    color: #fff;
}

.modal .icon {
    display: inline-block;
    fill: currentColor;
    stroke: none;
}

.btn.btn-default:active, .btn.btn-default:hover {
    background: #5a8ac2;
    color: #fff;
}

@keyframes activeAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991px) {
    .btn {
        padding: 15px 19px;
    }
}

@media (max-width: 991px) {
    .form__title {
        font-size: 18px;
    }
}