body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	overflow-y: scroll;
}

body.noscroll {
	overflow: hidden;
}

a {
	color: inherit;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* HEADER																													*/

/* ---------------------------------------------------------------------------- */
/* LOGO																			*/

header .logo {
	margin-bottom: 20px;
}

header .logo .container {
	display: block;
}

header .logo a {
	display: inline-block;
}

header .logo img {
	max-width: 100%;
	vertical-align: middle;
}

header .logo-left {
	text-align: left;
}

header .logo-center {
	text-align: center;
}

header .logo-right {
	text-align: right;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* NAV																														*/

header .nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

header .nav ul li {
	flex: 0 1 auto;
}

header .nav a {
	display: block;
	box-sizing: border-box;
}

/* ---------------------------------------------------------------------------- */
/* NAV - LEFT																	*/

header .nav-left ul {
	justify-content: flex-start;
}

/* ---------------------------------------------------------------------------- */
/* NAV - CENTER																	*/

header .nav-center ul {
	justify-content: center;
}

/* ---------------------------------------------------------------------------- */
/* NAV - RIGHT																	*/

header .nav-right ul {
	justify-content: flex-end;
}

/* ---------------------------------------------------------------------------- */
/* NAV - JUSTIFY																*/

header .nav-justify ul {
	justify-content: space-between;
}

header .nav-justify ul li {
	flex: 1 1 auto;
}

header .nav-justify ul li a {
	text-align: center;
}

/* ---------------------------------------------------------------------------- */
/* NAV - CLOSE BUTTON (FOR TABLET & MOBILE USE)									*/

header .nav .btn-close {
	display: none;
}

/* ---------------------------------------------------------------------------- */
/* NAV - TOGGLE BUTTON (FOR TABLET & MOBILE USE)								*/

header .btn-nav {
	display: none;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* MAIN																														*/

main {
	box-sizing: border-box;
	display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* USER NAV																													*/

.user-nav {
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding: 10px 0;
	position: relative;
	font-size: 12px;
	line-height: 18px;
	color: #333333;
}

.user-nav .container {
	display: block;
}

.user-nav-thumb {
	width: 32px;
	height: 32px;
	background: url('../images/icons/participant.svg') center center no-repeat;
	margin-right: 10px;
	float: left;
	opacity: 0.2;
}

.user-nav-options {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.user-nav-options a {
	padding: 10px 6px;
	text-decoration: none;
	color: #999999;
}

.user-nav-options a:hover {
    color: #a0a0a0;
}

.user-nav-options a .icon16 {
	margin-right: 8px;
	opacity: 0.4;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* FOOTER																													*/

/* ---------------------------------------------------------------------------- */
/* FOOTER - QUICKLINKS															*/

footer .quicklinks {
	padding: 0 160px 0 0;
	position: relative;
}

footer .quicklinks ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .quicklinks ul li {
	display: inline-block;
}

footer .quicklinks ul li + li {
	margin: 0 0 0 20px;
}

footer .quicklinks a {
	line-height: 44px;
}

/* ---------------------------------------------------------------------------- */
/* FOOTER - POWERED BY															*/

footer a.poweredby {
	width: 160px;
	height: 44px;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	filter: alpha(opacity=40);
	opacity: 0.4;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* COOKIES																													*/

.cookie {
	width: 320px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
	padding: 20px;
	position: fixed;
	top: 50%;
	left: 20px;
	z-index: 99;
	transform: translateY(-50%);
	color: #ffffff;
}

.cookie h2 {
	margin: 0 40px 0 0;
	color: #ffffff;
	text-align: left;
}

.cookie a {
	color: #ffffff;
}

.cookie a:hover {
	color: #ffffff;
}

.cookie-close {
	width: 16px;
	height: 16px;
	background: url('../images/icons/cross-light.svg') center center no-repeat;;
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: 0.2;
}

.cookie-close:hover {
	opacity: 0.6;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* SIDEBAR																													*/

.sidebar {
	width: 25%;
	float: left;
	padding: 0px 24px;
	box-sizing: border-box;
}

.sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar a {
	display: block;
	color: inherit;
	cursor: pointer;
	font-size: 13px;
	line-height: normal;
	text-decoration: none;
	padding: 10px 10px 10px 40px;
}

.sidebar a:hover {
	background: rgba(0, 0, 0, 0.05);
	color: inherit;
	border-radius: 3px;
}

.sidebar a.active {
	font-weight: bold;
	color: inherit;
}

.sidebar .icon16 {
	margin-right: 12px;
	opacity: 0.4;
	margin-left: -30px;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* SIDEBAR CONTENT																											*/

.sidebar-content {
	width: 75%;
	float: left;
    padding: 0px 24px 0 0;
	box-sizing: border-box;
}

.sidebar-content h2 {
	margin: 0;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* OVERLAY																													*/

.overlay {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 98;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* PRELOADER																												*/

.preloader-dark {
	width: 16px;
	height: 16px;
	background: url('../images/layout/preloader-dark.svg');

	-webkit-animation: spin 0.3s linear infinite;
	animation: spin 0.3s linear infinite;
	display: block;
}

.preloader-light {
	width: 16px;
	height: 16px;
	background: url('../images/layout/preloader-light.svg');

	-webkit-animation: spin 0.3s linear infinite;
	animation: spin 0.3s linear infinite;
	display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* TOOLTIP																													*/

.tooltip {
	max-width: 280px;
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* OVERRULES (FOR )  																										*/

/* ---------------------------------------------------------------------------- */
/* OVERRULES - SIGN UP															*/

#signup main {
	color: #333333;
}

#signup main h1,
#signup main h2,
#signup main h3,
#signup main h4 {
	color: #333333;
	text-align: left;
}

#signup main a {
	color: #333333;
}

#signup main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - RECEIPT															*/

#receipt main {
	color: #333333;
}

#receipt main h1,
#receipt main h2,
#receipt main h3,
#receipt main h4 {
	color: #333333;
	text-align: left;
}

#receipt main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - EXTERNAL LOGIN													*/

#extranet main,
[id^="extranet-"] main {
	color: #333333;
}

#extranet main h1,
#extranet main h2,
#extranet main h3,
#extranet main h4,
[id^="extranet-"] main h1,
[id^="extranet-"] main h2,
[id^="extranet-"] main h3,
[id^="extranet-"] main h4 {
	color: #333333;
	text-align: left;
}

#extranet main section,
[id^="extranet-"] main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - EVALUATION														*/

#evaluation main {
	color: #333333;
}

#evaluation main h1,
#evaluation main h2,
#evaluation main h3,
#evaluation main h4 {
	color: #333333;
	text-align: left;
}

#evaluation main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - APPROVAL															*/

#approval main {
	color: #333333;
}

#approval main h1,
#approval main h2,
#approval main h3,
#approval main h4 {
	color: #333333;
	text-align: left;
}

#approval main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - COOKIE POLICY													*/

#cookie-policy main {
	color: #333333;
}

#cookie-policy main h1,
#cookie-policy main h2,
#cookie-policy main h3,
#cookie-policy main h4 {
	color: #333333;
	text-align: left;
}

#cookie-policy main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - PRIVACY POLICY													*/

#privacy-policy main {
	color: #333333;
}

#privacy-policy main h1,
#privacy-policy main h2,
#privacy-policy main h3,
#privacy-policy main h4 {
	color: #333333;
	text-align: left;
}

