.md {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.md-content {
    position: relative;
    margin: auto;
    padding: 0;
    background-color: #fff;
    width: calc(100% - 100px);
	max-width: 400px;
	animation: ani-md 0.6s forwards;
}

@keyframes ani-md {
	0% {transform: scale(0);}
	100% {transform: scale(1);}
}

.md-body {
	height: 100%;
}

.md-left {
	width: 61.75%;
	background: #fff;
	padding: 50px 70px;
}

.md-right {
	width: 38.25%;
	background: #F9F9F9;
	font-size: 20px;
	padding: 50px 60px;
}

.close-md {
	display: block;
	width: 30px;
	height: 30px;
	padding: 30px;
    margin-left: auto;
    cursor: pointer;
}

.order-form {
	width: calc(100% - 60px);
	margin: auto;
	padding-bottom: 30px;
}
.order-form input[type=text], .order-form input[type=email] {
	color: #000;
    border: 1px solid #b9d199;
    background-color: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
	width: calc(100% - 30px);
    height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 15px;
}
/*.order-form input[name=phone] {
	width: 100%;
}*/
.order-form button[type=submit] {
	display: block;
	cursor: pointer;
	width: 100%;
    min-height: 60px;
	margin-bottom: 25px;
}
.order-form button[type=submit]:hover {
	background: #000;
}
.confidentiality {
	text-align: center;
	font-size: 14px;
}
.confidentiality a {
	color: #000;
	font-weight: 600;
}
.order-error, .order-success {
	text-align: center;
    background: #fff;
}
.order-error {
    padding-bottom: 30px;
	color: red;
}
.order-success {
	margin-top: 50%;
	font-size: 130%;
}
.order-error:empty, .order-succes:empty {
	margin-top: 0;
    padding-bottom: 0;
}