/* ---------------------------------------------------------------------------------------------------- */
/* 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;
}

/* ---------------------------------------------------------------------------------------------------- */
/* TEXTFIELD																							*/

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);
	border-radius: 3px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	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"]::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;
}

/* ------------------------------------------------------------ */
/* TEXTFIELD (HOVER)											*/

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="time"]:hover {
	border: 1px solid rgba(0, 0, 0, 0.64);
}

/* ------------------------------------------------------------ */
/* TEXTFIELD (FOCUS)											*/

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;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #73bfe5;
}

/* ------------------------------------------------------------ */
/* TEXTFIELD (DISABLED)											*/

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

input[type="text"].is-disabled:focus,
input[type="password"].is-disabled:focus,
input[type="email"].is-disabled:focus,
input[type="search"].is-disabled:focus,
input[type="number"].is-disabled:focus,
input[type="tel"].is-disabled:focus,
input[type="date"].is-disabled:focus,
input[type="time"].is-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;
}

/* ------------------------------------------------------------ */
/* TEXTFIELD - 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;
}

/* ------------------------------------------------------------ */
/* TEXTFIELD - HAS ICON LEFT									*/

.has-icon-left {
	position: relative;
}

.has-icon-left input[type="text"],
.has-icon-left input[type="url"],
.has-icon-left input[type="password"],
.has-icon-left input[type="email"],
.has-icon-left input[type="number"],
.has-icon-left input[type="tel"],
.has-icon-left input[type="date"],
.has-icon-left input[type="time"],
.has-icon-left input[type="search"] {
	padding-left: 36px;
}

.has-icon-left > .icon12:first-child,
.has-icon-left > .icon16:first-child {
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 1;
	transform: translateY(-50%);
	opacity: 0.4;
}

.has-icon-left > .btn:first-child {
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	z-index: 1;
}

/* ------------------------------------------------------------ */
/* TEXTFIELD - HAS ICON RIGHT									*/

.has-icon-right {
	position: relative;
}

.has-icon-right input[type="text"],
.has-icon-right input[type="url"],
.has-icon-right input[type="password"],
.has-icon-right input[type="email"],
.has-icon-right input[type="number"],
.has-icon-right input[type="tel"],
.has-icon-right input[type="date"],
.has-icon-right input[type="time"],
.has-icon-right input[type="search"] {
	padding-right: 36px;
}

.has-icon-right input ~ .icon12,
.has-icon-right input ~ .icon16 {
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 1;
	transform: translateY(-50%);
	opacity: 0.4;
}

.has-icon-right input ~ .btn {
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	z-index: 1;
}

/* ---------------------------------------------------------------------------------------------------- */
/* 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);
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	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,
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.is-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;
}

/* ---------------------------------------------------------------------------------------------------- */
/* 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 5px;
	transition: transform 0.2s ease-in-out;
}

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

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

.dropdown-menu-header {
	border-bottom: 1px solid #e5e5e5;
	padding: 5px 10px;
	font-weight: bold;
}

.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;
	overflow: hidden;
	animation: fadeInUp 0.3s;
	animation-fill-mode: both;
	color: #333333;
}

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

.dropdown-menu-content {
	max-height: 160px;
	overflow: hidden;
	overflow-y: auto;
}

/* ------------------------------------------------------------ */
/* DROPDOWN MENU - GROUP										*/

.dropdown-menu-group:not(:first-child) {
	border-top: 1px solid #e5e5e5;
}

.dropdown-menu-group-header {
	padding: 10px;
	color: #808080;
	font-size: 10px;
	text-transform: uppercase;
}

/* ------------------------------------------------------------ */
/* DROPDOWN MENU - ITEM											*/

