/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 26 2024 | 12:46:58 */
/*
 * THIS CSS UTILIZE STYLE FOR ALL HUBSPOT FORM
 */
select.hs-input {
	background-color: #ffffff !important;
}
/* INPUT SELECT */
select.hs-input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url('/wp-content/uploads/2023/01/chevron-down-2.svg');
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 18px;
}
/* CENTER BUTTON: Add .hsf-submit-center to the form */
.hsf-submit-center .actions {
	text-align: center;
}
/* TWO COLUMNS FIELDS */
.hs-form fieldset {
	max-width: 100% !important;
	display: grid;
	grid-gap: 30px;
}
.hs-form fieldset.form-columns-2 {
	grid-template-columns: repeat(2, minmax(50px, 1fr));
}
.hs-button[type="submit"] {
	cursor: pointer;
	transition: all 0.25s; 
}
li.hs-form-booleancheckbox {
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	.hs-form fieldset {
		grid-gap: 0;
	}
	.hs-form fieldset.form-columns-2 {
		grid-template-columns: 1fr;
	}
}
