html, body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-family: 'Fira Sans', sans-serif;
}

body {
	line-height: normal;
	min-width: 300px;
	position: relative;
}

/**
 * wrapper within the container
 * 1260px width
 */
.block-container {
	max-width: 1260px;
	margin: 0 auto;
	min-width: 800px;
	position: relative;
}

/**
 * full content wrapper
 */
.content-block {
	width: 100%;
}

.content-block .block-container {
	background-color: #fff;
	-webkit-box-shadow: 4px 6px 15px 2px rgba(0,0,0,0.25);
	box-shadow: 4px 6px 15px 2px rgba(0,0,0,0.25);
	-webkit-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	-moz-transition: all 50ms ease;
	transition: all 50ms ease;
	padding: 10px;
	box-sizing: border-box;
}

/* START OF HEADER */
header {
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	border-bottom: 1px solid #c4c4c4;
}

header ul {
	text-transform: uppercase;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

header ul li {
	float: left;
	border-bottom: 3px solid transparent;
	padding-bottom: 11px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	list-style: none;
}

header ul li.logo {
	margin-right: 10px;
	border-color:transparent !important;
	padding-top: 3px;
	padding-bottom: 0;
	max-width: 350px;
	overflow: hidden;
}

header ul li.logo a {
	padding: 0;
	display: block;
	overflow: hidden;
}

header ul li.logo span {
	float: left;
    overflow: hidden;
    max-width: 160px;
    margin-top: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

header ul li.logo img {
	height: 50px;
	float: left;
	margin-right: 10px;
	max-width: 180px;
}

header ul li a:hover, header ul li.active a {
	text-decoration: none;
}

header ul li a {
	padding: 20px 15px 8px 15px;
	display: block;
	color: #222;
}

header ul li:last-child {
	float: right;
}
/* END OF HEADER */

/* START OF FOOTER */
footer {
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	border-top: 1px solid #c4c4c4;
	margin-top: 20px;
	padding: 10px 0;
}

footer ul {
	text-transform: uppercase;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

footer .social-media ul li {
	float: left;
	padding-bottom: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	list-style: none;
	margin-right: 40px;
}

footer .social-media  ul li a {
	display: block;
	width: 23px;
	height: 23px;
}

footer .social-media  ul li a.twitter {
	background: url('../../images/site_images/sprite.png') 0 0 no-repeat;
}

footer .social-media  ul li a.facebook {
	background: url('../../images/site_images/sprite.png') -23px 0 no-repeat;
}

footer .social-media  ul li a.google {
	background: url('../../images/site_images/sprite.png') -49px 0 no-repeat;
}

footer .social-media  ul li a.pinterest {
	background: url('../../images/site_images/sprite.png') -79px 0 no-repeat;
}

footer .footer-menu {
	background-color: #222;
	padding: 3px 0;
	margin: 5px 0;
}

footer .footer-menu ul li {
	float: left;
	list-style: none;
}

footer .footer-menu ul li a {
	color: #fff;
	padding: 10px 40px;
	display: block;
}

footer .footer-menu ul li a:first-child {
	padding-left: 0;
}

footer .copyright {
	font-size: 85%;
	color: #aaa;
}
/* END OF FOOTER */

/* HOMEPAGE */
.latest-properties {
	margin: 15px 0;
}
/* END OF HOMEPAGE */

/* SEARCH MENU */
.menu {
	background: #333;
	color: #fff;
}

.breadcrumbs {
	background: transparent;
	color: #333;
	margin-top: 5px;
}

.menu input {
	color: #333;
}

.menu a {
	color: #fff;
}

.content-block .menu .block-container {
	background-color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	-moz-transition: none;
	transition: none;
	padding: 0px;
	box-sizing: border-box;
}

.menu .search-field {
	float: left;
	width: 300px;
	overflow: hidden;
	margin: 5px 0;
}

.menu .search-field input {
	border: 0 none;
	height: 26px;
	padding: 3px 5px;
	font-size: 13px;
	border-radius: 0;
	outline: 0;
	float: left;
}

.menu .search-field input[type=text] {
	width: 250px;
}

.error {
	border: 2px solid #d92228 !important;
	/* also need animation and -moz-animation */
	-webkit-animation: shake .5s linear;
}

.error-box {
	display: block;
	width: 300px;
	border: transparent;
	background-color: #d92228;
	color: #fff;
	padding: 10px;
	margin: 10px auto;
}

.error-box p {
	font-size: 0.8em !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* also need keyframes and -moz-keyframes */
@-webkit-keyframes shake {
	8%, 41% {
		-webkit-transform: translateX(-10px);
	}
	25%, 58% {
		-webkit-transform: translateX(10px);
	}
	75% {
		-webkit-transform: translateX(-5px);
	}
	92% {
		-webkit-transform: translateX(5px);
	}
	0%, 100% {
		-webkit-transform: translateX(0);
	}
}

.menu .search-field input[type=submit] {
	width: 32px;
	background-image: url('../../images/site_images/search.png');
	background-position: center center;
	background-repeat: no-repeat;
}

.menu ul {
	float: left;
	width: 500px;
	font-size: 0.9em;
}

.menu ul li {
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 10px;
}

.menu ul li span.menu-dropdown {
	display: block;
	padding: 12px 15px 10px 15px;
	cursor: pointer;
}

.menu ul li span.show {
	background-color: #e8e8e8;
	color: #333;
}

.menu ul li .dropdown-content {
	display: none;
	position: absolute;
	background-color: #e8e8e8;
	min-width: 230px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	color: #333;
	padding: 20px 10px;
	font-size: 13px;
	z-index: 10;
}

.menu ul li .dropdown-content.price * {
	display: inline-block;
	border: 1px solid #333;
	padding: 4px 5px;
}
.menu ul li .dropdown-content.price input[type=text] {
	width: 38%;
	border-left: none;
	outline: none;
}

.menu ul li .dropdown-content dl {
	font-size: 14px;
	padding: 0;
}

.menu ul li .dropdown-content dl dd {
	padding: 6px;
	cursor: pointer;
	margin: 0;
}

.menu ul li .dropdown-content dl dd:hover,
.menu ul li .dropdown-content dl dd.selected
{
	background-color: #ccc;
}
/* END OF SEARCH MENU */

/* SEARCH RESULT */
.search-result {
	margin: 20px 0;
	overflow: hidden;
}

.search-result-wrapper {
	width: 100%;
	min-width: 600px;
	display: inline-block;
	vertical-align: top;
}

.search-result-wrapper h3 {
	font-size: 1.2em;
	margin-bottom: 15px;
}

.search-result-wrapper h3 span.properties-found-count,
.search-result-wrapper h3 span.sort {
	display: inline-block;
	width: 49.5%;
}

.search-result-wrapper h3 span.sort {
	text-align: right
}

.search-result-wrapper h3 span.sort a {
	font-size: .8em;
	margin-right: 0.5em;
	margin-left: 0.5em;
	text-decoration: none;
	color: #999;
}

.search-result-wrapper h3 span.sort a:hover {
	text-decoration: underline;
}

.search-result-wrapper h3 span.sort a.active {
	text-decoration: none;
	color: #333;
}

.search-result-wrapper .result-item a {
	color: inherit;
	display: block;
	overflow: hidden;
}

.search-result-wrapper .result-item {
	width: 48.5%;
	display: inline-block;
}

.search-result-wrapper .result-item:nth-child(even) {
	margin-right: 2%;
}

.search-result-wrapper .result-item:nth-child(odd) {
	margin-right: 0;
}

.result-item {
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.25);
	-webkit-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	-moz-transition: all 50ms ease;
	transition: all 50ms ease;
	border-radius: 2px;
	margin-bottom: 15px;
	overflow: hidden;
	cursor: pointer;
	padding-bottom: 10px;
}

.result-item:hover {
	-webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.8);
	box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.8);
}

.result-item .photo {
	height: 240px;
	float: left;
	width: 48%;
	text-align: center;
	overflow: hidden;
	font-size: 11px;
}

.result-item .photo img.property-photo {
	display: block;
	margin: 0 auto 3px auto;
	width: 100%;
	height: 88%;
}

.result-item .photo img.broker-logo {
	vertical-align: middle;
}

.result-item .info {
	float: left;
	width: 50%;
	padding: 20px;
}

.result-item .info span {
	display: block;
	line-height: 1.5;
}

.result-item .info .price {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.result-item .info .address {
	color: #0099cc;
}

.result-item .info p {
	line-height: 1.5;
	font-size: 0.8em;
	color: #999;
}

.result-item .info ul {
	margin-top: 20px;
	overflow: hidden;
	width: 200px;
	text-align: center;
}

.result-item .info li {
	list-style: none
	display: block;
	float: left;
	width: 30%;
	border-right: 1px solid #999;
	line-height: 1.5;
	font-weight: bold;
	margin-right: 3%;
}

.result-item .info li:last-child {
	border-right: none;
}

.result-item .info li label {
	display: block;
	font-weight: normal;
}

.result-item .info .pending-sale {
	color: #d92228;
}

.result-footer {
	font-size: .8em;
	line-height: 1.1;
}

.result-footer .pagination {
	font-size: 13px;
	display: block;
	text-align: right;
	margin: 15px 0 20px;
}

.result-footer .pagination span {
	margin-right: 6px;
}
/* END OF SEARCH RESULT */

/* DETAILS */
.property-details {
	width: 78%;
}

.menu.breadcrumbs {
	background: #333;
	margin-top: 0;
}

.menu-breadcrumb a {
	color: #fff;
	text-decoration: none;
}

.menu-breadcrumb a:hover {
	color: #8a8a8a;
}

.menu-breadcrumb {
	float: left;
	width: auto;
	font-size: 0.9em;
	margin-top: 12px;
}

.menu-breadcrumb span {
	margin: 0 8px;
	display: inline-block;
	color: #fff;
}

.courtesy-of {
	margin-left: 10px;
	font-size: .9em;
}

.disclaimer {
	font-size: .8em;
}

.courtesy-of b {
	font-weight: 700;
}

.gallery {
	margin: 10px 0;
	overflow: hidden;
	position: relative;
}

.map {
	height: 420px;
	display: none;
}

.map .canvas {
	width: 100%;
	height: 100%;
}

.gallery > a {
	display: block;
}

.gallery .overlay-icons {
	position: absolute;
	bottom: 20px;
	font-size: 12px;
	color: #fff;
	margin-left: 10px;
}

.gallery span {
	display: inline-block;
	padding: 6px 15px 6px 36px;
	background-color: rgba(0,0,0,0.6);
	margin-right: 10px;
	cursor: pointer;
}

.gallery span:hover {
	background-color: rgba(0,0,0,0.8);
}

.gallery span.fa-camera {
	background-image: url('../../images/site_images/camera.png');
	background-repeat: no-repeat;
	background-position: 10px center;
}

.gallery span.fa-map {
	background-image: url('../../images/site_images/map.png');
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 30px;
}

.gallery img {
	width: 100%;
}

iframe {
	overflow: hidden !important;
}

.property-heading {
	margin: 10px 0;
	line-height: 1.4;
	font-size: 1.1em;
	overflow: hidden;
}

.property-heading .location {
	float: left;
	width: 40%;
}

.property-heading span{
	font-size: 1.5em;
	font-weight: 700;
	display: block;
}

.property-heading .price {
	float: right;
	width: 30%;
	text-align: right;
}

.property-heading .location ul {
	margin: 10px 0;
	padding: 0;
}

.property-heading .location li {
	list-style: none;
	display: inline-block;
}

.property-heading .location li b {
	font-weight: 700;
}

.property-heading .location li:first-child {
	margin-right: 8px;
}

.property-heading .location li:last-child {
	padding-left: 10px;
	border-left: 1px solid #8a8a8a;
}

.details .property h3 {
	font-size: 2.5em;
	border-bottom: 2px solid #000;
	line-height: 2;
}

.details .property .item {
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid #8a8a8a;
}

.details .property .item h2 {
	max-width: 150px;
	float: left;
	font-weight: 700;
}

.details .property .item > div {
	margin-left: 160px;
}

.details .property .item div h4 {
	font-weight: 700;
	margin-bottom: 13px;
	line-height: 2;
	border-bottom: 1px solid #8a8a8a;
}

.details .property .item .column-wrapper {
	margin-bottom: 20px;
}
.details .property .item .column-2 {
	overflow: hidden;
	margin-top: 10px;
}

.details .property .item .column-2 .column {
	width: 47%;
	margin-right: 2.5%;
}

.details .property .item .column {
	float: left;
}

.details .property .item ul {
	margin: 0;
	padding: 0;
}

.details .property .item li {
	list-style: disc;
	margin-bottom: 3px;
    margin-left: 15px;
}

.details .other-properties {
	margin-bottom: 25px;
}

.details .other-properties .latest-item-wrapper {
	margin-bottom: 10px;
}

.other-properties .info .address {
	overflow: hidden;
    white-space: nowrap;
}
/* END OF DETAILS */

/* SIDE BAR */
.search-result .right-sidebar {
	display: inline-block;
	margin-left: 20px;
	width: 20%;
	min-width: 185px;
	vertical-align: top;
	margin-top: 25px;
}

.search-result .right-sidebar .sidebar {
	margin-bottom: 15px;
	border-radius: 2px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.29);
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.29);
	border: none;
	padding: 10px;
	overflow: hidden;
}

