@font-face {
	font-family: 'Gotham';
	src: url('/fonts/Gotham-Bold.eot');
	src: url('/fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Gotham-Bold.woff2') format('woff2'),
		url('/fonts/Gotham-Bold.woff') format('woff'),
		url('/fonts/Gotham-Bold.ttf') format('truetype'),
		url('/fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham';
	src: url('/fonts/Gotham-Light.eot');
	src: url('/fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Gotham-Light.woff2') format('woff2'),
		url('/fonts/Gotham-Light.woff') format('woff'),
		url('/fonts/Gotham-Light.ttf') format('truetype'),
		url('/fonts/Gotham-Light.svg#Gotham-Light') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham';
	src: url('/fonts/Gotham-Medium.eot');
	src: url('/fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Gotham-Medium.woff2') format('woff2'),
		url('/fonts/Gotham-Medium.woff') format('woff'),
		url('/fonts/Gotham-Medium.ttf') format('truetype'),
		url('/fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham';
	src: url('/fonts/Gotham-Book.eot');
	src: url('/fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Gotham-Book.woff2') format('woff2'),
		url('/fonts/Gotham-Book.woff') format('woff'),
		url('/fonts/Gotham-Book.ttf') format('truetype'),
		url('/fonts/Gotham-Book.svg#Gotham-Book') format('svg');
	font-weight: normal;
	font-style: normal;
}

html {
	overflow: -moz-scrollbars-vertical;
	height: 100%;
}

body {
	font-family: Gotham, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	height: 100%;
	width: 100%;
	color: #333;
	position: relative;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,0.03);
}

	/*
	@media (prefers-color-scheme: dark) {

		body {
			background: #121212;
			color: #ddd;
		}

		img.icon {
			filter: invert(100%);
		}

	}
	*/

strong, b, strong *, b * {
	font-family: Gotham, Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
	padding-bottom: 0.7em;
}

h1 {
	font-size: 2.2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.2em;
	font-weight: 600;
}

h4 {
	font-size: 1.1em;
}

h5 {
	font-size: 1.1em;
}

p {
	padding-bottom: 20px;
}

i {
	font-style: italic;
}

	@media (max-width: 767px) {

		h1 {
			font-size: 1.9em;
			padding: 10px 20px;
		}

		h2 {
			font-size: 1.5em;
		}

	}

sup {
	vertical-align: super;
	font-size: 0.7em;
}

.fieldset-container {
	margin: -3px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

	.fieldset-container fieldset {
		margin: 3px;
		padding-bottom: 4px;
	}

	fieldset {
		display: block;
	}

label {
	display: block;
	padding-bottom: 4px;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
}

select {
	display: block;
	width: 100%;
	padding: 12px 8px;
	border-radius: 2px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	border-radius: 2px !important;
	border: 0 !important;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1) !important;
}

input {
	font-family: Gotham, Helvetica, Arial, sans-serif;
	font-style: normal;
	background: rgba(255,255,255,1);
	border-radius: 2px;
	border: 0;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
	padding: 0 8px;
	line-height: 40px;
	display: block;
	width: 100%;
	transition-duration: 0.3s !important;
}

	input:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #aaa;
	}

	input::-ms-input-placeholder { /* Microsoft Edge */
		color: #aaa;
	}

	input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #aaa;
		opacity: 1; /* Firefox */
	}

	input:disabled {
		color: #aaa;
		opacity: 0.9;
		filter: contrast(0.95);
	}

	input:not([disabled]):hover {
		box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
	}

	/*
	@media (prefers-color-scheme: dark) {

		select {
			background: rgba(255,255,255,0.1);
			color: #eee;
		}

		input {
			background: rgba(255,255,255,0.1);
			color: #eee;
		}

		input:-ms-input-placeholder,
		input::-ms-input-placeholder,
		input::placeholder {
			color: #444;
			opacity: 1;
		}

		input:disabled {
			color: #444;
			opacity: 0.9;
			filter: contrast(0.5);
		}

	}
	*/