#privacy-policy main section {
	background: #fff;
}

/* ---------------------------------------------------------------------------- */
/* OVERRULES - PRIVACY POLICY													*/

#auth main {
	color: #333333;
}

#auth main h1,
#auth main h2,
#auth main h3,
#auth main h4 {
	color: #333333;
	text-align: left;
}

#auth main section {
	background: #fff;
}

@media only screen and (min-width: 1441px) {

}

@media only screen and (max-width: 1440px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 768px) {
	/* -------------------------------------------------------------------------------------------------------------------- */
	/* HEADER																												*/

	header {
		padding-top: 60px; /* Space for logo and nav button */
	}

	header:after {
		content: "";
		display: table;
		clear: both;
	}

	/* ------------------------------------------------------------------------ */
	/* LOGO																		*/

	header .logo {
		width: 50%;
		text-align: left;
		position: absolute;
		top: 10px;
		left: 15px;
		margin: 0;
	}

	header .logo img {
		width: auto;
		max-width: 100%;
		max-height: 40px;
	}

	header .logo .img-standard.no-image {
		width: 20px;
		height: 20px;
		padding: 10px;
	}

	header .logo .img-standard.no-image img {
		height: 20px;
	}

	header .logo .container,
	header .logo .container-fluid {
		padding: 0;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* NAV																													*/

	header .navigation {
		position: absolute;
		top: 10px;
		right: 10px;
		left: auto;
		z-index: 10;
	}

	header .nav {
		width: 70%;
		max-width: 380px;
		position: fixed;
		top: 0;
		bottom: 0;
		left: -80%;
		z-index: 99;
		opacity: 0.0;
		overflow: hidden;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		transition: left 0.3s ease-in-out;
		box-sizing: border-box;
	}

	header .nav .container,
	header .nav .container-fluid {
		margin: 0;
		padding: 0;
		flex: 1 1 auto;
	}

	header .nav.open {
		left: 0px;
		opacity: 1;
	}

	header .nav ul {
		margin: auto 0;
		padding: 80px 0;
		display: block;
	}

	header .nav ul li {
		width: auto;
		display: block;
		margin-left: 0;
		margin-right: 0;
	}

	header .nav a {
		width: auto;
		display: block;
	}

	/* ------------------------------------------------------------------------ */
	/* NAV - CLOSE BUTTON (FOR TABLET & MOBILE USE)								*/

	header .nav .icon-close {
		width: 20px;
		height: 20px;
		border: 0;
		padding: 5px;
		position: absolute;
		top: 15px;
		right: 15px;
		display: block;
		cursor: pointer;
	}

	header .nav .icon-close-stripe {
		border-radius: 1px;
	}

	header .nav .icon-close-stripe:first-child {
		width: 20px;
		height: 2px;
		margin-left: -10px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: rotate(45deg);
	}

	header .nav .icon-close-stripe:last-child {
		width: 20px;
		height: 2px;
		margin-left: -10px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: rotate(-45deg);
	}

	/* ------------------------------------------------------------------------ */
	/* NAV - TOGGLE BUTTON (FOR TABLET & MOBILE USE)							*/

	header .btn-nav {
		/* background: none; */
		border: 0;
		border-radius: 4px;
		padding: 0 40px 0 10px;
		outline: none;
		display: block;
		cursor: pointer;
		font-size: 14px;
		line-height: 40px;
	}

	header .btn-nav .icon-nav {
		width: 20px;
		height: 14px;
		margin-top: -7px;
		position: absolute;
		top: 50%;
		right: 10px;
	}

	header .btn-nav .icon-nav-stripe {
		height: 2px;
		border-radius: 1px;
	}

	header .btn-nav .icon-nav-stripe + .icon-nav-stripe {
		margin-top: 4px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* FOOTER																												*/

	/* ------------------------------------------------------------------------ */
	/* FOOTER - QUICKLINKS														*/

	footer .quicklinks {
		padding: 0;
		text-align: center;
	}

	footer .quicklinks ul {
		margin: -5px 0;
	}

	footer .quicklinks ul li {
		margin: 5px 10px 5px 10px;
		display: inline-block;
	}

	footer .quicklinks ul li + li {
		margin: 5px 10px 5px 10px;
	}

	footer .quicklinks a {
		line-height: 20px;
	}

	/* ------------------------------------------------------------------------ */
	/* FOOTER - POWERED BY														*/

	footer a.poweredby {
		margin: 40px auto 0 auto;
		position: static;
		display: inline-block;
		transform: none;
		line-height: 44px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* COOKIES																												*/

	.cookie {
		width: auto;
		border-radius: 4px 4px 0 0;
		position: fixed;
		top: auto;
		right: 10px;
		bottom: 0;
		left: 10px;
		transform: none;
	}

	/* ------------------------------------------------------------------------------------------------------------------------ */
	/* USER NAV																													*/

	.user-nav {
		font-size: 12px;
		line-height: normal;
	}

	.user-nav-thumb {
		width: 26px;
		height: 26px;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* SIDEBAR (HORIZONTAL SCROLLING TILES)																					*/

	.sidebar {
		width: auto;
		float: none;
		padding: 0 10px;
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		-webkit-overflow-scrolling: touch;
		box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.1);
	}

	.sidebar ul {
		display: inline-flex;
		flex-flow: row nowrap;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-align-content: space-around;
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}

	.sidebar li {
		flex: 0 0 auto;
		-webkit-align-self: stretch;
		align-self: stretch;
		line-height: normal;
		padding: 0 20px;
	}

	.sidebar li:last-child {
		margin: 0;
	}

	.sidebar a {
		height: auto;
		box-sizing: border-box;
		border-bottom: 2px solid transparent;
		padding: 20px 0;
		text-align: center;
		background-clip: padding-box;
	}

	.sidebar a.active {
		border-bottom: 2px solid #ccc;
	}

	.sidebar .icon16 {
		width: 20px;
		height: 20px;
		margin: 0 auto 10px auto;
		display: block;
		opacity: 0.4;
	}

	/* ------------------------------------------------------------------------------------------------------------------------ */
	/* SIDEBAR CONTENT																											*/

	.sidebar-content {
		width: 100%;
		float: none;
		margin: 30px 0 0 0;
		padding: 15px;
	}
}

@media only screen and (max-width: 480px) {
	/* ------------------------------------------------------------------------------------------------------------------------ */
	/* USER NAV																													*/

	.user-nav-thumb {
		margin-left: -36px;
	}

	.user-nav .container {
		padding: 0 130px 0 50px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.user-nav-options {
		right: 10px;
	}

	.user-nav-options a {
		padding: 10px;
	}

	.user-nav-options a span {
		display: none;
	}

	.user-nav-options a .icon16 {
		margin: 0;
	}

	/* -------------------------------------------------------------------------------------------------------------------- */
	/* SIDEBAR (HORIZONTAL SCROLLING)																						*/

	.sidebar {
		margin: 0 -10px;
		padding: 0 15px;
	}

	.sidebar li {
		padding: 0;
	}

	.sidebar a {
		font-size: 12px;
		padding: 15px 15px;
		background: none;
	}

	.sidebar a.active {
		background: none;
	}

	.sidebar a:hover {
		background: none;
	}

	.sidebar .icon16 {
		width: 16px;
		height: 16px;
		margin: 0 10px 0 0;
		display: inline-block;
	}

	/* ------------------------------------------------------------------------------------------------------------------------ */
	/* SIDEBAR CONTENT																											*/

	.sidebar-content {
		padding: 10px;
	}
}

			/** resize **/

			.dialog-top-n {
				position: absolute;
				cursor: n-resize;
				width: 100%;
				height: 7px;
				top: -5px;
				left: 0px;
			}

			.dialog-right-e {
				position: absolute;
				cursor: e-resize;
				width: 7px;
				height: 100%;
				top: 0px;
				right: -5px;
			}

			.dialog-left-w {
				position: absolute;
				cursor: w-resize;
				width: 7px;
				height: 100%;
				top: 0px;
				left: -5px;
			}

			.dialog-bottom-s {
				position: absolute;
				cursor: s-resize;
				width: 100%;
				height: 7px;
				bottom: -5px;
				left: 0px;
			}

			.dialog-top-left-nw {
				position: absolute;
				cursor: nw-resize;
				width: 9px;
				height: 9px;
				left: -5px;
				top: -5px;
			}

			.dialog-bottom-left-sw {
				position: absolute;
				cursor: sw-resize;
				width: 9px;
				height: 9px;
				left: -5px;
				bottom: -5px;
			}

			.dialog-top-right-ne {
				position: absolute;
				cursor: ne-resize;
				width: 9px;
				height: 9px;
				right: -5px;
				top: -5px;
			}

			.dialog-bottom-right-se {
				position: absolute;
				cursor: se-resize;
				width: 9px;
				height: 9px;
				right: -5px;
				bottom: -5px;
			}