.ami-form {
	 position: relative;
	 width: 100%;
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-between;
	 border-radius: 10px;
	 overflow: hidden;
}
 .ami-form .btn {
	 border: 0px;
}
 .ami-form .form-page-tab {
	 opacity: 0;
}
 .ami-form .form-end-button {
	 display: none;
	 width: 100%;
	 border: 1px solid #ebebeb;
	 background: #231f20;
	 border-radius: 5px;
	 padding: 20px 40px;
	 text-align: center;
	 color: #fff;
	 transition: all 0.5s ease;
	 margin-bottom: 10px;
	 cursor: pointer;
}
 .ami-form .form-end-button:hover {
	 background: #00f;
	 color: #fff;
	 text-decoration: none;
}
 .ami-form .form-row {
	 width: 100%;
	 display: flex;
	 flex-wrap: wrap;
	 margin-bottom: 10px;
}
 .ami-form .form-row .required-message {
	 background: #f00;
	 color: #fff;
	 padding: 4px 10px;
	 display: none;
}
 .ami-form .form-row.missing .required-message {
	 display: block;
}
 .ami-form .form-row.message-row {
	 padding: 20px 0px;
}
 .ami-form .form-row.size-half {
	 width: 48%;
}
 .ami-form .form-row label {
	 width: 100%;
	 font-weight: bold;
	 color: #000;
}
 .ami-form .form-row input {
	 width: 100%;
	 height: 48px;
	 line-height: 48px;
	 padding: 0px 10px;
	 border: 1px solid #ebebeb;
}
 .ami-form .form-row textarea {
	 width: 100%;
	 padding: 0px 10px;
	 min-height: 148px;
	 border: 1px solid #ebebeb;
}
 .ami-form .form-row select {
	 width: 100%;
	 height: 48px;
	 line-height: 48px;
	 padding: 0px 10px;
	 border: 1px solid #ebebeb;
}
 .ami-form .form-row .dropzone {
	 width: 100%;
	 background: #fff;
	 z-index: 1;
	 border-radius: 5px;
	 border: 1px solid #ebebeb;
}
 .ami-form .form-row .dropzone .dz-preview .dz-progress {
	 bottom: 20px;
	 top: calc(100% - 40px);
}
 .ami-form .checkbox-row {
	 display: flex;
	 align-items: center;
	 padding: 10px 0px;
}
 .ami-form .checkbox-row label {
	 font-size: rem-calc(14);
	 font-weight: normal;
	 width: auto;
	 margin: 0px;
}
 .ami-form .checkbox-row input {
	 height: 28px;
	 width: 28px;
	 margin-right: 20px;
}
 .ami-form .form-row.form-row-submit {
	 margin-top: 20px;
}
 .ami-form .form-row.form-row-submit .reCAPTCHA-privacy {
	 background: #eaeaea;
	 margin-bottom: 10px;
	 font-size: rem-calc(12);
	 width: 100%;
}
 .ami-form .form-row.form-row-submit .reCAPTCHA-privacy a {
	 color: #f00;
	 font-weight: bold;
}
 .ami-form .sending-message {
	 position: absolute;
	 top: 0px;
	 bottom: 0px;
	 left: 0px;
	 right: 0px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 background: rgba(255, 255, 255, 0.75);
	 pointer-events: none;
	 z-index: 20;
	 opacity: 0;
	 transition: all 0.5s ease;
}
 .ami-form .sending-message.active {
	 opacity: 1;
}
 .ami-form .sending-message .sending-message-content {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
	 text-align: center;
	 flex-direction: column;
}
 .ami-form .sending-message .sending-message-content i {
	 display: block;
	 font-size: rem-calc(64);
	 color: #000;
}
 .ami-form .sending-message .sending-message-content span {
	 width: 100%;
	 color: #000;
	 text-align: center;
}
 .ami-form .sending-message .sending-message-content .sending-progress {
	 position: relative;
	 height: 10px;
	 width: 100%;
	 border: 1px solid #000;
	 margin: 10px 0px;
}
 .ami-form .sending-message .sending-message-content .sending-progress span {
	 position: absolute;
	 top: 0px;
	 left: 0px;
	 display: block;
	 width: 10px;
	 height: 100%;
	 background: #ebebeb;
	 animation: mymove 1s infinite;
}
 .ami-form .sending-message .sending-message-content .ami-upload-progress {
	 position: relative;
	 padding: 4px 10px;
	 overflow: hidden;
	 background: #00f;
	 -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.25);
	 box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.25);
	 border-radius: 5px;
	 opacity: 0;
}
 .ami-form .sending-message .sending-message-content .ami-upload-progress.active {
	 opacity: 1;
}
 .ami-form .sending-message .sending-message-content .ami-upload-progress span {
	 position: relative;
	 color: #fff;
	 z-index: 1;
}
 .ami-form .sending-message .sending-message-content .ami-upload-progress .ami-upload-progress-bar {
	 position: absolute;
	 left: 0px;
	 top: 0px;
	 bottom: 0px;
	 background: #0f0;
	 display: block;
	 z-index: 0;
}
 .mail-status .status-message {
	 display: block;
	 padding: 20px;
	 border: 1px solid #ebebeb;
	 text-align: center;
	 background: #000;
	 margin-bottom: 10px;
	 width: 100%;
}
 .mail-status .status-message.success {
	 color: #fff;
	 background: #0f0;
}
 .mail-status .status-message.fail {
	 color: #fff;
	 background: #f00;
}
 @keyframes mymove {
	 from {
		 left: 0px;
	}
	 to {
		 left: 90px;
	}
}
 .ami-form-anchor {
	 height: 2px;
	 width: 100%;
	 transform: translateY(-100px);
}
 .ami-form {
	 background: #eaeaea;
	 padding: 0px 0px;
}
 .ami-form .ami-form-page-desc {
	 padding: 20px 0px;
}
 .ami-form .ami-form-pages-holder {
	 width: 100%;
	 overflow: hidden;
}
 .ami-form .ami-form-pages-holder .ami-form-pages-track {
	 display: flex;
	 transition: all 0.25s ease;
}
 .ami-form .ami-form-pages-holder .ami-form-page {
	 padding: 0px 20px;
	 background: #eaeaea;
	 width: calc(100%);
}
 @media only screen and (max-width: 768px) {
	 .ami-form .ami-form-pages-holder .ami-form-page {
		 padding: 20px;
	}
}
 .ami-form .ami-form-pages-nav {
	 width: 100%;
	 display: flex;
	 justify-content: center;
	 margin-top: 10px;
}
 .ami-form .ami-form-pages-nav button {
	 border: 0px;
	 padding: 10px 20px;
	 background: #00f;
	 transition: all 0.5s ease;
	 color: #fff;
	 opacity: 1;
}
 .ami-form .ami-form-pages-nav button.current {
	 background: #009;
}
 .ami-form .ami-form-pages-nav button.disabled {
	 opacity: 0.2;
}
 .ami-form .ami-form-pages-nav button:first-child {
	 border-top-left-radius: 5px;
	 border-bottom-left-radius: 5px;
}
 .ami-form .ami-form-pages-nav button:last-child {
	 border-top-right-radius: 5px;
	 border-bottom-right-radius: 5px;
}
 .ami-form .ami-form-pages-nav button:hover {
	 background: #231f20;
}
 .grecaptcha-badge {
	 visibility: hidden;
}


.ami_form_sections .acf-fields .acf-field.acf-field-true-false {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.ami_form_sections .acf-fields .acf-field.acf-field-true-false .acf-input {
	order: 1;
	margin-right: 20px;
}

.ami_form_sections .acf-fields .acf-field.acf-field-true-false .acf-label {
	order: 3;
	margin: 0px;
}

.ami_form_sections .acf-fields .acf-field.acf-field-true-false label {
	margin: 0px;
}


.ami_form_sections .acf-field.ami_required_field {
	align-items: center;
}