ol, ul {
	list-style-type: disc;
	margin: 5px 0 10px 0;
}

ol > * > ol, ul > * > ul {
	list-style-type: circle;
}

	ul li {
		margin: 5px 0;
		margin-left: 20px;
		padding-left: 3px;
	}

hr {
	margin: 25px 0 25px 0;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.2);
}

	/*
	@media (prefers-color-scheme: dark) {

		hr {
			border-top: 1px solid rgba(255,255,255,.3);
		}

	}
	*/

a,
a:focus,
a:hover
{
	color: #e84662;
	text-decoration: none;
}

*:focus-visible {
	outline: 2px solid rgb(221, 77, 107, 0.8);
	outline-offset: -2px;
}

table {
	width: 100%;
}

	table th {
		padding: 5px 3px;
		text-align: left;
		border-bottom: 2px solid rgba(0,0,0,0.3);
		text-transform: uppercase;
		font-size: 0.7em;
		font-weight: 700;
	}

	table td {
		padding: 7px 3px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}

	table tr:hover td {
		background: rgba(0,0,0,0.03);
	}

	/*
	@media (prefers-color-scheme: dark) {

		table th {
			border-bottom: 2px solid rgba(255,255,255,0.3);
		}

		table td {
			border-bottom: 1px solid rgba(255,255,255,0.2);
		}

		table tr:hover td {
			background: rgba(255,255,255,0.03);
		}

	}
	*/

.button {
	font-weight: 600;
	font-size: 1em;
	display: block;
	width: 100%;
	font-family: 'Gotham';
	border-radius: 2px;
	background: #16a1ce;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.5);
	cursor: pointer;
	transition-duration: 0.3s;
	text-align: center;
	line-height: 40px;
	padding: 0 15px;
	border: 0;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
}

	.button:hover,
	.button:focus {
		filter: brightness(1.1);
		color: #fff;
		box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
	}

	.button-secondary {
		background: #fff;
	}

		/*
		@media (prefers-color-scheme: dark) {

			.button-secondary {
				background: #333;
			}

		}
		*/

	.button .icon {
		width: 14px;
		position: relative;
		top: 2px;
	}

	.button-sm {
		line-height: 34px;
		font-size: 0.9em;
	}

.nav-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 80px;
	height: 100%;
	padding-top: 20px;
	transition-duration: 0.3s;
	background: #fff;
	box-shadow: 0px 0px 50px -30px rgba(0,0,0,0.30);
	z-index: 99;
}

	.nav-container:hover {
		box-shadow: 0px 0px 50px -20px rgba(0,0,0,0.30);
	}

	.nav-container a {
		display: block;
		width: 80px;
		position: relative;
		padding: 30px;
		transition-duration: 0.3s;
		z-index: 1;
		color: #333;
	}

		.nav-container a:hover,
		.nav-container a:focus {
			color: #333;
			z-index: 2;
		}

		.nav-container a img {
			position: absolute;
			margin: auto;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 20px;
			height: 20px;
		}

		.nav-container .nav-label {
			display: none;
		}

		.nav-container a .bg {
			position: absolute;
			margin: auto;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 45px;
			height: 45px;
			border-radius: 3px;
		}

			.nav-container a:hover .bg {
				background: rgba(0,0,0,0.05);
			}

			.nav-container a.active .bg {
				background: linear-gradient(315deg, rgb(30,30,30) 0%, rgb(90,90,90) 100%);
			}

				.nav-container a.active img {
					filter: invert(100%)  drop-shadow(0 1px 1px rgba(0, 0, 0, .5));
				}

	.nav-toggle {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		padding: 20px;
		z-index: 99;
		line-height: 0;
	}

		.nav-toggle[name="nav-open"] {
			position: absolute;
		}

		.nav-toggle img {
			width: 20px;
			height: 20px;
		}

	@media (max-width: 767px) {

		.nav-container {
			top: 0;
			right: 0;
			bottom: 0;
			left: 100%;
			width: 100%;
			box-shadow: none;
			background: #fff;
			padding-top: 60px;
		}

			.nav-container a {
				width: 100%;
				box-shadow: 0px -1px 0 0 rgba(0,0,0,0.1);
				padding: 20px;
				padding-left: 60px;
			}

				.nav-container a .bg {
					left: 10px;
					right: auto;
					width: 40px;
					height: 40px;
				}

				.nav-container a img {
					left: 20px;
					right: auto;
				}

			.nav-container .nav-label {
				display: block;
			}

		body.nav-open .nav-container {
			left: 0;
		}

		.nav-toggle[name="nav-open"] {
			display: block;
		}

		.nav-toggle[name="nav-close"] {
			display: none;
		}

		body.nav-open .nav-toggle[name="nav-open"] {
			display: none;
		}

		body.nav-open .nav-toggle[name="nav-close"] {
			display: block;
		}

	}

	/*
	@media (prefers-color-scheme: dark) {

		.nav-container {
			background: #2d2d2d;
		}

		.nav-container a,
		.nav-container a:hover,
		.nav-container a:focus {
			color: #ddd;
		}

		body.nav-open .nav-container a:hover {
			box-shadow: none;
			background: rgba(255,255,255,0.05);
		}

		.nav-container a:hover .bg {
			background: rgba(255,255,255,0.05);
		}

		.nav-container a.active .bg {
			background: linear-gradient(315deg, rgb(200,200,200) 0%, rgb(250,250,250) 100%);
		}

			.nav-container a.active img {
				filter: none;
			}

	}
	*/

