@charset "UTF-8";

/**************************/
/**************************/
/********** FORM **********/
/**************************/
/**************************/

fieldset {
	position: relative;
	border: none;
	margin: 0;
	padding: 0;
}
form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	   -moz-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 1em;
	font-size: var(--body-font-size);
	text-align: left;
	margin: 0 auto;
	width: 100%;
}
form input,
form textarea,
form button,
form select {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: auto;
	font-family: inherit;
	font-size: var(--body-font-size);
	line-height: 1em;
	padding: 1em;
	border: solid var(--logo-line-height);
	background: var(--bright-color);
}
form input,
form select {
	min-height:var(--input-min-height);
}
form textarea {
	resize: none;
	min-height: 6em;
}
form input[type="number"] {
	text-align: center;
	width: auto;
}
form input,
form textarea,
form button,
form select {
	width: 100%;
}
form select,
form input[type=submit],
form button {
	cursor: pointer;
}

/********** BROWSERS **********/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
::-webkit-input-placeholder {
	color: inherit;
	opacity: .5;
}
:-moz-placeholder {
	color: inherit;
	opacity: .5;
}
::-moz-placeholder {
	color: inherit;
	opacity: .5;
}
:-ms-input-placeholder {
	color: inherit;
	opacity: .5;
}
form input,
form textarea,
form button {
	-webkit-appearance: none;
	-moz-appearance: none;
}

/********** CHROME AUTOFILL **********/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
	-webkit-text-fill-color: var(--dark-color) !important;
	-webkit-box-shadow: 0 0 0px 1000px var(--bright-color) inset;
	background-color: transparent;
}

/***************************/
/***************************/
/********** LOGIN **********/
/***************************/
/***************************/

.password-toggle {
	position: absolute;
	top: 50%;
	right: 0;
	margin: 0;
	padding: 1em;
	-webkit-transform: translate3d(0, -50%, 0);
	   -moz-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
}

/**************************************/
/**************************************/
/********** CHECKBOX / RADIO **********/
/**************************************/
/**************************************/

form input[type="radio"],
form input[type="checkbox"] {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 1em !important;
	width: 1em !important;
	padding: 0 !important;
	cursor: pointer;
	color: inherit;
	text-shadow: inherit;
	-webkit-box-shadow: inset 0 0 0 0;
	   -moz-box-shadow: inset 0 0 0 0;
	        box-shadow: inset 0 0 0 0;
	background: var(--light-color);
	min-height:auto;
}
form input[type="radio"] {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}
form input[type="radio"]:hover,
form input[type="radio"]:checked,
form input[type="checkbox"]:hover,
form input[type="checkbox"]:checked {
	-webkit-box-shadow: inset 0 0 0 .5rem;
	   -moz-box-shadow: inset 0 0 0 .5rem;
	        box-shadow: inset 0 0 0 .5rem;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
	cursor: pointer;
}

/***************************/
/***************************/
/********** LABEL **********/
/***************************/
/***************************/
/* WIP > work like title font-weight !!! */

.form-label,
label {
	display: inline-block;
}
form .form-label,
form label {
	width: 100%;
}

/*************************************/
/*************************************/
/********** SUBMIT / BUTTON **********/
/*************************************/
/*************************************/

form button,
form input[type="submit"] {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 1em;
	width: auto !important;
	line-height: 1em;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: inherit;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	color: inherit;
	text-shadow: inherit;
}
form button > *,
form input[type="submit"] > * {
	margin: 0;
}

/********** COLORS **********/

/* cf. colors.css */

/********** @MEDIA **********/
/*
@media (min-width:0px) {
	form button,
	form input[type="submit"] {
		font-size:.625rem;
	}
}
@media (min-width:760px) {
	form button,
	form input[type="submit"] {
		font-size:.75rem;
	}
}
*/


/********************************/
/********************************/
/********** CONTAINERS **********/
/********************************/
/********************************/

/* form-container for custom input */

/*****************************/
/********** DEFAULT **********/
/*****************************/

.form-container {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: var(--form-gap);
	width: 100%;
}
.form-container > * {
	margin: 0;
}

/****************************/
/********** INLINE **********/
/****************************/

form .inline {
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width:100%;
}
form .inline > * {
	-webkit-box-flex:1;
	-webkit-flex-grow:1;
	   -moz-box-flex:1;
	    -ms-flex-positive:1;
	        flex-grow:1;
	-webkit-flex-basis: 0;
	    -ms-flex-preferred-size: 0;
	        flex-basis: 0;
}

