/* --- Quote modal --- */
.biz-modal .modal-content {
    border: none;
    border-radius: 20px;
    background: linear-gradient(180deg, #a9dae5 0%, #fff 95%);
    padding: 44px 40px;
}

.biz-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.biz-modal__title {
    font-size: 26px;
    font-weight: 700;
    color: #061839;
    margin: 0;
    flex: 1;
}

.biz-modal__logo {
    height: 40px;
}

.biz-modal__close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #061839;
    cursor: pointer;
}

.biz-modal__subtitle {
    font-size: 18px;
    line-height: 24px;
    color: #061839;
    margin-bottom: 24px;
}

.biz-modal__label {
    font-size: 14px;
    color: #091e42;
    margin-bottom: 4px;
}

.biz-modal__label .text-danger {
    color: #f04438;
}

.biz-modal__field {
    margin-bottom: 16px;
}

.biz-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 8px;
}

.biz-modal__btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 10px 12px;
    border: 1px solid #2cb5d2;
    border-radius: 8px;
    background: #fff;
    color: #2cb5d2;
    font-weight: 500;
}

.biz-modal__btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 96px;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: #0385ff;
    color: #fff;
    font-weight: 500;
}