:root {
	--happyforms-color-primary: #000;
	--happyforms-color-success-notice: #ebf9f0;
	--happyforms-color-success-notice-text: #1eb452;
	--happyforms-color-error: #f23000;
	--happyforms-color-error-notice: #ffeeea;
	--happyforms-color-error-notice-text: #f23000;
	--happyforms-color-notice-text: #454545;
	--happyforms-color-part-title: #000;
	--happyforms-color-part-value: #000;
	--happyforms-color-part-placeholder: #888;
	--happyforms-color-part-description: #454545;
	--happyforms-color-part-border: #dbdbdb;
	--happyforms-color-part-border-focus: #7aa4ff;
	--happyforms-color-part-background: #fff;
	--happyforms-color-part-background-focus: #fff;
	--happyforms-color-submit-background: #000;
	--happyforms-color-submit-background-hover: #000;
	--happyforms-color-submit-border: transparent;
	--happyforms-color-submit-text: #fff;
	--happyforms-color-submit-text-hover: #fff;
	--happyforms-color-table-row-odd: #fcfcfc;
	--happyforms-color-table-row-even: #efefef;
	--happyforms-color-table-row-odd-text: #000;
	--happyforms-color-table-row-even-text: #000;
	--happyforms-color-choice-checkmark-bg: #fff;
	--happyforms-color-choice-checkmark-bg-focus: #000;
	--happyforms-color-choice-checkmark-color: #fff;
	--happyforms-color-dropdown-bg-color: #fff;
	--happyforms-color-dropdown-item-bg: #fff;
	--happyforms-color-dropdown-item-text: #000;
	--happyforms-color-dropdown-item-bg-hover: #f4f4f5;
	--happyforms-color-dropdown-item-text-hover: #000;
	--happyforms-color-divider-hr: #ccc;
	--happyforms-form-title-font-size: 32px;
	--happyforms-form-font-weight: normal;
	--happyforms-part-title-font-size: 16px;
	--happyforms-part-description-font-size: 12px;
	--happyforms-part-value-font-size: 16px;
	--happyforms-submit-button-font-size: 16px;
	--happyforms-transition-duration: .25s;
}

.happyforms-form.happyforms-styles form {
	font-weight: 400;
	font-weight: var(--happyforms-form-font-weight);
	transition: opacity .25s ease-in-out;
	transition: opacity var(--happyforms-transition-duration) ease-in-out;
}

.happyforms-styles .happyforms-part__label {
	line-height: 1;
	font-weight: 400;
	font-size: 16px;
	font-size: var(--happyforms-part-title-font-size);
	background-color: transparent;
	overflow-wrap: anywhere;
}

.happyforms-styles .happyforms-part__label .happyforms-optional, .happyforms-styles .happyforms-part__label .label {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	font-size: var(--happyforms-part-title-font-size);
	color: #000;
	color: var(--happyforms-color-part-title);
	background-color: transparent;
}

.happyforms-styles .happyforms-part input[type=email], .happyforms-styles .happyforms-part input[type=number], .happyforms-styles .happyforms-part input[type=password], .happyforms-styles .happyforms-part input[type=range], .happyforms-styles .happyforms-part input[type=tel], .happyforms-styles .happyforms-part input[type=text], .happyforms-styles .happyforms-part select.happyforms-select, .happyforms-styles .happyforms-part textarea {
	margin: 0;
	padding: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #dbdbdb !important;
	border-color: var(--happyforms-color-part-border) !important;
	border-radius: 6px;
	border-radius: 6px !important;
	box-shadow: none;
	box-sizing: border-box;
	font-style: normal;
	font-size: 16px;
	font-size: var(--happyforms-part-value-font-size);
	background-color: #fff !important;
	background-color: var(--happyforms-color-part-background) !important;
	color: #000;
	color: var(--happyforms-color-part-value);
	transition-property: none;
	transition-duration: .1s;
	transition-duration: var(--happyforms-transition-duration);
	transition-timing-function: ease-in;
}

.happyforms-styles .happyforms-part input[type=email], .happyforms-styles .happyforms-part input[type=number], .happyforms-styles .happyforms-part input[type=password], .happyforms-styles .happyforms-part input[type=range], .happyforms-styles .happyforms-part input[type=tel], .happyforms-styles .happyforms-part input[type=text], .happyforms-styles .happyforms-part select.happyforms-select {
	height: auto !important;
}

