@CHARSET "UTF-8";

html, body {
	border: 0;
	margin: 0;
	padding: 0;
	height:100%;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus,
	.btn.active.focus {
	outline: none;
}

#login_div {
	position: absolute;
	top: 0;
	right: 0;
	height: 28px;
	line-height: 28px;
	display: block;
}

#loader {
	position: absolute;
	top: 30%;
	left: 40%;
	z-index: 999;
}

.topTitle {
	font-size: 12px;
	color: #ffffff;
	margin-right: 10px;
	cursor: pointer;
}

.topTitle:hover {
	color: #ffffff;
	text-decoration: underline;
}

.topTitle:VISITED {
	color: #ffffff;
}


.toast-wrap{
    opacity: 0;
    position: fixed;
    bottom: 50%;
    color: #fff;
    left:45%;
    text-align: center;
    
 }
 .toast-msg{
    background-color: rgba(221, 41, 24, 0.7);
    padding: 10px 25px;
    border-radius: 5px;
 }
.toastAnimate{
    animation: toastKF 2s;
}
@keyframes toastKF{
    0% {opacity: 0;}
   25% {opacity: 1; z-index: 1051}
   50% {opacity: 1; z-index: 1051}
   75% {opacity: 1; z-index: 1051}
   100% {opacity: 0; z-index: 0}
}