/*************************************/
/*************************************/
/********** INPUT CONTAINER **********/
/*************************************/
/*************************************/
/* input-container > input */

.input-container {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}

/********** INPUT **********/

.input-container input {
	padding-right: -webkit-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: -moz-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
}
.input-container input + button {
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 0;
	height: 100%;
	aspect-ratio: 1/1;
	text-align: center;
	margin: 0;
	border: 0;
	background: none;
	-webkit-transform: translate3d(0, -50%, 0);
	   -moz-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
}

.input-container input + button:hover {
	color: var(--primary-color);
	text-shadow: 0 0 0 var(--primary-color);
	-webkit-transform: translateY(-50%) scale(.9);
	   -moz-transform: translateY(-50%) scale(.9);
	    -ms-transform: translateY(-50%) scale(.9);
	     -o-transform: translateY(-50%) scale(.9);
	        transform: translateY(-50%) scale(.9);
}
/* icon button */
/*
.input-container button [class^="icon-"],
.input-container button [class*=" icon-"] {
	display:block;
}
*/

/********** ICONS **********/
/* icon on input-container */

.input-container[class^="icon-"]:before,
.input-container[class*=" icon-"]:before {
	font-family: "icomoon";
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 0;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	aspect-ratio: 1/1;
	text-align: center;
	margin: 0;
	border: 0;
	background: none;
	-webkit-transform: translate3d(0, -50%, 0);
	   -moz-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
	opacity: .5;
	pointer-events: none;
}
.input-container[class^="icon-"] input,
.input-container[class*=" icon-"] input {
	padding-left: -webkit-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-left: -moz-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-left: calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
}

/********** EDITABLE **********/

.input-container.editable {
	background: none !important;
}
.input-container.editable:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-border-radius: .25rem;
	-moz-border-radius: .25rem;
	border-radius: .25rem;
	border: solid .0625rem rgb(255, 255, 255);
}
.editable .edit:before {
	font-family: 'icomoon';
}

/********** WITH INFOBUTTON **********/
/* not used */

/*
.input-container .infobutton {
	position:absolute;
	z-index:10;
	top:50%;
	right:.5rem;
	margin:-.75rem 0 0 0;
}
*/

/********** COLORS **********/

body.alt .input-container input + button:hover {
	color: var(--secondary-color);
	text-shadow: 0 0 0 var(--secondary-color);
}

/**************************************/
/**************************************/
/********** NUMBER CONTAINER **********/
/**************************************/
/**************************************/

