input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="date"], input[type="search"], input[type="url"], input[type="url"], input[type="time"], input[type="week"],
textarea, 
select {
    border: 1px solid #28A0EF;
    height: 50px;
    padding: 10px;
    font-family: inherit;
    outline: none;
    border-radius: 4px;
    width: 100%;
    background: #fff;
}

/* input:-webkit-autofill,
input:-webkit-autofill:focus{
	 transition: background-color 0s 600000s, color 0s 600000s;

} */

textarea {
    height: initial;
}

fieldset legend,
label {
    font-size: 16px;
    font-weight: 700;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0;
    padding: 0;
    display: inline-block;
    cursor: pointer;
}

.gfield_radio,
.gfield_checkbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}
.gchoice {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    line-height: 1.6;
}
.gchoice input {
    margin-top: 3px;
}
.gchoice label {
    cursor: pointer;
}

.gfield_validation_message,
.gfield_error label {
    color: #FA7D5A;
}
.gfield_validation_message {
    font-size: 12px;
}

.gfield_error select,
.gfield_error textarea,
.gfield_error input {
    border-color: #FA7D5A;
}

.gform_wrapper input[type="button"],
.gform_wrapper input[type="submit"]{
	background-color: #2CC6FA;
    border: 1px solid #2CC6FA;
    color: #fff;
    font-weight: 700;
    padding: 16.5px 26px;
    line-height: 1;
    transition: background-color .3s ease, opacity .3s ease, color .3s ease;
}

.gform_wrapper input[type="button"],
.gform_wrapper input[type="submit"]:hover{
	border-color: #20a7d5;
    background: #20a7d5;
    color: #fff;
}

.gform_submission_error {
    font-size: 16px;
    color: #FA7D5A;
}

.gform_fields {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.gform_fields .gfield {
    grid-column: span 12 /auto;
}
.gform_fields .gfield--width-half {
    grid-column: span 6 /auto;
}
.gform_fields .gfield--width-third {
    grid-column: span 4 /auto;
}
.gform_fields .gfield--width-two-thirds {
    grid-column: span 8 /auto;
}
.gform_fields .gfield--width-quarter {
    grid-column: span 3 /auto;
}
.gform_fields .gfield--width-three-quarter {
    grid-column: span 9 /auto;
}
.gform_fields .gfield--width-five-twelfths {
    grid-column: span 5 / auto;
}
.gform_fields .gfield--width-seven-twelfths {
    grid-column: span 7 / auto;
}

@media(max-width:767px){
    .gform_fields div.gfield {
        grid-column: span 12 /auto;
    }
}

.ginput_complex {
    display: flex;
    gap: 10px;
}

.honeypot, .gfield--type-honeypot {
    position: absolute !important;
    z-index: 0;
    pointer-events: none;
    visibility: hidden;
}

.gform_required_legend {
    display: none;
}

.gform_ajax_spinner {
    position: absolute;
}

.ginput_container_date {
    position: relative;
}
.ginput_container_date .gform-datepicker {
    padding-right: 30px;
}
.ginput_container_date .ui-datepicker-trigger {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 14px;
}

.ui-datepicker {
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 10%);
    background: #fff;
}
.ui-datepicker-calendar {
    width: 100%;
}
.ui-datepicker-calendar th {
	padding: 5px 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
}
.ui-datepicker-calendar td {
	padding: 5px;
	text-align: center;
}
body .ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default,
.ui-datepicker-calendar .ui-state-default {
	font-weight: 700;
	width: 35px;
	height: 35px;
	line-height: 35px;
}
.ui-datepicker-calendar span.ui-state-default {
	opacity: .3;
}
.ui-datepicker-header select {
    min-height: initial;
    padding: 6px 8px;
    height: initial;
    font-size: 13px;
    font-weight: 700;
}
.ui-datepicker-header .ui-datepicker-next,
.ui-datepicker-header .ui-datepicker-prev {
    font-size: 12px;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
}
.ui-datepicker-header {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 8px;
    justify-content: space-between;
}
.ui-datepicker-title {
    display: flex;
    gap: 10px;
    width: 100%;
}
.ui-datepicker-calendar a {
    text-decoration: none;
    display: inline-block;
    border-radius: 50%;
}
.ui-datepicker-calendar a:hover {
    background: #2591D7;
	color: #fff;
}
.ui-datepicker a.ui-state-active,
.ui-datepicker a.ui-state-active:hover,
.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active,
.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active:hover {
	background-color: #192651;
	color: #fff;
}

