/*Styles to loading default && msg default- Used in the ajax jquery*/
div#loading-default{
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1000000;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.0);
}
div#loading-default img{
	width: 5em;
	position: absolute;
	top: 48%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

div#message-default{
	display: none;
	position: fixed;
	width: 60%;
	z-index: 1000000000;
	top: 0;
	left: 0;
	right: 0;
	margin: 6em auto 0 auto;
	background-color: rgba(0,0,0,0.9);
	font-family: 'Verdana', sans-serif;
	font-size: 12px;
	color: white;
}
div#message-default div{
	width: 100%;
	padding: .9em 0;
	text-align: center;
	background-color: #E3B132;
	border-bottom: 1px solid white;
}
div#message-default span{
	margin: 1em 2.5%;
	display: block;
	width: 95%;
	text-align: center;
}
div#message-default button{
	width: 15%;
	cursor: pointer;
	float: right;
	margin: 0 0.5em 0.5em 0;
	border: 1px solid #E3B132;
	background-color: transparent;
	color: white;
	padding: 0.5em 0;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
}
div#message-default button:hover{
	background-color: #E3B132;
}

/*Styles for screen 768px and lower*/
@media screen and (max-width: 768px) {
	div#message-default{
		width: 90%;
	}
}