/*
	ERROR POPUP
--------------- */
.error-popup{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.8);
	z-index:950;
}
.error-popup-content{
	position:absolute;
	background-color:#ffd7d7;
	color:#e03f3f;
	left:30px;
	top:30px;
	right:30px;
	padding:15px;
	border-radius:5px;
}
.btn-error-popup{
	display:inline-block;
	padding:5px 10px;
	border:solid 1px #e03f3f;
	border-radius:5px;
	color:#e03f3f;
	text-decoration:none;
	margin-top:15px;
}
.btn-error-popup:hover{
	background-color:#e03f3f;
	color:#fff;
}
.btn-close-error-popup{
	position:absolute;
	width:40px;
	height:40px;
	line-height:40px;
	background-color:#e03f3f;
	color:#fff;
	text-align:center;
	border-radius:50%;
	top:-15px;
	right:-15px;
}
.btn-close-error-popup:hover{
	color:#fff;
	transform: rotate(90deg);
  	-webkit-transform: rotate(90deg);
  	-moz-transform: rotate(90deg);
  	-ms-transform: rotate(90deg);
  	-o-transform: rotate(90deg);
}
@media(min-width:768px){
	.error-popup-content{
		left:50%;
		top:60px;
		right:auto;
		width:600px;
		margin-left:-300px;
		padding:30px;
	}
}