.hidden_label .gfield_label {
    display: none;
}
/* Custom Dropdown */
.ff-custom-dropdown {
    position: relative;
    font-size: 16px;

}
.ff-custom-dropdown .selected-text {
    min-height: 50px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    border: none;
    background-color: #fff;
    border-radius: 4px;
	border: 1px solid #28A0EF;
	color: #1C1E25;
	
}
.ff-custom-dropdown .selected-text:after {
	content: "\e90b";
	color: #1C1E25;
	font-family: 'icomoon';
	font-size: 18px;
	pointer-events: none;
	position: absolute;
	right: 21px;
}
.ff-custom-dropdown.show-options .selected-text:after {
    content: '\e90c';
}
.ff-custom-dropdown .options {
	border: 1px #28A0EF solid;
	border-top-width: 0px;
	background: #fff !important;
    display: none;
	position: absolute;
	width: 100%;
	background: #fff;
	z-index: 100;
	max-height: 300px;
	overflow: auto;
    padding: 7px 10px;
    border-radius: 4px;
}
.ff-custom-dropdown.show-options .options {
    display: block;
}
.ff-custom-dropdown .option {
    cursor: pointer;
    padding: 4px 12px;
    /* border-bottom: 1px solid #E9ECEF; */
}
.ff-custom-dropdown .option:last-child {
    border-bottom: none;
}
.ff-custom-dropdown .option.selected,
.ff-custom-dropdown .option:hover {
    /* background-color: #fafafa; */
    color: #28A0EF;
}

/* Check/Radio */
.ginput_container_consent input[type="checkbox"],
.gfield-choice-input {
	opacity: 0;
	position: absolute;
}
.gchoice {
	margin: 7px 0;
}
.ginput_container_consent label,
.gchoice label {
    position: relative;
    padding-left: 32px;
    min-height: 20px;
    display: inline-flex;
	align-items: center;
    cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
.ginput_container_consent label:before,
.gchoice label:before {
    content: '';
	position: absolute;
    left: 0;
    top: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #1C1E25;
    pointer-events: none;
}
.ginput_container_consent.selected label:before,
.gchoice.selected label:before {
    border-color: #1C1E25;
}
.ginput_container_consent label:after,
.gchoice label:after {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	background: #1C1E25;
	left: 4px;
	top: 4px;
	transform: scale(0);
	transition: transform .3s ease;
	pointer-events: none;
}
.ginput_container_consent.selected label:after,
.gchoice.selected label:after {
    transform: scale(1);
}
.gfield_radio .gchoice label:before,
.gfield_radio .gchoice label:after {
    border-radius: 50%;
}


/*  Custom Upload Field */
.custom-upload{
	margin-top: -15px;
	margin-bottom: 0;
}
.custom-upload .gform_fileupload_rules{
    display: none !important;
}
.custom-upload ::-webkit-file-upload-button {
	color: #fff;
	border: 2px solid #28A0EF;
	background-color: #28A0EF;
	border-radius: 4px;
	padding: 9px 25px;;
	cursor: pointer !important;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 700;
    letter-spacing: 1px;
	text-transform: uppercase;
	height: 50px;
}
.custom-upload .ginput_container{
	position: relative;
	/* border: 1px #495056 solid;
	border-radius: 10px; */
} 
.custom-upload input{
	padding: 10px 0 0;
	background: transparent;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
}
.custom-upload .gform-field-label{
	display: block;
	font-size: 15px;
    display: none;
}
.custom-upload .gfield_required_text{
	display: none;
}
/* .custom-upload .ginput_container:after{
	content: '';
	background: url(../images/svg/upload-dark.svg) no-repeat;
	width: 17px; 
	height: 19px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 135px;
	margin: auto;
	transition: top .5s ease;
	pointer-events: none;
}
.custom-upload .ginput_container:hover:after{
	top: -10px;
} */

.warning-notice {
    border-radius: 4px;
    border: 1px solid rgba(25, 38, 81, 0.10);    
    background: #F8F9FA;
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 60px;
    position: relative;
    display: none;
}
.warning-notice:before {
    content: url(/wp-content/uploads/2024/01/icoalert-triangle.svg);
    position: absolute;
    left: 20px;
    top: 27px;
}

/*  Placeholder  */
.gform_wrapper ::-webkit-input-placeholder {
	opacity: 1;
	color: #1C1E25;
}
.gform_wrapper :-moz-placeholder {
	opacity: 1;
	color: #1C1E25
}
.gform_wrapper ::-moz-placeholder {
	opacity: 1;
	color: #1C1E25;
}
.gform_wrapper :-ms-input-placeholder {
	opacity: 1;
	color: #1C1E25
}

/* Elementor editor fixes */
.elementor-editor-active select {
    padding: 0 5px;
}