/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2025 | 19:49:27 */
div.form_container div.form_header.form_layout_table.form_header .form_label {
	background: #EFE6E3 !important;
	display: flex;
	padding: 9px 12px !important;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	color: #651C32 !important;
	font-family: var(--wp--preset--font-family--medium);
	font-size: 18px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: 27px !important;
}

.dark-theme div.form_container div.form_header.form_layout_table.form_header .form_label {
	background: var(--wp--preset--color--primary) !important;
	color: var(--wp--preset--color--white) !important;
}

div.form_container div.form_header.form_layout_table.form_header {
	color: #651C32 !important;
}

.dark-theme div.form_container div.form_header.form_layout_table.form_header {
	color: var(--wp--preset--color--white) !important;
}

#form_description {
	font-size: 16px;
	font-style: normal;
	font-weight: 450;
	line-height: 24px;
	margin-bottom: 12px;
}

div.form_container div.form_question.form_layout_table:not(.form_header) {
	display: block;
	padding: 12px 18px !important;
}

div.form_question.form_layout_table input,
div.form_question.form_layout_table textarea {
	color: #651C32 !important;
	font-family: var(--wp--preset--font-family--medium) !important;
	font-size: 16px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: 24px;
	border: 2px solid #DDD;
	background: #FFF;
	padding: 12px 15px !important;
	display: inline-block;
	width: 100%;
}

div.form_question.form_layout_table input[type="radio"],
div.form_question.form_layout_table input[type="checkbox"] {
	display: inline-block;
	margin-top: -2px;
    width: auto;
}

div.form_container div.form_question.form_layout_table .form_label {
	color: #545859 !important;
	padding: 0;
	font-family: var(--wp--preset--font-family--medium) !important;
	font-size: 14px !important;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 21px !important;
	display: block !important;
	width: 100% !important;
}

.dark-theme div.form_container div.form_question.form_layout_table .form_label {
	color: var(--wp--preset--color--white) !important;
}

div.form_container div.form_question.form_layout_table:not(.form_header) .form_label {
	padding: 6px 9px 6px;
}

div.form_container div.form_question.form_layout_table .form_responses {
	padding: 0 !important;
	display: block !important;
	width: 100%;
}

div.form_page select {
	padding: 12px 15px !important;
	border: 2px solid #DDD;
	color: #651C32 !important;
	min-width: 120px;
	font-family: var(--wp--preset--font-family--medium);
	font-size: 16px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: 24px !important;
}

div.form_page select[multiple] {
	font-size: 14px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: 21px !important;
}

div.form_page select[multiple] option {
	font-weight: 600 !important;
	padding: 3px 9px !important;
}

div.form_page select[multiple] option:checked {
	color: var(--wp--preset--color--primary) !important;
	background-color: var(--wp--preset--color--cream) !important;
}

.form_button_submit {
	align-items: center;
		background-color: transparent;
		border-radius: 0;
		border: 2px solid var(--wp--preset--color--secondary);
		color: var(--wp--preset--color--white);
	cursor: pointer;
		display: flex;
		font-family: var(--wp--preset--font-family--topol);
		height: 48px;
		font-size: 16px;
		font-weight: 700;
		line-height: 1;
		justify-content: center;
		overflow: hidden;
		padding: 24px 18px;
		padding-bottom: 24px;
		transition: all 300ms ease;
	margin-left: 15px;
		transform: translate3d(0, 0, 0) scale(1);
		text-transform: uppercase;
}

.form_button_submit::before {
			background-color: var(--wp--preset--color--secondary);
			bottom: -2px;
			clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15% 50%);
			content: "";
			left: -20%;
			position: absolute;
			top: -2px;
			transition: all 0.6s;
			width: calc(120% + 2px); // Add an extra pixel for browsers that can't render fractions of pixels.
			transform: translateX(0);
			z-index: -1;
		}

.form_button_submit:hover,
.form_button_submit:focus {
	background-color: transparent;
	color: var(--wp--preset--color--secondary);
	border-color: var(--wp--preset--color--secondary);
}

.form_button_submit:hover::before,
.form_button_submit:focus::before {
	transform: translateX(100%);
}

.form_button_submit:active {
	transform: translate3d(0, 0, 0) scale(0.95);
}

.form_button_submit::after {
	display: flex;
	content: "";
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M9 16.5L16 12L9 7.5' /></svg>");
	background-color: #fff;
	width: 16px;
    margin-top: -8px;
	height: 18px;
}

.form_button_submit:hover::after,
.form_button_submit:focus::after {
	background-color: var(--wp--preset--color--secondary);
}

@media only screen and (min-width:1100px) {
	.form_button_submit {
		font-size: 18px;
	}

	div.form_container div.form_header.form_layout_table.form_header .form_label {
		padding: 12px 15px !important;
		font-size: 24px !important;
		font-style: normal;
		font-weight: 600 !important;
		line-height: 30px !important;
	}

	#form_description {
		font-size: 18px;
		font-style: normal;
		font-weight: 450;
		line-height: 27px;
	}

	div.form_container div.form_question.form_layout_table:not(.form_header) {
		padding: 15px !important;
	}
}