.number-container {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.number-container input {
	padding-left: -webkit-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-left: -moz-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-left: calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: -webkit-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: -moz-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
}
.number-container .number-less,
.number-container .number-more {
	position: absolute;
	z-index: 10;
	top: 50%;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	aspect-ratio: 1/1;
	text-align: center;
	margin: 0;
	border: 0;
	background: none;
	-webkit-transform: translate3d(0, -50%, 0);
	   -moz-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
}
.number-container .number-less {
	left: 0;
}
.number-container .number-more {
	right: 0;
}

/**************************************/
/**************************************/
/********** SELECT CONTAINER **********/
/**************************************/
/**************************************/

.select-container {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}

/********** SELECT **********/

.select-container select {
	padding-right: -webkit-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: -moz-calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
	padding-right: calc(var(--body-font-size) * 3 + var(--logo-line-height) * 3);
}
.select-container:after {
	font-family: 'icomoon';
	content: '\e918';
	position: absolute;
	z-index: 10;
	top: 50%;
	right: var(--logo-line-height);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: -webkit-calc(100% - var(--logo-line-height) * 2);
	height: -moz-calc(100% - var(--logo-line-height) * 2);
	height: calc(100% - var(--logo-line-height) * 2);
	aspect-ratio: 1/1;
	text-align: center;
	margin: 0;
	background: var(--bright-color);
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.select-container:hover:after {
	-webkit-transform: translateY(-50%) rotate(-180deg);
	   -moz-transform: translateY(-50%) rotate(-180deg);
	    -ms-transform: translateY(-50%) rotate(-180deg);
	     -o-transform: translateY(-50%) rotate(-180deg);
	        transform: translateY(-50%) rotate(-180deg);
}
/*
.select-container.select2:after {
	display:none;
}
*/

/************************************************/
/************************************************/
/********** RADIO / CHECKBOX CONTAINER **********/
/************************************************/
/************************************************/

.radio-container,
.checkbox-container {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: .5em;
	width: 100%;
}

/***********************************/
/***********************************/
/********** GRAVITY FORMS **********/
/***********************************/
/***********************************/

.gform_wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	/*max-width:45rem;*/
}
.overlay .gform_wrapper {
	max-width: none;
}
.gform_wrapper li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gform_wrapper .gform_footer {
	clear: both;
}
.gform_wrapper .gfield_error .gfield_label {
	color: rgb(255, 0, 0);
}
.gform_anchor,
.validation_message,
.gfield_label,
.ginput_complex label,
.gform_wrapper div.validation_error {
	display: none;
}
.gform_wrapper li.gfield_error input[type=text],
.gform_wrapper li.gfield_error input[type=url],
.gform_wrapper li.gfield_error input[type=email],
.gform_wrapper li.gfield_error input[type=tel],
.gform_wrapper li.gfield_error input[type=number],
.gform_wrapper li.gfield_error input[type=password],
.gform_wrapper li.gfield_error textarea {
	color: rgb(255, 255, 255);
	text-shadow: 0 0 0 rgb(255, 255, 255);
	background: rgb(255, 0, 0);
}
.gform_wrapper .gform_ajax_spinner {
	position: absolute;
	bottom: .75rem;
	right: -1.5rem;
}
.gform_confirmation_wrapper {
	padding: 1rem 0;
}
* + .gform_footer {
	margin: 1rem 0 0 0;
}
.gform_ajax_spinner {
	display: inline-block;
	height: 1rem;
	width: 1rem;
	margin: 0 0 .5rem 1rem;
	padding: 0;
	-webkit-border-radius: 10rem;
	-moz-border-radius: 10rem;
	border-radius: 10rem;
	border-style: solid;
	border-width: 0.125rem;
	border-color: rgb(64, 64, 64) rgb(64, 64, 64) rgb(64, 64, 64) transparent;
	-webkit-animation: spinner .5s infinite linear;
	-moz-animation: spinner .5s infinite linear;
	-o-animation: spinner .5s infinite linear;
	animation: spinner .5s infinite linear;
}

/********** GINPUT CONTAINER **********/

.ginput_container.ginput_complex {
	font-size: 0;
	line-height: 0;
	text-align: justify;
	text-justify: distribute;
	/* IE9 */
}
.ginput_container.ginput_complex:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.ginput_container span {
	display: inline-block;
	width: 48%;
	width: -webkit-calc(50% - .5rem);
	width: -moz-calc(50% - .5rem);
	width: calc(50% - .5rem);
}
.gform_wrapper .gfield.small {
	display: inline-block;
	width: 48%;
	width: -webkit-calc(50% - .5rem);
	width: -moz-calc(50% - .5rem);
	width: calc(50% - .5rem);
}
.gform_wrapper .gfield.small + .gfield.small {
	margin: 1rem 0 0 1rem;
}

/*****************************/
/*****************************/
/********** SELECT2 **********/
/*****************************/
/*****************************/

/* unused */

.select2-container {
	margin: 0;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	font-size: .875rem;
	line-height: 1rem;
}

.select2-container .select2-choice {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-decoration: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: rgb(245, 245, 245);
	border: 0;
}

.select2-container .select2-choice>.select2-chosen {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	width: auto;
}

.select2-container .select2-choice abbr {
	display: none;
}

.select2-drop-mask {
	border: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	z-index: 9998;
	opacity: 0;
	filter: alpha(opacity=0);
}

.select2-drop {
	width: 100%;
	position: absolute;
	z-index: 99999;
	top: 100%;
}

.select2-drop-auto-width {
	width: auto;
}

.select2-container .select2-choice .select2-arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 1.5rem;
	height: 0;
	width: 0;
	pointer-events: none;
	border-top: .25rem solid rgb(0, 0, 0);
	border-right: .25rem solid transparent;
	border-left: .25rem solid transparent;
	border-bottom: 0 dotted;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.select2-container.select2-dropdown-open .select2-choice .select2-arrow {
	-webkit-transform: translateY(-50%) rotate(-180deg);
	-moz-transform: translateY(-50%) rotate(-180deg);
	-ms-transform: translateY(-50%) rotate(-180deg);
	-o-transform: translateY(-50%) rotate(-180deg);
	transform: translateY(-50%) rotate(-180deg);
}

/* results */
.select2-results {
	max-height: 16rem;
	padding: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
}

.select2-results li {
	list-style: none;
	display: list-item;
	background-image: none;
}

.select2-results .select2-result-label {
	margin: 0;
	cursor: pointer;
	min-height: 1rem;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: .875rem;
	line-height: 1rem;
	color: rgb(65, 65, 65);
	text-shadow: none;
	background: rgb(245, 245, 245);
}

.select2-results .select2-highlighted .select2-result-label {
	color: rgb(65, 65, 65);
	text-shadow: none;
	background: rgb(235, 235, 235);
}

/* disabled look for disabled choices in the results dropdown */
.select2-results .select2-selected {
	display: none;
}

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice abbr {
	display: none;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
	display: none;
	background: none;
}

/* end multiselect */
.select2-offscreen,
.select2-offscreen:focus {
	clip: rect(0 0 0 0) !important;
	width: 1px !important;
	height: 1px !important;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	outline: 0 !important;
	left: 0px !important;
	top: 0px !important;
}

.select2-hidden-accessible,
.select2-display-none {
	display: none;
}

/********** @MEDIA **********/

@media (min-width:0px) {
	.select2-results .select2-result-label {
		padding: 1rem;
	}

	.select2-container .select2-choice {
		padding: 1rem 2.5rem 1rem 1rem;
	}
}

@media (min-width:1000px) {
	.select2-results .select2-result-label {
		padding: 1.25rem 1rem;
	}

	.select2-container .select2-choice {
		padding: 1.25rem 3.5rem 1.25rem 1rem;
	}
}

/*****************************/
/*****************************/
/********** CHOICES **********/
/*****************************/
/*****************************/

.choices {
	position: relative;
	width:100%;
	overflow: hidden;
}
.choices:focus {
	outline: none;
}
.choices:last-child {
	margin-bottom: 0;
}
.choices.is-open {
	overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
	cursor: not-allowed;
	-webkit-user-select: none;
	-moz-user-select: none;
	 -ms-user-select: none;
	     user-select: none;
}
.choices.is-disabled .choices__item {
	cursor: not-allowed;
}
.choices [hidden] {
	display: none !important;
}

/** select-one **/

.choices[data-type*=select-one] {
	cursor: pointer;
}
/*
.choices[data-type*=select-one] .choices__inner {
	padding-bottom: 7.5px;
}
*/
.choices[data-type*=select-one] .choices__input {
	display: block;
	width: 100%;
	padding:.5em 1em;
	border-bottom: solid var(--logo-line-height);
	background: var(--bright-color);
	margin: 0;
}



.choices[data-type*=select-one] .choices__button {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
	padding: 0;
	-webkit-background-size: 8px 8px;
	   -moz-background-size: 8px;
	     -o-background-size: 8px;
	        background-size: 8px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -10px;
	margin-right: 25px;
	height: 20px;
	width: 20px;
	-webkit-border-radius: 10em;
	   -moz-border-radius: 10em;
	        border-radius: 10em;
	opacity: 0.25;
}

.choices[data-type*=select-one] .choices__button:hover,
.choices[data-type*=select-one] .choices__button:focus {
	opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
	-webkit-box-shadow: 0 0 0 2px #00bcd4;
	   -moz-box-shadow: 0 0 0 2px #00bcd4;
	        box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
	display: none;
}

.choices[data-type*=select-one]::after {
	content: "";
	height: 0;
	width: 0;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
	border-width: 5px;
	position: absolute;
	right: 11.5px;
	top: 50%;
	margin-top: -2.5px;
	pointer-events: none;
}

.choices[data-type*=select-one].is-open::after {
	border-color: transparent transparent #333 transparent;
	margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]::after {
	left: 11.5px;
	right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
	right: auto;
	left: 0;
	margin-left: 25px;
	margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
	cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
	position: relative;
	display: inline-block;
	margin-top: 0;
	margin-right: -4px;
	margin-bottom: 0;
	margin-left: 8px;
	padding-left: 16px;
	border-left: 1px solid #008fa1;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
	-webkit-background-size: 8px 8px;
	   -moz-background-size: 8px;
	     -o-background-size: 8px;
	        background-size: 8px;
	width: 8px;
	line-height: 1;
	opacity: 0.75;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
}


.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
	opacity: 1;
}
.choices__inner {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
	font-family: inherit;
	font-size: var(--body-font-size);
	line-height: 1em;
	padding: 1em;
	border: solid var(--logo-line-height);
	background: var(--bright-color);
	min-height: var(--input-min-height);
	overflow: hidden;
}


