@charset "utf-8";

:root {
	--main-font: 'Lato', Arial, Helvetica, sans-serif;
	--main-color: #1c87d8;
	--text-color: #444;
	--error-color: #FF0000;

	--placeholder-color: #888;

	--inactive-border-color: #bbb;
	--active-border-color: #1c87d8;

	--button-border-width: 2px;

	--button-bg: #1c87d8;
	--button-border: #0d78c9;
	--button-text: #FFF;

	--button-hover-bg: #0d78c9;
	--button-hover-border: #0d78c9;
	--button-hover-text: #FFF;

	--button-active-bg: #0e5890;
	--button-active-border: #0e5890;
	--button-active-text: #FFF;

	--cms-menu-section-text: #FFF;
	--cms-menu-section-color: #1c87d8;
	--cms-menu-option-text: #FFF;
	--cms-menu-option-hover-color: #75bbf1;
	--cms-menu-option-selected-color: #1c87d8;

	--chevron: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 307.053 307.053'%3E%3Cpath fill='%23444' d='M302.445 80.796l-11.1-11.103c-6.124-6.13-16.075-6.13-22.21 0L153.67 183.707 37.907 67.96c-6.134-6.13-16.08-6.13-22.21 0l-11.1 11.1c-6.13 6.133-6.13 16.067 0 22.2l137.83 137.83c6.13 6.136 16.067 6.136 22.203 0l137.815-136.096c6.144-6.13 6.144-16.068 0-22.198z'/%3E%3C/svg%3E");
	--chevron-hover: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 307.053 307.053'%3E%3Cpath fill='%231c87d8' d='M302.445 80.796l-11.1-11.103c-6.124-6.13-16.075-6.13-22.21 0L153.67 183.707 37.907 67.96c-6.134-6.13-16.08-6.13-22.21 0l-11.1 11.1c-6.13 6.133-6.13 16.067 0 22.2l137.83 137.83c6.13 6.136 16.067 6.136 22.203 0l137.815-136.096c6.144-6.13 6.144-16.068 0-22.198z'/%3E%3C/svg%3E");
}

*, *:before, *:after {
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box;
	border: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
}

* { margin: 0; padding: 0; border: 0; outline: 0; -webkit-appearance: none; appearance: none; }

body, html {
	color: var(--text-color); min-height: 100vh; width: 100%; max-width: 100vw; padding: 0; margin: 0; background-color: #FFF;
	-webkit-font-smoothing: subpixel-antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); -webkit-tap-highlight-color: rgba(0, 0, 0, 0); font-family: var(--main-font);
	-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; line-height: inherit;
}

hr { border: solid 1px var(--main-color); margin: 20px 10%; }

/* Links */
a:not(.button) { color: var(--main-color); text-decoration: none; }
a:not(.button):visited { color: var(--main-color); text-decoration: none; }
a:not(.button):hover { text-decoration: underline; }
a:not(.button)[disabled], a:not(.button):disabled, a:not(.button).disabled { cursor: not-allowed; opacity: 0.5; pointer-events: none; text-decoration: none; }


/* Select */
.select::-ms-expand { display: none; }
.select {
	position: relative; max-width: 100%; height: 32px; border: none; margin-bottom: 1px; padding: 0px 5px; width: 100%; font-size: 1.0rem;
	-webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 30px;
	background: rgba(0, 0, 0, 0); background-size: 20px 20px; background-repeat: no-repeat; background-position: right 5px center;
	border-bottom: solid 1px var(--inactive-border-color); color: var(--text-color); background-image: var(--chevron);
}
.select:focus,
.select:active { border-bottom: solid 2px var(--active-border-color); background-image: var(--chevron-hover); }

/* Placeholder */
.input-text::-webkit-input-placeholder { color: var(--placeholder-color); }
.input-text:-moz-placeholder { color: var(--placeholder-color); opacity:  1; }
.input-text::-moz-placeholder { color: var(--placeholder-color); opacity:  1; }
.input-text:-ms-input-placeholder { color: var(--placeholder-color); }
.input-text::-ms-input-placeholder { color: var(--placeholder-color); }


