#loader {
	position: absolute;
	float: left;
	z-index: 100;
	border: 12px solid #f3f3f3;
	border-radius: 50%;
	border-top: 12px solid #3D7FDB;
	width: 60px;
	height: 60px;
	right: 50%;
	bottom: 50%;
	top: auto;
	opacity: 1;
	transition: opacity 100ms linear;
	animation: spin 2s linear infinite;
	pointer-events: none;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	25% { transform: rotate(90deg); }
	50% { transform: rotate(180deg); }
	75% { transform: rotate(270deg); }
	100% { transform: rotate(360deg); }
}

#toast {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: rgba(239,239,239,1);
	color: #333333;
	text-align: center;
	padding: 16px;
	position: absolute;
	z-index: 10;
	left: 50%;
	bottom: 30px;
	font-family:arial;
	border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

#toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {bottom: 0px; opacity: 0;} 
	to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
	from {bottom: 0px; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;} 
	to {bottom: 0px; opacity: 0;}
}

@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0px; opacity: 0;}
}