.call-bg{
	width: 100%;
	height: 100%;
	top:0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
	background-color: rgba(0,0,0,0.7);
	z-index: 200;
	position: fixed;
	display: none;
}
.call-wrap{
	
	font-size: 14px;
	line-height: 1.5;
	background-color: #fff;
	width: 30%;
	position: absolute;
	
	padding: 70px 20px 30px 20px;
	top: 100px;
	display: none; 
	margin: 20px 35%;
	border-radius: 20px;
	z-index: 205;
}

.call-wrap .block-width{
	margin: 0px 2%;
	width: 96%;
}

.call-wrap .info{
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
}

.call-wrap input[type="text"]{
	max-width: 100%;
	font-size: 17px;
	border: 1px solid #ccc;
    padding: 10px 15px;
    width:100%;    
}

.call-wrap .line.block-width{
	margin-bottom: 10px;
}

.call-wrap label{
	display: block;
	font-weight: normal;
	margin-bottom: 2px;
	width:100%;
}

.call-wrap .title{
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #797979;
	padding: 3px 0px 0px 15px; 
	margin: 0px;
	width: 100%;
	height: 50px;
	line-height: 45px;
	font-size: 24px;
	color: #fff;
	
}

.call-wrap .title h2{
	display: block;
	color: #fff;
	margin: 0px;
	font-size: 24px;
}

.call-wrap .buttons-wrap{
	display: block;
	text-align: center;
	margin-top: 25px;
	margin-left: 10px;
}

.call-wrap .buttons-wrap a.send{
	background-color: #036739;
    color: #fff;
    font-weight: bold;
    display: block;
    vertical-align: middle;
    margin-right: 0px;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    width: 220px;
    border-radius: 3px;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 5px;
}

.call-wrap .buttons-wrap a.send:hover{
	background-color:#048e51;	
}

.call-wrap .buttons-wrap a.cancel{
	display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    font-size: 16px;
    color: #222;
}

.call-wrap .close{
	opacity: 1;
	display:block; 
    background-image:url(img/close.png);
    background-repeat:no-repeat;
    width:24px;
    height:24px;
    position:absolute;
    right:14px;
    top:14px;
    z-index: 25;
}

.call-wrap .close:hover{
	cursor: pointer;
    opacity: 0.8;
    transform: rotate(180deg);
    transition: all 0.7s ease 0s;
}

#call-err{
	font-size: 14px;
	color: #ff4242;
}

@media only screen and (min-width : 200px) and (max-width : 480px) {
	 /* smartphones, iPhone, portrait 480x320 phones */ 
	 .call-wrap{
		padding: 70px 10px 30px;
		width: 90%;
		margin: 20px 5%;
	 }
	 
	 .call-wrap input[type="text"]{
	 	padding: 5px 10px;
	 }
		
}

@media only screen and (min-width : 480px) and (max-width : 700px) {
	 /* smartphones, iPhone, portrait 480x320 phones */ 
	 .call-wrap{
		padding: 70px 10px 30px;
		width: 60%;
		margin: 20px 20%;
	 }
	 	 
		
}

@media only screen and (min-width : 700px) and (max-width : 1000px) {
	 /* smartphones, iPhone, portrait 480x320 phones */ 
	 .call-wrap{
		padding: 70px 10px 30px;
		width: 50%;
		margin: 20px 25%;
	 }
	 	 
		
}

