/* CSS Document */

.grid-row {
    margin-left: 0px;
    margin-right: 0px;
}

label {
    display: inline-block;
    margin: 0 5px 10px 0;
}


/**
 * 6.4 - Contact page
 */

.contact-form label,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-bottom: 15px;
}

.contact-form label {
	margin: 0;
}

.contact-form legend {
	padding: 0;
	font-size: 16px;
	color: #808080;
	margin-bottom: 30px;
}

.contact-form input[type="submit"] {
	float: left;
	margin: 0 0 30px;
}

/* Google maps */


input,
select,
textarea {
	display: inline-block;
	margin: 0 5px 5px 0;
	padding: 10px 10px;
	
	height: auto;
	line-height: normal;
	color: #333333;
	font-size: 16px;
	background-image: none;
	background-color: #efefef;
	border-style: solid;
	border-width: 0;
	border-color: #d5d5d5;
	max-width: 100%;
	border-radius：10px;
	vertical-align: top;
	box-shadow: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}

input:hover,
select:hover,
textarea:hover {
	border-color: #262626;
	background-color: #DDDDDD;
}

input:focus,
select:focus,
textarea:focus {
	color: #050505;
	border-color: #050505;
	background: #efefef;
	outline: 0;
}

input.error,
select.error,
textarea.error,
input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
	color:  #000000;
	border-color: #000000;
	box-shadow: none;
}