

/* FORMS */
.hs-form-field {
	position: relative;
}

.hs-form-field:where(.hs-fieldtype-text,.hs-fieldtype-phonenumber,.hs-fieldtype-select):is(:focus-within,:has(:is(:where(input):not(:placeholder-shown),select:not(.is-placeholder)))) > label {
	translate: 0 -100%;
	scale: 0.9;
}

.hs-form-field:where(.hs-fieldtype-select) select.is-placeholder {
    font-size: 0 !important;
}

.hs-form-field:where(.hs-fieldtype-text,.hs-fieldtype-phonenumber, .hs-fieldtype-select) > label {
	position: absolute;
	top: 50%;
	left: 0;
	transition: translate 0.25s ease-in-out, scale 0.25s ease-in-out;
    transform: translateY(-50%);
	transform-origin: bottom left;
}

fieldset:has(.hs-error-msgs) .hs-form-field:where(.hs-fieldtype-text,.hs-fieldtype-phonenumber, .hs-fieldtype-select) > label {
    top: calc(50% - 35px);
}

.hs-fieldtype-textarea label{
    margin-bottom: 1rem;
    display: block;
}

.inputs-list{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.inputs-list li.hs-form-booleancheckbox:before {
    display: none;
}

:root, :root::before, :root::after {
    --form-gdpr-size:							var(--font-h5-size);
	--form-gdpr-weight:							var(--font-h5-weight);
	--form-gdpr-line-height:					var(--font-h5-line-height);
	--form-labels-size:							var(--font-h4-size);
    --form-labels-margin-bottom:				62px;
	--form-input-size:							var(--font-h4-size);
    --form-fields-padding-top-bottom:   	 	15px;
    --form-fields-padding-left-right:			0;
    --form-fields-margin-bottom:				50px;
    --form-fields-column-gap:					10px;
        
    --form-primary-background-color:				transparent;
    --form-primary-text-color:						var(--font-body-color);

    --form-primary-label-weight:					var(--font-h4-weight);
    --form-primary-label-line-height:				var(--font-h4-line-height);
    --form-primary-label-color:						#909090;
    --form-primary-input-background-color:			transparent;
    --form-primary-drop-down-icon-color:			#909090;
    --form-primary-input-border-size:				1px;
    --form-primary-input-border-color:				var(--font-body-color);
    --form-primary-input-border-radius:				0;
    --form-primary-input-color:						var(--font-body-color);
    --form-primary-input-placeholder:				;
    --form-primary-warning-message-color:			red;
    --form-primary-success-message-color:			var(--font-body-color);
    --form-fields-min-height: 59px;
}/* ------------------ FORM WRAPPER ------------------ */

.component__form > *:first-child {
	margin-top:0;
}
/* @media only screen and (min-width: 961px) {
    .component__form--overflow{
        z-index: 2;
        position: absolute;
        top: 0;
    }
} */

/* ------------------ GENERAL FORM LAYOUT ------------------ */
/* Columns */
form.hs-form fieldset{
	max-width: none;
	width: 100%;
    display: flex;
	column-gap:var(--form-fields-column-gap);
}
form.hs-form .hs-form-field,
form.hs-form .hs-dependent-field,
form.hs-form > .hs-richtext,
form.hs-form > .legal-consent-container {
	width:100% !important;
	margin-bottom: var(--form-fields-margin-bottom);
}
form.hs-form .hs-richtext > *:first-child {
	margin-top:0;
}

.form__text{
    padding-bottom: 1rem;
}

form.hs-form .hs-richtext p{
    font-size: var(--form-gdpr-size) !important;
}

@media only screen and (max-width: 640px) {
	form.hs-form fieldset {
        flex-direction: column;
	}
	form.hs-form fieldset .hs-form-field,
	form.hs-form fieldset.form-columns-2 .hs-form-field,
	form.hs-form fieldset.form-columns-3 .hs-form-field,
	form.hs-form fieldset .hs-dependent-field,
	form.hs-form fieldset.form-columns-2 .hs-dependent-field,
	form.hs-form fieldset.form-columns-3 .hs-dependent-field,
	form.hs-form fieldset > .hs-richtext,
	form.hs-form fieldset > .legal-consent-container {
		width:100%;
	}
}

/* Labels */
.component__form .hs-form label{
	display: block;
	font-size: var(--form-labels-size);
	margin-bottom: var(--form-labels-margin-bottom);
}
/* Validation */


/* Help text - legends */
form.hs-form legend {
	font-size: calc(var(--form-labels-size) * 0.8);
	font-weight: 400;
	margin: calc(var(--form-labels-margin-bottom) * -1) 0 calc(var(--form-labels-margin-bottom) * 0.5);
}

/* Fields */
form.hs-form .hs-form-field.hs-form-field .input,
form.hs-form .hs-dependent-field.hs-dependent-field .input {
	display: flex;
	width:100%;
	margin:0;
}

/* Input */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:is([type=text],[type=email],[type=password],[type=tel],[type=number],[type=file]) {
	width:100%;
	font-size:var(--form-input-size);
	line-height:inherit;
	padding: var(--form-fields-padding-top-bottom)  var(--form-fields-padding-left-right) var(--form-fields-padding-top-bottom);
	border-radius: var(--module-settings-form-inputs-border-radius);
	outline:none;
	box-shadow: none;
	-webkit-appearance: none;
    appearance: none;
    min-height: var(--form-fields-min-height);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:-moz-placeholder{ /* Firefox 18- */
	opacity:1;
}
/* form.hs-form :is(.hs-form-field,.hs-dependent-field) input:is([type=text],[type=email],[type=password],[type=tel],[type=number]):focus-visible {
	outline: max(0.5px, 0.05em) solid currentColor;
/* outline-offset: max(1px, 0.05em); */
} */

/* Text area */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea{
	min-width:100%;
	width:100%;
	font-size:var(--form-input-size);
	line-height:inherit;
	padding: var(--form-fields-padding-top-bottom) var(--form-fields-padding-left-right);
	border-radius:var(--module-settings-form-inputs-border-radius);
	outline:none;
	box-shadow: none;
	min-height: 8rem;
}

form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea:-moz-placeholder{ /* Firefox 18- */
	opacity:1;
}
/* form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea:focus-visible {
	outline: max(0.9px, 0.05em) solid currentColor;
} */

/* Select https://www.filamentgroup.com/lab/select-css.html */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select{
    min-height: var(--form-fields-min-height);
	display: block;
	max-width: 100%;
	width:100%;
	font-size:var(--form-input-size);
	line-height:inherit;
	height: auto;
	border-radius: var(--module-settings-form-inputs-border-radius);
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	outline: none;
	cursor:pointer;
	
	background-color:transparent;
	background-repeat: no-repeat, repeat;
	background-position: right var(--form-fields-padding-left-right) top 50%, 0 0;
	background-size: calc(0.55 * var(--form-input-size)) auto, 100%;
	background-clip: padding-box;
	padding: var(--form-fields-padding-top-bottom) calc(var(--form-fields-padding-left-right) * 2 + calc(0.55 * var(--form-input-size))) var(--form-fields-padding-top-bottom) var(--form-fields-padding-left-right);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select::-ms-expand{
	display: none;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select:hover{}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select:focus{}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select:focus-visible {
	outline: max(0.9px, 0.05em) solid transparent;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select option {
/* 	color: #000000; */
	font-weight:normal;
}

/* Checkbox/Radio */
form.hs-form .inputs-list {
	margin: 0;
	padding: 0;
	list-style: none;
	width:100%;
}
form.hs-form .inputs-list > li {
	margin: 0.4em 0 0.7em;
}
form.hs-form .inputs-list:not(.hs-error-msgs) label {
    --form-input-size: var(--font-h5-size);
	font-size: var(--form-input-size);
	margin-bottom: 0;
	display: grid;
	grid-template-columns: 1em auto;
	gap: 0.5em;
	cursor: pointer;
}
form.hs-form .inputs-list input,
form.hs-form .inputs-list span {
	vertical-align: middle;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input:is([type="checkbox"],[type="radio"]) {
	/* Add if not using autoprefixer */
	-webkit-appearance: none;
	appearance: none;
	/* For iOS < 15 to remove gradient background */
	background-color: transparent;
	/* Not removed via appearance */
	margin: 0.05em 0 0;
	font: inherit;
	width: 1.05em;
	height: 1.05em;
	border: max(1px, 0.1em) solid currentColor;
	border-radius: max(1px, 0.1em);
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
	cursor:pointer;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input[type=radio] {
	border-radius:50%;	
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input:is([type="checkbox"],[type="radio"])::before{
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em currentColor;
	/* Windows High Contrast Mode */
/* 	background-color: CanvasText; */
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input[type="checkbox"]::before {
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input[type="radio"]::before {
	border-radius: inherit;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input:is([type="checkbox"],[type="radio"]):checked::before{
	transform: scale(1) translate(-0.1px,0.1px);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input:is([type="checkbox"],[type="radio"]):focus-visible {
	outline: max(0.9px, 0.05em) solid currentColor;
/* outline-offset: max(0.5px, 0.05em); */
	outline-offset: 0;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) input[type="checkbox"]:disabled {
	color: #959495;
	cursor: not-allowed;
}

/* Datepicker */
form.hs-form .hs-dateinput {
	position: relative;
	width:100%;
}
form.hs-form .hs-dateinput::before {
	content:'';
	position: absolute;
	right: var(--form-fields-padding-left-right);
	background-repeat: no-repeat;
	background-size: contain;
	font-size:var(--form-input-size);
	height: 1.1em;
	width: 1.1em;
	top: 50%;
	transform: translateY(-50%);
	cursor:pointer;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input .hs-dateinput input{
	padding-right: calc(var(--form-fields-padding-left-right) * 2 + 1em);
}

/* File picker */
form.hs-form .hs_upload_a_file label {
	cursor: pointer;
}
form.hs-form :is(.hs-form-field.hs-form-field,.hs-dependent-field.hs-dependent-field) .input input[type="file"]{
	background: transparent;
	border: 0;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	cursor: pointer;
}
form.hs-form :is(.hs-form-field.hs-form-field,.hs-dependent-field.hs-dependent-field) .input input[type="file"]::-webkit-file-upload-button{

	text-align: center;
	-webkit-appearance: none;
	appearance: none;
	cursor:pointer;
	margin: 0 0.5em 0 1px;
}
form.hs-form :is(.hs-form-field.hs-form-field,.hs-dependent-field.hs-dependent-field) .input input[type="file"]::file-selector-button{

	text-align: center;
	-webkit-appearance: none;
	appearance: none;
	cursor:pointer;
	margin: 0 0.5em 0 1px;
}
form.hs-form :is(.hs-form-field.hs-form-field,.hs-dependent-field.hs-dependent-field) .input input[type="file"]:focus-visible::-webkit-file-upload-button{
	outline: max(0.9px, 0.05em) solid currentColor;
}
form.hs-form :is(.hs-form-field.hs-form-field,.hs-dependent-field.hs-dependent-field) .input input[type="file"]:focus-visible::file-selector-button{
	outline: max(0.9px, 0.05em) solid currentColor;
}

/* Phone With Country DropDown */
form.hs-form .hs-input.hs-fieldtype-intl-phone {
    width: 100%!important;
}
form.hs-form .hs-input.hs-fieldtype-intl-phone select {
	width: 18rem!important;
}
form.hs-form .hs-input.hs-fieldtype-intl-phone input[type="tel"] {
    width: calc(100% - 18rem - var(--form-fields-column-gap))!important;
}
@media only screen and (max-width: 400px) {
	form.hs-form .hs-input.hs-fieldtype-intl-phone select {
		width: 100% !important;
		margin-bottom: var(--form-fields-margin-bottom);
	}
	form.hs-form .hs-input.hs-fieldtype-intl-phone input[type="tel"] {
		width: 100%!important;
	}
}

/* GDPR */
form.hs-form fieldset > .legal-consent-container,
form.hs-form > .legal-consent-container,
form.hs-form > .legal-consent-container .hs-form-booleancheckbox-display p,
form.hs-form > .legal-consent-container .hs-form-booleancheckbox-display span{
	font-size: var(--form-gdpr-size);
    font-weight: var(--form-gdpr-weight);
	line-height: var(--form-gdpr-line-height);
	margin-top: calc(var(--form-fields-margin-bottom) * 0.2 * -1);
	margin-bottom:0.8em;
}
form.hs-form .legal-consent-container .hs-richtext > p {
	margin: 0 0 0.4em;
}
form.hs-form .legal-consent-container .hs-richtext > a,
form.hs-form .legal-consent-container .hs-richtext > p > a{
	color: inherit;
    font-weight: 600;
}
form.hs-form .legal-consent-container .hs-richtext > a:hover,
form.hs-form .legal-consent-container .hs-richtext > p > a:hover{
    text-decoration: underline;
}
form.hs-form .legal-consent-container :is(.hs-form-field,.hs-dependent-field){
	margin:0;
}
form.hs-form .legal-consent-container .hs-fieldtype-booleancheckbox{
    margin:0.3em 0;
}
form.hs-form .legal-consent-container label.hs-form-booleancheckbox-display{
	font-size:inherit;
}
form.hs-form .legal-consent-container .hs-form-booleancheckbox-display > span {
	margin: 0;
}

/* Captcha */
.grecaptcha-badge {
	margin: 0;
	box-shadow: gray 0px 0px 1px !important;
}




/* ------------------- Primary Styling ------------------- */
.component__form--primary {
    color: var(--form-primary-text-color);
}

/* Label */
form.hs-form label{
	color: var(--form-primary-label-color);
	font-weight: var(--form-primary-label-weight);
	line-height: var(--form-primary-label-line-height);
    font-size: var(--form-labels-size);
}

/* Input */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:is([type=text],[type=email],[type=password],[type=tel],[type=number],[type=file]) {
	border-bottom: var(--form-primary-input-border-size) solid var(--form-primary-input-border-color);
	background: var(--form-primary-input-background-color);
	color: var(--form-primary-input-color);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input::-moz-placeholder{ /* Firefox 19+ */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:-ms-input-placeholder{ /* IE 10+ */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:-moz-placeholder{ /* Firefox 18- */
	color: var(--form-primary-input-placeholder);
}
/* Text area */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea{
	border:var(--form-primary-input-border-size) solid var(--form-primary-input-border-color);
	background: var(--form-primary-input-background-color);
	color: var(--form-primary-input-color);
    width: 100%;
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea::-moz-placeholder{ /* Firefox 19+ */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea:-ms-input-placeholder{ /* IE 10+ */
	color: var(--form-primary-input-placeholder);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input textarea:-moz-placeholder{ /* Firefox 18- */
	color: var(--form-primary-input-placeholder);
}

/* Select https://www.filamentgroup.com/lab/select-css.html */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input select{
	border-bottom: var(--form-primary-input-border-size) solid var(--form-primary-input-border-color);
	color: var(--form-primary-input-color);
	
	background-image: 
	url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2216%22%20height%3D%2213%22%20viewBox%3D%220%200%2016%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%2013L0.205772%200.250001L15.7942%200.249998L8%2013Z%22%20fill%3D%22%23D9D9D9%22%2F%3E%3C%2Fsvg%3E')
, linear-gradient(to bottom, var(--form-primary-input-background-color) 0%,var(--form-primary-input-background-color) 100%);
}

/* Checkbox/Radio */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input:is([type=checkbox],[type=radio]) {
	color: var(--form-primary-input-color);
}

/* Datepicker */
form.hs-form .hs-dateinput::before {
	
	background-image: 
	url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23D9D9D9%22%20d%3D%22M19%2019H5V8h14m-3-7v2H8V1H6v2H5c-1.11%200-2%20.89-2%202v14a2%202%200%200%200%202%202h14a2%202%200%200%200%202-2V5a2%202%200%200%200-2-2h-1V1%22%2F%3E%3C%2Fsvg%3E')
;
}

/* File picker */
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input[type=file]{
    color: var(--form-primary-label-color);
}


/* Messages */
.hs_cos_wrapper_type_form .submitted-message{
	color: var(--form-primary-success-message-color);
}
form.hs-form :is(.hs-form-field,.hs-dependent-field) .input input.invalid.error{
    border-bottom: 1px solid var(--form-primary-warning-message-color);
}
form.hs-form label.hs-error-msg,
form.hs-form .hs-error-msgs.inputs-list {
    --form-labels-size: 16px;
    color: var(--form-primary-warning-message-color);
}


form.hs-form .hs-fieldtype-radio > label{
    display: block;
    margin-bottom: 20px;
}

form.hs-form .hs-submit{
    margin-top: 40px;
}

.form:has(.form__webinar.active) form.hs-form{
    display: none;
}

.form__webinar{
    display: none;
    pointer-events: none;
}

.form__webinar.active{
    display: block;
    pointer-events: auto;
}

.form:has(.form__webinar.active):has(.submitted-message) .form__webinar, 
.form:has(.form__webinar.active):has(.submitted-message p) .form__webinar{
    margin-top: 50px;
}

.form:has(.form__webinar.active):has(.submitted-message) .submitted-message p:first-child{
    margin-top: 0;
}

@media only screen and (max-width: 1280px) {   
    .tfl-24 .popupform__heading{
        margin-bottom: 30px;
    }
}