.dropdown-menu a,
.dropdown-menu-item {
	padding: 10px;
	display: flex;
	justify-content: space-between;
	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.is-disabled,
.dropdown-menu a.is-disabled:hover,
.dropdown-menu a.is-disabled:focus,
.dropdown-menu-item.is-disabled,
.dropdown-menu-item.is-disabled:hover,
.dropdown-menu-item.is-disabled:focus {
	background: none;
	color: #333333;
	opacity: 0.4;
	cursor: default;
}

.dropdown-menu a.is-selected,
.dropdown-menu-item.is-selected {
	font-weight: bold;
}

.dropdown-menu-item span:first-child {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ------------------------------------------------------------ */
/* DROPDOWN MENU - POSITIONS									*/

.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);
	border-radius: 3px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 8px 10px;
	display: block;
	resize: vertical;
	color: #333333;
	font-size: 12px;
	line-height: 18px;
	font-family: inherit;
	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::placeholder {
	color: #999999;
	font-style: italic;
}

/* ------------------------------------------------------------ */
/* TEXTAREA (HOVER)												*/

.textarea textarea:hover {
	border: 1px solid rgba(0, 0, 0, 0.64);
}

/* ------------------------------------------------------------ */
/* TEXTAREA (FOCUS)												*/

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 (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);
}

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

textarea.is-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																							*/

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

.fileupload-droparea:focus {
	border-color: #a5d941;
	outline: none;
}

.fileupload-droparea input[type="file"] {
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: 0.0;
	cursor: pointer;
}

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

.fileupload-item.is-incomplete {
	color: #808080;
}

.fileupload-item {
	border-bottom: 1px solid #cccccc;
	padding: 10px 0 10px 0;
	display: flex;
}

.fileupload-item-title {
	flex: 1 0 0%;
	align-self: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.fileupload-item-options {
	flex: 0 0 auto;
	display: flex;
}

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

.autocomplete {
	position: relative;
}

.autocomplete-toggle-arrow {
	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-menu {
	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-menu-content {
	max-height: 160px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	overflow-y: auto;
}

.autocomplete-menu-item {
	padding: 5px 10px 5px 10px;
}

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

.autocomplete-menu-item.is-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;
}

.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;
}

.btn-icon:hover .icon16,
.btn-icon:focus .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											*/

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

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

.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="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 .input:first-child input[type="search"] {
	border-radius: 3px 0 0 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="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 .input:last-child input[type="search"] {
	border-radius: 0 3px 3px 0;
}

.input-group .input:not(:last-child) {
	margin-right: -1px;
}

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

.input-group select {
	border-radius: 0;
}

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

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

.input-group select:not(:last-child) {
	margin-right: -1px;
}

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

.input-group .dropdown .btn {
	border-radius: 0;
}

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

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

.input-group .dropdown:not(:last-child) .btn {
	margin-right: -1px;
}

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

.input-group .btn {
	border-radius: 0;
}

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

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

.input-group .btn:not(:last-child) {
	margin-right: -1px;
}

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

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

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

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"].state-error {
	background: #fdf3f2;
	border: 1px solid #dc3646;
}

input[type="text"].state-error:focus,
input[type="password"].state-error:focus,
input[type="email"].state-error:focus,
input[type="number"].state-error:focus,
input[type="tel"].state-error:focus,
input[type="date"].state-error:focus,
input[type="time"].state-error:focus {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(220, 55, 70, 0.4);
}

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

select.state-error:focus {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(220, 55, 70, 0.4);
}

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

textarea.state-error:focus {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(220, 55, 70, 0.4);
}

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

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

.dropdown.state-error .btn-link {
	color: #dc3646;
}

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

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

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

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"] .state-success {
	border: 1px solid #c4d651;
}

input[type="text"].state-success:focus,
input[type="password"].state-success:focus,
input[type="email"].state-success:focus,
input[type="number"].state-success:focus,
input[type="tel"].state-success:focus,
input[type="date"].state-success:focus,
input[type="time"].state-success:focus {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(195, 215, 80, 0.4);
}

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

select.state-success:focus {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(195, 215, 80, 0.4);
}

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

textarea.state-success:focus {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(195, 215, 80, 0.4);
}

.state-success + .helptext {
	color: #c4d651;
}

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

.alert {
	border-radius: 4px;
	margin-bottom: 1rem;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.alert-icon {
	padding: 10px;
	flex: 0 1 auto;
}

.alert-icon .icon16 {
	opacity: 0.4;
}

.alert-body {
	padding: 10px;
	flex: 1 1 auto;
}

.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);
}

@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 .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;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* 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;
	}
}