.happyforms-styles .happyforms-part input[type=email]:focus, .happyforms-styles .happyforms-part input[type=number]:focus, .happyforms-styles .happyforms-part input[type=password]:focus, .happyforms-styles .happyforms-part input[type=tel]:focus, .happyforms-styles .happyforms-part input[type=text]:focus, .happyforms-styles .happyforms-part select.happyforms-select:focus, .happyforms-styles .happyforms-part textarea:focus {
	outline: 0;
	border-color: #7aa4ff !important;
	border-color: var(--happyforms-color-part-border-focus) !important;
	color: #000;
	color: var(--happyforms-color-part-value);
	background-color: #fff !important;
	background-color: var(--happyforms-color-part-background-focus) !important;
	box-shadow: inset 0 0 0 1px #7aa4ff;
	box-shadow: inset 0 0 0 1px var(--happyforms-color-part-border-focus);
}

.happyforms-styles .happyforms-part.display-type--block .happyforms-part__el {
	width: 100%;
}

.happyforms-styles .happyforms-part ::-webkit-input-placeholder {
	font-weight: 400;
	font-style: normal;
	color: #888;
	color: var(--happyforms-color-part-placeholder) !important;
}

.happyforms-styles .happyforms-part ::-moz-placeholder {
	font-weight: 400;
	font-style: normal;
	color: #888;
	color: var(--happyforms-color-part-placeholder) !important;
}

.happyforms-styles .happyforms-part ::-ms-placeholder {
	font-weight: 400;
	font-style: normal;
	color: #888;
	color: var(--happyforms-color-part-placeholder) !important;
}

.happyforms-styles .happyforms-part ::placeholder {
	font-weight: 400;
	font-style: normal;
	color: #888;
	color: var(--happyforms-color-part-placeholder) !important;
}

.happyforms-styles .happyforms-part-wrap {
	position: relative;
}

.happyforms-styles .happyforms-part .option-label {
	border-radius: 6px;
	line-height: 1.3125;
	line-height: calc(var(--happyforms-part-value-font-size) * 1.3125);
	font-size: 16px;
	font-size: var(--happyforms-part-value-font-size);
	overflow-wrap: anywhere;
}

.happyforms-styles .happyforms-part .happyforms-part-option:last-of-type .option-label {
	margin-bottom: 0;
}

.happyforms-styles .option-label input[type=text] {
	position: relative;
	top: 0;
	padding-top: 1px;
	padding-bottom: 1px;
	border: 0;
	border-radius: 0 !important;
}

.happyforms-styles .option-label input[type=text]:focus {
	border-top: 0;
	border-right: 0;
	border-left: 0;
	box-shadow: none;
}

.happyforms-styles .option-label input {
	top: 3px;
}

.happyforms-styles .happyforms-part--checkbox .happyforms-part-option, .happyforms-styles .happyforms-part--radio .happyforms-part-option {
	margin-bottom: 10px;
}

.happyforms-styles .happyforms-part--checkbox label.option-label, .happyforms-styles .happyforms-part--radio label.option-label {
	margin-bottom: 0;
}

.happyforms-part .option-label .happyforms-remaining-choice, .happyforms-styles .happyforms-part .option-label .label {
	font-weight: 400;
	font-size: 16px;
	font-size: var(--happyforms-part-value-font-size);
	color: #000;
	color: var(--happyforms-color-part-description);
}

.happyforms-styles .happyforms-part .option-label input:checked+.checkmark {
	background-color: #000;
	background-color: var(--happyforms-color-choice-checkmark-bg-focus);
}

.happyforms-styles .happyforms-part .checkmark {
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	min-width: 21px;
	height: 21px;
	margin: calc(( var(--happyforms-part-value-font-size) * 1.3125 - 21px ) / 2) 0;
	border-radius: 50%;
	border: 1px solid;
	border-color: #dbdbdb;
	border-color: var(--happyforms-color-part-border);
	font-weight: 700;
	font-size: 14px;
	font-size: var(--happyforms-part-description-font-size);
	background-color: #fff;
	background-color: var(--happyforms-color-choice-checkmark-bg);
	color: #000;
	color: var(--happyforms-color-choice-checkmark-bg-focus);
}

.happyforms-styles .happyforms-part .checkmark svg {
	display: none;
	width: 10px;
}

