body.no-scroll{
	overflow: hidden;
}
.modal-alert-container {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	z-index: 20000;
	border-radius: 0;
}

.modal-alert-content {
	margin: auto;
	padding: 20px;
	height: calc(100% - 80px);
	position: relative;
}
.modal-alert-content img{
	width: calc(100% - 80px);
	min-width: 300px;
	max-width: calc(600px - 80px);
	max-height: calc(100% - 80px);
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 40px;
}

.modal-alert-content .modal-image{
	width: calc(100% - 80px);
	min-width: 300px;
	max-width: calc(600px - 80px);
	max-height: calc(100% - 80px);
	margin: 0 auto;
	position: relative;
}
.modal-alert-content .modal-image .close {
	color: #444;
	float: right;
	font-size: 50px;
	line-height: 20px;
	z-index: 3000;
	position: absolute;
	right: 55px;
	top: 40px;
	opacity: 0.8;
}
.modal-alert-content .modal-image .close:hover,
.modal-alert-content .modal-image .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
@media screen and (max-width: 990px) {
	.modal-alert-content a, .modal-alert-content img{
		margin-top: 50px;
	}
	.modal-alert-content .modal-image{
		color: #fff;
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
	.modal-alert-content .modal-image .close {
		right: 0px !important;
		top: 0px !important;
	}
}
