/* Стили для модального окна */
.mh-modal{
	display: none;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,.5);
	z-index:9999;
}
.mh-modal .mh-box{
	width:450px;
	background:#fff;
	position:relative;
	margin:9% auto;
	padding:30px;
	display: table;
}
.mh-modal h3{
	font-size:23px;
	margin: 10px 0;
}
.mh-modal span{
	cursor: pointer;
	position:absolute;
	right:0;
	top:0;
}
.mh-modal .good{
	position: relative;
}
.mh-modal .mh-close:after{
	border-radius: 3px;
	content:'×';
	display:block;
	position:absolute;
	right:-9px;
	top:-9px;
	width:27px;
	padding:1px;
	text-decoration:none;
	text-shadow:none;
	text-align:center;
	font-weight:bold;
	background: #09121c;
	color:#fff;
}
.mh-modal .mh-text {
	margin: 10px 0;
	width: 100%;
	display: inline-block;
	position: relative;
}
.mh-modal .mh-submit{
	float:left;
	margin-top: 10px;
	border-radius: 3px;
	position:relative;
	text-align: center;
	padding: 15px 25px;
	color: #fff;
	background-color: #09121c;
	width: 100%;
	box-sizing: border-box;
}
.mh-modal .mh-comment {
	padding: 10px;
}
.showing {
	display: block !important;
}

@media screen and (max-width:450px) {
	.mh-modal .mh-box{
		max-width: 100%;
		padding: 10px;
		width: 300px;
	}
}