.content-container {
	padding: 25px 30px;
	margin-left: 80px;
	max-width: 1400px;
	height: 100%;
}

	.content-box {
		margin-bottom: 20px;
		overflow: hidden;
		display: block;
		position: relative;
		z-index: 1;
		transition-duration: 0.3s;
		background: #fff;
		border-radius: 3px;
	}

		.content-box.padded {
			padding: 25px;
		}

		.content-box {
			box-shadow: 0px 5px 30px -15px rgba(0,0,0,0.20);
		}

			.content-box:hover {
				z-index: 2;
				box-shadow: 0px 5px 40px -15px rgba(0,0,0,0.30);
			}

	@media (max-width: 767px) {

		.content-container {
			padding: 0;
			margin-left: 0;
		}

			.content-box {
				margin: 5px;
			}

	}

	/*
	@media (prefers-color-scheme: dark) {

		.content-box {
			background: #2d2d2d;
		}

	}
	*/

.overlay-zoom {
	background: rgba(255,255,255,0.6);
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition-duration: 0.5s;
	opacity: 0;
}

	.overlay-zoom .icon {
		width: 30px;
		height: 30px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		filter: drop-shadow(0 0 1px rgba(255,255,255));
	}

	.overlay-zoom:hover {
		opacity: 1;
	}

	/*
	@media (prefers-color-scheme: dark) {

		.overlay-zoom {
			background: rgba(0,0,0,0.4);
		}

		.overlay-zoom .icon {
			filter: invert(100%) drop-shadow(0 1px 1px rgb(0, 0, 0));
		}

	}
	*/

.notification {
	font-size: 0.9em;
	background: rgba(125,125,125,0.2);
	padding: 13px 18px;
	border: 1px solid rgba(125,125,125,0.4);
	margin-bottom: 20px;
	border-radius: 2px;
}

	.notification-success {
		color: #509947;
		background: rgba(50,200,20,0.2);
	}

	.notification-error {
		color: #bb6767;
		background: rgba(200,20,20,0.2);
	}

