.overflow {
	overflow: hidden;
}
.input-class {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #FFE6E8;
    height: 50px;
    padding: 0 15px;
    font-size: 14px;
    transition: 300ms;
    color: #000;
}
.input-class::placeholder {
    color: #AEAEAE;
    transition: 300ms;
}
.input-class:focus::placeholder {
    font-size: 0;
}
textarea.input-class {
    height: 101px;
    resize: none;
    padding: 22px 22px;
}
.input-class:focus {
    border-color: #000;
}
.mform {
	background: #f2f2f2;
	width: 400px;
	position: fixed;
	top: 0; 
	right: -150%;
	z-index: 999999;
	height: 100%;
	padding: 40px;
	box-shadow: 0 0 30px rgba(0,0,0,0.37);
	transition: 600ms;
	color: #000;
	overflow: auto;
}
.mform.active {
	right: 0;
}
.mform-close {
    background: url(close.svg) no-repeat center #E4778C;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: 300ms;
    background-size: 44%;
}
.mform-close:hover {
    background-color: #000;
}
.mform-title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.mform-label {
	margin-bottom: 22px;
}
.mform-labels {
	margin-bottom: 40px;
}
.mform-label label {
	font-weight: 500;
	display: block;
}
.mform-load img {
	display: block;
	margin: 0 auto;
	border-radius: 100px;
	width: 200px;
}
.mform-success img {
	width: 150px;
	margin: 0 auto;
	display: block;
	margin-bottom: 25px;
}
.mform-success > span {
	display: block;
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	color: green;
}
.mform-load,
.mform-success {
	display: none;
}
@media(max-width: 500px) {
	.mform {
		width: 100%;
		padding: 40px 20px;
	}
}
.cs-form {
	max-width: 500px;
}
.cs-form .input-class {
	background: rgba(255,255,255,0.1);
	color: #fff;
}