/* FONTS */
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(/assets/fonts/material-icons.woff) format('woff'),
	url(/assets/fonts/material-icons.woff2) format('woff2');
}
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}
/* GENERAL */
html, body {
	overflow-x: hidden;
	font-size: 16px;
	color: #333;
}
body > .container:not(.embed) {
	padding-bottom: 50px;
}
body > .container:not(.embed) > .row {
	margin-bottom: 50px;
}
body > .container.embed > .row {
	margin: 0;
}
body > .container.embed > .row:first-child > .col > h1:first-child,
body > .container.embed > .row:first-child > .col > h2:first-child,
body > .container.embed > .row:first-child > .col > h3:first-child,
body > .container.embed > .row:first-child > .col > h4:first-child {
	margin-top: 0;
}
p:first-child {
    margin-top: 0;
}
a {
	text-decoration: underline;
	font-weight: bold;
	transition: .35s ease-out;
}
b, strong {
	font-weight: bold;
}
img, svg {
	width: 100%;
	max-width: 100%;
}
form {
	margin: 0;
}
hr {
	margin: 1.5rem 0;
}
td, th {
	vertical-align: top;
	word-break: break-word;
}
small {
	font-size: smaller;
}
ul:not(.select-dropdown) {
    list-style-type: disc;
    padding-left: 1.05rem;
}
ul:not(.select-dropdown) li {
    list-style-type: disc;
    margin: .25rem 0;
}
ul.center-align {
	padding-left: 0;
}
ul.center-align li {
	list-style-type: none;
}
ol {
	counter-reset: element;
    list-style-type: none;
    padding: 0;
    margin-left: 0;
}
ol li {
	position: relative;
    padding-left: 50px;
    margin: .25rem 0;
}
ol li:before {
	counter-increment: element; 
	content: counter(element);
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
	border-radius: 50%;
	background: #333;
	color: white;
}
label {
	color: #333;
}

/* ALIGNS */

label.center-align {
    text-align: center;
}
.center-align p, .right-align p {
    text-align: inherit;
}
.center-align input {
    text-align: center;
}
.right-align input {
    text-align: center;
}
.fullwidth-align > * {
	width: 100%;
}

/* LOGO */

.logo {
	display: inline-block;
	margin-top: 25px;
	width: 194px;
}
.logo--small {
	width: 217px;
}

/* GRID */

.row .col {
	width: 100%;
}
.row {
	margin-bottom: 10px;
}
.row:last-child {
	margin-bottom: 0;
}
.container {
    max-width: 800px;
}
.container.embed, .embed .container {
	width: 100%;
	max-width: none;
	padding-bottom: 0.75rem;
}
@media (max-width: 600px) {
	.field-wrapper {
		margin-bottom: 10px;
	}
	.field-wrapper:last-child {
		margin-bottom: 0;
	}
	.col + .col {
		margin-top: 10px;
	}
}

/* DATE PICKER */

.picker__clear {
	padding: 0 1rem;
}
.picker__frame, .picker__holder {
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
    transition: opacity 0.15s ease-out;
}

/* FILE FIELD */

.file-field {
	transition: .35s ease-out;
}
.file-field + .field-wrapper:not(.file-field):not(.btn-field)  {
	margin-top: 50px;
}
.file-field input[type=file] {
	z-index: 2;
}
.file-field .btn {
	transition: .35s ease-out;
	width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
	background-color: transparent;
	color: #333;
	height: 40px;
	line-height: 40px;
    overflow: hidden;
}
.file-field:hover .btn {
    margin-top: 0;
	background-color: #333;
	color: white;
	height: 40px;
}
.file-field .file-path {
	height: 40px;
	line-height: 40px;
}
.file-field .btn.error {
	background-color: #F44336;
	color: white;
}
.file-field.file-field--selected .btn {
	width: 60px;
	min-width: 60px;
	padding: 0 20px;
	background-color: #333;
	color: white;
	height: 40px;
    line-height: 40px;
}
.file-field .file-path-wrapper {
	transition: .35s ease-out;
	width: 0;
	height: 0;
}
.file-field.file-field--selected .file-path-wrapper {
	width: calc(100% - 60px);
	height: auto;
	padding-left: 0;
}
.fixed-action-btn.toolbar {
	width: 100%;
	left: 0;
	bottom: 0;
	height: auto;
	overflow: hidden;
	background-color: #333;
}
.fixed-action-btn.toolbar ul li a {
	display: inline-block;
	width: auto;
	color: white;
	text-decoration: none;
}
.fixed-action-btn.toolbar ul {
	position: static;
	justify-content: center;
	padding: 0;
}
.fixed-action-btn.toolbar ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	padding: 0 1rem;
	min-height: 56px;
	border-left: 1px solid white;
	border-right: 1px solid white;
}
@media (max-width: 600px) {
	.fixed-action-btn.toolbar ul {
		flex-direction: column;
		align-items: center;
	}
	.fixed-action-btn.toolbar ul li {
		width: 100%;
		border-left: 0;
		border-right: 0;
		border-top: 1px solid white;
		border-bottom: 1px solid white;
	}
}