.search-result .right-sidebar .sidebar h4 {
	font-size: 1.1em;
	margin-bottom: 15px;
	text-align: center;
}

.search-result .right-sidebar .sidebar p {
	font-size: 0.6em;
	text-align: center;
	line-height: 3;
}

.search-result .right-sidebar input[type=text] {
	display: block;
	border: 1px solid #999;
	padding: 6px 12px;
	font-size: 14px;
	width: 100%;
}

.search-result .right-sidebar .inquiry input[type=text] {
	margin-bottom: 10px;
}

.search-result .right-sidebar .inquiry .agent-photo {
	text-align: center;
	margin-bottom: 10px;
}

.search-result .right-sidebar .inquiry .agent-photo img {
	max-width: 100%;
	max-height: 150px;

}

.search-result .right-sidebar .share-form-container .share-to {
	overflow: hidden;
	margin-bottom: 10px;
}

.search-result .right-sidebar .share-form-container .share-to *{
	display: inline-block;
	border: 1px solid #999;
	padding: 6px 12px;
	font-size: 14px;
	position: relative;
}

.search-result .right-sidebar .share-form-container .share-to span {
	border-right: none;
	max-width: 15%;
	background-color: #fff;
	min-width: 10%;
	z-index: 2;
}

.search-result .right-sidebar .share-form-container input[type=text] {
	border-left: none;
	max-width: 84%;
	width: 84%;
	outline: none;
	min-width: 78%;
	z-index: 1;
}

