
@layer bricks {
	@keyframes load8 {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes spin {
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes scrolling {
		0% {
			opacity: 1;
		}
		
		to {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px);
		}
	}
	
	:where(.brxe-form) {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	
	:where(.brxe-form) .label, :where(.brxe-form) label {
		color: inherit;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .4px;
		text-transform: uppercase;
	}
	
	:where(.brxe-form) .form-group {
		display: flex;
		flex-direction: column;
		padding: 0 0 20px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group.captcha, :where(.brxe-form) .form-group:last-child {
		padding-bottom: 0;
	}
	
	:where(.brxe-form) .form-group.captcha {
		line-height: 1;
	}
	
	:where(.brxe-form) .form-group.file {
		display: block;
	}
	
	:where(.brxe-form) .form-group.file > label.choose-files {
		margin-bottom: 0;
	}
	
	:where(.brxe-form) .form-group > .label {
		margin-bottom: 5px;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		display: none;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message.show {
		display: block;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper {
		position: relative;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle {
		background: none;
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span {
		display: flex;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span.hide {
		display: none;
	}
	
	:where(.brxe-form) .submit-button-wrapper {
		width: auto;
	}
	
	:where(.brxe-form) .required:after {
		content: "*";
		padding: 0 2px;
		position: relative;
		top: -2px;
	}
	
	:where(.brxe-form) .options-wrapper {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	:where(.brxe-form) .options-wrapper li {
		align-items: baseline;
		display: flex;
		gap: 8px;
	}
	
	:where(.brxe-form) .options-wrapper input, :where(.brxe-form) .options-wrapper label {
		display: inline-block;
		height: auto;
		margin: 0 5px 0 0;
		width: auto;
	}
	
	:where(.brxe-form) .options-wrapper input[type=checkbox], :where(.brxe-form) .options-wrapper input[type=radio] {
		margin: initial;
		padding: initial;
		position: relative;
		top: 1px;
	}
	
	:where(.brxe-form) button[type=submit].sending {
		cursor: default;
	}
	
	:where(.brxe-form) button[type=submit].sending .text {
		opacity: .5;
	}
	
	:where(.brxe-form) button[type=submit].sending > i, :where(.brxe-form) button[type=submit].sending > svg {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading {
		animation: load8 1s linear infinite;
		display: flex;
		opacity: 1;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading svg {
		transform: scaleX(-1);
	}
	
	:where(.brxe-form) button[type=submit] .loading {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit] svg {
		height: 1em;
		transform-origin: center;
	}
	
	:where(.brxe-form) .recaptcha-hidden {
		display: none;
	}
	
	:where(.brxe-form) .recaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .recaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .recaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .hcaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .hcaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .hcaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) input[type=checkbox] + .label, :where(.brxe-form) input[type=checkbox] + label, :where(.brxe-form) input[type=radio] + .label, :where(.brxe-form) input[type=radio] + label {
		color: inherit;
		cursor: pointer;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		line-height: inherit;
		text-align: inherit;
		text-transform: inherit;
	}
	
	:where(.brxe-form) textarea {
		height: inherit;
		resize: vertical;
	}
	
	:where(.brxe-form) .message {
		background-color: var(--bricks-bg-info);
		color: var(--bricks-text-info);
		display: flex;
		gap: 15px;
		justify-content: space-between;
		opacity: 1;
		padding-bottom: 0;
		position: relative;
		width: 100%;
	}
	
	:where(.brxe-form) .message.success {
		background-color: var(--bricks-bg-success);
		color: var(--bricks-text-success);
	}
	
	:where(.brxe-form) .message.error {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
	}
	
	:where(.brxe-form) .message .text {
		padding: 15px;
	}
	
	:where(.brxe-form) .message.closing {
		opacity: 0;
		transition: opacity .2s;
	}
	
	:where(.brxe-form) .message .close {
		all: unset;
		cursor: pointer;
		padding: 15px;
	}
	
	:where(.brxe-form) input.file, :where(.brxe-form) input[type=file] {
		display: block;
		height: 0;
		opacity: 0;
		width: 0;
	}
	
	:where(.brxe-form) .file-result {
		display: none;
		padding: 0;
	}
	
	:where(.brxe-form) .file-result.show {
		align-items: center;
		display: flex;
		margin: 0 0 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		justify-content: space-between;
		padding: 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg {
		cursor: pointer;
		height: 1em;
		margin-left: 5px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg g {
		stroke: currentcolor;
	}
	
	:where(.brxe-form) .file-result.show .remove {
		display: inline-block;
		font-size: 12px;
		line-height: 30px;
		margin: 0 15px;
		padding: 0 10px;
	}
	
	:where(.brxe-form) .file-result.show .remove:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .choose-files {
		align-self: flex-start;
		background-color: transparent;
		border: 1px solid var(--bricks-border-color);
		cursor: pointer;
		display: inline-block;
		font-family: inherit;
		font-size: 12px;
		font-weight: 600;
		line-height: 40px;
		padding: 0 15px;
		text-align: center;
		text-transform: none;
		white-space: nowrap;
		width: auto;
	}
	
	:where(.brxe-form) .choose-files:hover {
		background-color: rgba(0, 0, 0, .05);
	}
	
	:where(.brxe-form) .gallery-preview {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	:where(.brxe-form) .gallery-preview:not(:empty) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview {
		align-self: flex-start;
		overflow: hidden;
		position: relative;
	}
	
	:where(.brxe-form) .image-preview:hover button {
		opacity: 1;
	}
	
	:where(.brxe-form) .image-preview:has(img) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview button {
		background-color: #fff;
		border: none;
		left: 50%;
		opacity: 0;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}
	
	:where(.brxe-form) .image-preview button:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .image-preview button.hide {
		display: none;
	}
	
	.grecaptcha-badge {
		visibility: hidden;
	}
}

@layer bricks {
	:where(.brxe-heading).has-separator {
		align-items: center;
		display: inline-flex;
		gap: 20px;
	}
	
	:where(.brxe-heading) > [contenteditable] {
		display: inline-block;
		text-decoration: inherit;
	}
	
	:where(.brxe-heading) .separator {
		border-top: 1px solid;
		flex-grow: 1;
		flex-shrink: 0;
		height: 1px;
	}
}

@layer bricks {
	.brxe-icon {
		font-size: 60px;
	}
	
	svg.brxe-icon {
		font-size: inherit;
	}
}

@layer bricks {
	.brxe-code {
		width: 100%;
	}
}

#brxe-riuzbe {
	display: none;
}

#brxe-cnlwya {
	display: none;
}

#brxe-dqqtqc {
	color: var(--white);
	text-align: center;
	align-self: center;
}

@media (max-width: 991px) {
	#brxe-dqqtqc {
		text-align: center;
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	#brxe-dqqtqc {
		font-size: 24px;
	}
}

@media (max-width: 478px) {
	#brxe-dqqtqc {
		margin-bottom: 0;
	}
}

#brxe-ziilop {
	margin-top: 20px;
}

@media (max-width: 767px) {
	#brxe-ziilop {
		font-size: 18px;
	}
}

#brxe-zlnpug {
	margin-bottom: -20px;
}

#brxe-zqxnll .form-group:nth-child(6) {
	width: 50%;
}

#brxe-zqxnll .form-group:nth-child(7) {
	width: 50%;
}

#brxe-zqxnll .form-group:nth-child(8) {
	width: 100%;
}

#brxe-zqxnll .form-group:nth-child(9) {
	width: 50%;
}

#brxe-zqxnll .form-group:nth-child(10) {
	width: 50%;
}