/* Inputs */
input::-ms-clear { display: none; }
input:-webkit-autofill { background-color: #FFF !important; font-family: var(--main-font); font-size: 1.0rem; }

.input-text:-webkit-autofill,
.input-text:-webkit-autofill:hover { border-bottom: solid 1px var(--inactive-border-color); -webkit-text-fill-color: var(--text-color); -webkit-box-shadow: 0 0 0px 1000px #FFF inset; box-shadow: 0 0 0px 1000px #FFF inset; }
.input-text:-webkit-autofill:focus,
.input-text:-webkit-autofill:active { border-bottom: solid 2px var(--active-border-color); }

.input-text.white-autofill:-webkit-autofill,
.input-text.white-autofill:-webkit-autofill:hover { -webkit-box-shadow: 0 0 0px 1000px #FFF inset; box-shadow: 0 0 0px 1000px #FFF inset; }

.input-text {
	position: relative; max-width: 100%; height: 32px; border: none; margin-bottom: 1px; padding: 0px 5px; width: 100%; font-size: 1.0rem;
	background: rgba(0, 0, 0, 0); border-bottom: solid 1px var(--inactive-border-color); color: var(--text-color);
}
textarea.input-text { padding: 5px; }
.input-text:focus,
.input-text:active { border-bottom: solid 2px var(--active-border-color); }

.input-text.error,
input.error, textarea.error, select.error,
input:invalid, textarea:invalid, select:invalid,
input.invalid, textarea.invalid, select.invalid { border-bottom: solid 2px var(--error-color); }

.input-text[disabled] { background-color: #EEE; color: #AAA; cursor: not-allowed; pointer-events: none; }

textarea { min-height: 7em; }

/* Animate input + label */
.animated-input  {
	width: 100%; margin-top: 22px; display: inline-block; height: 35px; /*line-height: 35px;*/
	-webkit-transition:  all 0.3s ease-in-out; -moz-transition:  all 0.3s ease-in-out; -ms-transition:  all 0.3s ease-in-out;
	-o-transition:  all 0.3s ease-in-out; transition:  all 0.3s ease-in-out;
}
.animated-input::-webkit-input-placeholder { color: var(--placeholder-color); opacity: 0; }
.animated-input:-moz-placeholder { color: var(--placeholder-color); opacity:  0; }
.animated-input::-moz-placeholder { color: var(--placeholder-color); opacity:  0; }
.animated-input:-ms-input-placeholder { color: var(--placeholder-color); opacity: 0; }
.animated-input::-ms-input-placeholder { color: var(--placeholder-color); opacity: 0; }

.animated-label {
    position: absolute !important; width: 100%; top: 26px; left: 5px; color: var(--placeholder-color);	display: inline-block; height: 25px; line-height: 25px;
	font-weight: normal; font-size: 1.1rem; 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;
	-webkit-transition:  all 0.3s ease-in-out; -moz-transition:  all 0.3s ease-in-out; -ms-transition:  all 0.3s ease-in-out;
	-o-transition:  all 0.3s ease-in-out; transition:  all 0.3s ease-in-out;
}
/*
.animated-input:focus + .animated-label,
.animated-input:active + .animated-label,
*/
.animated-input.filled + .animated-label { top: 0px; color: var(--placeholder-color); font-size: 1.0rem; left: 0px; }
.animated-input:-webkit-autofill + .animated-label { top: 0px; color: var(--placeholder-color); font-size: 1.0rem; left: 0px; }

.animated-input:focus + .animated-label,
.animated-input:active + .animated-label { top: 0px; left: 0px; font-size: 1.0rem; color: var(--active-border-color); }

.animated-input:focus::-webkit-input-placeholder { opacity: 1; }
.animated-input:focus:-moz-placeholder { opacity:  1; }
.animated-input:focus::-moz-placeholder { opacity:  1; }
.animated-input:focus:-ms-input-placeholder { opacity: 1; }
.animated-input:focus::-ms-input-placeholder { opacity: 1; }

.input-text.error + .animated-label,
input.error + .animated-label, textarea.error + .animated-label, select.error + .animated-label,
input:invalid + .animated-label, textarea:invalid + .animated-label, select:invalid + .animated-label,
input.invalid + .animated-label, textarea.invalid + .animated-label, select.invalid + .animated-label {
	color: var(--error-color);
}

input[type=date].animated-input + .animated-label,
input[type=datetime].animated-input + .animated-label,
input[type=datetime-local].animated-input + .animated-label { top: 0px; font-size: 1.0rem; left: 0px; }

.error-message { width: 100%; display: none; padding: 5px; color: var(--error-color); font-size: 0.8rem; text-align: right; }

input.error + label + .error-message,
.input-text.error + .animated-label + .error-message,
input.error + .animated-label + .error-message, textarea.error + .animated-label + .error-message, select.error + .animated-label + .error-message,
input:invalid + .animated-label + .error-message, textarea:invalid + .animated-label + .error-message, select:invalid + .animated-label + .error-message,
input.invalid + .animated-label + .error-message, textarea.invalid + .animated-label + .error-message, select.invalid + .animated-label + .error-message {
	 display: block;
}


/* Buttons */
.button {
	display: inline-flex; align-items: center; padding: 4px 12px; min-height: 32px; cursor: pointer; position: relative; text-align: center; font-size: 1.1rem;
	text-decoration: none;  border-radius: 2px; font-weight: 600; white-space: nowrap; overflow: hidden; vertical-align: middle; text-overflow: ellipsis;  touch-action: manipulation;
	border: solid var(--button-border-width) var(--button-border); background-color: var(--button-bg); color: var(--button-text);
}
.button:hover, .button:focus, .button:active { text-decoration: none; }
.button:hover, .button:focus { background-color: var(--button-hover-bg); color: var(--button-hover-text); border-color: var(--button-hover-border); }
.button:active {
	background-color: var(--button-active-bg); color: var(--button-active-text); border-color: var(--button-active-border);
	-webkit-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.5); -moz-box-shadow: inset 0px 0px 15px 1px rgba(0,0,0,0.5);
	-o-box-shadow: inset 0px 0px 15px 2px rgba(0,0,0,0.5); -ms-box-shadow: inset 0px 0px 15px 2px rgba(0,0,0,0.5); box-shadow: inset 0px 0px 15px 2px rgba(0,0,0,0.5);
}

.button[disabled], .button:disabled {
    background-color: #DDD; border: solid 1px #CCC; color: #AAA; cursor: not-allowed; pointer-events: none;
}


/* Forms */
.form {
	width: 100%; max-width: 700px; margin: 20px auto; padding: 0px; background-color: #fafafa; position: relative;
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.40); -moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.40); box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.40);
    border: 1px solid rgba(0,0,0,.4); white-space: normal;
}
.form:before { clear: both; content: ""; display: table; margin-top: -1px; height: 0; }
.form.transparent { background-color: rgba(0,0,0,0); border: none; box-shadow: none; }
.form-block { padding: 10px; }

