html, body, iframe {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Roboto', sans-serif;
	color: #333333;
}
* {
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

body {
	background: repeating-radial-gradient(circle at top right,
	#fedc00 0, #fedc00 5.5555555556%, #fcb712 0, #fcb712 11.1111111111%, #f7921e 0, #f7921e 16.6666666667%, #e87f24 0, #e87f24 22.2222222222%, #dd6227 0, #dd6227 27.7777777778%, #dc4c27 0, #dc4c27 33.3333333333%, #ca3435 0,
	#ca3435 38.8888888889%, #b82841 0, #b82841 44.4444444444%, #953751 0, #953751 50%, #364c88 0, #364c88 55.5555555556%, #16599d 0, #16599d 61.1111111111%, #02609e 0, #02609e 66.6666666667%, #0073a9 0, #0073a9 72.2222222222%,
	#008aa4 0, #008aa4 77.7777777778%, #239a87 0, #239a87 83.3333333333%, #7cba6d 0, #7cba6d 88.8888888889%, #becc2f 0, #becc2f 94.4444444444%, #e0d81d 0, #e0d81d 100%),
	repeating-radial-gradient(circle at bottom right,
			#fedc00 0, #fedc00 5.5555555556%, #fcb712 0, #fcb712 11.1111111111%, #f7921e 0, #f7921e 16.6666666667%, #e87f24 0, #e87f24 22.2222222222%, #dd6227 0, #dd6227 27.7777777778%, #dc4c27 0, #dc4c27 33.3333333333%, #ca3435 0,
			#ca3435 38.8888888889%, #b82841 0, #b82841 44.4444444444%, #953751 0, #953751 50%, #364c88 0, #364c88 55.5555555556%, #16599d 0, #16599d 61.1111111111%, #02609e 0, #02609e 66.6666666667%, #0073a9 0, #0073a9 72.2222222222%,
			#008aa4 0, #008aa4 77.7777777778%, #239a87 0, #239a87 83.3333333333%, #7cba6d 0, #7cba6d 88.8888888889%, #becc2f 0, #becc2f 94.4444444444%, #e0d81d 0, #e0d81d 100%);
	background-blend-mode: overlay;
}
.main {
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(222, 222, 222, 0.8), rgba(245, 245, 245, 0.5));
}

.main .info {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100px;
	margin: 18vh 0 12vh;
	background: rgba(221, 221, 221, 0.6);
	box-shadow: #EEE 0 0 0 2px, #999 0 2px 5px 2px;
}
.main .info .appLogo {
	height: 50px;
}
.main .info .appTitle {
	height: 50px;
	line-height: 50px;
	margin: 8px 15px 0;
	font-size: 34px;
	font-weight: bold;
}

.loginPopup,
.changePasswordPopup {
	position: absolute;
	top: 40%;
	display: flex;
	flex-direction: column;
	align-content: center;
	width: 100%;
}
.changePasswordPopup {
	display: none;
	height: 100%;
	top: 0;
	justify-content: center;
	z-index: 900;
	background: rgba(90, 90, 90, 0.6);
}
.loginPopup .sectionLoader {
	padding-top: 20vh;
}

.loginPopup .formWrapper,
.changePasswordPopup .formWrapper {
	display: flex;
	align-self: center;
	flex-direction: column;
	align-content: center;
	align-items: center;
	width: 400px;
	height: 350px;
	border-radius: 8px;
	border-top: #FFA300 4px solid;
	border-bottom: #005CA7 4px solid;
	background:rgba(238, 238, 238, 0.85);
	box-shadow: #888 0 1px 4px 1px;
}
.changePasswordPopup .formWrapper {
	background:rgba(238, 238, 238, 0.95);
	box-shadow: none;
}
.loginPopup .loginForm,
.changePasswordPopup .loginForm {
	width: 100%;
}
.loginPopup .loginForm .inputWrapper,
.changePasswordPopup .loginForm .inputWrapper {
	height: 48px;
	margin: 15px 10%;
	background: #FFF;
	border-radius: 4px 4px 0 0;
	border-bottom: #999 1px solid;
	font-size: 12px;
	transition: border-bottom 0.1s linear;
	cursor: default;
}
.loginPopup .loginForm .inputWrapper:hover,
.changePasswordPopup .loginForm .inputWrapper:hover {
	border-bottom: #333 2px solid;
}
.loginPopup .loginForm .inputWrapper mat-icon,
.changePasswordPopup .loginForm .inputWrapper mat-icon {
	float: left;
	width: 24px;
	height: 100%;
	line-height: 47px;
	margin: 0 1px 0 8px;
}
.loginPopup .loginForm .inputWrapper input,
.changePasswordPopup .loginForm .inputWrapper input {
	height: 38px;
	width: calc(100% - 44px);
	margin: 5px;
	padding: 0 6px;
	background: #FFF;
	border: 0;
	outline-color: transparent;
	cursor: text;
}
.changePasswordPopup.confirmPassError .loginForm .checkFields>* {
	color: #F00;
}

.loginPopup .title,
.changePasswordPopup .title {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	margin: 25px 4px 35px;
}
.changePasswordPopup .title {
	margin-bottom: 10px;
}
.loginPopup .errorInfo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	margin-top: -10px;
	font-size: 13px;
	font-weight: 500;
	color: #F00;
}
.changePasswordPopup .buttonsWrapper {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	margin-top: 20px;
}
.loginPopup .commonBtn {
	width: 80%;
	height: 38px;
	line-height: 38px;
	margin-top: 10px;
	font-size: 18px;
}
.loginPopup .commonBtn:not(.disabled):hover,
.changePasswordPopup .commonBtn:not(.disabled):hover {
	opacity: 0.7;
}
.changePasswordPopup.inputsNotValid .commonBtn.submitBtn,
.changePasswordPopup.confirmPassError .commonBtn.submitBtn {
	filter: grayscale(1);
	pointer-events: none;
}
.changePasswordPopup.confirmPassError .commonBtn:hover {
	opacity: 1;
}
.loggedIn .loginPopup {
	display: none;
}

.applications {
	display: none;
	width: 100%;
	height: 100%;
}
.applications nav {
	position: absolute;
	top: 40%;
	width: 100%;
	height: 60%;
}
.applications nav ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 60%;
	height: 100%;
	max-width: 700px;
	margin: 0 auto;
	flex-direction: row;
}
.applications nav ul li {
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 48%;
	height: 64px;
	float: left;
	padding: 0 20px;
	margin: 1%;
	font-size: 20px;
	line-height: 17px;
	background: #ffffffbf;
	box-shadow: #888 0 2px 3px;
	border-radius: 4px;
	transition: all 0.1s linear;
}
.applications nav ul li.hidden {
	opacity: 0;
	visibility: hidden;
}
.appLaunched .applications nav ul li.hidden {
	display: none;
}
.applications nav ul li.smallBtn {
	position: absolute;
	bottom: 20%;
	left: calc(50% + 20px);
	width: 200px;
	height: 46px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	margin: 0;
}
.applications nav ul li.changePassBtn {
	left: calc(50% - 220px);
}
.applications nav ul li.smallBtn mat-icon {
	color: #F00;
}
.applications nav ul li:hover {
	opacity: 0.7;
	box-shadow: #444 0 2px 0, #888 0 3px 2px;
}
.applications nav ul li * {
	cursor: pointer;
}
.applications nav ul li.username {
	position: absolute;
	bottom: calc(20% + 60px);
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 19px;
	font-weight: 500;
	background: none;
	box-shadow: none;
	cursor: default;
	opacity: 1;
}
.applications nav ul li.username div {
	display: flex;
	padding: 8px 18px;
	color: #FFF;
	text-shadow: #555 1px 1px 2px;
	cursor: default;
	background: #fff2;
	box-shadow: inset #fff 0 0 2px, #888 0 1px 2px;
	border-bottom: #F00 3px solid;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
}
.appLaunched .applications nav ul li.username {
	display: none;
}
.appLaunched.smartLinkConsole .applications nav ul li.smartLinkConsole,
.appLaunched.bingoManager .applications nav ul li.bingoManager,
.appLaunched.chatAdminTool .applications nav ul li.chatAdminTool,
.appLaunched.smartLinkReports .applications nav ul li.smartLinkReports {
	background: #FFA300;
	color: #FFF;
}
.applications nav ul li mat-icon {
	margin: -1px 5px 0 0;
}