.search-result .right-sidebar textarea {
	width: 100%;
	min-height: 120px;
	margin-bottom: 10px;
	outline: none;
}

.search-result .right-sidebar input[type=submit] {
	color: #fff;
	background-color: #d92228;
	text-align: center;
	padding: 6px 12px;
	border: none;
	outline: none;
	width: 100%;
	display: block;
}

.search-result .right-sidebar .save-the-property {
	padding: 0;
	border-radius: 2px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.29);
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.29);
	background-color: #ccc;
}

.search-result .right-sidebar .save-the-property a {
	display: block;
	background: url('../../images/site_images/star-icon.png') 15% center no-repeat;
	background-size: auto 65%;
	color: #d92228;
	padding: 15px 0;
	text-align: center;
}

@media only screen and (max-width: 1200px) {
	.search-result .right-sidebar .save-the-property a {
		background-position: 6% center;
		background-size: auto 60%;
	}
}

.search-result .right-sidebar input[type=submit]:hover,
.search-result .right-sidebar .save-the-property a:hover {
	background-color: #999;
	text-decoration: none;
	color: #fff;
}
/* END OF SIDE BAR*/

/* HEADING */
h1.heading {
	font-size: 1.8em;
	border-bottom: 2px solid #000;
	margin: 20px 0;
	padding-bottom: 3px;
}