.form-row-section,
.form-row-subsection {
	background-color: #FFF; min-height: 35px; margin-top: 0px; text-align: center; font-weight: bold;
	position: relative; display: block; width: 100%; border-bottom: solid 1px #CCC; padding: 7px 0px;
}
.form-row-subsection { background-color: rgba(0,0,0,0); border: 0px; }

.form-row-section-buttons { position: absolute; top: 5px; left: 5px; height: 24px; display: inline-flex; flex-wrap: nowrap; }
.form-row-section-buttons.right-section-buttons { left: auto; right: 5px; }

.form-row-section span,
.form-row-subsection span { padding: 0px 40px; display: block; width: 100%; line-height: 20px; }

.form-row-section-button { position: relative; margin: 0px 5px; width: 24px; height: 24px; cursor: pointer; }
.form-row-section-button path { fill: #444; }
.form-row-section-button.active path,
.form-row-section-button:hover path { fill: #1a5b84; }

.form-row-section-button.disabled { cursor: not-allowed; opacity: 0.5; pointer-events: none; }
.form-row-section-button.disabled path { fill: #BBB; }

.form-row { margin-top: 15px; color: #444; position: relative; display: block; width: 100%; vertical-align: top; line-height: normal; white-space: normal; }

.form-row-separator { height: 1px; width: 100%; background-color: #bbb; margin: 40px auto; box-shadow: 0px 1px 1px #CCC; }
.form-row-separator.small-separator { width: 50%;}

.form-description { display: block; font-size: 0.9rem; color: #666; line-height: 20px; }
.form-description ul { list-style-type: none; }
.form-description ul li { padding-left: 10px; font-size: 0.9rem; }

.label { color: var(--placeholder-color); line-height: 22px; font-weight: normal; }
/* TODO: Review*/
.form-row label.simple-label { margin-bottom: 3px; display: block; color: var(--text-color); line-height: 22px; font-weight: normal; }
.field-description { font-size: 0.8rem; display: block; width: 100%; line-height: 18px; color: #888; padding-left: 5px; margin-top: 3px; }

/* Columns */
.columns { display: flex !important; justify-content: space-around !important; flex-wrap: wrap !important; }
.columns > div { position: relative; }
.columns > div:not(:nth-last-child(1)) { padding-right: 5px; }
.columns-2 > div { width: 50%; }
.columns-3 > div { width: 33%; }
.columns-4 > div { width: 25%; }
.columns-5 > div { width: 20%; }

.columns.separated-columns > div { padding-left: 20px; }
.columns.separated-columns > div:nth-child(1) { padding-left: 0px; padding-right: 20px; }


/* TABS */
.tabs-container { display: block; padding: 10px; }
.tabs { display: flex; border: 1px solid #ccc; background-color: #222; z-index: 2; zoom: 1; }

.tabs .tab {
  background-color: inherit; border: none; outline: none; cursor: pointer;
  padding: 6px 15px; font-size: 14px; position: relative; color: #FFF;
}
.tabs .tab:not([disabled]):not(.active):hover { background-color: #444; color: #fff; }
.tabs .tab.active { background-color: #FFF; color: #444; }
.tabs .tab.active:after {
    content: ''; position: absolute; height: 3px; width: 100%; bottom: -2px; left: 0px; background-color: #FFF;
}
.tabs .tab[disabled] { color: #8a8a8a; cursor: not-allowed; }

.tabs-contents { z-index: 1; }
.tab-content { display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none; background-color: #FFF; }
.tab-content.active { display: block; }


/* Image Frame */
.image-frame {
    border: solid 1px #777; padding: 2px; background-color: #FFF; display: inline-block; position: relative;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.4); -moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.4);
	-o-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.4); box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.4);
}
.image-frame:after {
    content: ""; position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; border: solid 1px #c5c5c5;
    -webkit-box-shadow: inset 0px 0px 20px #000; -moz-box-shadow: inset 0px 0px 20px #000; -o-box-shadow: inset 0px 0px 20px #000; box-shadow: inset 0px 0px 20px #000
}
.image-frame img { width: 100%; display: block }





/* CheckBoxes - RadioButtons */
@keyframes hover-color {
  from { border-color: #c0c0c0; }
  to { border-color: var(--main-color); }
}

.radio, .checkbox { position: absolute; display: none; }
.radio[disabled], .checkbox[disabled] { cursor: not-allowed; }

.radio + label, .checkbox + label {
	position: relative; display: flex; cursor: pointer; min-height: 30px; align-items: center;
}
.radio + label:hover:before, .checkbox + label:hover:before {
	animation-duration: 0.4s; animation-fill-mode: both; animation-name: hover-color;
}
.radio + label:before, .checkbox + label:before {
	content: ''; display: inline-block; width: 20px; height: 20px; flex: 0 0 20px; border: 1px solid #c0c0c0; margin-right: 15px;
}

.radio + label:after, .checkbox + label:after {
	position: absolute; display: none; content: '';
}
.radio[disabled] + label, .checkbox[disabled] + label {
  cursor: not-allowed; color: #e4e4e4;
}

.radio[disabled] + label:hover, .radio[disabled] + label:before, .radio[disabled] + label:after,
.checkbox[disabled] + label:hover, .checkbox[disabled] + label:before, .checkbox[disabled] + label:after { cursor: not-allowed; }
.radio[disabled] + label:hover:before, .checkbox[disabled] + label:hover:before { border: 1px solid #e4e4e4; animation-name: none; }
.radio[disabled] + label:before, .checkbox[disabled] + label:before { border-color: #e4e4e4; }

.radio:checked + label:before, .checkbox:checked + label:before { animation-name: none; }
.radio:checked + label:after, .checkbox:checked + label:after { display: block; }
.radio + label:before { border-radius: 50%; }
.radio + label:after { top: 6px; left: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--main-color); }
.radio:checked + label:before { border: 1px solid var(--main-color); }
.radio:checked[disabled] + label:before { border: 1px solid #c9e2f9; }
.radio:checked[disabled] + label:after { background: #c9e2f9; }
.checkbox + label:before { border-radius: 3px; }
.checkbox + label:after {
	top: calc(50% - 1px); left: 7px; box-sizing: border-box; width: 6px; height: 12px; transform: translateY(-50%) rotate(45deg);
    border-width: 2px; border-style: solid; border-color: #fff; border-top: 0; border-left: 0;
}
.checkbox + label > span { user-select: none;}
.checkbox:checked + label:before { border-color: var(--main-color); background: var(--main-color); }
.checkbox:checked[disabled] + label:before { border-color: #c9e2f9; background: #c9e2f9; }


/* Page Loader */
.page-loader-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.8); z-index: 9999999; }

@keyframes page-loader {
  0% { opacity: 1; -webkit-transform: scale(0.6, 0.6); -moz-transform: scale(0.6, 0.6); transform: scale(0.6, 0.6); }
  100% { opacity: 0; -webkit-transform: scale(1, 1); -moz-transform: scale(1, 1); transform: scale(1, 1); }
}

@-webkit-keyframes page-loader {
  0% { opacity: 1; -webkit-transform: scale(0.6, 0.6); transform: scale(0.6, 0.6); }
  100% { opacity: 0; -webkit-transform: scale(1, 1); transform: scale(1, 1); }
}

@-moz-keyframes page-loader {
  0% { opacity: 1; -moz-transform: scale(0.6, 0.6); transform: scale(0.6, 0.6); }
  100% { opacity: 0; -moz-transform: scale(1, 1); transform: scale(1, 1); }
}

.page-loader {
	position: absolute; top: 50%; left: 0; display: block; width: 100%; max-width: 100%;
	-webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%); transform: translateY(-50%);
}

.page-loader .page-spinner {
	position: relative; margin: 0px auto; width: 64px !important; height: 64px !important;
	-webkit-transform: translate(-32px, -32px) scale(0.32) translate(32px, 32px);
	-moz-transform: translate(-32px, -32px) scale(0.32) translate(32px, 32px);
	transform: translate(-32px, -32px) scale(0.32) translate(32px, 32px);
}
.page-loader .page-spinner div > div {
	position: absolute; width: 40px; height: 40px; border-radius: 50%; background: var(--main-color);
	-webkit-animation: page-loader 1s linear infinite; -moz-animation: page-loader 1s linear infinite; animation: page-loader 1s linear infinite;
}
.page-loader .page-spinner div:nth-child(1) > div {
	left: 160px; top: 80px;
	-webkit-animation-delay: -0.916666666666667s; -moz-animation-delay: -0.916666666666667s; animation-delay: -0.916666666666667s;
}
.page-loader .page-spinner > div:nth-child(1) {
	-webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg);
	-webkit-transform-origin: 180px 100px; -moz-transform-origin: 180px 100px; transform-origin: 180px 100px;
}
.page-loader .page-spinner div:nth-child(2) > div {
	left: 149.28203231999998px; top: 120px;
	-webkit-animation-delay: -0.833333333333333s; -moz-animation-delay: -0.833333333333333s; animation-delay: -0.833333333333333s;
}
.page-loader .page-spinner > div:nth-child(2) {
	-webkit-transform: rotate(30deg); -moz-transform: rotate(30deg); transform: rotate(30deg);
	-webkit-transform-origin: 169.28203231999998px 140px; -moz-transform-origin: 169.28203231999998px 140px; transform-origin: 169.28203231999998px 140px;
}
.page-loader .page-spinner div:nth-child(3) > div {
	left: 120px; top: 149.28203231999998px;
	-webkit-animation-delay: -0.75s; -moz-animation-delay: -0.75s; animation-delay: -0.75s;
}
.page-loader .page-spinner > div:nth-child(3) {
	-webkit-transform: rotate(60deg); -moz-transform: rotate(60deg); transform: rotate(60deg);
	-webkit-transform-origin: 140px 169.28203231999998px; -moz-transform-origin: 140px 169.28203231999998px; transform-origin: 140px 169.28203231999998px;
}
.page-loader .page-spinner div:nth-child(4) > div {
	left: 80px; top: 160px;
	-webkit-animation-delay: -0.666666666666667s; -moz-animation-delay: -0.666666666666667s; animation-delay: -0.666666666666667s;
}
.page-loader .page-spinner > div:nth-child(4) {
	-webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); transform: rotate(90deg);
	-webkit-transform-origin: 100px 180px; -moz-transform-origin: 100px 180px; transform-origin: 100px 180px;
}
.page-loader .page-spinner div:nth-child(5) > div {
	left: 40px; top: 149.28203231999998px;
	-webkit-animation-delay: -0.583333333333333s; -moz-animation-delay: -0.583333333333333s; animation-delay: -0.583333333333333s;
}
.page-loader .page-spinner > div:nth-child(5) {
	-webkit-transform: rotate(120deg); -moz-transform: rotate(120deg); transform: rotate(120deg);
	-webkit-transform-origin: 60px 169.28203231999998px; -moz-transform-origin: 60px 169.28203231999998px; transform-origin: 60px 169.28203231999998px;
}
.page-loader .page-spinner div:nth-child(6) > div {
	left: 10.717967680000001px; top: 120px;
	-webkit-animation-delay: -0.5s; -moz-animation-delay: -0.5s; animation-delay: -0.5s;
}
.page-loader .page-spinner > div:nth-child(6) {
	-webkit-transform: rotate(150deg); -moz-transform: rotate(150deg); transform: rotate(150deg);
	-webkit-transform-origin: 30.71796768px 140px; -moz-transform-origin: 30.71796768px 140px; transform-origin: 30.71796768px 140px;
}
.page-loader .page-spinner div:nth-child(7) > div {
	left: 0px; top: 80px;
	-webkit-animation-delay: -0.416666666666667s; -moz-animation-delay: -0.416666666666667s; animation-delay: -0.416666666666667s;
}
.page-loader .page-spinner > div:nth-child(7) {
	-webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); transform: rotate(180deg);
	-webkit-transform-origin: 20px 100px; -moz-transform-origin: 20px 100px; transform-origin: 20px 100px;
}
.page-loader .page-spinner div:nth-child(8) > div {
	left: 10.717967680000001px; top: 40px;
	-webkit-animation-delay: -0.333333333333333s; -moz-animation-delay: -0.333333333333333s; animation-delay: -0.333333333333333s;
}
.page-loader .page-spinner > div:nth-child(8) {
	-webkit-transform: rotate(210deg); -moz-transform: rotate(210deg); transform: rotate(210deg);
	-webkit-transform-origin: 30.71796768px 60px; -webkit-moz-origin: 30.71796768px 60px; transform-origin: 30.71796768px 60px;
}
.page-loader .page-spinner div:nth-child(9) > div {
	left: 40px; top: 10.717967680000001px;
	-webkit-animation-delay: -0.25s; -moz-animation-delay: -0.25s; animation-delay: -0.25s;
}
.page-loader .page-spinner > div:nth-child(9) {
	-webkit-transform: rotate(240deg); -moz-transform: rotate(240deg); transform: rotate(240deg);
	-webkit-transform-origin: 60px 30.71796768px; -moz-transform-origin: 60px 30.71796768px; transform-origin: 60px 30.71796768px;
}
.page-loader .page-spinner div:nth-child(10) > div {
	left: 80px; top: 0px;
	-webkit-animation-delay: -0.166666666666667s; -moz-animation-delay: -0.166666666666667s; animation-delay: -0.166666666666667s;
}
.page-loader .page-spinner > div:nth-child(10) {
	-webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); transform: rotate(270deg);
	-webkit-transform-origin: 100px 20px; -moz-transform-origin: 100px 20px; transform-origin: 100px 20px;
}
.page-loader .page-spinner div:nth-child(11) > div {
	left: 120px; top: 10.717967680000001px;
	-webkit-animation-delay: -0.083333333333333s; -moz-animation-delay: -0.083333333333333s; animation-delay: -0.083333333333333s;
}
.page-loader .page-spinner > div:nth-child(11) {
	-webkit-transform: rotate(300deg); -moz-transform: rotate(300deg); transform: rotate(300deg);
	-webkit-transform-origin: 140px 30.71796768px; -moz-transform-origin: 140px 30.71796768px; transform-origin: 140px 30.71796768px;
}
.page-loader .page-spinner div:nth-child(12) > div {
	left: 149.28203231999998px; top: 40px;
	-webkit-animation-delay: 0s; -moz-animation-delay: 0s; animation-delay: 0s;
}
.page-loader .page-spinner > div:nth-child(12) {
	-webkit-transform: rotate(330deg); -moz-transform: rotate(330deg); transform: rotate(330deg);
	-webkit-transform-origin: 169.28203231999998px 60px; -moz-transform-origin: 169.28203231999998px 60px; transform-origin: 169.28203231999998px 60px;
}
.page-loader .page-spinner div:nth-child(13) > div {
	left: 160px; top: 80px;
	-webkit-animation-delay: 0.083333333333333s; -moz-animation-delay: 0.083333333333333s; animation-delay: 0.083333333333333s;
}
.page-loader .page-spinner > div:nth-child(13) {
	-webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); transform: rotate(360deg);
	-webkit-transform-origin: 180px 100px; -moz-transform-origin: 180px 100px; transform-origin: 180px 100px;
}