/* LOADER SCREEN */

#loader {
	display: none;
}
.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.75);
	z-index: 9999999999;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

/* MATERIALIZE OVERRIDES */

.select-wrapper input.select-dropdown {
	margin-bottom: 10px;
}

[type="checkbox"].filled-in:checked+label:after {
    border: 2px solid #333;
    background-color: #333;
}
[type="checkbox"].filled-in:checked+label:before {
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}
[type="checkbox"]+label {
    height: auto;
}
[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:before, [type="radio"].with-gap:checked+label:after {
    border: 2px solid #333;
}
[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:after {
	background-color: #333;
}
[type="radio"]:not(:checked)+label, [type="radio"]:checked+label {
    height: auto;
}
[data-search="true"].dropdown-content {
	top: 50px !important;
}
.dropdown-content li>a, .dropdown-content li>span {
    color: #999;
}
.character-counter {
	padding-bottom: 10px;
}
.character-counter:after {
	content: " ";
	white-space: pre;
}
input:not([type]), input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
	margin-bottom: 10px;
}
input:not([type]):focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #333;
    box-shadow: 0 1px 0 0 #333;
}
input:not([type]):focus:not([readonly])+label, input[type=text]:focus:not([readonly])+label, input[type=password]:focus:not([readonly])+label, input[type=email]:focus:not([readonly])+label, input[type=url]:focus:not([readonly])+label, input[type=time]:focus:not([readonly])+label, input[type=date]:focus:not([readonly])+label, input[type=datetime]:focus:not([readonly])+label, input[type=datetime-local]:focus:not([readonly])+label, input[type=tel]:focus:not([readonly])+label, input[type=number]:focus:not([readonly])+label, input[type=search]:focus:not([readonly])+label, textarea.materialize-textarea:focus:not([readonly])+label {
    color: #333;
}
label:not([for]) {
	font-size: 1rem;
	color: #333;
}
.field-wrapper > p > label {
	color: #999;
}

/* VALIDATION ERROR MESSAGES */

input[type=text]+label:after, input[type=number]+label:after, input[type=password]+label:after, input[type=email]+label:after, input[type=tel]+label:after, input[type=url]+label:after, textarea.materialize-textarea+label:after {
    font-size: .75rem;
    transition: .2s ease-out;

}
.select-wrapper.error+label:after {
    display: block;
    content: attr(data-error);
    position: absolute;
    opacity: 1;
    color: #F44336;
    font-size: .75rem;
}
input[type=text]+label:not(.active):after, input[type=number]+label:not(.active):after, input[type=password]+label:not(.active):after, input[type=email]+label:not(.active):after, input[type=tel]+label:not(.active):after, input[type=url]+label:not(.active):after, textarea.materialize-textarea+label:not(.active):after {
    top: 35px;

}
input[type=text]+label.active:after, input[type=number]+label.active:after, input[type=password]+label.active:after, input[type=email]+label.active:after, input[type=tel]+label.active:after, input[type=url]+label.active:after, textarea.materialize-textarea+label.active:after, .select-wrapper+label:after {
    top: 62px;

}
input:not([type]):focus.error+label:after, input[type=text]:focus.error+label:after, input[type=password]:focus.error+label:after, input[type=email]:focus.error+label:after, input[type=url]:focus.error+label:after, input[type=time]:focus.error+label:after, input[type=date]:focus.error+label:after, input[type=datetime]:focus.error+label:after, input[type=datetime-local]:focus.error+label:after, input[type=tel]:focus.error+label:after, input[type=number]:focus.error+label:after, input[type=search]:focus.error+label:after, textarea.materialize-textarea:focus.error+label:after {
    content: attr(data-error);
    color: #999;
    opacity: 1;
}
input[type=text]+label, input[type=number]+label, input[type=password]+label, input[type=email]+label, input[type=tel]+label, input[type=url]+label, .select-wrapper+label {
	max-width: calc(100% - 1.5rem);
	white-space: nowrap;
	width: 100%;
    pointer-events: none;
    text-overflow: ellipsis;
}
input:not([type]), input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
	transition: border .3s, box-shadow .3s;
}
[type="checkbox"].filled-in:not(:checked).error+label:after, [type="radio"].filled-in:not(:checked).error+label:after, [type="checkbox"].filled-in:not(:checked).error:focus+label:after, [type="radio"].filled-in:not(:checked).error:focus+label:after {
    border-color: #F44336;
}
.select-wrapper input.select-dropdown.error {
	border-bottom: 1px solid #F44336;
}
textarea.materialize-textarea.error+label[data-error]:after, textarea.materialize-textarea.error:focus+label[data-error]:after {
    position: static;
    display: inline-block;
    padding-left: 5px;
}
input.file-path.error, input.file-path:focus.error {
    border-bottom: 1px solid #F44336;
    box-shadow: 0 1px 0 0 #F44336;
}
label:not([for]) {
	color: rgba(0,0,0,0.87);
}

