@font-face {
	font-family: 'PoiretOne';
	src: url('fonts/Poiret_One/PoiretOne-Regular.woff2');
	/*src: url('fonts/Poiret_One/PoiretOne-Regular.ttf');*/
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	outline: none;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

button, input {
	background: none;
	border: none;
	outline: none;
}

body {
	border: none;
	overflow: hidden;
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}

.baseFont {
	font-family: PoiretOne;
}

.bg {
	background-color: #252321;
	/* background-image: url(img/hd1.jpg); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	animation-name: toBlur;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes toBlur {
    from {
		-webkit-filter: blur(0px);
		-moz-filter: blur(0px);
		-ms-filter: blur(0px);
		-o-filter: blur(0px);
		filter: blur(0px);		
	}
    to {
		-webkit-filter: blur(8px);
		-moz-filter: blur(8px);
		-ms-filter: blur(8px);
		-o-filter: blur(8px);
		filter: blur(8px);		
	}
}

.sso-init-load {
	background-color: #252321;
	background-color: transparent;
	
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: calc(100% - 400px);
	
	-webkit-transition: 1000ms ease-in-out;
	-moz-transition: 1000ms ease-in-out;
	-o-transition: 1000ms ease-in-out;
	transition: 1000ms ease-in-out;	
}

.sso-init-load-final {
	display: none;
}

.sso-load-icon {
	position: absolute;
    top: calc(50% - 150px);
    left: 25%;
    margin-bottom: 20px;
    height: 200px;
    width: auto;
    
    object-fit: contain;
	
	-webkit-transition: 1000ms ease-in-out;
	-moz-transition: 1000ms ease-in-out;
	-o-transition: 1000ms ease-in-out;
	transition: 1000ms ease-in-out;	
}

.sso-load-title {
	color: #fdfdfd;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    position: absolute;
    top: calc(50% + 70px);
    left: calc(25% + 45px);
    height: auto;
    width: auto;
	-webkit-transition: 1000ms ease-in-out;
	-moz-transition: 1000ms ease-in-out;
	-o-transition: 1000ms ease-in-out;
	transition: 1000ms ease-in-out;
}

@media screen and (max-width: 800px) {
	.sso-init-load {
		height: 100%;
		width: 100%;
	}
	
	.sso-load-icon {
		left: 0px;
	}	
	
	.sso-load-title {
		left: 20px;
	}	
}

.sso-login {
	background-color: #252321;
	box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
	
	position: absolute;
    top: -2px;
    left: calc(100% - 400px);
    width: 400px;
    height: calc(100% + 4px);
	
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;		
}

.sso-login-loadMode {
	background-color: #252321;
	box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
	
	position: absolute;
    top: -2px;
    left: 0px;
    width: 100%;
    height: calc(100% + 4px);
	
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;		
}

.sso-login-fadePanel {
	overflow: hidden;
	
	position: relative;
    top: 0px;
    left: 0px;
    width: 100%;	
    height: 100%;	
}

.sso-login-logoPanel {
	overflow: hidden;
	
	position: relative;
    top: 0px;
    left: 0px;
    width: 100%;	
    height: 40%;	
}

.sso-login-logoImg {
	background-color: transparent;
	/* background-size: contain; */
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	margin-top: 50px;
	top: 0px;
	left: 0px;
	width: 100%;
	height: calc(100% - 150px);
	object-fit: contain;
}

.sso-login-logoTxt {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: bold;	

	position: absolute;
    top: calc(100% - 60px);	
    left: 0px;
    width: 100%;	
    height: 50px;	
}

.sso-login-txtPanel {
	border-bottom: solid rgba(255, 255, 255, 0.8) 1px;

	position: relative;
	margin-bottom: 15px;
    top: 0px;
    left: calc(50% - 175px);
    width: 350px;
    height: 40px;	
}

.sso-login-icon {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 100%;	
	
	object-fit: contain;
}

.sso-login-txt {
	background-color: transparent;
	border: none;

	color: white;
	font-size: 20px;
	font-weight: bold;	

	position: absolute;
	padding-left: 10px;
    top: 0px;
    left: 45px;
    width: calc(100% - 45px);
    height: 100%;
}

.sso-login-button {
	background-color: rgba(231, 76, 60, 1.0);
	background-image: url(img/unlock.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
	
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
    top: 0px;
    left: calc(50% - 175px);
    width: 350px;
    height: 45px;	
	
	cursor: pointer;
	
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;		
}

.sso-login-button:hover {
	background-color: rgba(192, 57, 43, 1.0);
}

.sso-login-extra {
	background-color: transparent;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	font-weight: bold;	
	text-align: right;

	display: block;
	position: relative;
	margin-bottom: 15px;
    top: 0px;
    left: 50%;
    width: 175px;
    height: 40px;	
	
	cursor: pointer;
	
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;		
}

.sso-login-extra:hover {
	color: rgba(255, 255, 255, 1);
	font-size: 14px;
}

.sso-login-splash {
	background-color: transparent;
	position: absolute;
    top: 0px;
    left: px;
    width: 100%;
    height: 100%;
}

.sso-login-loading {
	background-color: transparent;
	background-image: url(img/load2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom center;
	
	position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
}

.sso-login-loadingText{
	background-color: transparent;
	
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: bold;	
	text-align: center;
	
	position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 800px) {
	.sso-login {
		left: 0px;
		width: 100%;
	}
}

.alert-glass {
	overflow: hidden;
	border: none;
	background-color: rgba(0, 0, 0, 0.5);
	
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}

.alert-wrapper {
	overflow: visible;
	border: none;
	border-radius: 3px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	background-color: rgba(255, 255, 255, 1.0);
	
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: calc(50% - 100px);
	left: calc(50% - 175px);
	height: 200px;
	width: 350px;	
}

.alert-panel {
	overflow: visible;

	position: absolute;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: 0px;
	height: calc(100% - 60px);
	width: 100%;	
}

.alert-icon {
	overflow: hidden;
	border: solid 2px #F9F9FA;
	border-radius: 60px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	background-color: #F9F9FA;
	
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: -20px;
	left: calc(50% - 30px);
	height: 60px;
	width: 60px;
	
	object-fit: contain;
}

.alert-label {
	overflow: hidden;
	border: none;
	background-color: transparent;
	
	color: rgba(0, 0, 0, 0.8);
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	
	position: absolute;
	margin: 0px;
	padding: 0px;
    top: 35px;
    left: 5%;
    height: calc(100% - 40px);
	width: 90%;
}

.alert-control {
	overflow: hidden;
	background-color: transparent;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
	
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: calc(100% - 60px);
	left: 10px;
	height: 60px;
	width: calc(100% - 20px);	
}

.alert-button-1 {
	border-radius: 20px;
	background-color: rgba(46, 204, 113, 1.0);
	
	color: white;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	
	position: absolute;
	margin: 0px;
	padding: 0px;
	top: calc(15% - 1px);
	left: calc(50% - 75px);
	height: 70%;
	width: 150px;
	
	cursor: pointer;
	
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;	
}

.alert-button-1:hover {
	background-color: rgba(39, 174, 96, 1.0);
}
