.body-modal {
    overflow: hidden;
}
.frmmodal {
    bottom: 0;
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
	z-index:103;
	bottom:0;
	
    overflow-x: hidden;
    overflow-y: auto;
}
.frmmodal form {
    background: #fff none repeat scroll 0 0;
    margin: 30px  auto;
    overflow-y: auto;
    padding: 50px 20px 20px;
	position:relative;
    width: 400px;
}
.frmmodal form h4{
	font-size:16px;
	text-align:center;
	margin-bottom:20px;
}
.frmmodal .msg {
	
    background: #fff none repeat scroll 0 0;
    margin: 30px  auto;
    overflow-y: auto;
    padding: 50px 20px;
	position:relative;
    width: 400px;
	text-align:center;
	font-size:16px;
	display:none;
}
.frmmodal form input[type="tel"] {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.frmmodal form input[type="text"] {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.frmmodal form input[type="email"] {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.frmmodal form input[type="phone"] {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.frmmodal form select {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.frmmodal form textarea {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 90px;
    margin-bottom: 20px;
    padding: 20px;
    resize: none;
    width: 100%;
}
.frmmodal form input[type="submit"] {
    border: 1px solid #777;
    box-sizing: border-box;
    display: block;
    height: 40px;
    margin: 0 auto;
    padding: 0 20px;
    width: 200px;
}
.frmmodal .close {
	position:absolute;
	top:10px;
	right:10px;
	width:25px;
	height:25px;
	background: url(./close.svg);
	background-size:cover;
	cursor:pointer;
}
.overflow {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
	z-index:102;
}
.frmmodal h1{
	margin-top:0;
}

@media only screen and (max-width: 720px){
	.frmmodal{
		left:0;
		margin-left:0;
		width:100%;
		height:100%;
		bottom: auto;
	}
	.frmmodal form{
		margin:0;
		position:fixed;
		top:0;
		left:0;
		width:100%;
		box-sizing:border-box;
		height:100%;
		overflow-y:auto;
	}
}