/* BUTTONS */

.btn, .btn-large {
    background-color: #333;
	border: 1px solid #333;
	box-shadow: none;
	line-height: 40px;
	height: auto;
	user-select: none;
}
@media (max-width: 480px) {
	.btn, .btn-large {
	    padding: 0 10px;
		width: 100%;
	}
}
.btn:hover, .btn-large:hover, .btn:focus, .btn-large:focus {
	background-color: transparent;
	color: #333;
	box-shadow: none;
}
.btn-large {
    margin-top: 10px;
}
.btn-fullwidth {
    width: 100%;
}
.btn-wrap {
	height: auto;
    overflow: initial;
    line-height: 1.5;
    padding: 20px;
}

/* MULTIPLE ELEMENTS BLOCK */

.multiple-element {
	position: relative;
}
.multiple-filters {
	margin: 0 -.75rem .75rem;
	padding: .75rem;
	border: 3px solid #ffffff;
}
.multiple-filters input {
	margin-bottom: 0 !important;
}
.multiple-buttons {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(100%);
}
@media (max-width: 900px) {
	.multiple-buttons {
		transform: translateX(50%) translateY(-50%);
	}
}
@media (max-width: 600px) {
	.multiple-buttons {
		transform: translateX(25%) translateY(-50%);
	}
}
.multiple-buttons .material-icons {
    border-radius: 50%;
    border: 1px solid;
    margin-left: 10px;
    margin-top: 1rem;
    text-decoration: none;
}
.multiple-buttons .material-icons:hover {
    border-color: #333;
    color: #333;
}
.multiple-buttons .material-icons.disabled {
    border-color: #999;
    color: #999;
}

/* PAGINATION */
.pagination {
    border: 1px solid #999;
    line-height: 1.2;
}
.pagination:first-of-type {
    margin-bottom: 25px;
    margin-top: 0;
}
.pagination:last-of-type {
    margin-top: 25px;
    margin-bottom: 0;
}
.pagination td {
	padding: 0;
    vertical-align: middle;
}
.pagination .btn {
	border-color: transparent;
	border-radius: 0;
	padding: 12px;
}
@media (max-width: 480px) {
	.pagination .btn {
	    font-size: 0;
	}
}

/* RECAPTCHA */

.container.embed .grecaptcha-badge {
	display: none !important;
}

/* LOADING SPINNER */

.spinner-wrapper {
	position: relative;
	min-height:  80px;
}
.spinner {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
}
.spinner div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.spinner div:nth-child(1) {
	left: 8px;
	animation: popup-spinner1 0.6s infinite;
	background: #333;
}
.spinner div:nth-child(2) {
	left: 8px;
	animation: popup-spinner2 0.6s infinite;
	background: #999;
}
.spinner div:nth-child(3) {
	left: 32px;
	animation: popup-spinner2 0.6s infinite;
	background: #333;
}
.spinner div:nth-child(4) {
	left: 56px;
	animation: popup-spinner3 0.6s infinite;
	background: #999;
}
@keyframes popup-spinner1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popup-spinner3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes popup-spinner2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.signature-wrapper {
	position: relative;
	width: 100%;
}
.signature {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 150px;
	max-width: 350px;
	border: 1px solid #999;
	outline: 0;
}
.signature-wrapper input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.signature-wrapper button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 350px;
	border: 1px solid #999;
	outline: 0;
	background: #999;
	color: white;
}
.signature.error {
	border: 1px solid #F44336;
	background-color: rgba(244,67,54,.1);
}
.signature-wrapper button.error {
	border: 1px solid #F44336;
}
.center-align > .signature-wrapper button {
	left: 50%;
	transform:  translateX(-50%);
}
.right-align > .signature-wrapper button {
	left: auto;
	right: 0;
}
.nomargin {
	margin: 0 !important;
}
.nomargin-top {
	margin-top: 0 !important;
}
.nomargin-bottom {
	margin-top: 0 !important;
}