.appNavigation {
	display: none;
}
.appLaunched.bingoManager .appNavigation,
.appLaunched.chatAdminTool .appNavigation,
.appLaunched.smartLinkReports .appNavigation {
	display: inline-block;
}
.appNavigation .appNavHeader {
	width: 100%;
	float: left;
	padding: 0 4px;
}
.appNavigation .appNavHeader * {
	display: inline-block;
	float: left;
	height: 30px;
	font-size: 25px;
	font-weight: 500;
	line-height: 34px;
	margin: 6px;
}
.appNavigation ul {
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: 6px;
}
.appNavigation ul li {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: 500;
	padding: 6px 10px;
	margin: 3px;
	border-radius: 4px;
	background: #ffffffc2;
	box-shadow: #0005 0 1px 2px;
	cursor: pointer;
	transition: all 0.1s linear;
}
.appNavigation ul li.selected {
	color: #FFF;
	background: #FFA300;
}
.appNavigation ul li.notSelected:hover {
	opacity: 0.7;
	box-shadow: #444 0 2px 0, #888 0 2px 0;
}


.loggedIn .applications {
	display: block;
}
.appLaunched .main .info {
	display: none;
}
.appLaunched .applications nav ul {
	display: block;
	width: 100%;
	padding: 7px 0 0 7px;
}
.appLaunched .applications nav ul li {
	width: 100%;
	height: auto;
	padding: 10px;
	margin: 4px 0;
}
.appLaunched .applications nav ul li.smallBtn {
	position: initial;
	border-radius: 4px;
}
.appLaunched .applications nav ul li mat-icon {
	margin-right: 0;
}
.appLaunched .applications nav ul li label {
	display: none;
}
.appLaunched .main nav {
	position: initial;
	float: left;
	width: 46px;
	height: 100%;
}
.main .appBody {
	display: none;
}
.appLaunched .main .appBody {
	display: flex;
	flex-direction: column;
	float: left;
	width: calc(100% - 67px);
	height: calc(100% - 20px);
	margin: 10px;
	padding: 1px;
	border-radius: 4px;
	background: #f5f5f580;
	box-shadow: #888 0 2px 3px -1px;
}
.appLaunched .main .appBody iframe {
	height: 100%;
	background: #FFF;
	padding: 1px;
}
.appLaunched.bingoManager .main .appBody iframe {
	padding: 10px;
}
.appLaunched.smartLinkReports .main .appBody iframe {
	background: transparent;
}