.sending {
	color: #d92228;
	line-height: 2;
}

/* LOGIN */
.form-container {
	width: 500px;
	margin: 30px auto 0 auto;
	padding: 10px 25px;
	background: rgba(0, 1, 1, 0.25);
	border-radius: 2px;
}

.login-container h1 {
	font-size: 1.8em;
	text-align: center;
	line-height: 2;
	margin-bottom: 10px;
	font-weight: 400;
}

.login-container input,
.login-container select{
	width: 100%;
	padding: 6px 12px;
	font-size: 1.1em;
	line-height: 1.4;
	margin: 8px 0 8px 0;
	outline: 0;
	border: none;
}

.login-container input[type=submit] {
	background-color: #d92228;
	padding-top: 6px;
	padding-bottom: 6px;
	border: 0;
	color: #fff;
}

.login-container p {
	text-align: center;
	margin: 15px 0;
}

.login-container p a {
	color: #711317;
}

.login-container p a:hover {
	color: #ccc;
	text-decoration: none;
}

/* ACCOUNTS */
.accounts-menu {
	width: 20%;
	float: left;
	background-color: #fff;
	font-size: 1.1em;
	padding: 20px 0;
}

.accounts-menu ul {
	margin: 0;
	padding: 0;
}

.accounts-menu ul li {
	display: block;
	padding: 0;
	margin: 0;
}