.lightbox-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

	.lightbox-bg {
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		width: 100%;
		height: 100%;
		z-index: -1;
	}

	.lightbox {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		overflow: hidden;
		z-index: 2;
	}

		.lightbox-image {
			width: 100%;
			height: 100%;
		}

		.lightbox-preview {
			object-fit: cover;
			position: absolute;

			left: -9999px;
			right: -9999px;
			top: -9999px;
			bottom: -9999px;
			margin: auto;

			width: calc(100% + 40px);
			height: calc(100% + 40px);

			filter: blur(10px);
		}

	.lightbox-caption {
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		padding: 20px;
		font-size: 0.9em;
		background: rgba(0,0,0,0.5);
		color: #ddd;
		transition-duration: 0.3s;
		opacity: 0.5;
		z-index: 3;
	}

		.lightbox-caption:hover {
			opacity: 1;
		}

	.lightbox-close {
		position: absolute;
		top: 0;
		right: 0;
		padding: 20px;
		background: rgba(0,0,0,0.5);
		opacity: 0.5;
		line-height: 0;
		transition-duration: 0.3s;
		z-index: 3;
	}

		.lightbox-close:hover {
			opacity: 1;
		}

		.lightbox-close img {
			width: 20px;
			height: 20px;
			filter: invert(100%) drop-shadow(0 1px 1px #000);
		}

/*.caption {
	position: absolute;
	bottom: 3px;
	right: 3px;
	background: rgba(0,0,0,0.5);
	padding: 6px 7px;
	color: #fff;
	line-height: 1em;
	font-size: 0.5em;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 0.5;
	transition-duration: 0.2s;
	text-shadow: 0 1px 1px rgba(0,0,0,0.7);
	pointer-events: none;
	border-radius:  2px;
}

	*:hover > .caption {
		opacity: 1;
	}*/

.footer-container {
	max-width: 1400px;
	margin-bottom: 20px;
	padding: 10px 0;
}

	.footer-container a,
	.footer-container a:hover,
	.footer-container a:focus {
		color: #333;
	}

	.footer-container .footer-box {
		display: inline-block;
	}

		.footer-container .footer-box.right {
			float: right;
		}

	.footer-box {
		padding: 10px 5px;
	}

		.footer-box:hover {
			opacity: 0.6;
		}

	.footer-container img {
		height: 15px;
		position: relative;
		top: 3px;
		margin-right: 3px;
		margin-top: -10px;
		opacity: 0.7;
	}

	@media (max-width: 767px) {

		.footer-container {
			padding: 20px;
		}

		.footer-container .footer-box.right {
			float: none;
		}

	}

.visible-xs {
	display: none !important;
}

.hidden-xs {
}

	@media (max-width: 767px) {

		.visible-xs {
			display: inherit !important;
		}

		.hidden-xs {
			display: none !important;
		}

	}

.load-dots {
	color: #333333;
	font-size: 3px;
	position: absolute;
	z-index: 999999;
	top: 0;
	right: 0;
	left: 0;
	bottom: 15px;
	margin: auto;
}
.load-dots,
.load-dots:before,
.load-dots:after {
	border-radius: 100%;
	width: 8px;
	height: 8px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load-dots 1.0s infinite ease-in-out;
	animation: load-dots 1.0s infinite ease-in-out;
}
.load-dots:before,
.load-dots:after {
	content: '';
	position: absolute;
}
.load-dots:before {
	left: -20px;
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s;
}
.load-dots:after {
	left: 20px;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

	@-webkit-keyframes load-dots {
		0%,
		80%,
		100% {
			box-shadow: 0 8px 0 -4px;
		}
		40% {
			box-shadow: 0 8px 0 0;
		}
	}

	@keyframes load-dots {
		0%,
		80%,
		100% {
			box-shadow: 0 8px 0 -4px;
		}
		40% {
			box-shadow: 0 8px 0 0;
		}
	}

	/*
	@media (prefers-color-scheme: dark) {

		.load-dots {
			color: #aaa;
		}

	}
	*/

.load-shimmer {
	background: #000;
	mask: linear-gradient(90deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.07) 45%, rgba(0,0,0,0) 55%) right/300% 100%;
	animation: load-shimmer 2s infinite linear;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
}

	@keyframes load-shimmer {
		100% {
			-webkit-mask-position:left;
		}
	}
