.modaal-close {
/*	position: fixed;
	right: 20px;
	bottom: 0px;*/
	position: relative;
	left: 50%;
	top: 0;
	bottom: 10px;
	color: #ffffff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.modaal-close:after,.modaal-close:before{
background: #000000;
}
@media only screen and (max-width: 768px) {
.modaal-close {
	left: 43%;
}
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background:none;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}