.accounts-menu ul li a {
	display: block;
	padding: 10px 15px;
}

.accounts-menu ul li a:hover,
.accounts-menu ul li a.active{
	background-color: #e8e8e8;
	text-decoration: none;
}

.account-contents {
	width: 75%;
	padding: 20px 2.5%;
	float: left;
}

.account-contents h4 {
	font-size: 2em;
	margin-bottom: 15px;
}

.account-contents .search-result-wrapper {
	width: 100%;
}

.folder-list {
	width: 100%;
	margin-bottom: 15px;
}

.folder-list .folder-item {
	width: 23.5%;
	margin-right: 1%;
	display: inline-block;
	position: relative;
}

.folder-list .folder-item img {
	max-width: 100%;
	border-radius: 4px;
	vertical-align: bottom;
}

.folder-list .folder-item .info {
	position: absolute;
	z-index: 2;
	width: 100%;
	bottom: 0;
	text-align: center;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	padding: 5px;
	box-sizing: border-box;
}

.folder-list .folder-item .info h1 {
	font-size: 1.2em;
	text-transform: uppercase;
}

.folder-list .folder-item .info {
	font-size: .8em;
}

.folder-list .folder-item a {
	display: block;
}

.folder-list .folder-item a.delete {
	position: absolute;
	width: 14px;
	height: 14px;
	top: -6px;
	right: -7px;
	background: url('../../images/remove.gif') left top no-repeat;
}

/* LATEST */
.latest-properties h1 {
	font-size: 2em;
	margin-bottom: 15px;
	text-align: center;
}

.latest-item {
	width: 19%;
	margin-right: 1%;
	float: left;
	overflow: hidden;
}

.latest-item .photo {
	width: 100%;
	text-align: center;
}

.latest-item .photo img {
	height: 180px;
	width: auto;
	margin: 0 auto;
}

.latest-item a {
	color: inherit;
	text-decoration: none;
}

.latest-item .info {
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border-radius: 2px;
	line-height: 1.4;
}

.latest-item .info .price {
	font-size: 18px;
	font-weight: 700;
}

.latest-item .info p {
	font-size: .9em;
}

.latest-item .info span {
	margin: 0 5px;
}
/* END OF LATEST */