/*
.is-focused .choices__inner,
.is-open .choices__inner {
	border-color: #b7b7b7;
}
.is-open .choices__inner {
	border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
	border-radius: 0 0 2.5px 2.5px;
}
*/

.choices__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.choices__list--single {
	display: inline-block;
	padding: 4px 16px 4px 4px;
	width: 100%;
}

[dir=rtl] .choices__list--single {
	padding-right: 4px;
	padding-left: 16px;
}

.choices__list--single .choices__item {
	width: 100%;
}

.choices__list--multiple {
	display: inline;
}

.choices__list--multiple .choices__item {
	display: inline-block;
	vertical-align: middle;
	-webkit-border-radius: 20px;
	   -moz-border-radius: 20px;
	        border-radius: 20px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	margin-right: 3.75px;
	margin-bottom: 3.75px;
	background-color: #00bcd4;
	border: 1px solid #00a5bb;
	color: #fff;
	word-break: break-all;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
	padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
	margin-right: 0;
	margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
	background-color: #00a5bb;
	border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
	background-color: #aaaaaa;
	border: 1px solid #919191;
}



.choices__list--dropdown,
.choices__list[aria-expanded] {
	position: absolute;
	z-index: 15;
	top: 100%;
	width: 100%;
	border: solid var(--logo-line-height);
	background: var(--bright-color);
	margin-top: -webkit-calc(var(--logo-line-height) * -1);
	margin-top: -moz-calc(var(--logo-line-height) * -1);
	margin-top: calc(var(--logo-line-height) * -1);
	overflow: hidden;
	visibility: hidden;
	word-break: break-all;
	will-change: visibility;
}
.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
	visibility: visible;
}
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
	border-color: var(--dark-color);
}
.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: -webkit-calc(var(--logo-line-height) * -1);
	margin-bottom: -moz-calc(var(--logo-line-height) * -1);
	margin-bottom: calc(var(--logo-line-height) * -1);
}
.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
	position: relative;
	max-height: 300px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	will-change: scroll-position;
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
	position: relative;
	/*padding: 10px;
	font-size: 14px;
	*/
	padding:1em;
	/*font-size:calc(var(--body-font-size);*/
}
[dir=rtl] .choices__list--dropdown .choices__item,
[dir=rtl] .choices__list[aria-expanded] .choices__item {
	text-align: right;
}





