.modal-form .modal-form-layout {
	max-height: 94%;
	overflow: auto;
	padding: 45px;
}

.form.business-request {
	min-width: 500px;
}

.form.business-request .line {
	text-align: left;
}

@media screen and (max-width: 767px) {
	.form.business-request {
		min-width: auto;
	}
}

.mf-header {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
    background-color: #fff;
    text-align: left;
    padding-right: 40px;
}

@media screen and (max-width: 576px) {
    .mf-header {
        padding-right: 20px;
    }
}

.mf-header h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
}

@media screen and (max-width: 576px) {
    .mf-header h3 {
        font-size: 22px;
    }
}

.mf-close {
    font-size: 42px;
    line-height: 0.6;
	cursor: pointer;
}

.mf-body {
    padding-right: 40px;
    font-weight: 600;
    overflow: auto;
}

@media screen and (max-width: 576px) {
    .mf-body {
        padding-right: 20px;
    }
}

.mf-body label {
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.mf-body input,
.mf-body textarea,
.mf-body select {
    height: auto;
    padding: 15px 22px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: none;
}

@media screen and (max-width: 576px) {
    .mf-body input,
    .mf-body textarea,
    .mf-body select {
        padding: 10px 22px 11px;
        font-size: 18px;
    }
}

.mf-body select {
    position: relative;
    color: #333;
    appearance: none;
    cursor: pointer;
}

.mf-body .custom-select-wrapper {
    position: relative;
}

.mf-body .custom-select-wrapper::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 22px;
    width: 20px;
    height: 11px;
    background-image: url('../img/accordion-arrow-closed.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

@media screen and (max-width: 576px) {
    .mf-body .custom-select-wrapper::after {
        top: 20px;
    }
}

.mf-body textarea {
    min-height: 156px;
    resize: vertical;
}

.mf-body input:focus, .mf-body textarea:focus {
    box-shadow: none;
}

.mf-body input::placeholder, .mf-body textarea::placeholder {
    color: #b2b2b2;
}

.mf-body .buttons {
    margin-top: 82px;
}

@media screen and (max-width: 576px) {
    .mf-body .buttons {
        margin-top: 0;
    }
}

.mf-body .btn {
    padding: 16px 0;
    font-size: 20px;
}

@media screen and (max-width: 576px) {
    .mf-body .btn {
        padding: 8px 0;
    }
}

.modal-form .modal-form-layout.mf-form {
    background-color: #fff;
    position: absolute;
    max-height: 98vh;
    height: auto;
    max-width: 726px;
    width: calc(100% - 32px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column;
    padding: 32px 0 32px 40px;
    border-radius: 8px;
}

@media screen and (max-width: 576px) {
    .modal-form .modal-form-layout.mf-form {
        padding: 32px 0 32px 20px;
    }
}