/* Search Box */

.search-box {
	width: 21.944em;
	max-width: 100%;
	background-color: rgb(var(--white));
	border-style: solid;
	border-color: rgb(var(--blue));
	border-width: 1px 1px 4px;
	box-shadow: 0 3px 6px rgba(var(--black), 0.1);
	border-radius: 0.278em;
}

.text-center .search-box {
	margin-left: auto;
	margin-right: auto;
}

.search-box input, 
.search-box select {
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.search-box > a, 
.search-box > button {
	flex: 0 0 auto;
	margin-right: 0.889rem;
}

.search-box > a:not([class*='btn']), 
.search-box > button:not([class*='btn']) {
	color: rgb(var(--blue));
	font-size: 1.111em;
	transition: color 0.35s ease;
}

.search-box > a:not([class*='btn']):hover, 
.search-box > button:not([class*='btn']):hover,
.search-box > a:not([class*='btn']):focus, 
.search-box > button:not([class*='btn']):focus {
	color: rgb(var(--red));
}

.search-box > .btn {
	padding: 0.75em 1.25em;
	margin-right: -3px;
} 

/* Search Box */

/* Input Text */

.input-text {
	position: relative;
	font-size: 1rem;
	line-height: 1.222;
	flex: 1 1 auto;
	text-align: left;
}

.input-text + .input-text {
	margin-top: 0.25em;
}

.input-text > svg {
	position: absolute;
	font-size: 1em;
	bottom: 0.8em;
	right: 1rem;
	color: rgb(var(--blue));
}

/* Input Text */

/* Labels */

label {
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.778em;
	text-align: left;
}

.input-text[class*='nlf'] > label {
	margin-bottom: 0;
	margin-right: 1em;
}

/* Labels */

/* Inputs, Selects, Textareas */

input, select, textarea {
	display: block;
	width: 100%;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: rgb(var(--dark));
	padding: 0.556em 1em;
	margin: 0;
	background-color: rgb(var(--white));
	border-style: solid;
	border-color: rgb(var(--blue));
	border-width: 1px 1px 4px;
	border-radius: 0.278em;
	box-shadow: 0 3px 6px rgba(var(--black), 0.1);
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	resize: none;
}

.input-text > svg ~ input, .input-text > svg ~ select, .input-text > svg ~ textarea {
	padding-right: 3rem;
}

textarea {
	height: 5em;
}

/* Inputs, Selects, Textareas */

/* Radio Buttons & Checkboxes */

[type='radio'], 
[type='checkbox'] {
	display: none;
	visibility: hidden;
}

[type='radio'] + label, 
[type='checkbox'] + label {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-right: 2.5em;
}

[type='radio'] + label:before, 
[type='checkbox'] + label:before {
	content: '';
	display: block;
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	border: solid 2px;
	flex: 0 0 auto;
	margin-right: 0.5em;
}

[type='radio'] + label:after, 
[type='checkbox'] + label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	background-color: rgb(var(--sky-blue));
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

[type='radio']:checked + label:after, 
[type='checkbox']:checked + label:after {
	opacity: 1;
	transform: scale(0.45);
}

/* Radio Buttons & Checkboxes */

/* File Uploader */

[type='file']::-webkit-file-upload-button {
	margin-right: 1em;
}

.cms-uploading [type='file'] {
	pointer-events: none;
	color: transparent;
}

.cms-uploading [type='file']::-webkit-file-upload-button {
    opacity: 0;
}

.upload-clear, 
.upload-status {
	display: none;
	position: absolute;
	bottom: 1em;
	right: 1em;
}

.filled > .upload-clear, 
.cms-uploading .upload-status {
	display: block;
}

.upload-status .error, 
.upload-clear {
	color: rgb(var(--red));
}

.upload-status .loading {
	color: rgb(var(--sky-blue));
}

.upload-status .completed {
	color: rgb(var(--green));
}

.upload-status svg {
	display: none;
}

.cms-loading .loading, 
.cms-complete .completed, 
.cms-error .error {
	display: block;
}

.cms-loading .loading {
	animation: loading 3s linear infinite;
}

@keyframes loading {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.upload-file {
	color: rgb(var(--dark));
    position: absolute;
    top: 0.667em;
    left: 1em;
}

.upload-progress {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 4px;
}

.upload-progress div {
	position: absolute;
	height: 100%;
	width: 0;
	top: 0;
	left: 0;
	transition: width 0.25s linear;
}

.upload-progress.cms-loading div {
	background-color: rgb(var(--sky-blue));
}

.upload-progress.cms-complete div {
	background-color: rgb(var(--green));
}

.upload-progress.cms-error div {
	background-color: rgb(var(--red));
}

.ui-multifile-input [data-item='i'] {
	display: none;
}

.ui-multifile-input [data-item='i'].active {
	display: block;
}

.ui-multifile-input.ui-ajax [data-item='i'] {
	display: block;
}

.disable,
.btn:disabled {
	filter: grayscale(100%);
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* File Uploader */

/* Placeholders */

::-webkit-input-placeholder {
	color: rgb(var(--dark));
    opacity: 1;
}

:-moz-placeholder {
	color: rgb(var(--dark));
    opacity: 1;
}

::-moz-placeholder {
	color: rgb(var(--dark));
    opacity: 1;
}

::-ms-input-placeholder {
	color: rgb(var(--dark));
    opacity: 1;
}

/* Placeholders */

/* Validation */

.validation {
    position: absolute;
    bottom: 0.25em;
    right: 0.25em;
    font-size: 0.778em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5em);
    color: #E40000;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

[type='radio'] ~ .validation, 
[type='checkbox'] ~ .validation {
	right: auto;
	left: calc(-0.4em + 1px);
	bottom: auto;
	top: 100%;
	margin-top: calc(0.4em + 2px);
	padding: 0.2em 0.4em;
	background-color: rgb(var(--red));
	color: rgb(var(--white));
}

[type='radio'] ~ .validation:before, 
[type='checkbox'] ~ .validation:before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0.4em;
	border-style: solid;
	border-width: 0 0.5em 0.5em 0.5em;
	border-color: transparent transparent rgb(var(--red)) transparent;
}

[data-validity='patternMismatch'] [data-type='patternMismatch'],
[data-validity='patternMismatch'] ~ [data-type='patternMismatch'],
[data-validity='typeMismatch'] [data-type='typeMismatch'],
[data-validity='typeMismatch'] ~ [data-type='typeMismatch'],
[data-validity='valueMissing'] [data-type='valueMissing'],
[data-validity='valueMissing'] ~ [data-type='valueMissing'] {
    opacity: 1;
    transform: translate(0);
    visibility: visible;
    pointer-events: auto;
}

/* Validation */

/* Responsive [1440px] */

@media screen and (max-width: 1440px) {
}

/* End Responsive [1440px] */

/* Responsive [1200px] */

@media screen and (max-width: 1200px) {
}

/* End Responsive [1200px] */

/* Responsive [1000px] */

@media screen and (max-width: 1000px) {
}

/* End Responsive [1000px] */

/* Responsive [800px] */

@media screen and (max-width: 800px) {
}

/* End Responsive [800px] */

/* Responsive [650px] */

@media screen and (max-width: 650px) {
}

/* End Responsive [650px] */

/* Responsive [550px] */

@media screen and (max-width: 550px) {
	.input-text {
		font-size: 16px;
	}
	
	label {
		font-size: inherit;
	}
	
	[type='radio'] + label, 
	[type='checkbox'] + label {
		margin-right: 1.5em;
	}
}

/* End Responsive [550px] */