/* Shared Styles */
@font-face {
	font-family: "Inter-Regular";
	src: url("../fonts/Inter-Regular.otf") format("opentype")
}

@font-face {
	font-family: "Inter-Bold";
	src: url("../fonts/Inter-Bold.otf") format("opentype")
}

html, body, #mainPageContainer, #portalContentFrame {
	height: 100%;
	width: 100%;
	margin: 0;
	font-family: 'Inter-Regular', Arial, Helvetica, sans-serif;
	overflow-x: hidden;
	overflow-y: hidden;
}

body {
	background: #592A60;
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.centered {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.centerContents {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

#loadingOverlay {
	position: absolute;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	margin: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 99999999;
}

a {
	text-decoration: none;
}

.hidden {
	display: none !important;
}

.pageMenuBar {
	display: flex;
	width: 100%;
	height: 90px;
	padding: 30px 0 0 20px
}

	.pageMenuBar span {
		float: left;
		height: 100%;
		font-size: 24px;
		font-weight: bold;
		margin-left: 30px;
	}

.noSelect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ddlBasic {
	padding: 10px;
	border: 1px solid black;
}

.noResults {
	font-size: 22px;
	font-weight: 600;
	width: 90%;
	text-align: center;
	margin: 40px auto;
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

	.noResults.in {
		opacity: 1;
		font-size: 20px;
		margin-top: 80px;
	}

	.noResults.out {
		display: none;
	}

#ieUnsupporterBanner {
	position: absolute;
	width: 100%;
	height: 60px;
	top: 0;
	background: rgba(255, 236, 130, 0.9);
	z-index: 10000;
}

	#ieUnsupporterBanner > .innerContent {
		position: relative;
		width: 80%;
		height: 60px;
		left: 10%;
	}

		#ieUnsupporterBanner > .innerContent > .unsupportedMessage {
			position: absolute;
			display: inline-block;
			width: 80%;
			top: 50%;
			transform: translateY(-50%);
			color: red;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}


		#ieUnsupporterBanner > .innerContent > .buttonDefault {
			position: absolute;
			display: inline-block;
			top: 50%;
			right: 0;
			height: 40px;
			transform: translateY(-50%);
			background: red;
		}

#globalUnhandledError {
	margin-bottom: 20px;
}

	#globalUnhandledError .stackTraceHeading {
		margin-top: 30px;
		font-weight: bold;
	}

	#globalUnhandledError .stackTraceHolder {
		height: 200px;
		overflow: hidden;
		overflow: scroll;
		overflow-x: auto;
		max-height: 300px;
		box-shadow: inset 2px 2px 1px rgba(0,0,0,.05);
		padding: 10px 30px 10px 20px;
		margin-bottom: 20px;
		margin-top: 10px;
		background-color: #f5f5f5;
		border: 1px solid #e3e3e3;
		border-radius: 4px;
	}

.sectionLoader {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.sectionLoader {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

	.sectionLoader.in {
		opacity: 1;
		-o-transition: opacity 0.5s 0.25s;
		-moz-transition: opacity 0.5s 0.25s;
		-webkit-transition: opacity 0.5s 0.25s;
		transition: opacity 0.5s 0.25s;
	}

	.sectionLoader .loadingWrapper {
		display: flex;
		align-items: center;
		max-width: 300px;
		font-size: 22px;
	}

	.sectionLoader .loadingCircle {
		border: 4px solid #EDEDED;
		border-radius: 50%;
		border-top: 4px solid #616AE8;
		width: 30px;
		height: 30px;
		-o-animation: spin 1s linear infinite;
		-moz-animation: spin 1s linear infinite;
		-webkit-animation: spin 1s linear infinite;
		animation: spin 1s linear infinite;
		margin-right: 15px;
	}

.pageHeadingBar {
	position: relative;
	height: 64px;
	background: white;
}

	.pageHeadingBar .pageHeadingContentLayoutContainer {
		width: 80%;
		margin: 0 auto;
	}

	.pageHeadingBar .content {
		display: inline-block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		height: 80%;
	}

	.pageHeadingBar .iconHolder {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		display: inline-block;
		background: #616AE8;
		height: 32px;
		width: 32px;
		border-radius: 50%;
	}

		.pageHeadingBar .iconHolder .icon {
			position: absolute;
			display: inline-block;
			top: 50%;
			left: 50%;
			transform: translateX(-50%) translateY(-50%);
			width: 16px;
			height: 16px;
		}

		.pageHeadingBar .iconHolder svg g g {
			fill: #FFF;
		}

	.pageHeadingBar .headingContent {
		position: absolute;
		top: 50%;
		left: 48px;
		transform: translateY(-50%);
		font-size: 24px;
		white-space: nowrap;
	}

		.pageHeadingBar .headingContent .heading {
			display: inline-block;
		}

		.pageHeadingBar .headingContent .subHeading {
			display: inline-block;
			margin-left: 10px;
			color: #bcbcbc;
		}


.simpleLoadingWrapper {
	margin: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.simpleLoadingWrapper .loadingCircle {
		border: 4px solid #EDEDED;
		border-radius: 50%;
		border-top: 4px solid #616AE8;
		width: 35px;
		height: 35px;
		-moz-animation: spin 1s linear infinite;
		-webkit-animation: spin 1s linear infinite;
		animation: spin 1s linear infinite;
		margin-right: 15px;
	}


.flatpickr-calendar {
	z-index: 100000000 !important;
}