#brxe-zqxnll .bricks-button {
	background-color: var(--dark-green);
}

#brxe-zqxnll .bricks-button:hover {
	background-color: var(--olive);
}

#brxe-zqxnll label {
	font-size: 1.25em;
	font-weight: 300;
}

#brxe-zqxnll .label {
	font-size: 1.25em;
	font-weight: 300;
}

#brxe-zqxnll .form-group input {
	background-color: rgba(0, 0, 0, 0);
	color: var(--white);
}

#brxe-zqxnll .flatpickr {
	background-color: rgba(0, 0, 0, 0);
}

#brxe-zqxnll select {
	background-color: rgba(0, 0, 0, 0);
	color: rgba(255, 255, 255, .65);
	color: var(--white);
}

#brxe-zqxnll textarea {
	background-color: rgba(0, 0, 0, 0);
	color: var(--white);
}

#brxe-zqxnll ::placeholder {
	color: rgba(255, 255, 255, .65);
}

#brxe-zqxnll {
	z-index: 100;
	color: hsl(0, 0%, 100%);
}

#brxe-zqxnll .bricks-button {
	width: 40%;
	margin-top: 40px;
}

#brxe-zqxnll div.label {
	display: none;
}

#brxe-zqxnll div.label + * label {
	font-size: .75em;
}

.landing-form[data-current-step="2"] {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0px;
}

.landing-form[data-current-step="2"] > .form-group:nth-child(3) {
	grid-column: 1;
}

.landing-form[data-current-step="2"] > .form-group:nth-child(4) {
	grid-column: 2;
}

.landing-form[data-current-step="2"] > .form-group:nth-child(5) {
	grid-column: 1/span 2;
}