.happyforms-styles .happyforms-part--checkbox .checkmark, .happyforms-styles .happyforms-part--legal .checkmark, .happyforms-styles .happyforms-part--table.happyforms-selection--multiple .checkmark {
	border-radius: 6px;
}

.happyforms-styles .happyforms-part .option-label input:checked+.checkmark {
	background-color: #000;
	background-color: var(--happyforms-color-choice-checkmark-bg-focus);
}

.happyforms-styles .happyforms-part .option-label input:focus+.checkmark {
	border-color: #7aa4ff;
	border-color: var(--happyforms-color-part-border-focus);
	box-shadow: inset 0 0 0 1px #7aa4ff;
	box-shadow: inset 0 0 0 1px var(--happyforms-color-part-border-focus);
}

.happyforms-styles .happyforms-part input:checked+.checkmark svg {
	display: block;
	color: #fff;
	color: var(--happyforms-color-choice-checkmark-color);
}

.happyforms-radio-circle {
	display: none;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
	background-color: var(--happyforms-color-choice-checkmark-color);
}

.happyforms-styles .happyforms-part--poll input:checked+.checkmark .happyforms-radio-circle, .happyforms-styles .happyforms-part--radio input:checked+.checkmark .happyforms-radio-circle, .happyforms-styles .happyforms-part--table:not(.happyforms-selection--multiple) input:checked+.checkmark .happyforms-radio-circle {
	display: block;
}

.happyforms-styles .happyforms-part input:checked+.checkmark svg {
	display: block;
	color: #fff;
	color: var(--happyforms-color-choice-checkmark-color);
}

.happyforms-styles button[type=submit].happyforms-button--submit, .happyforms-styles button[type=submit][disabled].happyforms-button--submit {
	-webkit-appearance: none;
	height: auto;
	padding: 15px 30px;
	border-radius: 4px !important;
	border: 1px solid transparent !important;
	border-color: var(--happyforms-color-submit-border) !important;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	font-size: var(--happyforms-submit-button-font-size);
	color: #fff;
	color: var(--happyforms-color-submit-text);
	background-color: #000;
	background-color: var(--happyforms-color-submit-background);
	background: #000;
	background: var(--happyforms-color-submit-background);
	text-transform: none;
	transition-property: all;
	transition-duration: .25s;
	transition-duration: var(--happyforms-transition-duration);
	transition-timing-function: ease-in;
	white-space: normal;
	overflow-wrap: anywhere;
}

.happyforms-styles button[type=submit]:not(:hover):not(:active):not(.has-background) {
	background-color: #000;
	background-color: var(--happyforms-color-submit-background);
	background: #000;
	background: var(--happyforms-color-submit-background);
	color: #fff;
	color: var(--happyforms-color-submit-text);
}

.happyforms-styles button[type=submit].happyforms-button--submit:focus, .happyforms-styles button[type=submit].happyforms-button--submit:hover {
	cursor: pointer;
	border-radius: 4px;
	border-color: transparent !important;
	border-color: var(--happyforms-color-submit-border) !important;
	background-color: #000;
	background-color: var(--happyforms-color-submit-background-hover);
	background: #000;
	background: var(--happyforms-color-submit-background-hover);
	text-transform: none;
	text-decoration: none;
	color: #fff;
	color: var(--happyforms-color-submit-text-hover);
}

.happyforms-styles button[type=submit][disabled].happyforms-button--submit:focus, .happyforms-styles button[type=submit][disabled].happyforms-button--submit:hover {
	cursor: default;
	background-color: #407fff;
	background-color: var(--happyforms-color-submit-background);
	background: #407fff;
	background: var(--happyforms-color-submit-background);
	color: #fff;
	color: var(--happyforms-color-submit-text);
}

.happyforms-styles .happyforms-visuallyhidden {
	position: absolute;
	border: 0;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
}

.happyforms-styles .happyforms-part input[type=email], .happyforms-styles .happyforms-part input[type=number], .happyforms-styles .happyforms-part input[type=password], .happyforms-styles .happyforms-part input[type=text], .happyforms-styles .happyforms-part textarea {
	transition: border-color .4s;
	transition: border-color var(--happyforms-transition-duration);
}

.happyforms-styles.happyforms-form--submit-button-fullwidth button[type=submit].happyforms-button--submit {
	padding-left: 0;
	padding-right: 0;
	margin-right: 0;
}

.happyforms-styles.happyforms-form .happyforms-part .happyforms-input {
	position: relative;
	flex: 1;
	width: 100%;
}

