.remodal {
	position: fixed;
	margin: auto;
	top: -100vh;
	left: 0;
	right: 0;
	transition: .5s ease-in-out;
	z-index: 200;
}

.remodal img{
	margin: 0 auto;
}

.remodal-overlay {
	position: fixed;
	z-index: 10;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(43, 46, 56, .9);
	transition: .5s ease-in-out;
	display: none;
}

.remodal-close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent;
	z-index: 201;
}

.remodal-close:hover,
.remodal-close:focus {
	color: #2b2e38;
}

.remodal-close:before {
	font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
	font-size: 25px;
	line-height: 35px;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 35px;
	content: "\00d7";
	text-align: center;
}
@media screen and (min-width: 760px) {
	.remodal {
		width: 856px;
		height: 450px;
	}
}

@media screen and (max-width: 760px) {
	.remodal {
		width: 95%;
		z-index: 1501;
		height: 80%;
	}
}

@media screen and (max-width: 760px) and (orientation:landscape ){
	.remodal {
		top: -100vw;
		height: 70vh
	}
}