﻿#modal_form {
	width: 440px;
    height: 380px;
	border-radius: 10px;
	background: #fff;
	position: fixed; 
	top: 25%; 
	left: 45%; 
	margin-top: -250px;
	margin-left: -150px; 
	display: none;
	opacity: 0; 
	z-index: 11; 
	padding: 20px 10px;
}

#modal_form #modal_close {
    width: 17px;
    height: 49px;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: block;
}

#overlay {
	z-index:10; 
	position:fixed; 
	background-color:#000; 
	opacity:0.8; 
	-moz-opacity:0.8; 
	filter:alpha(opacity=80);
	width:100%; 
	height:100%; 
	top:0; 
	left:0;
	cursor:pointer;
	display:none;
}
.modal-name, .modal-email
{
    width: 380px;
    height: 45px;
    font-family: Roboto Condensed;
    font-size: 16px;
    padding-left: 60px;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #333;
}
input.modal-name
{
    padding-left: 60px;
    background: #FFF url("../images/icons/formicon-user.png") 15px 7px no-repeat;
}
input.modal-email
{
    padding-left: 60px;
    background: #FFF url("../images/icons/formicon-email.png") 15px 7px no-repeat;
}
.modal-textarea
{
    width: 380px;
    height: 121px;
    font-size: 16px;
    padding-top: 5px;
    padding-left: 15px;
    border-radius: 7px;
    margin-bottom: 40px;
    font-family: Roboto Condensed;
    color: #333;    
}
.button-modal
{
    padding: 14px 21px;
    border-radius: 7px;
    background: #005cb9;
    margin: 15px 0px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}