/*
	CONFIRMATION POPUP
---------------------- */
.confirmation-popup{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.8);
	z-index:950;
}
.confirmation-popup-content{
	position:absolute;
	background-color:#ebfde4;
	color:#638956;
	left:30px;
	top:30px;
	right:30px;
	padding:15px;
	border-radius:5px;
}
.btn-confirm-popup{
	display:inline-block;
	padding:5px 10px;
	border:solid 1px #638956;
	border-radius:5px;
	color:#638956;
	text-decoration:none;
	margin-top:15px;
}
.btn-confirm-popup:hover{
	background-color:#638956;
	color:#fff;
}
.btn-close-confirmation-popup{
	position:absolute;
	width:40px;
	height:40px;
	line-height:40px;
	background-color:#638956;
	color:#fff;
	text-align:center;
	border-radius:50%;
	top:-15px;
	right:-15px;
}
.btn-close-confirmation-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){
	.confirmation-popup-content{
		left:50%;
		top:60px;
		right:auto;
		width:600px;
		margin-left:-300px;
		padding:30px;
	}
}