:root {
	--happyforms-form-width: 100%;
}

.happyforms-flex {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	max-width: 100%;
}

.happyforms-form {
	max-width: 100%;
	max-width: var(--happyforms-form-width);
	margin: 0 auto;
	border-style: solid;
	border-width: 0;
}

.happyforms-form form {
	margin: 0;
	padding: 0;
	background-color: transparent;
}

.happyforms-flex>input[type=checkbox] {
	display: none !important;
}

.happyforms-form__part {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 15px;
	padding: 5px 1%;
}

.happyforms-form__part:last-child {
	margin-bottom: 0;
}

@media screen and (min-width:800px) {
	.happyforms-part--width-half {
		width: 50%;
	}
}

.happyforms-part--width-half, .happyforms-part--width-third {
	align-self: flex-start;
}

.happyforms-part__label {
	display: inline-block;
	margin-bottom: 15px;
}

.happyforms-part__label .happyforms-optional, .happyforms-part__label .happyforms-required, .happyforms-part__label .label {
	padding: 0;
	white-space: normal;
}

.happyforms-form__part .happyforms-part__label .happyforms-required {
	display: none;
}

.happyforms-form__part[data-happyforms-required] .happyforms-part__label .happyforms-required {
	display: inline-block;
}

.happyforms-part input[type=email], .happyforms-part input[type=number], .happyforms-part input[type=password], .happyforms-part input[type=range], .happyforms-part input[type=tel], .happyforms-part input[type=text], .happyforms-part textarea, .happyforms-part.happyforms-part select.happyforms-select {
	width: 100%;
	box-sizing: border-box;
	max-width: none;
}

.happyforms-part textarea {
	height: auto;
}

.happyforms-part.display-type--block .happyforms-part__el {
	width: 100%;
}

.happyforms-part-wrap {
	position: relative;
}

.happyforms-part .option-label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	padding: 0 5px 5px 0;
}

.happyforms-part--choice .option-label {
	margin-right: 20px;
}

.happyforms-styles .happyforms-part .happyforms-part-option .option-label {
	align-items: flex-start;
}

@media screen and (max-width:800px) {
	.happyforms-part--choice .option-label {
		margin-right: 0;
	}
}

.happyforms-part--choice .option-label input:focus {
	outline: 0;
}

.happyforms-part .option-label .label-wrap {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	white-space: normal;
	color: inherit;
}

.happyforms-part-option:last-of-type {
	margin-bottom: 0 !important;
}

.happyforms-part.display-type--block .option-label {
	display: flex;
	margin-right: 0;
	flex-wrap: wrap;
}

.happyforms-part--choice .happyforms-part__el {
	display: flex;
	flex-flow: row wrap;
}

@media screen and (max-width:800px) {
	.happyforms-part--choice .happyforms-part__el {
		flex-flow: column wrap;
	}
}

.happyforms-part--choice {
	margin-bottom: 0;
}

.happyforms-part--choice.display-type--block {
	margin-bottom: 15px;
}

.happyforms-part--choice.display-type--block .happyforms-part__el {
	display: flex !important;
	flex-flow: column wrap;
}

.happyforms-part .checkmark svg {
	display: none;
}

.happyforms-part--submit {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	width: 100%;
	margin-bottom: 0;
	padding-top: 10px;
}

.happyforms-part input[type=email], .happyforms-part input[type=number], .happyforms-part input[type=password], .happyforms-part input[type=text], .happyforms-part textarea {
	margin-bottom: 0;
	transition: border-color .4s;
	transition: border-color var(--happyforms-transition-duration);
}

.happyforms-form--submit-button-fullwidth button[type=submit].happyforms-button--submit {
	width: 100%;
}

button[type=submit][disabled].happyforms-button--submit {
	cursor: default;
}

.happyforms-part--submit * {
	margin-right: 20px;
}

.happyforms-form--submit-button-align-center .happyforms-part--submit, .happyforms-form--submit-button-fullwidth .happyforms-part--submit {
	flex-flow: column wrap;
	align-items: center;
}

.happyforms-part--checkbox .option-label .label-wrap, .happyforms-part--radio .option-label .label-wrap {
	padding-right: 5px;
	flex: 1;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.happyforms-form .happyforms-part .happyforms-input {
	position: relative;
	flex: 1;
	width: 100%;
	display: flex;
	align-items: stretch;
}