/* @import url("responsive.css"); */

/*
Theme Name: Colglazier
Theme URI: http://underscores.me/
Author: Underscores.me || Modified: Joe Jackson - http://www.mrjoejackson.com/
Author URI: http://underscores.me/
Description: Website layout for Colglazier
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: colglazier
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 Colglazier is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #ded5c8;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
	font-size:12px;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	height:1px; border:none; color:#e86609; background-color:#e86609;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}

.post .entry-content ul {float:left; width:40%;}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	display:block;
}

.entry-content .alignleft img{ height:150px; width:auto;}
.entry-content .alignright img{height:150px; width:auto;}

figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa #bbb;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
.site-branding {float:left; width:220px; height:80px;}
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}
a:visited {
	color: purple;
}
a:hover,
a:focus,
a:active {
	color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-menu, .main-navigation {margin-top:50px;}
.main-navigation {
	display: block;
	float: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
	margin:0 5px;
	padding:0 2px;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
	color:#cc5500; 
	font-size:18px;
}


.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
	background-color:#cc5500;

}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
	color:#fff !important;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a, .main-navigation a:hover  {color: #592500 !important;}
/* Small menu */
.menu-toggle {
	cursor: pointer;
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		/*display: none;*/
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 0.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 0.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
.clear {clear:both;}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.site-title {text-indent:-9999px; margin-top:10px;}
.site-title a {display:block; width:222px; height:80px; background: url('images/logo.jpg') top left no-repeat;}
.site-header {width:100%; height:105px; border-bottom:5px solid #cc5500; background-color:#fff;}

#home-banner img {display:block;}
/*.home {background: #ded5c7 url('images/homebg.jpg') top center no-repeat; background-position: 0 105px;}*/
/*.home-main a img:hover {opacity: .95;}*/
.specialties {padding-top:10px; height:215px; color:#fff; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size:28px; background-color:#cc5500;}
.specialties ul {list-style: none;}

.inside-main {background-color: #e8e6e0; padding:35px 55px;}
.inside-main p {font-size:14px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}
.inside-main a, .inside-main a:visited {text-decoration:none;}
/*.inside-main a:hover {color:#e3e3e3;}*/


.entry-title {color:#c50; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:36px;}
h3 {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:24px;}

.img-space-right {margin-right:15px;}


footer {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; color:#6a747c; font-size:16px;}
footer .wrap {padding:15px 10px;}
footer a {color:#9d9d9d;}

.site-info {float:left;}
.site-social {float:right;}

.site-social ul {}
.site-social li {text-indent:-9999px; float:left; padding:0 2px;}
.site-social li a {width:43px; height:42px; display:block;}

.social-fb {background: url('images/sm_fb.png') top left no-repeat;}
.social-linkedin {background: url('images/sm_linkedin.png') top left no-repeat;}
.social-google {background: url('images/sm_google.png') top left no-repeat;}
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	/*margin: 1.5em 0 0;*/
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
10.4 Structure // Framewaork
--------------------------------------------------------------*/
.drow {width:100%;}
.dcol {float:left;}
.dcol3 {width:33.33%;}
.dcol2 {width:50%;}

.wrap, .header-wrap {width:1040px; margin:0 auto;}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.site-main .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-main .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-main .gallery dd,
.site-main .gallery figcaption {
	margin: 0;
}
.site-main .gallery-columns-4 .gallery-item {
}
.site-main .gallery-columns-4 .gallery-item img {
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/** Overrides **/
.cycloneslider-template-standard {margin-bottom:0px !important;}
.cycloneslider-pager {display:none !important;}

#main ul li {/*color:#fff; font-size:13px;*/}
#main ul {margin-bottom:15px;}

.partners {height:135px; background-color:#fff; vertical-align: text-bottom; margin:0 auto; width:1040px;}
.partners img {padding:15px;}

#main a img.size-full {display:inline-block;}

.lowt {margin-top: -15px;}

/*--------------------------------------------------------------
	Homepage Template
--------------------------------------------------------------*/
.home-wrap {background:#ebe6e0; }
.home-wrap .padder {padding-left: 20px; padding-right: 20px; }
.home-wrap .banner-padder {padding-top:20px; }
.home-wrap #home-banner {background:#fff; padding:10px;}
.home-wrap #home-banner .cycloneslider-prev, .home-wrap #home-banner .cycloneslider-next {opacity:1 !important; border-radius:0; box-shadow: none; width: 39px; height: 39px; margin-top: 0; position: relative; left: 0; top: 0px; z-index: 999; display: block; float:left; margin-top: -90px; background: url(images/prev.png) no-repeat center center #ca5518; }
.home-wrap #home-banner .cycloneslider-next {background-image: url(images/next.png); left: 50px;}
.home-wrap #home-banner .cycloneslider-template-standard .cycloneslider-caption {text-align: right; background: #fff; color: #000; opacity:1;}
.home-wrap #home-banner .cycloneslider-template-standard .cycloneslider-caption-description {padding-bottom: 0; padding-right: 40px; }
.home-wrap #home-banner span.arrow {display:none !important; }
.shadow-wrap {padding-bottom: 22px; margin-bottom:10px; background: url(images/shadow.png) no-repeat center bottom; background-size: 100% 132px; }
.home-wrap .text-content {background: #f3f1ee; margin-bottom: 20px; padding: 30px 20px 20px; font-size: 14px;}
.home-wrap .text-content .main-text {width: 66%; float: left; line-height: 1.8;}
.home-wrap .text-content .side-text {width: 34%; float: left; }
.home-wrap .text-content .side-text p, .home-wrap #home-banner .cycloneslider-template-standard .cycloneslider-caption p {margin-bottom: 0.5em; }
.home-wrap .text-content .side-text a, .home-wrap #home-banner .cycloneslider-template-standard .cycloneslider-caption a {color: #ca5518; text-decoration: none; font-weight: bold; }
.home-wrap .text-content .side-text a:hover {color: #ca5518; text-decoration: underline; }
.home-wrap .text-content h1 {font-size: 24px; color: #000; font-weight: bold; margin-bottom: 15px; line-height: 1;}
.home-wrap .drow .box-img {margin-bottom: 1px; display: block;}
.home-wrap .drow .box-img img {width:100%; }
.home-wrap .drow .text {background: #fff; padding: 40px 20px 30px; font-size: 14px;}
.home-wrap .drow .text .more-link {font-weight: bold; color: #000; text-decoration: none; margin-top: 13px; display: block; }
#CDXDirect .Button {padding-top:8px !important; padding-bottom: 8px !important; background: #35383b; border: 0; border-radius: 3px; box-shadow: none; color: #fff; text-shadow: none; font-weight: bold; font-size: 12px; width:95% !important;}
#CDXDirect #forward {display: block; float: right; margin-top: -5px;}
#CDXDirect #back {display: block; float: left; margin-top: -5px;}
#CDXDirect .largeDivider{background: #ded5c8; margin-bottom: 10px; }
#CDXDirect .smallDivider {margin-top: 10px; margin-bottom: 10px; }

ul.listing-menu {text-align:center; font-weight: bold; font-size: 15px; padding: 0; margin: 0; list-style:none;}
ul.listing-menu li {display: inline; padding: 0 10px; border-left: 1px solid #faf9f7; }
ul.listing-menu li.first {border-left: none; }
ul.listing-menu li a {color: #ca5518; }
.page-template-property-all-php ul.listing-menu li.menu-all a,
.page-template-property-industrial-php ul.listing-menu li.menu-industrial a,
.page-template-property-office-php ul.listing-menu li.menu-office a,
.page-template-property-land-php ul.listing-menu li.menu-land a,
.page-template-property-retail-php ul.listing-menu li.menu-retail a,
.page-template-property-search-php ul.listing-menu li.menu-search a {color: #000 !important; }
.listing-menu-description {text-align:center; font-size: 14px; color: #000; margin-top: 10px; font-weight: bold;}
#listing-nav {padding-bottom: 0; }
#listing-nav + .inside-main {padding-top: 0; }

.home .cycloneslider-template-standard .cycloneslider-caption {display: none; }
.page-template-template-home-php .cycloneslider-template-standard .cycloneslider-caption {display: block; }

@media screen and (max-width: 767px) {
	.home-wrap #home-banner .cycloneslider-template-standard .cycloneslider-caption {display:none;}
	.home-wrap #home-banner .cycloneslider-prev, .home-wrap #home-banner .cycloneslider-next {top:50%; margin-top:0; position:absolute; left: 10px; }
	.home-wrap #home-banner .cycloneslider-next {left:auto; right:10px; }
	.home-wrap .text-content .main-text, .home-wrap .text-content .side-text {float:none; width:auto; }
	.home-wrap .text-content .padder {padding-left: 0; padding-right: 0; }
}

/* Property Listing Styles */
.wpl_loading.spinner {
    background: #cc5500;
    background-image: -webkit-linear-gradient(#cc5500 50%, #1a84b0 50%),-webkit-linear-gradient(#125c7b 50%, #0a3446 50%);
    background-image: -webkit-gradient(linear, #cc5500 50%, #cc5500 50%),-webkit-gradient(linear, #125c7b 50%, #0a3446 50%);
    background-image: -moz-linear-gradient(left, #cc5500 50%, #1a84b0 50%),-moz-linear-gradient(left, #125c7b 50%, #0a3446 50%);
    background-image: linear-gradient(#cc5500 50%,#1a84b0 50%),linear-gradient(#125c7b 50%,#0a3446 50%);
}

.wpl_property_listing_container .wpl_sort_options_container .wpl_plist_sort_active {
    color: #cc5500;
}

.wpl_property_listing_container .wpl_sort_options_container .wpl_plist_sort_active:before {
    background: #cc5500;
}

.wpl_list_grid_switcher>div.active:before, .wpl_list_grid_switcher>a.active:before {
    color: #cc5500;
}

.wpl-listing-tag.sp_featured {
    background-color: #cc5500 !important;
}

.wpl_prp_top_boxes.back {
    background: #cc5500;
}

.wpl_prp_title {
    color: #cc5500;
}

.wpl_prp_cont .price_box span {
    color: #cc5500;
    background: transparent;
}

.wpl_prp_cont:hover {
    border-bottom: 1px solid #cc5500;
}

.wpl_prp_cont.grid_box .price_box {
	position: relative;
}

.wpl_prp_show_container .tabs_box .tabs li:before {
    background: #cc5500;
}

.wpl_prp_show_detail_boxes_title:after {
    background: #cc5500;
}

.wpl_prp_right_boxes_title {
    color: #cc5500;
}

.wpl_prp_show_container .wpl_prp_right_boxe_details_bot>.price_box {
    color: #cc5500;
}

.wpl_prp_show_detail_boxes_cont .rows.feature.single:after {
    color: #cc5500;
}

.wpl_prp_show_detail_boxes_cont .neighborhood>span::after {
    color: #cc5500;
}

.wpl_prp_cont .wpl_prp_listing_location {
	height: auto;
}

.wpl_prp_listing_icon_box {
	display: none;
}

.wpl_prp_right_boxe_details_left ul li {
	display: none;
}

.wpl_prp_right_boxe_details_left ul li:first-child,
.wpl_prp_right_boxe_details_left ul li:last-child {
	display: block;
}

.wpl_prp_show_container .wpl_agent_info .name {
    font-size: 14px;
}

.wpl_prp_show_container .wpl_agent_info li a {
    color: #cc5500
}

.wpl_prp_show_container .wpl_attachments_list_container li {
	width: 100%;
	background: transparent;
}

.wpl_prp_show_container .wpl_attachments_list_container li a {color: #cc5500;}
.wpl_search_from_box .search_submit_box .wpl_search_widget_submit {background: #ca5518;box-shadow: none;}
.wpl_prp_cont.row_box .wpl_prp_bot{
    padding-top: 0;
}
.wpl_prp_title {
    line-height: 34px;
    font-size: 30px;
}
.wpl_prp_cont .wpl_prp_listing_location{font-size: 15px;}
.wpl_prp_cont.row_box .wpl_prp_desc{font-size: 12px;}
.wpl_prp_cont.row_box .price_box{
    font-size: 18px;
    line-height: 20px;
}
.wpl_search_from_box .search_submit_box{background: #ca5518;}
@media (max-width: 767px) {
	.wpl_prp_cont.row_box .wpl_prp_bot {padding-top: 15px;}
}