/* ------------------------------------------------------------------------------------------------------------------------ */
/* FORMS																													*/

.form .row {
	margin: 0 -10px 0 -10px;
}

.form div[class*="col-"],
.form div[class^="col-"] {
	padding: 8px 10px;
	display: flex;
}

.form .fieldname {
	width: auto;
	margin: 0;
	vertical-align: middle;
	float: none;
	display: block;
	line-height: 30px;
	text-align: left;
	font-weight: bold;
}

.form .fieldname label {
	margin: 0 20px 0 0;
	display: block;
	vertical-align: middle;
}

.form label {
	margin: 0 5px 0 0;
	display: inline-block;
	cursor: pointer;
	word-break: break-word;
	hyphens: auto;
}

.required {
	color: #ea113a;
}

/* ---------------------------------------------------------------------------- */
/* FORMS - GROUP																*/

.form .group-vertical, .form .group-Horizontal{
	display: inline-block;
}

.form .group-vertical .group {
	display: block;
	margin: 0 0 10px 0;
}

.form .group-vertical .group:last-child {
	margin: 0;
}

.form .group-Horizontal.group {
	display: inline-block;
	margin: 0 10px 0 0;
}

.form .group-Horizontal.group:last-child {
	margin: 0;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* INPUT																													*/

input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"] {
	width: 100%;
	height: 30px;
	background: #ffffff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.54);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0 10px;
	display: block;
	outline: none;
	color: #333333;
	font-size: 12px;
	line-height: 30px;

	-webkit-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-moz-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus {
	border: 1px solid #73bfe5;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="time"]::placeholder {
	color: #999999;
	font-style: italic;
}

input[type="text"].disabled,
input[type="password"].disabled,
input[type="email"].disabled,
input[type="search"].disabled,
input[type="number"].disabled,
input[type="tel"].disabled,
input[type="date"].disabled,
input[type="time"].disabled {
	background: rgba(0, 0, 0, 0.1);
	cursor: not-allowed;
}

input[type="text"].disabled:focus,
input[type="password"].disabled:focus,
input[type="email"].disabled:focus,
input[type="search"].disabled:focus,
input[type="number"].disabled:focus,
input[type="tel"].disabled:focus,
input[type="date"].disabled:focus,
input[type="time"].disabled:focus {
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input {
	position: relative;
}

.input-clear {
	width: 10px;
	height: 10px;
	background: url('../images/icons/cross.svg') center center no-repeat;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	opacity: 0.4;
	border: none;
}

.input-clear:hover {
	opacity: 0.6;
}

/* ---------------------------------------------------------------------------- */
/* INPUT - LARGE																*/

input[type="text"].input-lg,
input[type="password"].input-lg,
input[type="search"].input-lg,
input[type="email"].input-lg,
input[type="number"].input-lg,
input[type="tel"].input-lg,
input[type="date"].input-lg,
input[type="time"].input-lg {
	height: 40px;
	line-height: 40px;
}

input[type="text"].input-lg::placeholder,
input[type="password"].input-lg::placeholder,
input[type="search"].input-lg::placeholder,
input[type="email"].input-lg::placeholder,
input[type="number"].input-lg::placeholder,
input[type="tel"].input-lg::placeholder,
input[type="date"].input-lg::placeholder,
input[type="time"].input-lg::placeholder {
	font-size: 12px;
}

input[type="text"].input-lg-icon16,
input[type="password"].input-lg-icon16,
input[type="search"].input-lg-icon16,
input[type="email"].input-lg-icon16,
input[type="number"].input-lg-icon16,
input[type="tel"].input-lg-icon16,
input[type="date"].input-lg-icon16,
input[type="time"].input-lg-icon16 {
	height: 40px;
	line-height: 40px;
	padding-left: 35px;
}

/* ---------------------------------------------------------------------------- */
/* INPUT - HAS ICON LEFT														*/

.has-icon-left input[type="text"] {
	padding-left: 36px;
}

.input-icon-left {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 1;
	transform: translateY(-50%);
	text-indent: -9999px;
}

.input-icon-left .icon16 {
	display: block;
}

/* ---------------------------------------------------------------------------- */
/* INPUT - HAS ICON RIGHT														*/

.has-icon-right input[type="text"] {
	padding-right: 36px;
}

.input-icon-right {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 1;
	transform: translateY(-50%);
	text-indent: -9999px;
}

.input-icon-right .icon16 {
	display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* SELECT																													*/

select {
	width: 100%;
	height: 30px;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.54);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0px 8px;
	display: block;
	cursor: pointer;
	color: #333333;
	font-size: 12px;
	line-height: 30px;

	-webkit-transition: border 0.2s ease-in-out;
	-moz-transition: border 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out;
	transition: border 0.2s ease-in-out;
}

select:focus,
select:focus-visible {
	outline: none;
	border: 1px solid #73bfe5;
	-webkit-box-shadow: 0 0 0 1px #73bfe5;
	-moz-box-shadow: 0 0 0 1px #73bfe5;
	box-shadow: 0 0 0 1px #73bfe5;
}

/* ---------------------------------------------------------------------------- */
/* SELECT - DISABLED															*/

select.disabled {
	background: rgba(0, 0, 0, 0.1);
	cursor: not-allowed;
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* CUSTOM SELECT																											*/

/*.select {
	height: 30px;
	background: #ffffff url('../images/icons/arrow-down.svg') right 10px center no-repeat;
	background-size: 10px 10px;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	box-sizing: border-box;
	padding: 0 30px 0 10px;
	position: relative;
	color: #333333;
	line-height: 30px;
}

.select select {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
}*/

/* ------------------------------------------------------------------------------------------------------------------------ */
/* CUSTOM SELECT																											*/

.select {
	height: 30px;
	background: #ffffff;
	background-clip: padding-box;
	border-radius: 3px;
	box-sizing: border-box;
	padding: 0 10px;
	display: block;
	position: relative;
	cursor: pointer;
	color: #333333;
	font-size: 12px;
	line-height: 30px;
}

.select-label {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.select-toggle {
	width: 10px;
	height: 10px;
	background: url('../images/icons/arrow-down.svg') no-repeat;
	margin-left: 5px;
	font-size: 8px;
	line-height: 10px;

	transition: all 0.2s ease-in-out;
}

.select.open .select-toggle {
	transform: rotate(180deg);
}

.select-dropdown {
	min-width: 200px;
	max-height: 160px;
	background: #ffffff;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	margin-top: 5px;
	position: absolute;
	top: 100%;
	left: -1px;
	z-index: 1;
	overflow: hidden;
	overflow-y: auto;
	display: none;
}

.select.open .select-dropdown {
	display: block;
}

.select-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.select-dropdown ul li {
	padding: 5px 10px;
}

.select-dropdown ul li:hover {
	background-color: rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.select-dropdown ul li.active {
	background-image: url('../images/icons/success-light.svg');
	background-repeat: no-repeat;
	background-position: center right 10px;
	background-size: 12px 12px;
}

.select select {
	width: 100%;
	height: 100%;
	max-height: 160px;
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	cursor: pointer;
	appearance: none;
	text-indent: -9999px;
}

/* ---------------------------------------------------------------------------- */
/* CUSTOM SELECT - DISABLED														*/

.select.disabled {
	background: rgba(0, 0, 0, 0.1);
	cursor: not-allowed;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* DROPDOWN																													*/

.dropdown {
	display: inline-block;
	position: relative;
}

.dropdown-toggle-arrow {
	width: 10px;
	height: 10px;
	background: url('../images/icons/arrow-down.svg');
	background-size: 10px 10px;
	margin: 0 0 0 auto;
	transition: transform 0.2s ease-in-out;
}

.dropdown.is-active .dropdown-toggle-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	min-width: 160px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	margin: 4px 0 0 0;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 9;
	overflow: hidden;
	display: none;
	color: #333333;
}

.dropdown.is-active .dropdown-menu {
	display: block;
}

.dropdown-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dropdown-menu a,
.dropdown-menu-item {
	padding: 10px;
	display: block;
	white-space: nowrap;
	color: #333333;
	text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu-item:hover,
.dropdown-menu-item:focus {
	background: rgba(0, 0, 0, 0.05);
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}

.dropdown-menu a.disabled,
.dropdown-menu a.disabled:hover,
.dropdown-menu a.disabled:focus,
.dropdown-menu-item.disabled,
.dropdown-menu-item.disabled:hover,
.dropdown-menu-item.disabled:focus {
	background: none;
	color: #333333;
	opacity: 0.4;
	cursor: default;
}

.dropdown-menu-topleft {
	top: auto;
	right: auto;
	bottom: 100%;
	left: 0;
}

.dropdown-menu-topright {
	top: auto;
	right: 0;
	bottom: 100%;
	left: auto;
}

.dropdown-menu-bottomleft {
	top: 100%;
	right: auto;
	bottom: auto;
	left: 0;
}

.dropdown-menu-bottomright {
	top: 100%;
	right: 0;
	bottom: auto;
	left: auto;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* TEXTAREA																													*/

textarea {
	width: 100%;
	height: 140px;
	background: #ffffff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.54);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 8px 10px;
	display: block;
	resize: vertical;
	color: #333333;
	font-size: 12px;
	line-height: 18px;
	font-family: Arial, Helvetica, sans-serif;
	outline: none;

	-webkit-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-moz-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

textarea:focus {
	border: 1px solid #73bfe5;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
}

textarea::placeholder {
	color: #999999;
	font-style: italic;
}

/* ---------------------------------------------------------------------------- */
/* TEXTAREA - DISABLED															*/

textarea.disabled {
	background: rgba(0, 0, 0, 0.1);
	cursor: not-allowed;
}

textarea.disabled:focus {
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* CHECKBOX & RADIO BUTTON																									*/

.checkbox,
.radio {
	padding: 0 0 0 20px;
}

.checkbox:first-child,
.radio:first-child {
	margin: 2px 0 0 0;
}

.checkbox label,
.radio label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 0 0 -20px;
	padding: 4px 6px 4px 28px;
	display: inline-block;
}

.checkbox label:hover,
.radio label:hover {
	background: rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
	margin: 3px 0 0 -22px;
	float: left;
	display: block;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox a,
.radio a {
	color: inherit;
	font-family: inherit;
}

/* ---------------------------------------------------------------------------- */
/* CHECKBOX & RADIO BUTTON - DISABLED STATE										*/

.checkbox.disabled,
.radio.disabled {
	opacity: 0.4;
}

.checkbox.disabled label:hover,
.radio.disabled label:hover {
	background: none;
	cursor: default;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* INLINE CHECKBOX & RADIO BUTTON																							*/

.checkbox-inline,
.radio-inline {
	margin: 2px 0 0 10px;
	padding: 0 0 0 20px;
	display: inline-block;
}

.checkbox-inline:first-child,
.radio-inline:first-child {
	margin: 2px 0 0 0;
}

.checkbox-inline label,
.radio-inline label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 0 0 -20px;
	padding: 4px 6px 4px 28px;
	display: inline-block;
}

.checkbox-inline label:hover,
.radio-inline label:hover {
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.checkbox-inline input[type="checkbox"],
.radio-inline input[type="radio"] {
	margin: 3px 0 0 -22px;
	float: left;
	display: block;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox-inline a,
.radio-inline a {
	color: inherit;
	font-family: inherit;
}

/* ---------------------------------------------------------------------------- */
/* INLINE CHECKBOX & RADIO BUTTON - DISABLED STATE								*/

.checkbox-inline.disabled label,
.checkbox-inline.disabled label:hover,
.radio-inline.disabled label,
.radio-inline.disabled label:hover {
	background: none;
	opacity: 0.4;
	cursor: default;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* SWITCH																													*/

.switch {
	width: 28px;
	height: 16px;
	background: rgba(0, 0, 0, 0.42);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;

	-moz-transition: .25s ease-in-out;
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.switch .handler {
	width: 14px;
	height: 14px;
	background: #ffffff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;

	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.switch input[type="checkbox"] {
	width: inherit;
	height: inherit;
	-webkit-appearance:	none;
	-moz-appearance: none;
	appearance: none;
}

.switch-label {
	color: #757575;
    font-size: 0.9em;
    padding: 4px 8px;
}

/* ---------------------------------------------------------------------------- */
/* SWITCH - ACTIVE STATE														*/

.switch.active {
	background: #17ac30;
}

.switch.active .handler {
	left: 13px;
}

/* ---------------------------------------------------------------------------- */
/* SWITCH - DISABLED STATE														*/

.switch.disabled,
.switch.active.disabled {
	opacity: 0.4;
	cursor: default;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* FILE UPLOAD (NEW)																										*/

.fileupload {

}

.fileupload .btn-upload {
	height: 30px;
	border: 1px dashed rgba(0, 0, 0, 0.54);
	border-radius: 3px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	color: #767676;
	line-height: 28px;
	text-align: center;
}

.fileupload .btn-upload input[type="file"] {
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	text-indent: -9999px;
	cursor: pointer;
}

.fileupload-list {
	margin: 10px 0 0 0;
}

.fileupload-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fileupload-list ul li {
	border-bottom: 1px solid #cccccc;
	padding: 10px 120px 10px 0;
	position: relative;
}

.fileupload-list ul li.incomplete {
	color: #999999;
}

.fileupload-list .file {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.fileupload-list-options {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.fileupload-list-opt-remove,
.fileupload-list-opt-comment {
	width: 16px;
	height: 16px;
	margin-left: 10px;
	float: left;
	text-indent: -9999px;

	transition: opacity 0.2s ease-in-out;
}

/* ---------------------------------------------------------------------------- */
/* FILEUPLOAD - REMOVE 															*/

.fileupload-list-opt-remove {
	background: url('../images/icons/delete.svg');
	opacity: 0.4;
}

.fileupload-list-opt-remove:hover {
	opacity: 0.6;
	cursor: pointer;
}

/* ---------------------------------------------------------------------------- */
/* FILEUPLOAD - COMMENT 														*/

.fileupload-list-opt-comment {
	background: url('../images/icons/comment.svg');
	opacity: 0.4;
}

.fileupload-list-opt-comment:hover {
	opacity: 0.6;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* AUTOCOMPLETE																												*/

.autocomplete {
	position: relative;
}

.autocomplete-handler {
	width: 10px;
	height: 10px;
	background: transparent url('../images/icons/arrow-down.svg') center center no-repeat;
	background-size: 10px 10px;
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 9;
	transform: translateY(-50%);
	cursor: pointer;
	border: none;
}

.autocomplete-list {
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	margin: -1px 0;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 10;
	color: #333333;
}

.autocomplete-list ul {
	max-height: 160px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	overflow-y: auto;
}

.autocomplete-list ul li {
	padding: 10px 10px;
}

.autocomplete-list ul li.active {
	background: rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* BUTTONS																													*/

.btn {
	min-height: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 20px;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	white-space: pre-line;
}

.btn-fullwidth {
	width: 100%;
}

.btn-fullheight {
	height: 100%;
}

.btn > span {
	width: 100%;
	align-self: center;
}

.btn + .btn {
	margin-left: 10px;
}

.btn.has-icon {
	padding-left: 10px;
	padding-right: 10px;
}

.btn .icon16 {
	flex: 0 1 16px;
	min-width: 16px;
	max-width: 16px;
	opacity: 0.4;
}

.btn .icon16:first-child {
	margin-right: 5px;
}

.btn .icon16:last-child {
	margin-left: 5px;
}

.btn .icon16:only-child {
	margin-right: 0;
	margin-left: 0;
}

.btn.is-loading span {
	visibility: hidden;
}

.btn.is-loading .preloader-light,
.btn.is-loading .preloader-dark {
	width: 16px;
    height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

/* ---------------------------------------------------------------------------- */
/* DEFAULT BUTTON																*/

.btn-default {
	background: rgb(242,242,242);
	background: -moz-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f2f2",endColorstr="#ffffff",GradientType=1);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.54);
	border-radius: 3px;
	color: #333333;
}

.btn-default:hover {
	background: rgb(230,230,230);
	background: -moz-linear-gradient(0deg, rgba(230,230,230,1) 0%, rgba(242,242,242,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(230,230,230,1) 0%, rgba(242,242,242,1) 100%);
	background: linear-gradient(0deg, rgba(230,230,230,1) 0%, rgba(242,242,242,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6e6e6",endColorstr="#f2f2f2",GradientType=1);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.54);
	color: #333333;
}

.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default:disabled,
.btn-default:disabled:hover {
	background: rgb(242,242,242);
	background: -moz-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f2f2",endColorstr="#ffffff",GradientType=1);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #333333;
	opacity: 0.4;
	cursor: default;
}

/* ---------------------------------------------------------------------------- */
/* PRIMARY BUTTON																*/

.btn-primary.disabled {
	opacity: 0.4;
	cursor: default;
}

/* ---------------------------------------------------------------------------- */
/* SUCCESS BUTTON																*/

.btn-success {
	background: #a5d941;
	border: 0;
	border-radius: 3px;
	color: #27330F;
}

.btn-success:hover {
	background: #9ACC3D;
	border: 0;
	color: #27330F;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success:disabled,
.btn-success:disabled:hover {
	background: #a5d941;
	border: 0;
	color: #27330F;
	opacity: 0.4;
	cursor: default;
}

/* ---------------------------------------------------------------------------- */
/* GHOST BUTTON																	*/

.btn-ghost {
	background: none;
	border: none;
}

/* ---------------------------------------------------------------------------- */
/* LINK BUTTON																	*/

.btn-link {
	background: none;
	border: none;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: underline;
	vertical-align: baseline;
	color: #333333;
}

.btn-link:hover,
.btn-link:focus {
	text-decoration: none;
}

/* ---------------------------------------------------------------------------- */
/* ICON BUTTON																	*/

.btn-icon {
	background: none;
	border: 0;
	padding-left: 5px;
	padding-right: 5px;
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
}

.btn-icon:hover,
.btn-icon:focus {
	opacity: 0.8;
}

.btn-icon.active {
	opacity: 0.8;
}

.btn-icon .icon16 {
	opacity: 1;
}

/* ---------------------------------------------------------------------------- */
/* DISABLED BUTTON																*/

.btn.disabled,
.btn:disabled {
	opacity: 0.3;
	cursor: default;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* BUTTON GROUP																												*/

.btn-group {
	display: flex;
}

.btn-group .btn {
	width: auto;
	border-radius: 0;
	margin-left: -1px;
}

.btn-group .btn:first-child {
	border-radius: 3px 0 0 3px;
}

.btn-group .btn:last-child {
	border-radius: 0 3px 3px 0;
}

.btn-group .btn:only-child {
	border-radius: 3px;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* INPUT GROUP																												*/

.input-group {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.input-group input[type="text"],
.input-group input[type="password"],
.input-group input[type="email"],
.input-group input[type="search"],
.input-group input[type="number"],
.input-group input[type="tel"],
.input-group input[type="date"],
.input-group input[type="time"],
.input-group .btn {
	border-radius: 0;
}

.input-group .input {
	width: 1%;
	flex: 1 1 auto;
}

.input-group .input:first-child input[type="text"],
.input-group .input:first-child input[type="password"],
.input-group .input:first-child input[type="email"],
.input-group .input:first-child input[type="search"],
.input-group .input:first-child input[type="number"],
.input-group .input:first-child input[type="tel"],
.input-group .input:first-child input[type="date"],
.input-group .input:first-child input[type="time"],
.input-group .btn:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.input-group .input:last-child input[type="text"],
.input-group .input:last-child input[type="password"],
.input-group .input:last-child input[type="email"],
.input-group .input:last-child input[type="search"],
.input-group .input:last-child input[type="number"],
.input-group .input:last-child input[type="tel"],
.input-group .input:last-child input[type="date"],
.input-group .input:last-child input[type="time"],
.input-group .btn:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

/* ---------------------------------------------------------------------------- */
/* INPUT GROUP - PREPEND														*/

.input-group-prepend {
	margin-right: -1px;
}

.input-group-prepend input[type="text"],
.input-group-prepend input[type="password"],
.input-group-prepend input[type="email"],
.input-group-prepend input[type="search"],
.input-group-prepend input[type="number"],
.input-group-prepend input[type="tel"],
.input-group-prepend input[type="date"],
.input-group-prepend input[type="time"],
.input-group-prepend select,
.input-group-prepend .select,
.input-group-prepend .btn {
	border-radius: 3px 0 0 3px;
}

/* ---------------------------------------------------------------------------- */
/* INPUT GROUP - APPEND															*/

.input-group-append {
	margin-left: -1px;
}

.input-group-append input[type="text"],
.input-group-append input[type="password"],
.input-group-append input[type="email"],
.input-group-append input[type="search"],
.input-group-append input[type="number"],
.input-group-append input[type="tel"],
.input-group-append input[type="date"],
.input-group-append input[type="time"],
.input-group-append select,
.input-group-append .select,
.input-group-append .btn {
	border-radius: 0 3px 3px 0;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* VALIDATION																												*/

.helptext {
	margin: 5px 0 -5px 0;
	font-size: 0.9em;
}

/* ---------------------------------------------------------------------------- */
/* ERROR VALIDATION																*/

.state-error input[type="text"],
.state-error input[type="password"],
.state-error input[type="email"],
.state-error input[type="number"],
.state-error input[type="tel"],
.state-error input[type="date"],
.state-error input[type="time"] {
	background: #fdf3f2;
	border: 1px solid #dc3646;
}

.state-error select,
.state-error .select {
	background: #fdf3f2;
	border: 1px solid #dc3646;
}

.state-error .select select {
	background: none;
	border: none;
}

.state-error textarea {
	background: #fdf3f2;
	border: 1px solid #dc3646;
}

.state-error .fileupload .btn-upload {
	background: #fdf3f2;
	border: 1px dashed #dc3646;
}

.state-error .checkbox,
.state-error .radio,
.state-error .checkbox-inline,
.state-error .radio-inline {
	color: #dc3646;
}

.state-error .helptext {
	color: #dc3646;
}

/* ---------------------------------------------------------------------------- */
/* SUCCESS VALIDATION															*/

.state-success input[type="text"],
.state-success input[type="password"],
.state-success input[type="email"],
.state-success input[type="number"],
.state-success input[type="tel"],
.state-success input[type="date"],
.state-success input[type="time"] {
	border: 1px solid #c4d651;
}

.state-success select {
	border: 1px solid #c4d651;
}

.state-success textarea {
	border: 1px solid #c4d651;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* ALERTS																													*/

.alert {
	border-radius: .25rem;
	margin-bottom: 1rem;
    padding: .75rem 1.25rem;
	position: relative;
}

.alert .icon16 {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	opacity: 0.4;
}

.alert a {
	color: rgba(0, 0, 0, 0.6);
	text-decoration: underline;
}

.alert a:hover {
	color: rgba(0, 0, 0, 0.6);
}

.alert-close {
	width: 16px;
	height: 16px;
	background: url('../images/icons/cross.svg') center center no-repeat;
	position: absolute;
	top: .75rem;
	right: .75rem;
	cursor: pointer;
	opacity: 0.2;
	border: none;
}

.alert-close:hover {
	opacity: 0.6;
}

/* ---------------------------------------------------------------------------- */
/* ALERTS - INFO																*/

.alert-info {
	background-color: #79C0F2;
	color: rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------------------------- */
/* ALERTS - SUCCESS																*/

.alert-success {
	background-color: #7EE6A1;
	color: rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------------------------- */
/* ALERTS - WARNING																*/

.alert-warning {
	background-color: #FFECB2;
	color: rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------------------------- */
/* ALERTS - ERROR																*/

.alert-error {
	background-color: #FF8C9F;
	color: rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* REACT CALENDAR																											*/

.react-calendar {
	width: 240px;
	max-width: 100%;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	position: absolute;
	z-index: 99;
	font-size: 11px;
	line-height: 1.125em;
}

.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.react-calendar button {
	margin: 0;
	border: 0;
	outline: none;
}

.react-calendar button:enabled:hover {
	cursor: pointer;
}

.react-calendar__navigation {
	height: 30px;
	margin-bottom: 1em;
}

.react-calendar__navigation button {
	min-width: 30px;
	background: none;
}

.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
	background-color: #e6e6e6;
}

.react-calendar__navigation button[disabled] {
	background-color: #f0f0f0;
}

.react-calendar__month-view__weekdays {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.75em;
}

.react-calendar__month-view__weekdays__weekday {
	padding: 0.5em;
}

.react-calendar__month-view__weekNumbers {
	font-weight: bold;
}

.react-calendar__month-view__weekNumbers .react-calendar__tile {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75em;
	padding: calc(0.75em / 0.75) calc(0.5em / 0.75);
}

.react-calendar__month-view__days__day--weekend {
	color: #d10000;
}

.react-calendar__month-view__days__day--neighboringMonth {
	color: #999999;
}

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
	padding: 2em 0.5em;
}

.react-calendar__tile {
	max-width: 100%;
	text-align: center;
	padding: 0.75em 0.5em;
	background: none;
}

.react-calendar__tile:disabled {
	background-color: #f0f0f0;
}

.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
	background-color: #e6e6e6;
}

.react-calendar__tile--hasActive {
	background: #76baff;
}

.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
	background: #a9d4ff;
}

.react-calendar__tile--active {
	background: #006edc;
	color: white;
}

.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
	background: #1087ff;
}

.react-calendar--selectRange .react-calendar__tile--hover {
	background-color: #e6e6e6;
}

@media only screen and (min-width: 1441px) {

}

@media only screen and (max-width: 1440px) {
	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FORMS																												*/

	.form .row {
		margin: 0 -10px 0 -10px;
	}
}

@media only screen and (max-width: 1024px) {
	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FORMS																												*/

	.form .row {
		margin: 0 -10px 0 -10px;
	}
}

@media only screen and (max-width: 768px) {
	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FORMS																												*/

	form .row {
		margin: 0 -10px 0 -10px;
	}

	.form div[class*="col-"],
	.form div[class^="col-"] {
		padding: 6px 10px;
	}

	.form .group div[class*="col-"] {
		margin: 20px 0 0 0;
	}

	.form .group div[class*="col-"]:first-child {
		margin: 0;
	}

	.form .groupVertical, .form .groupHorizontal {
		display: block;
	}

	.form .groupVertical .group, .form .groupHorizontal .group {
		display: block;
		margin: 0 0 10px 0;
	}

	.form .fieldname {
		width: auto;
		margin: 0 0 5px 0;
		float: none;
		display: block;
		line-height: normal;
	}

	/* ------------------------------------------------------------------------ */
	/* FORMS - INPUTS															*/

	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="number"],
	input[type="tel"],
	input[type="date"],
	input[type="time"] {
		height: 40px;
		line-height: 40px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* SELECT																												*/

	select {
		height: 40px;
		line-height: 40px;
	}

	.select {
		height: 40px;
		line-height: 40px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* SWITCH																												*/

	.switch {
		width: 40px;
		height: 20px;
	}

	.switch .handler {
		width: 18px;
		height: 18px;
		left: 1px;
	}

	.switch.active .handler {
		left: 21px;
	}

	.switch input[type="checkbox"] {
		display: none;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FILE UPLOAD 																											*/

	.fileupload .btn-upload {
		height: 40px;
		line-height: 40px;
	}

	.fileupload .btn-upload input[type="file"] {
		text-indent: none;
		opacity: 0;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* BUTTONS																												*/

	.btn {
		min-height: 40px;
		padding: 10px 20px;
	}

	.btn:focus {
		outline: none;
	}

	button:focus,
	button:focus-visible {
		outline: none;
	}

	/* ---------------------------------------------------------------------------- */
	/* LINK BUTTON																	*/

	.btn-link {
		padding-left: 5px;
		padding-right: 5px;
	}

	/* ---------------------------------------------------------------------------- */
	/* ICON BUTTON																	*/

	.btn-icon {
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media only screen and (max-width: 480px) {
	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FORMS																												*/

	form .row {
		margin: 0 -10px 20px -10px;
	}

	.form div[class*="col-"],
	.form div[class^="col-"] {
		padding: 6px 10px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* REACT CALENDAR																										*/

	.react-calendar {
		width: 100%;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* BUTTON GROUP																											*/

	.btn-group {
		display: block;
	}

	.btn-group .btn {
		width: 100%;
		border-radius: 0;
		margin-top: -1px;
		margin-left: 0;
		display: inline-flex;
		justify-content: center;
	}

	.btn-group .btn:first-child {
		border-radius: 3px 3px 0 0;
	}

	.btn-group .btn:last-child {
		border-radius: 0 0 3px 3px
	}

	.btn-group .btn:only-child {
		border-radius: 3px;
	}
}