@media (min-width: 640px) {
	.choices__list--dropdown .choices__item--selectable,
	.choices__list[aria-expanded] .choices__item--selectable {
		padding-right: 100px;
	}
	.choices__list--dropdown .choices__item--selectable::after,
	.choices__list[aria-expanded] .choices__item--selectable::after {
		content: attr(data-select-text);
		font-size: 12px;
		opacity: 0;
		position: absolute;
		right: 10px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		   -moz-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		     -o-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	[dir=rtl] .choices__list--dropdown .choices__item--selectable,
	[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
		text-align: right;
		padding-left: 100px;
		padding-right: 10px;
	}
	[dir=rtl] .choices__list--dropdown .choices__item--selectable::after,
	[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
		right: auto;
		left: 10px;
	}
}





.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
	background-color:var(--light-color);
}



.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
	opacity: 0.5;
}

.choices__item {
	cursor: default;
}
.choices__item--selectable {
	cursor: pointer;
}

.choices__item--disabled {
	cursor: not-allowed;
	-webkit-user-select: none;
	-moz-user-select: none;
	 -ms-user-select: none;
	     user-select: none;
	opacity: 0.5;
}

.choices__heading {
	font-weight: 600;
	font-size: 12px;
	padding: 10px;
	border-bottom: 1px solid #f7f7f7;
	color: gray;
}

.choices__button {
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	border: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.choices__button:focus {
	outline: none;
}

.choices__input {
	display: inline-block;
	vertical-align: baseline;
	background-color: #f9f9f9;
	font-size: 14px;
	margin-bottom: 5px;
	border: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	max-width: 100%;
	padding: 4px 0 4px 2px;
}

.choices__input:focus {
	outline: 0;
}
.choices__input::-webkit-search-decoration,
.choices__input::-webkit-search-cancel-button,
.choices__input::-webkit-search-results-button,
.choices__input::-webkit-search-results-decoration {
	display: none;
}
.choices__input::-ms-clear,
.choices__input::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

[dir=rtl] .choices__input {
	padding-right: 2px;
	padding-left: 0;
}
/*
.choices__placeholder {
	opacity: 0.5;
}
*/