.commonBtn {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	outline: none;
	border: none;
	-webkit-tap-highlight-color: transparent;
	white-space: nowrap;
	text-decoration: none;
	vertical-align: baseline;
	text-align: center;
	margin: 0;
	min-width: 64px;
	line-height: 36px;
	padding: 0 16px;
	border-radius: 4px;
	overflow: visible;
	background-color: #ffa300;
	color: #FFF;
}
.commonBtn mat-icon {
	margin-right: 4px;
}
.commonBtn * {
	cursor: pointer;
}


.sectionLoader {
	position: absolute;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #0006;
}
.sectionLoader::before {
	content: "";
	position: absolute;
	border: 5px solid #FFF;
	border-radius: 50%;
	box-shadow: #888 0 0 2px, inset #888 0 0 1px;
	width: 30px;
	height: 30px;
}
.sectionLoader::after {
	content: "";
	position: relative;
	border: 6px solid transparent;
	border-radius: 50%;
	border-top: 6px solid #ffa300;
	width: 28px;
	height: 28px;
	animation: sectionLoaderSpin 1s linear infinite;
}
.appLaunched .sectionLoader::before,
.appLaunched .sectionLoader::after {
	margin: 10px 0 0 56px;
}

@keyframes sectionLoaderSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.myCustomButtonWrapper{
	display: flex;
	width: 100%;
	justify-content: center;
}