
/*----------------- MAIN ----------------------------------------------------------------------------------------------------------------------------------*/

 .table
	{
	display: table;
	table-layout: fixed;
	width: 100%;
	}

 .l-side
	{
	display: table-cell;
	vertical-align: top;
	padding-right: 35px;
	*border: 1px solid red;
	}

 .r-side
	{
	display: table-cell;
	vertical-align: top;
	width: 300px;
	padding: 0px;
	*border: 1px solid red;
	}

 .hidden { display:none; }

/*----------------- LEFT SIDE -----------------------------------------------------------------------------------------------------------------------------*/

 #nb
	{
	padding: 7px 20px;
	background-color: #ee1c24;
	color: #ffffff;
	font-size: 16px;
	*font-family: 'Myriad Pro';
	font-weight: bold;
	text-shadow: 1px 1px 1px #000000;
	}

 #feedback
	{
	margin-top: 10px;
	}

 .field
	{
	width: 100%;
	margin: 4px 0;
	padding: 6px 10px;
	border: 1px solid #aaaaaa;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	box-sizing: border-box;
	}

 .field.error
	{
	border: 1px solid #ff5555;
	color: #ff5555;
	}

 textarea.field
	{
	resize: vertical;
	font-weight: normal;
	}

 #feedback label
	{
	display: block;
	margin-top: 5px;
	font-weight: bold;
	}

 #form-error
	{
	margin-bottom: 10px;
	text-align: right;
	color: red;
	display: none;
	}

 .send
	{
	float: right;
	width: 114px;
	height: 30px;
	text-align: center;
	font-size: 16px;
	font-family: 'Myriad Pro';
	color: #ffffff;
	text-shadow: 1px 1px 1px #000000;
	background: url("images/send.png") 0 0 no-repeat;
	border: none;
	cursor: pointer;
	outline: none;
	}

 .send:hover
	{
	background-position: 0 -32px;
	}


/*----------------- RIGHT SIDE ----------------------------------------------------------------------------------------------------------------------------*/

 .place
	{
	float: right;
	width: 400px;
	}

 .contacts p
	{
	margin: 15px 0;
	}

 .contacts a:hover
	{
	text-decoration: underline;
	}

 #gmap
	{
	width: 100%;
	height: 400px;
	}

/*----------------- MOBILE --------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 1000px)
{
 .table,
 .table .l-side,
 .table .r-side
	{
	display: block;
	width: 100%;
	}
 .table .l-side
	{
	padding-right: 0px;
	}
 .table .r-side
	{
	max-width: 300px;
	padding: 20px 0;
	}

 .send
	{
	float: none;
	}

 #form-error
	{
	text-align: left;
	}
 }

@media (max-width: 480px)
 {
 #gmap
	{
	height: 250px;
	}
 }