.landing-form[data-current-step="2"] > .form-group:nth-child(6) {
	grid-column: 1;
}

.landing-form[data-current-step="2"] > .form-group:nth-child(7) {
	grid-column: 2;
}

.landing-form[data-current-step="2"] > .submit-button-wrapper {
	grid-column: 1/span 2;
}

#brxe-zqxnll .form-group .options-wrapper li label {
	font-size: 14px;
}

select {
	color: #000;
}

select option {
	color: #000;
}

.button-wrapper .bricks-button, .submit-button-wrapper .bricks-button {
	background-color: #e5830c !important;
	color: #fff !important;
	border: none !important;
	padding: 12px 28px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all .25s ease;
}

.bricks-button {
	transition: all .2s ease;
}

.bricks-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
	background-color: var(--primary-color);
	color: #fff;
}

#brxe-zqxnll .form-group label {
	color: white;
}

body .brxe-form .select2-container--default .select2-selection--single .select2-selection__rendered, body .brxe-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: white !important;
}

:where(.brxe-form) .options-wrapper {
	display: flex;
	justify-content: center;
	gap: 30px;
}

:where(.brxe-form) .options-wrapper li {
	align-items: center;
	gap: 8px;
}

#brxe-zqxnll .options-wrapper > li {
	display: flex;
	gap: 0;
}

#brxe-zqxnll .options-wrapper input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	margin-right: 10px;
}

#brxe-zqxnll .options-wrapper input[type="radio"]:checked {
	background-color: #539131;
	border-color: #fff;
}

#brxe-zqxnll .form-group .options-wrapper li label {
	font-size: 20px;
}

#brxe-zqxnll .bricks-button {
	width: 40%;
	margin-top: 0;
}

.landing-form .submit-button-wrapper, .landing-form .button-wrapper {
	margin-top: .8em;
}

input[type="checkbox"] {
	width: 20px;
	height: 18px;
}

#brxe-zqxnll .form-group .options-wrapper li label {
	font-size: 20px;
	padding-left: 10px !important;
}

#brxe-zqxnll div .options-wrapper li label {
	font-size: 14px !important;
}

.landing-form[data-current-step="2"] {
	display: flex !important;
	gap: 0px;
}

@media (max-width: 767px) {
	#brxe-zqxnll .form-group:nth-child(6) {
		width: 100%;
	}
	
	#brxe-zqxnll .form-group:nth-child(7) {
		width: 100%;
	}
	
	#brxe-zqxnll .submit-button-wrapper {
		margin-top: 10px;
	}
	
	#brxe-zqxnll {
		padding-bottom: 0;
	}
	
	@media (max-width: 767px) {
		#brxe-zqxnll.brxe-form {
			display: flex !important;
		}
	}
}

@media (max-width: 478px) {
	#brxe-zqxnll .form-group:nth-child(6) {
		width: 100%;
	}
	
	#brxe-zqxnll .form-group:nth-child(7) {
		width: 100%;
	}
	
	#brxe-zqxnll {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	
	#brxe-zqxnll .form-group:not(.submit-button-wrapper):not(.message):not(.captcha) {
		padding-bottom: 20px;
	}
	
	#brxe-wfodtu {
		display: none !important;
	}
	
	@media (max-width: 767px) {
		#brxe-zqxnll.brxe-form {
			display: flex !important;
		}
	}
	
	#brxe-zqxnll .form-group input {
		font-size: 1em;
	}
	
	#brxe-zqxnll select {
		font-size: 1em;
	}
	
	#brxe-zqxnll textarea {
		font-size: 1em;
	}
}

#brxe-oegxco {
	display: none;
}

#brxe-hqwptd {
	display: none;
}

#brxe-jjghbp {
	background-color: rgba(54, 76, 70, .85);
	border-radius: 1.5em;
	padding-top: 2em;
	padding-right: 2em;
	padding-bottom: 2em;
	padding-left: 2em;
	align-items: flex-start;
	justify-content: center;
	align-self: stretch !important;
	width: 100%;
	height: 100%;
	z-index: 100;
	max-height: 650px;
	overflow: hidden;
}

@media (max-width: 991px) {}

@media (max-width: 767px) {
	#brxe-jjghbp {
		padding-top: 1.5em;
		padding-right: 1.5em;
		padding-bottom: 1.5em;
		padding-left: 1.5em;
		flex-direction: row;
		height: 100%;
	}
}

@media (max-width: 478px) {
	#brxe-jjghbp {
		width: 100%;
		flex-direction: row;
		padding-top: 1.5em;
		padding-right: 1.5em;
		padding-bottom: 1.5em;
		padding-left: 1.5em;
		max-height: 100vh;
	}
}
