@charset "utf-8";
/* CSS Document */

.formfield{
	position: relative;
	box-sizing: border-box;
	float: left;
	margin: 0.25em auto;
	padding: 0px;
	border: 0px;
	font-size: 1em;
	width: 100%;
}
.formfield *{
  	box-sizing: border-box;
}
.formfield>input, .formfield>label,.formfield>textarea,.formfield>select{
	font-family: Avenir Roman, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 0.8em;
	line-height: 1em;
	padding: 0.75em 0;
	margin: 0.5em 0;
	width: 100%;
}
.formfield>label{
	width:auto;
}
.formfield>textarea, .formfield>select, .formfield>input[type="date"]{
	border-radius: 0.5em;
	padding: 0.75em;
	border: 1px solid var(--primary);
	resize: vertical;
}
.formfield>textarea{
	min-height: 12em;
}
.formfield>input{
	border: 1px solid transparent;
	border-bottom: 1px solid var(--primary);
	border-radius: 0;
	outline: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
.formfield>label{
	cursor: text;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	color: #ccc;
	-webkit-transition: all 0.5s ease, background 1ms;
	transition: all 0.5s ease, background 1ms;
}
input:focus + label, input:valid + label, .hasvalue + label, textarea + label, .formfield>input[type="date"] + label{
	font-size: 0.8em;
	width: auto;
	height: 1.3em;
	padding: 0px 0.5em 0px 0.5em;
	margin: 0px;
	background: white;
	top: 0em;
	left: 1em;
}
input:focus:valid + label, input:valid + label, .hasvalue:valid + label, textarea + label, .formfield>input[type="date"] + label{
	color: var(--primary);	
}
input:focus:invalid + label, .hasvalue:invalid + label{
	color: var(--secondary);
}
input:focus, input:valid, .hasvalue{
	padding: 0.75em 1em !important;
	border-width: 1px !important;
	border-style: solid !important;
	border-radius: 0.5em !important;
}
input:valid{
	border-color: var(--primary);
}
input:invalid.hasvalue, input:invalid:focus{
	border-color: var(--secondary);
}
.formfield > textarea + label, .formfield>select + label, .formfield>input[type="date"] + label{
	font-size: 0.8em;
    width: auto;
    height: 1.3em;
    padding: 0px 0.5em 0px 0.5em;
    margin: 0px;
    background: white;
    top: 0em;
    left: 1em;
	color:var(--primary);
}
input[type="submit"]{
	-webkit-appearance: none;
	border-radius: 0.5em;
	background-color: var(--secondary);
	border: none;
	color: white;
	cursor: pointer;
	width: 100%;
	padding: 0.5em 0;
	margin-top: 1em;
	font-family: Avenir Roman, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
input[type="submit"]:hover{
	background-color: var(--secondaryhighlight);
}
form:invalid input[type="submit"]{
	background-color: var(--primaryhighlight);
	cursor: default;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
	box-shadow:  0 0 0 30px white inset !important;
}
input[required]+label::after,textarea[required]+label::after, select[required]+label::after, .formfield>input[type="date"][required] + label::after{
    content: "*";
    position: absolute;
    color: var(--secondary);
    display: block;
    right: 0;
    top: 10%;
    padding: 0 0.5em;
    -webkit-transition: all 0.5s ease;
    transition: padding,margin,top,bottom,right,left,position,transform 0.5s ease;
    background-color: transparent;
    transform: translate(1.3em,0.3em)
}
input[required]:focus+label::after,input[required]:valid+label::after,textarea[required]+label::after,select[required]+label::after,.hasvalue[required]+label::after,.formfield>input[type="date"][required] + label::after{
    background-color: white;
    transform: translate(1em,0)
}
.hf-message {
    text-align: center;
    font-size: 0.8em;
    color: var(--secondary);
}
.klaviyo-form-VEcG9A input {
    border: none !important;
    border-bottom: 1px solid var(--primary) !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}
.klaviyo-form-VEcG9A button {
    -webkit-appearance: none !important;
    border-radius: 0.5em !important;
    background-color: var(--secondary) !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    width: 100% !important;
    padding: 0.5em 0 !important;
    margin-top: 1em !important;
    font-family: Avenir Roman, "Helvetica Neue", Helvetica, Arial, "sans-serif" !important;
    -webkit-transition: all 0.5s ease !important;
    font-size: 1em !important;
    font-weight: normal !important;
    padding: 0.75em 1em!important;
    transition: all 0.5s ease !important;
}
.klaviyo-form-VEcG9A button:hover{
	background-color: var(--secondaryhighlight) !important;
}