/*
 * @package Base Stylesheets
 * @version 1.0.0
 * @author Benjamin Sinke - benjamin@noondesign.nl
 */
/* LESS Vars */
/* Maintenance */
body.maintenance {
  background: #f2f2f2;
}
.maintenance-wrapper {
  border: 1px solid #e0e0e0;
  padding: 30px;
  background: #fff;
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 38px;
  font-weight: 300;
}
.maintenance-wrapper .maintenance-head {
  width: 100px;
  height: 100px;
  background: url(../images/maintenance.png);
  margin: 50px auto;
}
.maintenance-wrapper h1 {
  background: url(../images/maintenance-heading.png);
  max-width: 100%;
  background-size: cover;
  height: 78px;
  text-indent: -9999px;
  overflow: hidden;
}
/* ToolTipster */
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #000;
  background: #4c4c4c;
  color: #fff;
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px;
}
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}
.tooltipster-base .tooltipster-content {
  overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tooltipster-arrow span,
.tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}
.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span,
.tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px;
}
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom-right span,
.tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px;
}
.tooltipster-arrow-top span,
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltipster-arrow-top-left span,
.tooltipster-arrow-bottom-left span {
  left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}
.tooltipster-arrow-top-right span,
.tooltipster-arrow-bottom-right span {
  right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}
.tooltipster-arrow-left span,
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}
.tooltipster-arrow-right span,
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
.tooltipster-fade-show {
  opacity: 1;
}
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}
.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0;
}
.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0px !important;
  opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.tooltipster-light {
  border: 1px solid #e0e0e0;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.tooltipster-light .tooltipster-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 10px;
  -webkit-font-smoothing: antialiased;
}
.tooltipster-light .tooltipster-content .stats {
  padding: 20px;
  font-size: 15px;
  width: 250px;
}
.tooltipster-light .tooltipster-content .stats strong {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.tooltipster-light .tooltipster-content .stats p {
  margin-top: 0;
  font-size: 16px;
}
.tooltipster-light .tooltipster-content .stats hr {
  display: block;
  height: 1px;
  border: none;
  background: #e0e0e0;
  width: 100%;
  clear: both;
  margin: 5px 0 3px 0 !important;
}
.tooltipster-light .tooltipster-content .stats span {
  width: 50%;
  float: left;
  color: #666666;
  text-transform: uppercase;
  font-size: 14px;
}
.tooltipster-light .tooltipster-content .stats small {
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  float: right;
}
.tooltipster-light .tooltipster-content strong {
  font-weight: 600;
}
.tooltipster-light .tooltipster-content span {
  display: block;
  width: 130px;
  float: left;
}
.pm-myaccount-notification {
  background: #e0e0e0;
  padding: 15px;
  box-sizing: border-box;
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
}
.pm-myaccount-notification.green {
  background-color: #7ea387;
  color: #fff;
}
.pm-myaccount-notification.orange {
  background-color: #eea811;
  color: #fff;
}
/* Clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
.clearel {
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/* Buttons */
.generic-button {
  display: block;
  height: 50px;
  padding: 0 20px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  background: #7ea387;
  font-size: 16px;
  text-transform: none;
  text-align: center;
  line-height: 48px;
  box-sizing: border-box;
}
.generic-button.submit-savesearch {
  width: 298px!important;
}
.generic-button:hover {
  background: #618069;
}
.generic-button.button-contrast {
  background: #5e387e;
}
.generic-button.button-contrast:hover {
  background: #4a2c63;
}
/* Body */
body {
  background: #cccccc;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  height: 100%;
}
html {
  height: 100%;
}
.wrapper {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 2000px;
  overflow: hidden;
  min-height: 100%;
  background: #fff;
}
.content-container {
  max-width: 1314px;
  margin: 0 auto;
  position: relative;
}
.top-navigation {
  float: right;
  height: 50px;
}
.top-navigation > ul {
  list-style: none;
  display: block;
  height: 30px;
  margin: 0px 0;
  padding: 0;
  float: right;
  font-size: 14px;
}
.top-navigation > ul > li {
  float: right;
  font-size: 15px;
  margin: 0 0 0 25px;
  position: relative;
  overflow: hidden;
  height: 30px;
  padding: 10px 0px;
}
.top-navigation > ul > li:hover {
  overflow: visible;
}
.top-navigation > ul > li a {
  color: #333333;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  border-bottom: 1px solid #fff;
  padding-top: 5px;
}
.top-navigation > ul > li a:hover {
  border-bottom: 1px solid #7ea387;
}
.top-navigation ul.sub-menu {
  position: absolute;
  left: -123px;
  top: 50px;
  background: none;
  width: auto;
  min-width: 225px;
  max-width: 306px;
  padding: 0;
  list-style: none;
  background-clip: content-box;
  display: none;
  display: block;
  z-index: 999999999999;
}
.top-navigation ul.sub-menu li {
  height: 50px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 28px;
  text-indent: 5px;
}
.top-navigation ul.sub-menu li:hover {
  background: #7ea387;
  color: #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.top-navigation ul.sub-menu li:hover a {
  color: #fff !important;
}
.top-navigation ul.sub-menu li a {
  border-bottom: none !important;
}
.top-navigation ul.sub-menu li a:hover {
  border-bottom: none !important;
}
.top-navigation > ul li.user-is-loggedin {
  position: relative;
}
.top-navigation > ul li.user-is-loggedin a {
  display: inline-block;
  padding: 0 15px;
  border-radius: 5px;
  vertical-align: middle;
  border: 1px solid #fff;
  margin-left: 10px;
  min-width: 180px;
  height: 30px;
  line-height: 28px;
}
.top-navigation > ul li.user-is-loggedin a small {
  display: inline-block;
  height: 5px;
  width: 10px;
  background: url(../images/dropdown-arrow.png);
  margin: -3px -15px 0 15px;
  vertical-align: middle;
}
.top-navigation > ul li.user-is-loggedin a:hover {
  border-color: #e0e0e0;
}
.top-navigation > ul li.user-is-loggedin ul.myaccount-dropdown {
  padding: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  right: 0;
  top: 39px;
  left: auto;
  width: -webkit-calc(100% - 10px);
  width: -moz-calc(100% - 10px);
  width: calc(100% - 10px);
  border-radius: 0 0 5px 5px;
  z-index: 9999;
  position: absolute;
  box-sizing: border-box;
  display: none;
}
.top-navigation > ul li.user-is-loggedin ul.myaccount-dropdown li {
  width: 100%;
  padding: 0;
  height: 34px;
  line-height: 32px;
}
.top-navigation > ul li.user-is-loggedin ul.myaccount-dropdown li a {
  height: 100%;
  width: 100%;
  padding: 0 0 0 15px;
  margin: 0 !important;
  text-indent: 0 !important;
  box-sizing: border-box;
  height: 34px;
  border: none !important;
  border-radius: 0 !important;
  line-height: 32px !important;
  font-size: 14px !important;
  color: #666666;
}
.top-navigation > ul li.user-is-loggedin ul.myaccount-dropdown li a .tab-counter {
  display: block;
  float: right;
  width: 18px;
  height: 18px;
  background: #5e387e;
  border-radius: 30px;
  line-height: 18px !important;
  color: #fff !important;
  text-align: center;
  margin: 5px;
  font-size: 12px;
  font-weight: 600;
}
.top-navigation > ul li.user-is-loggedin ul.myaccount-dropdown li a:hover {
  background-color: #fff;
  color: #7ea387;
  border-bottom: 1px solid #e0e0e0 !important;
}
.top-navigation > ul li.user-is-loggedin,
.top-navigation > ul li.user-not-loggedin {
  border-left: 1px solid #e0e0e0;
}
.top-navigation > ul li.user-not-loggedin a {
  padding: 0 15px;
  padding-top: 4px;
}
.top-navigation > ul li.user-not-loggedin a:hover {
  color: #7ea387;
  border-bottom: none !important;
}
.top-navigation > ul li.user-is-loggedin.toggled {
  overflow: visible;
}
.top-navigation > ul li.user-is-loggedin.toggled > a {
  border-color: #e0e0e0;
}
.top-navigation > ul li.user-is-loggedin.toggled ul.myaccount-dropdown {
  display: block !important;
  z-index: 999999;
  list-style: none;
  border-top: 1px solid #e0e0e0;
}
.top-navigation > ul li.user-is-loggedin.toggled ul.myaccount-dropdown li {
  border-bottom: 1px solid #e0e0e0;
}
.site-top {
  display: block;
  position: relative;
}
.logo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 30px;
  z-index: 99999;
  background: #fff;
  min-width: 261px;
  box-sizing: border-box;
}
.logo-wrapper img {
  max-width: 196px;
  margin-top: 7px;
}
.main-navigation {
  height: 50px;
  background: white;
  position: relative;
  line-height: 48px;
  z-index: 9999;
}
.main-navigation ul {
  height: 50px;
  position: relative;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0 0 0 261px;
  z-index: 999;
}
.main-navigation ul li {
  float: left;
  overflow: hidden;
  position: relative;
  border-right: 1px solid #fff;
}
.main-navigation ul li > a {
  padding: 0 20px;
  display: block;
  height: 50px;
  font-weight: 400;
  color: #5e387e;
  text-decoration: none;
  text-transform: uppercase;
}
.main-navigation ul li > a:hover {
  color: #618069;
  /*background: @deeppurple;*/
}
.main-navigation ul li div.submenu {
  height: 45px;
  position: absolute;
  top: 50px;
  width: 326px;
  left: -20px;
  z-index: 9999;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 9999px);
}
.main-navigation ul li div.submenu u {
  display: none;
}
.main-navigation ul li div.submenu ul {
  position: absolute;
  left: 20px;
  top: 0px;
  background: #fff;
  width: 306px;
  padding: 0;
  list-style: none;
  background-clip: content-box;
  height: auto;
  margin: 0;
}
.main-navigation ul li div.submenu ul li {
  height: 50px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  width: 306px;
  float: none;
}
.main-navigation ul li div.submenu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333333;
  text-transform: none;
  margin: 0;
  border-radius: 0;
  line-height: 48px;
  font-size: 15px;
  padding: 0;
  text-indent: 20px;
  /*font-weight: 100;*/
}
.main-navigation ul li div.submenu ul li a:hover {
  color: #FFFFFF;
  background: #7ea387;
}
.main-navigation ul li:hover {
  overflow: visible;
}
.frontpage-branding {
  width: 100%;
  position: relative;
}
.frontpage-branding .caroufredsel_wrapper {
  width: 100% !important;
}
.frontpage-branding .frontpage-slideshow {
  position: relative;
  width: 100%;
  height: 650px;
}
.frontpage-branding .frontpage-slideshow .slide {
  position: relative;
  width: inherit;
  height: inherit;
  background-position: top center;
  background-repeat: no-repeat;
  max-width: 2000px;
  float: left;
  height: 650px;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper {
  height: inherit;
  width: inherit;
  max-width: 1314px;
  min-width: 1314px;
  margin: auto;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container {
  float: right;
  margin: 185px 0 0 0;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container span.slide-title {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  display: block;
  float: right;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container a {
  display: block;
  height: 40px;
  margin: 0 0 1px 0;
  background: #5e387e;
  line-height: 38px;
  color: #fff;
  float: right;
  clear: right;
  text-decoration: none;
  text-align: left;
  padding: 0 20px;
  font-size: 16px;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container a small {
  font-size: inherit;
  font-weight: 600;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container a:hover {
  background: #4a2c63;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container a.top {
  border-radius: 3px 3px 0 0;
}
.frontpage-branding .frontpage-slideshow .slide .slide-wrapper .slide-link-container a.bottom {
  border-radius: 0 0 3px 3px;
}
.property-search {
  height: 70px;
  width: 100%;
  position: relative;
  background: #fff;
  margin: -85px 0 0 0;
  z-index: 999;
  padding: 20px 0;
}
.property-search .property-search-content {
  margin: auto;
  position: relative;
  max-width: 1064px;
}
.property-search .property-search-content input[type=text] {
  width: 296px;
  height: 48px;
  padding: 0px;
  background: #f2f2f2;
  border-radius: 3px;
  border: 1px solid #5e387e;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  text-indent: 20px;
  line-height: 50px;
  margin: 10px 0 0 0;
  float: left;
}
.property-search .property-search-content .geotarget-search {
  display: none;
}
.property-search .property-search-content input[type=text].processing {
  background: #f2f2f2 url(../images/processing.gif) 257px center no-repeat;
}
.property-search .property-search-content input[type=text]:focus {
  border: 1px solid #b180c1;
}
.property-search .property-search-content .dropdown,
.property-search .property-search-content .filters {
  display: block;
  height: 48px;
  width: 118px;
  color: #333333;
  font-size: 15px;
  line-height: 46px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  text-indent: 20px;
  float: left;
  margin: 10px 0 0 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 30px 0 0;
  background: #f2f2f2 url(../images/dropdown-arrow.png) right center no-repeat;
}
.property-search .property-search-content .filters {
  overflow: visible !important;
  background: #f2f2f2 url(../images/dropdown-hamburger.png) right center no-repeat;
}
.property-search .property-search-content .filter-counter {
  display: inline-block;
  position: absolute;
  right: 40px;
  top: -10px;
  height: 22px;
  line-height: 22px;
  font-size: 13px;
  color: #fff;
  background: #eea811;
  border-radius: 3px;
  text-indent: 0px;
  padding: 0 7px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.property-search .property-search-content .dropdown:hover,
.property-search .property-search-content .filters:hover {
  border-color: #999;
  overflow: hidden;
}
.property-search .property-search-content .dropdown-content {
  position: absolute;
  top: 49px;
  left: -1px;
  z-index: 9999;
}
.property-search .property-search-content .dropdown-content a {
  float: left;
  height: 50px;
  display: block;
  width: 148px;
  background: #fff;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  text-decoration: none;
}
.property-search .property-search-content .dropdown-content a:last-of-type {
  border-color: #999;
  border-radius: 0 0 3px 3px;
}
.property-search .property-search-content .dropdown-content a:hover {
  background: #f2f2f2;
}
.property-search .property-search-content .property-search-go {
  display: block;
  height: 50px;
  width: 114px;
  line-height: 48px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  float: left;
  background: #7ea387;
  margin: 10px 0 0 10px;
  border-radius: 3px;
  font-size: 16px;
  text-transform: none;
  overflow: hidden;
}
.property-search .property-search-content .property-search-go:hover {
  background: #618069;
}
.property-search .property-search-content .save-search {
  float: left;
  margin: 10px 0 0 10px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  color: #7ea387;
  height: 48px;
  border: 1px solid #7ea387;
  text-transform: none;
}
.property-search .property-search-content .save-search:hover {
  border-color: #618069;
  color: #618069;
}
.property-search .property-search-content .ready {
  text-align: left;
  text-indent: 15px;
}
.property-search .property-search-content .button-processing {
  text-indent: -999px;
  background: #7ea387 url(../images/processing-button.gif) center center no-repeat;
}
/* text indent microsoft edge */
@supports (-ms-ime-align:auto) {
  .property-search .property-search-content input[type=text] {
    text-indent: 0;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.property-search.inpage {
  margin: 0;
  border-top: 1px solid #e0e0e0;
}
.property-search.inpage .property-search-content {
  max-width: 1314px;
}
/*
.recommended-properties .content-section, .services .content-section, .property-tags .content-section {

    h1, h2 , h3 {
        color:@purple!important;
        font-size: 23px!important;
    }
}
*/
.recommended-properties,
.development-projects {
  position: relative;
  width: 100%;
  background: #f2f2f2;
}
.content-section {
  position: relative;
  max-width: 1314px;
  margin: auto;
  padding: 0 0 50px 0;
}
.content-section h3,
.content-section h2,
.content-section h1 {
  font-size: 23px;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin: 0;
  padding: 40px 0 40px 0;
  text-transform: uppercase;
  letter-spacing: normal;
}
.content-section p {
  font-size: 15px;
  color: #666666;
  margin: 0 0 10px 0;
}
.content-section p > a {
  color: #7ea387;
}
.property-grid,
.prospect-grid,
.purchase-grid {
  margin-bottom: 50px;
  min-width: 1314px;
}
.property {
  height: 380px;
  width: 306px;
  position: relative;
  background: #fff;
  float: left;
  margin: 0 30px 0 0;
  overflow: hidden;
  border-radius: 4px;
}
.property p {
  margin: 20px;
  font-size: 17px;
  color: #666666;
  font-weight: 300;
  text-align: center;
}
.property p strong {
  color: #333333;
  font-weight: 600;
}
.property p > span {
  display: block;
  margin-bottom: 10px;
  color: #7ea387;
  font-weight: normal !important;
}
.property p > span.visiting-day-label.sold-ribbon {
  display: block;
  height: 20px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700 !important;
  margin: 23px 0 10px 0;
  line-height: 20px;
  background: #eea811;
  opacity: 0.9;
}
.property .property-image {
  overflow: hidden;
  position: relative;
  height: 191px;
  background: #666666;
}
.property .property-image img {
  max-width: 306px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.property .property-image .property-sold-ribbon {
  position: absolute;
  top: 50px;
  left: -30px;
  width: 120%;
  height: 45px;
  background: rgba(253, 200, 12, 0.95);
  line-height: 43px;
  font-weight: 600;
  font-size: 18px;
  -webkit-transform: rotate(-14deg);
  -moz-transform: rotate(-14deg);
  transform: rotate(-14deg);
  text-align: center;
}
.property .property-image .property-sold-ribbon.property-bought {
  position: absolute;
  top: 50px;
  left: -30px;
  width: 120%;
  height: 45px;
  background: rgba(0, 153, 204, 0.95);
  line-height: 43px;
  font-weight: 600;
  font-size: 22px;
  -webkit-transform: rotate(-14deg);
  -moz-transform: rotate(-14deg);
  transform: rotate(-14deg);
  text-align: center;
  color: #fff;
}
.property .property-details {
  height: 59px;
  border: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  font-size: 13px;
  position: relative;
  z-index: 9;
}
.property .property-details .property-spec {
  width: 65px;
  height: 59px;
  border-right: 1px solid #e0e0e0;
  float: left;
  text-align: center;
}
.property .property-details .property-spec:hover,
.property .property-details .property-measurements:hover {
  background: #fff;
}
.property .property-details div.property-spec:last-of-type {
  border-right: none !important;
}
.property .property-measurements {
  float: left;
  width: 106px;
  border-right: 1px solid #e0e0e0;
}
.property .property-measurements small {
  color: #999;
  font-size: 12px;
}
.property .property-measurements p {
  margin: 10px 0 0 0;
  float: none;
  font-size: 13px;
  color: #333333;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left !important;
}
.property .property-measurements span {
  float: left;
  width: 50px;
  height: 50px !important;
  background-position: -350px -100px;
}
.property .property-bedrooms span {
  background-position: -100px -110px;
}
.property .property-construction-year span {
  background-position: -450px -110px;
}
.property .property-picture-count span {
  background-position: 0 -12px;
}
.property .property-main-usage {
  border-right: 1px solid #e0e0e0;
  width: auto !important;
  text-align: left !important;
  padding-right: 30px;
}
.property .property-main-usage small {
  display: block;
  float: left;
  text-transform: uppercase;
  color: #999;
  font-size: 10px;
  margin: 12px 0 2px 0;
}
.property .property-main-usage span {
  background-position: -150px -250px;
  height: 50px !important;
  float: left;
  margin: 5px 5px 0 5px !important;
}
.property .has-icon span {
  display: block;
  width: 50px;
  height: 25px;
  background-image: url(../images/Spritegrid-@1x.png);
  margin: 7px auto 2px auto;
}
.property .tooltip {
  cursor: help;
}
.property a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
}
.property:hover {
  background: #f9f9f9;
}
.property:hover .property-measurements,
.property:hover .property-bedrooms,
.property:hover .property-construction-year,
.property:hover .property-picture-count,
.property:hover .property-measurements,
.property:hover .property-main-usage {
  background: #fff;
}
div.property:nth-child(4n+0) {
  margin: 0 0 30px 0;
}
.property-ribbon {
  position: absolute;
  top: 0px;
  left: 20px;
  background: rgba(94, 56, 126, 0.8);
  border-radius: 0 0 3px 3px;
  padding: 0 20px;
  line-height: 28px;
  height: 30px;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  color: #fff;
  font-size: 20px;
}
.property-piccount {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #e0e0e0;
  font-size: 12px;
  width: 128px;
  height: 51px;
  line-height: 75px;
  text-align: right;
  background: url(../images/object-pic-blur.png);
}
.property-piccount span {
  display: block;
  height: 12px;
  width: 15px;
  background: url(../images/Spritegrid-@1x.png) left top no-repeat;
  float: right;
  margin: 30px 10px 0 8px;
}
.button-all-properties {
  max-width: 325px;
  margin: auto;
}
div.property:last-of-type {
  margin: 0;
}
.review {
  overflow: hidden;
}
.review .review-action {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.review,
.newsletter-signup {
  position: relative;
  width: 100%;
  background: #f2f2f2;
  padding: 50px 0;
}
.review .review-content,
.newsletter-signup .review-content,
.review .newsletter-signup-content,
.newsletter-signup .newsletter-signup-content {
  max-width: 1085px;
  height: 193px;
  margin: auto;
  position: relative;
  z-index: 99;
}
.review .review-quote,
.newsletter-signup .review-quote,
.review .review-grade,
.newsletter-signup .review-grade {
  width: 494px;
  height: 200px;
  float: left;
  margin-left: 50px;
  position: relative;
}
.review .review-quote:after,
.newsletter-signup .review-quote:after,
.review .review-grade:after,
.newsletter-signup .review-grade:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 70%;
  border-bottom: 40px solid;
  border-left: 0px solid;
  border-right: 60px solid;
  border-top: 40px solid;
  border-color: #fff transparent transparent;
  bottom: 0px;
}
.review .review-quote p,
.newsletter-signup .review-quote p,
.review .review-grade p,
.newsletter-signup .review-grade p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  text-align: center;
  padding: 25px;
  color: #333333;
  min-height: 106px;
  background: #fff;
  border-radius: 35px;
}
.review .review-quote > span,
.newsletter-signup .review-quote > span,
.review .review-grade > span,
.newsletter-signup .review-grade > span {
  display: block;
  text-transform: uppercase;
  margin: 20px 0 0 0;
  text-align: right;
  width: 237px;
  color: #999;
  font-size: 14px;
  line-height: normal;
}
.review .review-grade:after,
.newsletter-signup .review-grade:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 30%;
  border-bottom: 40px solid;
  border-left: 0px solid;
  border-right: 60px solid;
  border-top: 40px solid;
  border-color: #fff transparent transparent;
  bottom: 0px;
}
.review .review-quote,
.newsletter-signup .review-quote {
  height: auto !important;
}
.review .review-grade,
.newsletter-signup .review-grade {
  font-size: 72px;
  width: 219px !important;
  text-align: center;
  float: left;
  background-position: 0 -193px;
}
.review .review-grade p,
.newsletter-signup .review-grade p {
  font-size: 72px;
  color: #7ea387;
  font-weight: bold;
  line-height: 100px;
}
.review .review-grade > span,
.newsletter-signup .review-grade > span {
  width: 90px;
  float: left;
}
.review .review-grade a,
.newsletter-signup .review-grade a {
  font-size: 14px;
  text-transform: uppercase;
  color: #7ea387;
  float: right;
  margin: 20px 0;
  font-weight: 600;
  text-decoration: none;
}
.review-logo {
  display: flex;
  align-items: center;
  width: 231px;
  height: 193px;
  text-transform: uppercase;
  color: #162983;
  font-weight: 600;
  font-size: 18px;
  float: left;
  padding-right: 30px;
}
.review-logo img {
  display: block;
  margin: 20px auto;
  width: 100%!important;
  height: auto;
}
.newsletter-signup,
.propdetails-text-nieuwsbrief {
  background: #fff;
  padding: 0;
}
.newsletter-signup .newsletter-signup-content,
.propdetails-text-nieuwsbrief .newsletter-signup-content {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  height: auto !important;
}
.newsletter-signup form,
.propdetails-text-nieuwsbrief form {
  width: 660px;
}
.newsletter-signup .gform_body,
.propdetails-text-nieuwsbrief .gform_body,
.newsletter-signup .gform_body label,
.propdetails-text-nieuwsbrief .gform_body label {
  margin: 0;
  padding: 0;
  height: auto;
  width: auto;
}
.newsletter-signup .newsletter-signup-form,
.propdetails-text-nieuwsbrief .newsletter-signup-form,
.newsletter-signup .newsletter-signup-form-nieuwsbrief,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief {
  float: left;
  border-right: 1px solid #e0e0e0;
  width: 722px;
  padding-bottom: 20px;
  display: block;
  padding-top: 50px;
  min-height: 216px;
}
.newsletter-signup .newsletter-signup-form span,
.propdetails-text-nieuwsbrief .newsletter-signup-form span,
.newsletter-signup .newsletter-signup-form-nieuwsbrief span,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief span {
  display: block;
  float: left;
  font-size: 35px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: 3px;
  background: url(../images/Spritegrid-@1x.png) -550px -250px no-repeat;
  background-clip: content-box;
  height: 50px;
  text-indent: 75px;
}
.newsletter-signup .newsletter-signup-form > p,
.propdetails-text-nieuwsbrief .newsletter-signup-form > p,
.newsletter-signup .newsletter-signup-form-nieuwsbrief > p,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief > p {
  width: 100%;
  float: left;
  clear: left;
  font-size: 14px;
}
.newsletter-signup .newsletter-signup-form .gfield_error,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gfield_error,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gfield_error,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gfield_error,
.newsletter-signup .newsletter-signup-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gform_wrapper li.gfield.gfield_error.gfield_contains_required,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
.newsletter-signup .newsletter-signup-form .gfield_error input,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gfield_error input,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gfield_error input,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gfield_error input,
.newsletter-signup .newsletter-signup-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required input,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required input,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gform_wrapper li.gfield.gfield_error.gfield_contains_required input,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gform_wrapper li.gfield.gfield_error.gfield_contains_required input {
  border-color: red;
  background: #ffeeee;
  color: red !important;
}
.newsletter-signup .newsletter-signup-form .gfield_description.validation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gfield_description.validation_message,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gfield_description.validation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gfield_description.validation_message {
  display: none !important;
}
.newsletter-signup .newsletter-signup-form .validation_error,
.propdetails-text-nieuwsbrief .newsletter-signup-form .validation_error,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .validation_error,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .validation_error {
  display: none !important;
}
.newsletter-signup .newsletter-signup-form .gform_wrapper .gform_footer,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gform_wrapper .gform_footer,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gform_wrapper .gform_footer,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gform_wrapper .gform_footer {
  clear: none !important;
  margin: 0px !important;
  padding: 0px !important;
}
.newsletter-signup .newsletter-signup-form .gform_anchor,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gform_anchor,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gform_anchor,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gform_anchor {
  display: none !important;
}
.newsletter-signup .newsletter-signup-form #gforms_confirmation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form #gforms_confirmation_message,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #gforms_confirmation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #gforms_confirmation_message {
  margin: 15px 15px 0 0;
  color: #fff;
}
.newsletter-signup .newsletter-signup-form form,
.propdetails-text-nieuwsbrief .newsletter-signup-form form,
.newsletter-signup .newsletter-signup-form-nieuwsbrief form,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form {
  float: left;
  margin: 14px 0 25px 0;
}
.newsletter-signup .newsletter-signup-form form label,
.propdetails-text-nieuwsbrief .newsletter-signup-form form label,
.newsletter-signup .newsletter-signup-form-nieuwsbrief form label,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form label {
  display: none !important;
  color: #fff;
}
.newsletter-signup .newsletter-signup-form form input[type=text],
.propdetails-text-nieuwsbrief .newsletter-signup-form form input[type=text],
.newsletter-signup .newsletter-signup-form-nieuwsbrief form input[type=text],
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form input[type=text],
.newsletter-signup .newsletter-signup-form form input[type=email],
.propdetails-text-nieuwsbrief .newsletter-signup-form form input[type=email],
.newsletter-signup .newsletter-signup-form-nieuwsbrief form input[type=email],
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form input[type=email] {
  display: block;
  float: left;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 3px 0 0 3px;
  background: #fff;
  width: 448px;
  outline: none;
  line-height: 48px;
  margin: px 0 0 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-indent: 10px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-right: none;
}
.newsletter-signup .newsletter-signup-form form input[type=submit],
.propdetails-text-nieuwsbrief .newsletter-signup-form form input[type=submit],
.newsletter-signup .newsletter-signup-form-nieuwsbrief form input[type=submit],
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form input[type=submit] {
  display: block;
  height: 50px;
  width: 192px;
  border-radius: 3px;
  background: #7ea387;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: px 0 0 0;
  cursor: pointer;
  float: left;
  -webkit-appearance: none;
  text-transform: none;
}
.newsletter-signup .newsletter-signup-form form input[type=submit]:hover,
.propdetails-text-nieuwsbrief .newsletter-signup-form form input[type=submit]:hover,
.newsletter-signup .newsletter-signup-form-nieuwsbrief form input[type=submit]:hover,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form input[type=submit]:hover {
  background: #618069;
}
.newsletter-signup .newsletter-signup-form form input[type=radio],
.propdetails-text-nieuwsbrief .newsletter-signup-form form input[type=radio],
.newsletter-signup .newsletter-signup-form-nieuwsbrief form input[type=radio],
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief form input[type=radio] {
  display: none !important;
}
.newsletter-signup .newsletter-signup-form #field_16_1 label,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_16_1 label,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_16_1 label,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_16_1 label,
.newsletter-signup .newsletter-signup-form #field_5_3 label,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_5_3 label,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_5_3 label,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_5_3 label {
  display: none !important;
  margin: none !important;
  font-weight: normal !important;
  text-align: left !important;
}
.newsletter-signup .newsletter-signup-form #field_16_1 label span,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_16_1 label span,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_16_1 label span,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_16_1 label span,
.newsletter-signup .newsletter-signup-form #field_5_3 label span,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_5_3 label span,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_5_3 label span,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_5_3 label span {
  display: none !important;
}
.newsletter-signup .newsletter-signup-form #field_16_1 input,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_16_1 input,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_16_1 input,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_16_1 input,
.newsletter-signup .newsletter-signup-form #field_5_3 input,
.propdetails-text-nieuwsbrief .newsletter-signup-form #field_5_3 input,
.newsletter-signup .newsletter-signup-form-nieuwsbrief #field_5_3 input,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief #field_5_3 input {
  margin: 0;
}
.newsletter-signup .newsletter-signup-form .gform_confirmation_wrapper .gform_confirmation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form .gform_confirmation_wrapper .gform_confirmation_message,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .gform_confirmation_wrapper .gform_confirmation_message,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  background: #fff;
  color: #7ea387;
  margin: 110px 0 0 0;
  padding: 0px;
  font-size: 16px;
}
.newsletter-signup .newsletter-signup-form .ginput_container_radio,
.propdetails-text-nieuwsbrief .newsletter-signup-form .ginput_container_radio,
.newsletter-signup .newsletter-signup-form-nieuwsbrief .ginput_container_radio,
.propdetails-text-nieuwsbrief .newsletter-signup-form-nieuwsbrief .ginput_container_radio {
  margin-top: 0;
}
.newsletter-signup .newsletter-twitter,
.propdetails-text-nieuwsbrief .newsletter-twitter {
  float: left;
  margin: 52px 0px 0px 73px;
  width: 275px;
  position: relative;
}
.newsletter-signup .newsletter-twitter span,
.propdetails-text-nieuwsbrief .newsletter-twitter span {
  display: block;
  float: left;
  font-size: 35px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: 3px;
  background: url(../images/Spritegrid-@1x.png) -550px -150px no-repeat;
  background-clip: content-box;
  height: 50px;
  text-indent: 75px;
}
.newsletter-signup .newsletter-twitter p,
.propdetails-text-nieuwsbrief .newsletter-twitter p {
  font-size: 14px;
  float: left;
  clear: left;
}
.newsletter-signup .newsletter-twitter a,
.propdetails-text-nieuwsbrief .newsletter-twitter a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
  clear: both;
  margin: 20px 0 0 0;
  margin-top: 45px;
  float: left;
  width: 273px;
}
.propdetails-section-content-nieuwsbrief form {
  float: right!important;
  margin: -19px 0 0px 0 !important;
}
.pricing {
  background: url(../images/pattern-bg-green.png);
  position: relative;
}
.pricing h3 {
  color: #fff;
}
.pricing .pricing-grid {
  max-width: 980px;
  margin: 0 auto 30px auto;
  display: block;
}
.pricing .pricing-grid .unit {
  float: left;
  width: 306px;
  border-radius: 4px;
  background: #fff;
  margin-right: 30px;
  position: relative;
  padding-bottom: 30px;
}
.pricing .pricing-grid .unit span {
  display: block;
  width: 286px;
  margin: 0 10px;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #5e387e;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.pricing .pricing-grid .unit ul {
  padding: 0;
  list-style: none;
  margin: 20px;
}
.pricing .pricing-grid .unit ul li {
  padding-left: 40px;
  height: 22px;
  line-height: 20px;
  background: url(../images/checkmark-large.png) left center no-repeat;
  margin-bottom: 8px;
}
.pricing .pricing-grid .unit small {
  color: #999;
  display: block;
  padding-left: 60px;
  margin-top: -10px;
}
.pricing .pricing-grid .unit a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -999px;
  overflow: hidden;
}
.pricing .pricing-grid .unit:hover {
  opacity: 0.95;
}
.pricing .pricing-grid .unit .callout {
  width: 100px;
  height: 100px;
  background: #5e387e;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  left: -33px;
  top: -33px;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  padding: 20px 20px;
  box-sizing: border-box;
  text-align: center;
}
.pricing .pricing-grid div.unit:last-of-type {
  margin-right: 0;
}
.pricing a.generic-button {
  max-width: 325px;
  margin: 0 auto;
  box-sizing: border-box;
}
.development-projects-grid {
  max-width: 1059px;
  display: block;
  margin: auto;
  padding-bottom: 50px;
}
.development-project {
  background: #fff;
  width: 474px;
  height: 543px;
  float: left;
  position: relative;
}
.development-project .development-project-image {
  width: 474px;
  height: 296px;
  overflow: hidden;
  position: relative;
}
.development-project .development-project-image img {
  max-width: 474px;
}
.development-project .development-project-details {
  width: 432px;
  height: 49px;
  border: 1px solid #e0e0e0;
  margin: 20px 0 0 20px;
}
.development-project .development-project-detail {
  text-indent: 33px;
  font-weight: 600;
  color: #5e387e;
  font-size: 18px;
  width: 215px;
  border-right: 1px solid #e0e0e0;
  line-height: 47px;
  height: 49px;
  background: #fff;
}
.development-project .left {
  float: left;
}
.development-project .right {
  float: right;
  border: none;
}
.development-project p {
  float: left;
  margin: 20px 60px 20px 20px;
  font-size: 15px;
  color: #666666;
}
.development-project p span {
  display: block;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 20px 0;
  color: #333333;
}
.development-project a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/object-go-arrow-@2x.png) 442px 435px no-repeat;
  background-size: 13px 40px;
}
.development-project:hover {
  background: #f9f9f9;
}
div.development-project:last-of-type {
  float: right;
}
.button-all-development {
  max-width: 325px;
  margin: auto;
}
.content-section {
  box-sizing: border-box;
}
.property-tags {
  position: relative;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.property-tags .property-tag {
  box-sizing: border-box;
  position: relative;
  float: left;
  height: 376px;
  width: 25%;
  padding: 0 0px 30px 30px;
}
.property-tags .property-tag .property-tag-image {
  position: relative;
  height: 298px;
  width: 298px;
  border-radius: 100%;
  overflow: hidden !important;
}
.property-tags .property-tag .property-tag-image .property-tag-count {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  text-align: center;
  line-height: 38px;
  color: #fff;
  background: rgba(94, 56, 126, 0.8);
  width: 100%;
}
.property-tags .property-tag a {
  display: block;
  box-sizing: border-box;
  margin-left: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 665px;
  background-size: 8px 25px;
  text-align: center;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  z-index: 9;
}
.property-tags .property-tag:hover img {
  opacity: 0.9;
}
.service-grid {
  position: relative;
  margin: auto;
  display: block;
  max-width: 980px;
}
.services {
  position: relative;
}
.services .service {
  float: left;
  width: 306px;
  margin: 0 30px 30px 0;
  position: relative;
  min-height: 340px;
  max-height: 378px;
  border-radius: 4px;
}
.services .service .service-image {
  background: #5e387e;
  width: 306px;
  height: 166px;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
.services .service .service-image h2 {
  position: absolute;
  top: 25px;
  color: #fff;
  text-transform: none;
  font-weight: 600;
  letter-spacing: normal;
  font-size: 20px;
  text-align: center;
  padding: 0;
  width: 100%;
}
.services .service .service-details {
  position: relative;
  padding: 30px;
  background: #f2f2f2;
  min-height: 222px;
  box-sizing: border-box;
}
.services .service .service-details p {
  font-size: 14px;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 20px;
}
.services .service .service-details a {
  color: #7ea387;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.services .service .service-details a:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.services .service .service-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
}
.services .service:hover {
  opacity: 0.8;
}
div.service:nth-of-type(3n+0) {
  margin: 0 0 30px 0;
}
.property-onsale {
  position: relative;
  width: 100%;
  background: #f2f2f2;
}
.property-onsale-column {
  position: relative;
  width: 302px;
  min-height: 306px;
  float: left;
  margin: 0 95px 0 0;
}
.property-onsale-column h3 {
  color: #5e387e;
  font-size: 23px;
  text-transform: uppercase;
  padding: 70px 0 40px 0;
  font-weight: 300;
  margin: 0;
  text-align: left;
  letter-spacing: normal;
}
.property-onsale-column a {
  color: #7ea387;
  text-transform: uppercase;
  font-size: 15px;
  margin: 20px 0 0 0;
  text-decoration: none;
}
.property-onsale-column a:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.property-onsale-column ul {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.property-onsale-column ul li {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.property-onsale-column ul li small {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
}
.property-onsale-column ul li a {
  text-decoration: none;
  color: #333333;
  text-transform: none;
  margin: 0px;
}
.property-onsale-column ul li a:hover {
  border-bottom: 1px solid #7ea387;
  color: #333333;
}
.property-column-grid {
  margin: 0 auto;
  display: block;
  max-width: 1096px;
}
div.property-onsale-column:last-of-type {
  margin: 0;
}
.blog-about {
  position: relative;
  width: 100%;
  background: #f2f2f2;
  padding-bottom: 80px;
}
.blog-about .service-grid {
  max-width: 1096px;
}
.blog-about h3,
.blog-about h2 {
  color: #5e387e;
  font-size: 25px;
  text-transform: uppercase;
  padding: 70px 0 40px 0;
  font-weight: 300;
  margin: 0;
}
.blog-about .blog-column {
  width: 699px;
  float: left;
  margin: 0 95px 0 0;
}
.blog-about .blog-column .blog-column-image {
  float: left;
  width: 306px;
  height: 192px;
  overflow: hidden;
  background: #e0e0e0;
}
.blog-about .blog-column .blog-column-image img {
  height: 100%;
  margin: auto;
  display: block;
}
.blog-about .blog-column a {
  float: left;
  color: #7ea387;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  margin: 15px 300px 0 0;
}
.blog-about .blog-column a:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
  background: #fff;
}
.blog-about .blog-column ul {
  margin: 0;
  padding: 0;
  float: left;
  width: 332px;
}
.blog-about .blog-column ul li {
  display: block;
  border-bottom: 1px solid #fff;
  height: 37px;
}
.blog-about .blog-column ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #666666;
  font-weight: 400;
  line-height: 35px;
  text-decoration: none;
  text-indent: 20px;
  margin: 0;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-about .blog-column ul li a:hover {
  color: #7ea387;
}
.blog-about .blog-column ul li:first-of-type {
  background: #fff;
}
.blog-about .about-column {
  float: left;
  width: 302px;
}
.blog-about .about-column p {
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}
.blog-about .about-column a {
  float: left;
  color: #7ea387;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  margin: 30px 10px 0 0;
  height: 20px;
  box-sizing: border-box;
}
.blog-about .about-column a:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.footer {
  background-color: #FFFFFF;
  padding: 40px 0px;
  line-height: 1.4em;
}
.fcol-3 {
  flex: 1;
  box-sizing: border-box;
  padding: 10px;
  /* float:left;
        width:25%;*/
  font-size: 14px;
}
.fcol-3.lh-fix {
  line-height: 34px;
}
.fcol-3 a {
  color: #7ea387;
  text-decoration: none;
}
.fcol-3 a:hover {
  color: #618069;
}
/*.fcol-3:not(:first-child){*/
.fcol-3 {
  border-left: 1px solid #e0e0e0;
}
.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 99999px;
  background-color: #5e387e;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5em;
  margin: 2px 10px;
}
.social-icon:hover {
  background-color: #7e6098;
}
.icon-bar {
  text-align: center;
  padding: 20px 0px;
  justify-content: center;
}
.footer {
  position: relative;
  width: 100%;
  /*background: @purple;*/
  /*height: 220px;*/
  clear: both;
  display: block;
  background-color: #FFFFFF;
  padding: 40px 0px;
  line-height: 1.8em;
  /* **** */
  /*.fcol-3:not(:first-child){*/
  /* **** */
}
.footer .fcol-3 {
  flex: 1;
  box-sizing: border-box;
  padding: 10px;
  /* float:left;
        width:25%;*/
  font-size: 15px;
}
.footer .fcol-3 a {
  color: #7ea387;
  text-decoration: none;
}
.footer .fcol-3 a:hover {
  color: #618069;
}
.footer .fcol-3 {
  border-left: 1px solid #e0e0e0;
}
.footer .social-icon {
  width: 50px;
  height: 50px;
  border-radius: 99999px;
  background-color: #5e387e;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5em;
  margin: 2px 10px;
}
.footer .social-icon:hover {
  background-color: #7e6098;
}
.footer .icon-bar {
  text-align: center;
  padding: 20px 0px;
  justify-content: center;
}
.footer .footer-grid {
  max-width: 1100px;
  display: flex;
  margin: 0 auto;
}
.footer p {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 0 15px 0;
  float: left;
}
.footer p.right {
  float: right;
}
.footer p.arrowed {
  position: relative;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  text-transform: none;
  margin-right: -125px;
  font-size: 18px;
}
.footer p.arrowed span {
  position: absolute;
  display: block;
  right: 50px;
  width: 50px;
  height: 50px;
  background: url(../images/Spritegrid-@1x.png) -400px 0;
}
.footer .footer-social {
  float: left;
  max-width: 595px;
  padding: 50px 0 0 0;
}
.footer .icons {
  clear: both;
  width: 100%;
}
.footer .social {
  float: left;
  height: 50px;
  width: 50px;
  overflow: hidden;
  border-radius: 25px;
  background: #5e387e url(../images/Spritegrid-@1x.png);
  display: block;
  margin: 8px 20px 0 0;
  text-indent: -999px;
}
.footer a.social:last-of-type {
  margin: 8px 0 0 0;
}
.footer .facebook {
  background-position: -50px 0;
}
.footer .facebook:hover {
  background-position: -50px -50px;
}
.footer .twitter {
  background-position: -100px 0;
}
.footer .twitter:hover {
  background-position: -100px -50px;
}
.footer .instagram {
  background-position: 0px -350px;
}
.footer .instagram:hover {
  background-position: -50px -350px;
}
.footer .google {
  background-position: -150px 0;
}
.footer .google:hover {
  background-position: -150px -50px;
}
.footer .pinterest {
  background-position: -200px 0;
}
.footer .pinterest:hover {
  background-position: -200px -50px;
}
.footer .youtube {
  background-position: -250px 0;
}
.footer .youtube:hover {
  background-position: -250px -50px;
}
.footer .linkedin {
  background-position: -300px 0;
}
.footer .linkedin:hover {
  background-position: -300px -50px;
}
.footer .email {
  background-position: -350px 0;
}
.footer .email:hover {
  background-position: -350px -50px;
}
.footer .footer-contact {
  float: left;
  padding: 50px 0 0 0;
  margin: 0 0 0 255px;
  color: #fff;
  max-width: 305px;
  font-size: 15px;
}
.footer .footer-contact address {
  display: block;
  clear: left;
  line-height: 35px;
  font-style: normal;
  font-weight: 600;
}
.footer .footer-contact span {
  float: left;
  width: 50%;
}
.footer .footer-contact span a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-contact span a:hover {
  text-decoration: underline;
}
.footer .footer-partners {
  width: 302px;
  float: left;
  padding: 50px 0 0 0;
  margin: 0 0 0 140px;
}
.footer-copyright {
  width: 100%;
  position: relative;
  background: #f2f2f2;
  text-align: center;
}
.footer-copyright .footer-copyright-content {
  height: 60px;
  max-width: 1100px;
  margin: auto;
  color: #999;
  line-height: 58px;
  font-size: 14px;
}
.footer-copyright .footer-copyright-content a {
  color: #999;
  text-decoration: none;
  padding: 0 10px 0 10px;
}
.autocomplete-container {
  position: absolute;
  top: 70px;
  left: 0px;
  padding: 10px;
  background: rgba(153, 153, 153, 0.9);
  z-index: 9999;
  display: none;
}
.autocomplete-container u {
  display: block;
  width: 9px;
  height: 5px;
  top: -5px;
  margin: 0 0 0 20px;
  position: absolute;
  background: url(../images/Spritegrid-@1x.png) -450px 0 no-repeat;
}
.autocomplete-container .autocomplete-list {
  width: 373px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.autocomplete-container .autocomplete-list ul {
  padding: 10px;
  margin: 0;
  list-style: none;
  text-indent: 10px;
}
.autocomplete-container .autocomplete-list ul li {
  display: block;
  height: 30px;
  font-size: 15px;
  line-height: 28px;
}
.autocomplete-container .autocomplete-list ul li a {
  text-decoration: none;
  color: #333333;
  display: block;
  height: 30px;
  border-radius: 3px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.autocomplete-container .autocomplete-list ul li a:hover,
.autocomplete-container .autocomplete-list ul li a:focus,
.autocomplete-container .autocomplete-list ul li .selected a {
  background: #7ea387;
  color: #fff;
}
.autocomplete-container .autocomplete-list ul li.selected a {
  background: #7ea387;
  color: #fff;
}
.autocomplete-container .autocomplete-list ul li.ruler {
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  background: url(../images/autocomplete-line.png);
}
.autocomplete-container .autocomplete-list ul li.ruler span {
  display: inline-block;
  background: #fff;
  padding: 0 10px 0 0;
  text-indent: none;
  margin: 0 0 0 -10px;
}
.no-result-found {
  position: absolute;
  right: 0;
  top: -60px;
  padding: 15px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
  display: none;
}
.no-result-found u {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -8px;
  background: #fff;
  right: 50px;
}
.property-filter-container {
  position: absolute;
  top: 775px;
  left: 0px;
  right: 0;
  margin: auto;
  background: rgba(153, 153, 153, 0.9);
  width: 978px;
  padding: 1px;
  z-index: 9999;
  display: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.property-filter-container .property-filter-list {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  width: 976px;
  margin: auto;
  display: flex;
}
.property-filter-container .property-filter-list u {
  display: block;
  width: 9px;
  height: 5px;
  top: -15px;
  right: 135px;
  position: absolute;
}
.property-filter-container a.property-filter-close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/Spritegrid-@1x.png) -500px -50px;
  text-indent: -999px;
  overflow: hidden;
  z-index: 999;
  cursor: pointer;
}
.property-filter-container a.property-filter-close:hover {
  background-position: -500px -100px;
}
.property-filter-container .property-filter-column {
  float: left;
  width: 274px;
  padding: 0 0 25px 49px;
  border-left: 1px solid #e0e0e0;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  min-height: 445px !important;
}
.property-filter-container .property-filter-column .type-filter,
.property-filter-container .property-filter-column .bog-type-filter {
  padding: 20px 0 0 0;
}
.property-filter-container .property-filter-column .bog-type-filter,
.property-filter-container .property-filter-column .bog-location-filter,
.property-filter-container .property-filter-column .bog-facility-filter,
.property-filter-container .property-filter-column .bog-livingspace-filter {
  display: none;
}
.property-filter-container .property-filter-column .location-filter,
.property-filter-container .property-filter-column .bog-facility-filter {
  padding: 10px 0 0 0;
}
.property-filter-container .property-filter-column label {
  font-size: 14px;
  color: #666666;
  height: 38px;
  line-height: 36px;
  display: inline-block;
  width: 116px;
  vertical-align: top;
}
.property-filter-container .property-filter-column .span {
  display: block;
  height: 25px;
  line-height: 23px;
  width: 100%;
  margin: 0 0 5px 0;
}
.property-filter-container .property-filter-column .filter-ruler {
  width: 325px;
  display: block;
  height: 1px;
  background: #e0e0e0;
  border: none;
  margin: 0 0 10px -50px;
}
.property-filter-container .property-filter-column .type-icon {
  left: -50px !important;
  top: -5px !important;
}
.property-filter-container .property-filter-column span.type-icon.type-bog,
.property-filter-container .property-filter-column .bog-facility-filter span.type-icon.type-energy {
  top: 5px !important;
}
.property-filter-container .property-filter-column div.property-filter:first-of-type span.type-icon:first-of-type {
  top: 5px !important;
}
.property-filter-container .property-filter {
  position: relative;
}
.property-filter-container .property-filter [data-field="house_group"] {
  width: 263px;
}
.property-filter-container .property-filter .type-filter-inner-appartment {
  display: none;
}
.property-filter-container .property-filter .type-filter-inner-appartment [data-field="house_type"] {
  width: 263px;
}
.property-filter-container .property-filter .type-filter-inner-house {
  display: none;
}
.property-filter-container .property-filter .type-filter-inner-house [data-field="house_type"] {
  width: 263px;
}
.property-filter-container div.property-filter-column:first-of-type {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}
.property-filter-container .tag-overflowcontrol {
  max-height: 325px;
  overflow: hidden;
  width: 100%;
  margin: 0 0 0 -35px;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.property-filter-container .tag-overflowcontrol .checkbox {
  margin-left: 0;
}
.property-filter-container .tag-overflowcontrol.triggered {
  max-height: 99999px;
}
.property-filter-container .trigger-tagoverflow {
  margin: 20px 0 0 0;
  color: #7ea387;
  text-transform: uppercase;
  font-size: 14px;
  float: left;
  cursor: pointer;
  display: none;
}
.property-filter-container .trigger-tagoverflow:hover {
  color: #618069;
  text-decoration: underline;
}
.checkbox {
  font-size: 14px;
  height: 20px;
  display: block;
  margin: 0 0 0 -34px;
  padding: 11px 0;
  cursor: pointer;
}
.checkbox span {
  display: block;
  float: left;
  height: 18px;
  width: 18px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin: 0 15px 0 0;
  background: #fff;
}
.checkbox:hover span {
  border-color: #999;
}
.checkbox.checked span {
  background: #fff url(../images/checkmark.png) left top no-repeat;
}
.faux-dropdown {
  display: block;
  height: 38px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  line-height: 36px;
  width: 263px;
  text-indent: 10px;
  cursor: pointer;
  margin: 0px 0 10px 0;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  background: #fff url(../images/dropdown-arrow.png) right center no-repeat;
  text-transform: none;
}
.faux-dropdown .faux-dropdown-content {
  position: absolute;
  left: -1px;
  top: 39px;
  border: 1px solid #999;
  border-radius: 3px;
  width: 100%;
  z-index: 999;
}
.faux-dropdown .faux-dropdown-content a {
  display: block;
  height: 39px;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  background: #fff;
}
.faux-dropdown .faux-dropdown-content a:hover {
  background: #f2f2f2;
}
.faux-dropdown .faux-dropdown-content a:first-of-type {
  border: none;
}
.faux-dropdown .faux-dropdown-content a:last-of-type {
  border-radius: 0 0 3px 3px;
}
.faux-dropdown .faux-dropdown-content a.current-selection {
  background: #fff url(../images/checkmark.png) right center no-repeat;
}
.faux-dropdown.dropdown .faux-dropdown-content {
  top: 50px;
}
.faux-dropdown.dropdown .faux-dropdown-content a {
  height: 48px;
  line-height: 46px;
}
.faux-dropdown.dropdown.active {
  overflow: visible !important;
}
.faux-dropdown.dropdown.active .faux-dropdown-content {
  top: -1px;
}
.faux-dropdown:hover {
  border-color: #999;
}
.faux-dropdown.active {
  border-color: #999;
  overflow: visible;
}
.faux-dropdown.active .faux-dropdown-content {
  top: -1px;
}
.filter-active {
  color: #eea811;
}
.filter-active a {
  color: #333333;
}
.small-dropdown {
  width: 143px;
  display: inline-block;
}
.smaller-dropdown {
  width: 108px;
  display: inline-block;
  margin-right: 6px;
}
.price-dropdown:hover {
  border-color: #999 !important;
  overflow: hidden !important;
}
.propertyprice-container {
  position: absolute;
  top: 90px;
  left: 560px;
  width: auto;
  padding: 10px 0 10px 10px;
  background: #fff;
  z-index: 999;
  display: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #999;
}
.propertyprice-container u {
  display: none;
  width: 9px;
  height: 5px;
  top: -5px;
  right: 158px;
  position: absolute;
  background: url(../images/Spritegrid-@1x.png) -450px 0 no-repeat;
}
.propertyprice-container .faux-dropdown {
  margin: 0 10px 0 0;
}
.property-filter-container.inpage {
  top: 211px;
}
.property-filter-container.inpage u {
  right: 210px !important;
}
.results-map {
  width: -webkit-calc(100% - 1000px);
  width: -moz-calc(100% - 1000px);
  width: calc(100% - 1000px);
  left: 0;
  height: -webkit-calc(100% - 170px);
  height: -moz-calc(100% - 170px);
  height: calc(100% - 170px);
  position: absolute;
  background: #999;
}
.results-list {
  width: 60%;
  right: 0;
  position: absolute;
  height: -webkit-calc(100% - 170px);
  height: -moz-calc(100% - 170px);
  height: calc(100% - 170px);
  max-width: 960px;
  min-width: 960px;
  padding: 0 20px;
  background: #f2f2f2;
}
.results-list .results-list-filters {
  float: left;
  height: 50px;
  width: 100%;
  line-height: 48px;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  z-index: 9;
}
.results-list .results-list-filters .list-filter {
  float: right;
  height: 50px;
  font-weight: normal;
  background: url(../images/dropdown-arrow.png) right center no-repeat;
  padding: 0 40px 0 0;
  margin: 0 -20px 0 0;
  cursor: pointer;
}
.results-list .results-list-filters .list-filter small {
  font-size: inherit;
  color: #666666;
  font-weight: 400;
}
.results-list .results-list-filters .list-filter u {
  position: absolute;
  top: 40px;
  right: 45px;
  height: 5px;
  width: 9px;
  background: url(../images/Spritegrid-@1x.png) -450px 0 no-repeat;
  display: none;
}
.results-list .results-list-filters .list-filter ul {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 160px;
  padding: 10px;
  background: rgba(153, 153, 153, 0.9);
  z-index: 999;
  display: none;
}
.results-list .results-list-filters .list-filter ul li {
  display: block;
  height: 39px;
  width: 160px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  line-height: 38px;
  text-indent: 15px;
}
.results-list .results-list-filters .list-filter ul li.selected {
  background: #fff url(../images/checkmark.png) center right no-repeat;
}
.results-list .results-list-filters .list-filter ul li:hover {
  color: #fff;
  background: #7ea387;
  background-position: center right;
  background-repeat: no-repeat;
}
.results-list .results-list-filters .list-filter:hover ul,
.results-list .results-list-filters .list-filter:hover u {
  display: block;
}
.results-list .results-ajax-area {
  width: 1056px;
  position: relative;
  height: -webkit-calc(100% - 110px);
  height: moz-calc(100% - 110px);
  height: calc(100% - 110px);
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.results-list .results-ajax-area .property {
  margin: 0 20px 20px 0 !important;
}
.results-list .results-ajax-area.smaller-area {
  height: -webkit-calc(100% - 150px) !important;
  height: moz-calc(100% - 150px) !important;
  height: calc(100% - 150px) !important;
}
.results-list .results-ajax-area.processing {
  min-height: 200px;
  background: url(../images/processing-list.gif) center center no-repeat;
}
.results-list .result-error {
  width: 306px;
  font-size: 24px;
  line-height: 44px;
  color: #999;
  font-weight: 300;
  text-align: center;
  margin: auto;
  padding-top: 200px;
  padding-right: 70px;
}
.custom-header {
  position: relative;
  height: 67px;
  width: 956px;
  overflow: hidden;
  float: left;
  margin: 0 20px 20px 0;
  border-radius: 4px;
  background-color: #5e387e !important;
}
.custom-header:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-left: -0.25em;
}
.custom-header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-left: 20px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.custom-header h1 span {
  background: #fff;
  margin-left: 20px;
  color: #333;
  font-size: 14px;
  padding: 9px 17px;
  border-radius: 4px;
  text-transform: lowercase;
  display: inline-block;
}
.custom-header small {
  position: absolute;
  text-transform: uppercase;
  right: 20px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
}
.custom-header.recently-sold-header {
  background: #eea811 !important;
}
.property-sold-ribbon.property-bought {
  position: absolute;
  top: 50px;
  left: -30px;
  width: 120%;
  height: 45px;
  background: rgba(0, 153, 204, 0.95);
  line-height: 43px;
  font-weight: 600;
  font-size: 22px;
  -webkit-transform: rotate(-14deg);
  -moz-transform: rotate(-14deg);
  transform: rotate(-14deg);
  text-align: center;
  color: #fff;
}
div.search-result:nth-of-type(even) {
  margin: 0 0 20px 0;
}
.custom-header + div.search-result {
  margin: 0 0 20px 0;
}
.custom-header + .custom-header + div.search-result {
  margin: 0 20px 20px 0;
}
.search-result:hover {
  background: #f9f9f9;
}
.gm-style .gm-style-iw {
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  overflow: visible !important;
  max-width: 276px !important;
}
.gm-style .gm-style-iw > div,
.gm-style .gm-style-iw .embedded-map-title > div {
  width: 252px !important;
  max-width: 252px !important;
  overflow: visible !important;
}
.gm-style .gm-style-iw > button {
  right: 10px !important;
  top: 10px !important;
}
.gm-style .gm-style-iw > button img {
  width: 20px !important;
  height: 20px !important;
  margin: 5px !important;
}
.gm-style .gm-style-iw div.embedded-map-image {
  width: 100%;
  height: 142px;
  overflow: hidden !important;
  border-radius: 3px 3px 0 0;
  position: relative;
}
.gm-style .gm-style-iw div.embedded-map-image img {
  max-width: 276px;
}
.gm-style .gm-style-iw div.embedded-map-image.neighbourhood-map-image img {
  max-width: 1000000px !important;
  max-height: 180px !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.poi-info-window {
  padding: 20px 30px 10px 30px;
}
.embedded-map-title {
  margin: 10px 0 0 0;
  font-size: 15px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  text-align: center;
  padding-bottom: 12px;
}
.embedded-map-title b {
  font-weight: 600;
}
.embedded-map-action {
  display: block;
  height: 30px;
  margin: 20px 0 0 24px;
  width: 206px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  line-height: 28px;
  font-size: 16px;
  background: #7ea387;
  font-weight: normal;
  text-align: center;
}
.embedded-price {
  text-align: center;
  text-indent: 0px;
  color: #7ea387;
  font-weight: 400;
  margin: 10px 0 0 0;
}
.embedded-map-action:hover {
  background: #618069;
}
#map-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
}
.results-map-typetoggle {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 3px;
}
.results-map-typetoggle .checkbox {
  margin: 0;
  padding: 0;
}
.breadcrumb-container {
  position: relative;
  height: 30px;
  border-radius: 3px;
  float: left;
}
.breadcrumb-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
.breadcrumb-container ul li {
  float: left;
  display: block;
  margin-right: 1px;
}
.breadcrumb-container ul li a {
  background: #f2f2f2;
  color: #333333;
  text-decoration: none;
  font-size: 12px;
  display: block;
  height: 100%;
  padding: 0 15px;
  width: 100%;
  height: 30px;
  line-height: 29px;
  box-sizing: border-box;
}
.breadcrumb-container ul li a:hover {
  color: #7ea387;
  background: #fff;
}
.breadcrumb-container ul li > span {
  background: #f2f2f2;
  display: block;
  font-size: 12px;
  cursor: default;
  height: 30px;
  line-height: 29px;
  padding: 0 15px;
}
.breadcrumb-container ul li:first-child > a,
.breadcrumb-container ul li:first-child > span {
  border-radius: 3px 0 0 3px;
}
.breadcrumb-container ul li:last-child > a,
.breadcrumb-container ul li:last-child > span {
  border-radius: 0 3px 3px 0;
  color: #8E8E8E;
}
.breadcrumb-section.withcontent {
  height: 165px !important;
  position: relative;
}
.breadcrumb-section.withcontent h1 {
  margin: 0;
  position: absolute;
  left: 0;
  line-height: 163px;
  text-align: center;
  width: 100%;
  font-size: 35px;
}
.bradley {
  font-weight: normal;
}
.result-suggestions {
  float: left;
  margin: 20px 0 20px 0;
  position: relative;
}
.result-suggestions .suggestion-column {
  width: 306px;
  padding: 20px;
  box-sizing: border-box;
  float: left;
  margin-right: 20px;
  min-height: 160px;
}
.result-suggestions .suggestion-column:last-of-type {
  margin-right: 0;
}
.result-suggestions .suggestion-column h2 {
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  font-size: 18px;
  margin: 0;
  font-weight: normal;
}
.result-suggestions .suggestion-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-suggestions .suggestion-column ul li {
  display: block;
  width: 100%;
}
.result-suggestions .suggestion-column ul a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}
.result-suggestions .suggestion-column ul a:hover {
  color: #333333;
}
.embedded-footer {
  float: left;
  color: #999;
  font-size: 14px;
  margin: 0 0 20px 0px;
  width: 90%;
  border-top: 1px solid #fff;
  padding-top: 20px;
}
.embedded-footer a {
  text-decoration: none;
  color: #999;
  padding: 0 7px;
}
.embedded-footer a:hover {
  color: #333333;
}
.embedded-footer .footer-credits {
  margin: -8px 50px 0 0;
}
.embedded-footer .footer-credits a {
  color: #999;
}
.propdetails-top {
  position: relative;
  height: 580px;
  width: 100%;
  overflow: hidden;
  background-color: #333333 !important;
}
.propdetails-top .propdetails-top-blurpanel {
  position: absolute;
  top: -10px;
  left: -50px;
  width: 110%;
  height: 700px;
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  /* filter: blur(8px); */
  opacity: 0.5;
}
.propdetails-top .propdetails-top-blurpanel img {
  margin: auto;
  width: 100%;
  margin-top: -500px;
}
.propdetails-top .propdetails-top-blurpanel.auto-margin img {
  margin: auto !important;
  top: 0px !important;
}
.propdetails-top .propdetails-top-image {
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 580px;
}
.propdetails-top .propdetails-top-image img {
  display: block;
  margin: auto;
  max-width: 1600px;
  min-width: 1400px;
  min-height: 585px;
  width: 100%;
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  bottom: 0;
}
.propdetails-top .propdetails-top-image.auto-margin img {
  margin: 0 auto !important;
  top: 0px !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto !important;
}
.propdetails-top .propdetails-top-container {
  margin: auto;
  width: 1314px;
  position: relative;
  z-index: 1000;
  height: 580px;
}
.propdetails-top .social-share {
  position: absolute;
  bottom: 35px;
  right: 0;
}
.propdetails-top .propdetails-titles {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  min-height: 100px;
}
.propdetails-top .propdetails-titles h2,
.propdetails-top .propdetails-titles h1 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  position: relative;
  margin: 0 0 25px 0;
}
.propdetails-top .propdetails-titles h2 small,
.propdetails-top .propdetails-titles h1 small {
  display: inline-block;
  padding: 5px 20px;
  background: rgba(94, 56, 126, 0.8);
  text-transform: none;
  font-size: 20px;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  text-shadow: none;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  border: 1px solid #5e387e;
  vertical-align: middle;
  margin-left: 20px;
}
.propdetails-top .propdetails-titles h2 span,
.propdetails-top .propdetails-titles h1 span {
  display: block;
  font-weight: normal;
  margin: -5px 0 0 0;
  font-weight: 600;
  font-size: 60px;
  max-width: 100%;
}
.propdetails-top .propdetails-titles h2.proptitle {
  font-weight: 400;
}
.propdetails-top .propdetails-titles h2.without-margin {
  margin: 0 !important;
}
.propdetails-top .propdetails-titles .propdetails-price {
  float: left;
  height: 65px;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  background: #7ea387;
  margin: 24px 0 0 0;
  line-height: 63px;
  padding: 0 30px;
  border-radius: 4px 4px 0 0;
}
.propdetails-top .propdetails-titles .propdetails-price small {
  font-size: 17px;
  padding-left: 15px;
  text-transform: lowercase;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.recently-sold-ribbon {
  background: rgba(226, 32, 0, 0.9);
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  border-radius: 4px 4px 0 0;
  text-transform: uppercase;
  float: left;
  padding: 0 30px;
  height: 65px;
  line-height: 68px;
  margin-top: 24px;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.object-prospect-ribbon {
  background: rgba(98, 193, 2, 0.95);
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 27px;
  width: 1106px;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.object-prospect-ribbon span {
  float: right;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.object-prospect-ribbon span a {
  color: #fff;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.object-bought-ribbon {
  background: rgba(0, 153, 204, 0.95);
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 27px;
  text-align: center;
  width: 100%;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.in-negotiation-ribbon {
  background: rgba(238, 168, 17, 0.9);
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  border-radius: 4px 4px 0 0;
  text-transform: uppercase;
  float: left;
  padding: 0 30px;
  height: 65px;
  margin: 24px 0 0 1px;
  color: #fff;
  line-height: 63px;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.visiting-days-ribbon {
  background: rgba(234, 118, 24, 0.95);
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px 4px 0 0;
  float: left;
  padding: 0 30px;
  height: 65px;
  margin: 24px 0 0 1px;
  color: #fff;
  line-height: 63px;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.visiting-days-ribbon strong {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin: 19px 0px;
  float: left;
  text-transform: uppercase;
  line-height: normal;
  alignment-baseline: middle;
}
.propdetails-top .propdetails-titles .propdetails-ribbon.visiting-days-ribbon span {
  color: #fff;
  font-size: 17px;
  padding: 9px 15px;
  border-radius: 4px;
  display: inline-block;
  line-height: normal;
}
.propdetails-top .breadcrumb-container {
  position: absolute;
  width: auto;
  top: 30px;
  right: 0;
}
@-moz-document url-prefix() {
  .propdetails-top img {
    top: -50% !important;
  }
}
.propdetails-navigation {
  position: relative;
  width: 100%;
  height: 68px;
  background: #fff;
}
.propdetails-navigation ul {
  display: block;
  margin: auto;
  width: 1312px;
  padding: 10px 0;
  list-style: none;
}
.propdetails-navigation ul li {
  display: block;
  border: 1px solid #e0e0e0;
  float: left;
  border-radius: 4px;
  background: #f2f2f2;
  margin: 0 10px 0 0;
}
.propdetails-navigation ul li a {
  display: block;
  height: 45px;
  padding: 0 20px;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  line-height: 43px;
}
.propdetails-navigation ul li a:hover {
  background: #fff;
}
.propdetails-section-contact {
  background: #f2f2f2 !important;
}
.propdetails-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.propdetails-section .propdetails-section-content {
  width: 1314px;
  position: relative;
  margin: auto;
  display: block;
}
.propdetails-section .propdetails-section-content h1,
.propdetails-section .propdetails-section-content h2,
.propdetails-section .propdetails-section-content h3 {
  font-size: 40px;
  color: #333333;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  padding: 50px 0 50px 0;
  margin: 0;
  width: 100%;
}
.propdetails-section .propdetails-section-content ol {
  list-style-position: inside;
  color: #666666;
  list-style-type: none;
  padding-left: 0px;
}
.propdetails-section .propdetails-section-content ol li {
  background-image: url('../images/checklist.png');
  background-position: 0px;
  background-repeat: no-repeat;
  padding-left: 35px;
  line-height: 25px;
}
.propdetails-section .propdetails-section-content-nieuwsbrief {
  padding-top: 45px;
  background: #fff;
  margin-bottom: 45px;
}
.propdetails-section .propdetails-section-content-overons {
  margin-top: 45px;
}
.greybar {
  height: 22px;
  width: 100%;
  background: #f2f2f2;
}
.whitebar {
  height: 22px;
  width: 100%;
  background: #fff;
}
#details h1 {
  padding: 70px 0 0 0;
  margin: 0;
}
div div.propdetails-section:nth-of-type(even) {
  background: #fff;
}
div div.propdetails-section:nth-of-type(even) .property {
  background: #f2f2f2;
}
div div.propdetails-section:nth-of-type(even) .property:hover {
  background: #f9f9f9;
}
div div.propdetails-section:nth-of-type(even) .property:hover .property-measurements,
div div.propdetails-section:nth-of-type(even) .property:hover .property-bedrooms,
div div.propdetails-section:nth-of-type(even) .property:hover .property-construction-year,
div div.propdetails-section:nth-of-type(even) .property:hover .property-picture-count,
div div.propdetails-section:nth-of-type(even) .property:hover .property-measurements,
div div.propdetails-section:nth-of-type(even) .property:hover .property-main-usage {
  background: #fff;
}
div div.propdetails-section:nth-of-type(even) .cbs-diagram {
  background-color: #fff;
}
div div.propdetails-section:nth-of-type(odd) {
  background: #f2f2f2;
}
div div.propdetails-section:nth-of-type(odd) .property {
  background: #fff;
}
div div.propdetails-section:nth-of-type(odd) .property:hover {
  background: #f9f9f9;
}
div div.propdetails-section:nth-of-type(odd) .property:hover .property-measurements,
div div.propdetails-section:nth-of-type(odd) .property:hover .property-bedrooms,
div div.propdetails-section:nth-of-type(odd) .property:hover .property-construction-year,
div div.propdetails-section:nth-of-type(odd) .property:hover .property-picture-count,
div div.propdetails-section:nth-of-type(odd) .property:hover .property-measurements,
div div.propdetails-section:nth-of-type(odd) .property:hover .property-main-usage {
  background: #fff;
}
div div.propdetails-section:nth-of-type(odd) .cbs-rounded {
  background: #fff !important;
}
div div.propdetails-section:nth-of-type(odd) .cbs-rounded .cbs-table,
div div.propdetails-section:nth-of-type(odd) .cbs-rounded .cbs-tablerow,
div div.propdetails-section:nth-of-type(odd) .cbs-rounded .cbs-cell,
div div.propdetails-section:nth-of-type(odd) .cbs-rounded .cbs-data {
  border-color: #e0e0e0 !important;
}
div div.propdetails-section:nth-of-type(odd) .cbs-rounded div.cbs-data:last-of-type {
  border-right: none !important;
}
div div.propdetails-section:nth-of-type(odd) .cbs-rounded div.cbs-tablerow:last-of-type {
  border-bottom: none !important;
}
div div.propdetails-section#details {
  background: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
}
.propdetails-section-buurt .neighbourhood-top-area {
  padding: 30px;
  width: auto !important;
}
.property-alldetails {
  width: 100%;
  border-radius: 4px;
  background-color: #fff !important;
  background: url(../images/pixel.png) 33.333% center repeat-y, url(../images/pixel.png) 66.666% center repeat-y;
  position: relative;
  float: left;
  margin: 50px 0 30px 0;
  overflow: hidden;
}
.property-alldetails .column {
  float: left;
  width: 33.333%;
  min-height: 100%;
  position: relative;
  box-sizing: border-box;
}
.property-alldetails .column .section {
  width: 100%;
  position: relative;
  padding: 20px 0 15px 70px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  display: block;
  box-sizing: border-box;
  /*
	        .optional {
                display: none;
            }
            */
}
.property-alldetails .column .section .type-icon {
  margin: 0 10px;
}
.property-alldetails .column .section .data-fullwidth {
  float: left;
  width: 100%;
  font-weight: 400;
  margin: 5px 0;
}
.property-alldetails .column .section .data-fullwidth span {
  display: block;
}
.property-alldetails .column .section .data-fullwidth .term-check {
  width: 23px;
  height: 23px;
  background: url(../images/checkmark-term.png) left center no-repeat;
  float: left;
  margin: 0 23px 0 -45px;
}
.property-alldetails .column .section .data-label {
  float: left;
  width: 200px;
  color: #666666;
  margin: 5px 0;
}
.property-alldetails .column .section .data-value {
  float: left;
  margin: 5px 0;
  font-weight: 400;
  width: 140px;
  font-size: 14px;
}
.property-alldetails .column .section .data-value:first-letter {
  text-transform: uppercase;
}
.property-alldetails .column .section .data-value small {
  color: #999;
  font-weight: normal;
  float: right;
  width: 40px;
  margin: 0px 0 0 0;
  display: inline-block;
  text-align: left;
}
.property-alldetails .column .section .data-value span {
  font-weight: normal;
  color: #999;
  font-size: 14px;
  display: block;
}
.property-alldetails .column div.section:last-of-type {
  border: none;
}
.clear-after::after {
  clear: both;
  display: block;
  content: "";
}
.object-actions {
  padding: 30px;
  border-radius: 4px;
  background: #fff;
  clear: both;
  margin-bottom: 50px;
}
.object-actions .object-brokers {
  display: inline-block;
  float: left;
  width: 65%;
}
.object-actions .object-brokers span {
  display: none;
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}
.object-actions .object-brokers .broker {
  float: left;
  width: 50%;
  background: #F2F2F2;
  padding-left: 10px;
  border-right: 60px solid white;
  box-sizing: border-box;
}
.object-actions .object-brokers .broker img {
  float: right;
  margin: 0 0 0 6px;
}
.object-actions .object-brokers .broker strong {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0 0 0;
}
.object-actions .object-brokers .broker a {
  display: block;
  color: #7ea387;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin: 5px 0 0 0;
}
.object-actions .object-brokers .broker a:hover {
  color: #618069;
}
.object-actions .small-contact-view-text {
  display: none!important;
}
.object-actions .object-contact {
  box-sizing: border-box;
  display: inline-block;
  /* margin: 0px 20px 0px 20px; */
  width: 100%;
  text-align: center;
  padding-left: 20px;
}
.object-actions .object-contact span {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  display: none;
  margin-bottom: 20px;
}
.object-actions .object-contact span small {
  display: block;
  float: left;
  width: 20px;
  height: 18px;
  background: url(../images/checkmark.png);
  margin-right: 20px;
}
.object-actions .object-contact a {
  min-width: 266px;
}
.object-controls {
  display: inline-block;
  width: 35%;
  float: left;
}
.object-controls a.action {
  box-sizing: border-box;
  width: 50%;
  height: 26px;
  float: left;
  display: block;
  line-height: 21px;
  text-align: center;
  text-decoration: none;
  color: #5e387e;
  font-size: 1em;
  cursor: pointer;
}
.object-controls a.action span {
  display: none;
  display: block;
  height: 30px;
  width: 30px;
  float: left;
  margin: 10px;
  background: url(../images/Spritegrid-@1x.png);
  margin-right: 25px;
}
.object-controls a.action:nth-of-type(2n) {
  margin-right: 0 !important;
}
.object-controls a.action:hover,
.object-controls a.action.processing {
  color: #4a2c63 !important;
  background: #fff !important;
}
.object-controls a.action.favorite.processing {
  background: #fff url(../images/processing.gif) 110px center no-repeat !important;
}
.object-controls a.action.favorite.processing span {
  background-position: -350px -300px !important;
}
.object-controls a.action.icon-notifications span {
  background-position: 0 -300px;
}
.object-controls a.action.icon-notifications.has-notifications {
  background: #eea811;
  color: #fff !important;
}
.object-controls a.action.icon-notifications.has-notifications span {
  background-position: -100px -300px;
}
.object-controls a.action.icon-notifications:hover span {
  background-position: -50px -300px;
}
.object-controls a.action.icon-notes span {
  background-position: -150px -300px;
}
.object-controls a.action.icon-notes.has-note {
  background: #eea811;
  color: #fff !important;
}
.object-controls a.action.icon-notes.has-note span {
  background-position: -250px -300px;
}
.object-controls a.action.icon-notes:hover span {
  background-position: -200px -300px;
}
.object-controls a.action.icon-favorite span {
  display: none;
  background-position: -350px -300px;
}
.object-controls a.action.icon-favorite:hover span {
  background-position: -300px -300px !important;
}
.object-controls a.action.icon-favorite.in-favorites {
  /*background: @green;*/
  color: #7ea387;
}
.object-controls a.action.icon-favorite.in-favorites span {
  background-position: -250px -300px;
}
.object-controls a.action.icon-favorite.in-favorites:hover {
  /*background-color:#fff!important;
	      border-color:@green!important;
          */
  color: #618069 !important;
}
.object-controls a.action.icon-pdf span {
  background-position: -450px -300px;
  display: none;
}
.object-controls a.action.icon-pdf:hover span {
  background-position: -500px -300px;
}
.object-controls a.action.disabled,
.object-controls a.action.disabled:hover {
  opacity: 0.5;
  background: #999 !important;
  color: #fff !important;
  border: none !important;
}
.object-controls a.action.disabled span,
.object-controls a.action.disabled:hover span {
  background-position: -300px -300px !important;
}
/*
.object-actions {
	padding: 30px;
	border-radius: 4px;
	background: #fff;
	clear: both;
	margin-bottom: 50px;

	.object-brokers {
		display: inline-block;
		float:left;

		span {
            display:none;
			text-transform: uppercase;
			color: @lightgray;
			font-size: 14px;
			display: block;
			margin-bottom: 20px;
		}

		.broker {
			float: left;
			width: 250px;
            background:#F2F2F2;
            padding-left: 10px;
            border-right: 10px solid white;
            box-sizing: border-box;

			img {
				float: right;
                margin: 0 0 0 25px;
			}

			strong {
				display: block;
				font-weight: normal;
				font-size: 18px;
				margin: 10px 0 0 0;
			}

			a {
				display: block;
				color: @green;
				text-transform: uppercase;
				font-size: 14px;
				font-weight: 600;
				text-decoration: none;
				margin: 5px 0 0 0;

				&:hover {
					color: @mossgreen;
				}
			}
		}
	}

	 .small-contact-view-text {
		  display:none!important;
	 }

	.object-contact {
		display: inline-block;
		margin: 4px 0 0 30px ;
		max-width:295px;
		text-align: center;

		span {
			text-transform: uppercase;
			color: @lightgray;
			font-size: 14px;
			display: none;
			margin-bottom: 20px;

			small {
				display: block;
				float: left;
				width: 20px;
				height: 18px;
				background: url(../images/checkmark.png);
				margin-right: 20px;
			}
		}

		a {
			min-width: 266px;
		}

	}
}
*/
/*
.object-controls {
    display: inline-block;
    width: 31%;
    float:right;

    a.action {
        width: 189px;
        height: 50px;
        background: @sectioncolor;
        border-radius: 3px;
        float: left;
        margin: 0 10px 10px 0;
        display: block;
        line-height: 48px;
        text-align: center;
        padding-right: 15px;
        box-sizing: border-box;
        text-decoration: none;
        color: @mediumgray;
        font-size: 18px;
        cursor: pointer;
        border: 1px solid @lightergray;

        span {
            display:none;
            display: block;
            height: 30px;
            width: 30px;
            float: left;
            margin: 10px;
            background: url(../images/Spritegrid-@1x.png);
            margin-right: 25px;
        }
    }

    a.action:nth-of-type(2n) {
        margin-right: 0 !important;
    }

    a.action:hover, a.action.processing {
        color: @green !important;
        border: 1px solid @green !important;
        background: #fff !important;
    }

    a.action.favorite.processing {
        background: #fff url(../images/processing.gif) 110px center no-repeat !important;

        span {
            background-position: -350px -300px !important;
        }
    }

    a.action.icon-notifications span {
        background-position: 0 -300px;
    }

    a.action.icon-notifications.has-notifications {
        background: @orange;
        color: #fff !important;

        span {
            background-position: -100px -300px;
        }
    }

    a.action.icon-notifications:hover span {
        background-position: -50px -300px;
    }

    a.action.icon-notes span {
        background-position: -150px -300px;
    }

    a.action.icon-notes.has-note {
        background: @orange;
        color: #fff !important;

        span {
            background-position: -250px -300px;
        }
    }

    a.action.icon-notes:hover span {
        background-position: -200px -300px;
    }

    a.action.icon-favorite span {
        display:none;
        background-position: -350px -300px;
    }

    a.action.icon-favorite:hover span {
        background-position: -300px -300px !important;
    }

    a.action.icon-favorite.in-favorites {
        background: @green;
        color: #fff !important;

        span {
            background-position: -250px -300px;
        }

        &:hover {
	      background-color:#fff!important;
	      border-color:@green!important;
	      color:@green!important;
        }
    }

    a.action.icon-pdf span {
        background-position: -450px -300px;
        display: none;
    }

    a.action.icon-pdf:hover span {
        background-position: -500px -300px;
    }

    a.action.disabled , a.action.disabled:hover {
        opacity: 0.5;
        background: @lightgray !important;
        color: #fff !important;
        border: none !important;

        span {
            background-position: -300px -300px !important;
        }
    }
}
*/
.toggle-all-specs {
  float: left;
  clear: left;
  width: 100%;
  text-transform: uppercase;
  color: #7ea387;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 0;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}
.toggle-all-specs::after {
  content: 'Toon meer kenmerken';
}
.toggle-all-specs.toggeled::after {
  content: 'Toon minder kenmerken';
}
.toggle-all-specs:hover {
  color: #618069;
  background: #f9f9f9;
}
.social-share-detail {
  padding: 0 20px 0px 10px !important;
  width: 100% !important;
}
.social-share {
  display: none;
  width: 315px;
  padding: 0 20px 0 10px;
  box-sizing: border-box;
  height: 52px;
  border-radius: 3px;
  background: #f2f2f2;
  line-height: 48px;
  text-align: center;
  color: #666666;
  font-size: 16px;
  clear: left;
  border: 1px solid #e0e0e0;
}
.social-share a {
  float: left;
  width: 30px;
  height: 30px;
  margin: 10px 11px 0 0;
  background: url(../images/Spritegrid-@1x.png);
  cursor: pointer;
}
.social-share a.social-trigger:last-of-type {
  margin-right: 8px !important;
}
.social-share .social-trigger.facebook {
  background-position: -50px -150px;
}
.social-share .social-trigger.twitter {
  background-position: -100px -150px;
}
.social-share .social-trigger.google {
  background-position: -150px -150px;
}
.social-share .social-trigger.linkedin {
  background-position: -300px -150px;
}
.social-share .social-trigger.pinterest {
  background-position: -200px -150px;
}
.social-share .social-trigger.email {
  background-position: -350px -150px;
}
.social-share .social-trigger.facebook:hover {
  background-position: 0 -450px !important;
}
.social-share .social-trigger.twitter:hover {
  background-position: -50px -450px !important;
}
.social-share .social-trigger.google:hover {
  background-position: -100px -450px !important;
}
.social-share .social-trigger.linkedin:hover {
  background-position: -250px -450px !important;
}
.social-share .social-trigger.pinterest:hover {
  background-position: -150px -450px !important;
}
.social-share .social-trigger.email:hover {
  background-position: -300px -450px !important;
}
.propdetails-section .propdetails-text {
  position: relative;
  width: 1098px;
  margin: auto;
}
.propdetails-section .propdetails-text p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}
.propdetails-section .propdetails-text p:last-of-type {
  margin: 15px 0 60px 0;
}
.propdetails-section .propdetails-text p {
  margin: 15px 0;
  line-height: 20px;
}
.propdetails-section .propdetails-text p strong {
  font-weight: 600;
}
.propdetails-section .propdetails-text h1,
.propdetails-section .propdetails-text h2,
.propdetails-section .propdetails-text h3,
.propdetails-section .propdetails-text h4,
.propdetails-section .propdetails-text h5,
.propdetails-section .propdetails-text h6 {
  font-weight: 400 !important;
  text-transform: uppercase;
  text-align: left !important;
  letter-spacing: normal !important;
  padding: 0;
  margin: 30px 0 5px 0 !important;
  font-size: 18px !important;
  color: #5e387e;
}
.propdetails-section .propdetails-text .alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.propdetails-section .propdetails-text .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.propdetails-section .propdetails-text .aligncenter {
  display: block;
  margin: auto;
}
.propdetails-section .propdetails-text a {
  color: #333333;
}
.propdetails-section .propdetails-text a:hover {
  color: #7ea387;
}
.propdetails-section .propdetails-text .scaling-button {
  display: inline-block;
  padding: 0 20px;
  color: #fff;
}
.propdetails-section .propdetails-text .scaling-button:hover {
  color: #fff;
}
.propdetails-section .propdetails-text ul {
  font-size: 15px;
  color: #666666;
  line-height: 24px;
  padding: 0 0 0 18px;
}
.propdetails-pager {
  width: 1314px;
  height: 872px;
  position: relative;
  margin: auto;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
}
.propdetails-pager .image-pager {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.propdetails-pager .image-pager .pager-item {
  float: left;
  width: 1314px;
  height: 100%;
  overflow: hidden;
  position: relative;
  /*background: @mediumgray;*/
}
.propdetails-pager .image-pager .pager-item img {
  max-width: 1314px;
  margin: auto;
  min-height: 872px;
  max-height: 872px;
  display: block;
}
.propdetails-pager .image-pager .pager-item div.custom-image {
  position: absolute;
  top: 0;
  right: 15px;
  border-radius: 0 0 3px 3px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  color: #666666;
  text-transform: lowercase;
  text-align: center;
  line-height: 27px;
  height: 29px !important;
  width: 175px !important;
}
.propdetails-pager .pager-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 999;
}
.propdetails-pager .pager-controls .pager-next,
.propdetails-pager .pager-controls .pager-prev {
  display: inline-block !important;
  height: 60px;
  width: 55px;
  background: rgba(255, 255, 255, 0.9) url(../images/Spritegrid-@1x.png) no-repeat;
  vertical-align: top;
  cursor: pointer;
}
.propdetails-pager .pager-controls .pager-next:hover,
.propdetails-pager .pager-controls .pager-prev:hover {
  background-color: #fff;
}
.propdetails-pager .pager-controls .pager-prev {
  border-radius: 4px 0 0 4px;
  margin-right: -3px;
  background-position: -400px -450px;
}
.propdetails-pager .pager-controls .pager-next {
  border-radius: 0 4px 4px 0;
  margin-left: -3px;
  background-position: -350px -450px;
}
.propdetails-pager .pager-controls .pager-counter {
  display: inline-block !important;
  max-width: 100px;
  padding: 0 20px;
  height: 60px;
  text-align: center;
  color: #333333;
  line-height: 58px;
  text-transform: uppercase;
  font-size: 14px;
  display: none;
  background: rgba(255, 255, 255, 0.9);
}
.propdetails-sellerquestions {
  position: relative;
  width: 1098px;
  margin: 0 auto 50px auto;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.propdetails-sellerquestions h2 {
  font-size: 40px;
  color: #5e387e;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px 0;
}
.propdetails-sellerquestions .seller-image {
  float: left;
  width: 40%;
  position: relative;
  border-right: 1px solid #e0e0e0;
  min-height: 100%;
  box-sizing: border-box;
  background: #fafafa;
  position: absolute;
}
.propdetails-sellerquestions .seller-image img {
  margin: 20px auto;
  max-width: 399px;
  width: calc(100% - 40px);
  display: block;
}
.propdetails-sellerquestions .seller-image p {
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  margin: 60px 60px;
  color: #333333;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
}
.propdetails-sellerquestions .seller-image .seller-arrow {
  position: absolute;
  top: 250px;
  left: 50px;
  width: 77px;
  height: 59px;
  background: url(../images/arrow-seller.png);
}
.propdetails-sellerquestions .seller-question-container {
  float: right;
  background: #fff;
  width: 60%;
  margin-left: 40%;
}
.propdetails-sellerquestions .seller-question {
  position: relative;
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  box-sizing: border-box;
}
.propdetails-sellerquestions div.seller-question:last-of-type {
  border: none;
}
.propdetails-sellerquestions .question-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  color: #eea811;
  line-height: 43px;
  background: #e0e0e0;
  font-weight: 300;
  font-size: 30px;
}
.propdetails-sellerquestions strong {
  font-weight: normal;
}
.propdetails-sellerquestions p {
  color: #666666;
  margin: 5px 20px 0 0;
}
.propdetails-sellerquestions p a {
  color: #7ea387;
  text-decoration: none;
}
.propdetails-sellerquestions p a:hover {
  color: #618069;
  text-decoration: underline;
}
.propdetails-sellerquestions.wide {
  width: 1314px;
}
#floorplans {
  padding-bottom: 60px;
}
#floorplans.interactive h2 {
  width: auto;
  float: left;
}
#floorplans.interactive .floor-typeswitch {
  float: right;
  margin: 56px 0 0 0;
}
#floorplans.interactive .floor-typeswitch a {
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
  padding: 12px 20px;
  color: #333333;
  font-size: 14px;
  margin-left: 5px;
}
#floorplans.interactive .floor-typeswitch a:hover {
  background: #fff;
  cursor: pointer;
  border-color: #d2d2d2;
}
#floorplans.interactive .floor-typeswitch a.selected {
  background: #fff;
  color: #7ea387;
}
#floorplans.interactive .floor-typeswitch a.selected:hover {
  cursor: default;
}
.floor-panel {
  width: 100%;
  border: 1px solid #e0e0e0;
  position: relative;
  height: 872px;
  padding-bottom: 90px;
  background: #fff;
  overflow: hidden;
}
.floor-panel.floor-panel-interactive {
  padding-bottom: 0px;
}
.floor-panel .floor-plan-pager-controls {
  background: #fff;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 999;
}
.floor-panel .floor-plan-pager-controls .floor-plan-pager-next,
.floor-panel .floor-plan-pager-controls .floor-plan-pager-prev {
  display: inline-block !important;
  height: 60px;
  width: 55px;
  background: #f2f2f2 url(../images/Spritegrid-@1x.png) no-repeat;
  vertical-align: top;
  cursor: pointer;
}
.floor-panel .floor-plan-pager-controls .floor-plan-pager-next:hover,
.floor-panel .floor-plan-pager-controls .floor-plan-pager-prev:hover {
  background-color: #e0e0e0 !important;
}
.floor-panel .floor-plan-pager-controls .floor-plan-pager-prev {
  border-radius: 4px 0 0 4px;
  margin-right: -3px;
  background-position: -400px -450px;
}
.floor-panel .floor-plan-pager-controls .floor-plan-pager-next {
  border-radius: 0 4px 4px 0;
  margin-left: -3px;
  background-position: -350px -450px;
}
.floor-panel .floor-plan-pager-controls .floor-plan-pager-count {
  display: inline-block !important;
  max-width: 100px;
  padding: 0 20px;
  height: 60px;
  text-align: center;
  color: #333333;
  line-height: 58px;
  text-transform: uppercase;
  font-size: 14px;
  display: none;
  background: #f2f2f2;
}
.floor-panel-images {
  display: none;
}
.floor-plan-pager {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}
.floor-plan-pager .floor-plan-pager-item {
  float: left;
  width: 1314px !important;
  height: 872px;
  overflow: hidden;
}
.floor-plan-pager .floor-plan-pager-item img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1314px;
  margin: auto;
  max-height: 872px;
  display: block;
}
.propdetails-map {
  max-width: 1314px;
  position: relative;
  margin: auto;
  padding: 0 0 50px 0;
}
.propdetails-map .propdetails-maparea {
  width: 100%;
  height: 474px;
}
.propdetails-map-contact {
  max-width: 100%;
  width: 100%;
  padding: 0 !important;
}
.propdetails-map-contact .propdetails-maparea {
  width: 100%;
  height: 362px !important;
}
.propdetails-video {
  display: block;
}
.propdetails-neighbourhood {
  position: relative;
  width: 1098px;
  margin: auto;
  display: block;
  padding-bottom: 100px;
}
.propdetails-neighbourhood h2,
.propdetails-neighbourhood h1 {
  font-size: 40px;
  font-weight: 300;
  color: #5e387e;
  text-align: center;
  margin: 0 0 50px 0;
  text-transform: uppercase;
}
.propdetails-neighbourhood .cbs-column {
  float: left;
  width: 530px;
}
.propdetails-neighbourhood .cbs-column .cbs-rounded {
  border-radius: 4px;
}
.propdetails-neighbourhood .cbs-column .cbs-description {
  font-size: 15px;
  color: #666666;
}
.propdetails-neighbourhood .cbs-column .cbs-description p {
  min-height: 190px;
  font-size: 14px;
  line-height: 22px;
}
.propdetails-neighbourhood .cbs-column .cbs-description span {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  color: #5e387e;
  font-weight: 300;
}
.propdetails-neighbourhood .cbs-column .cbs-familycompositions {
  margin: 38px 0 0 0;
  background: #f2f2f2;
}
.propdetails-neighbourhood .cbs-column .cbs-agegroups {
  background: #f2f2f2;
  padding-bottom: 20px;
}
.propdetails-neighbourhood .cbs-column .cbs-financials {
  margin-top: 35px;
  background: #f2f2f2;
}
.propdetails-neighbourhood .cbs-column .cbs-financials .leading {
  text-indent: 20px;
}
.propdetails-neighbourhood .cbs-column .cbs-housevalues,
.propdetails-neighbourhood .cbs-column .cbs-transactions {
  background: #f2f2f2;
  margin-bottom: 90px;
}
.propdetails-neighbourhood .cbs-column .cbs-housevalues .cbs-table-largerow,
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow {
  height: 80px;
}
.propdetails-neighbourhood .cbs-column .cbs-housevalues .cbs-table-largerow .cbs-data.large-data,
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow .cbs-data.large-data {
  height: 80px;
  line-height: 78px;
  font-size: 18px;
  font-weight: 600;
  color: #5e387e;
}
.propdetails-neighbourhood .cbs-column .cbs-housevalues .cbs-table-largerow .cbs-data.large-data.nationwide,
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow .cbs-data.large-data.nationwide {
  color: #7ea387;
}
.propdetails-neighbourhood .cbs-column .cbs-housevalues {
  margin-bottom: 35px;
}
.propdetails-neighbourhood .cbs-column .cbs-transactions {
  margin-top: 35px;
}
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow {
  height: 80px;
}
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow .cbs-data.large-data {
  height: 80px;
  line-height: 78px;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
}
.propdetails-neighbourhood .cbs-column .cbs-transactions .cbs-table-largerow .cbs-data.large-data span {
  font-size: 18px;
  font-weight: 600;
  display: inline;
  padding-right: 8px;
}
.propdetails-neighbourhood .cbs-column strong {
  display: block;
  padding: 20px;
  font-weight: 400;
  font-size: 15px;
}
.propdetails-neighbourhood .cbs-column strong small {
  display: block;
  text-transform: uppercase;
  color: #666666;
  font-weight: normal;
  font-size: 14px;
}
.propdetails-neighbourhood .cbs-column .current {
  color: #5e387e;
}
.propdetails-neighbourhood .cbs-column .nationwide {
  color: #7ea387;
}
.propdetails-neighbourhood .cbs-column .cbs-table {
  position: relative;
  border-top: 1px solid #fff;
  width: 100%;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #fff;
  line-height: 78px;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .cbs-cell {
  float: left;
  border-right: 1px solid #fff;
  height: 80px;
  box-sizing: border-box;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .leading {
  width: 50%;
  color: #333333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .leading span {
  display: block;
  height: 50px;
  width: 50px;
  float: left;
  margin: 15px;
  background: url(../images/Spritegrid-@1x.png);
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .singleperson span {
  background-position: -100px -200px;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .nokids span {
  background-position: -150px -200px;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .withkids span {
  background-position: -200px -200px;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow .data {
  width: 25%;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}
.propdetails-neighbourhood .cbs-column .cbs-table .cbs-tablerow div.data:last-of-type {
  border: none;
}
.propdetails-neighbourhood .cbs-column .cbs-table div.cbs-tablerow:last-of-type {
  border: none;
}
.propdetails-neighbourhood .cbs-column .cbs-diagram {
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  height: 200px;
  margin: 0 20px 20px 20px;
  position: relative;
  background: #f2f2f2 url(../images/diagram-line.png);
}
.propdetails-neighbourhood .cbs-column .cbs-diagram span {
  font-size: 14px;
  color: #666666;
  margin: 0 0 0 3px;
  display: block;
}
.propdetails-neighbourhood .cbs-column .cbs-diagram .cbs-diagramdata {
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 61px;
}
.propdetails-neighbourhood .cbs-column .cbs-diagram .cbs-diagramdata .diagram-left {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 30px;
  background: #5e387e;
}
.propdetails-neighbourhood .cbs-column .cbs-diagram .cbs-diagramdata .diagram-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 30px;
  background: #7ea387;
}
.propdetails-neighbourhood .cbs-column .cbs-diagram .cbs-diagramdata p {
  position: absolute;
  bottom: -20px;
  margin: 0;
  font-size: 11px;
  color: #666666;
  text-align: center;
  width: 100%;
}
.propdetails-neighbourhood .cbs-column .cbs-housebalance {
  background: #f2f2f2;
  margin-bottom: 35px;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow {
  height: 152px;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow .cbs-data.large-data {
  height: 152px;
  width: 50%;
  float: left;
  border-right: 1px solid #fff;
  text-align: center;
  box-sizing: border-box;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow .cbs-data.large-data span {
  display: block;
  margin: 10px 0 0 0;
  color: #5e387e;
  font-weight: 600;
  font-size: 72px;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow .cbs-data.large-data span small {
  font-weight: 300;
  font-size: 72px;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow .cbs-data.large-data p {
  margin: 0;
  text-transform: uppercase;
  color: #666666;
  font-size: 18px;
}
.propdetails-neighbourhood .cbs-column .cbs-table-largerow div.cbs-data.large-data:last-of-type {
  border: none;
}
.propdetails-neighbourhood .cbs-column .first {
  left: 28px;
}
.propdetails-neighbourhood .cbs-column .second {
  left: 117px;
}
.propdetails-neighbourhood .cbs-column .third {
  left: 206px;
}
.propdetails-neighbourhood .cbs-column .fourth {
  left: 295px;
}
.propdetails-neighbourhood .cbs-column .fifth {
  left: 384px;
}
.propdetails-neighbourhood .cbs-images {
  width: 100%;
  margin: 35px 0 0 0;
}
.propdetails-neighbourhood .cbs-images .image-wrapper {
  position: relative;
  height: 530px;
  width: 530px;
  overflow: hidden;
  float: left;
}
.propdetails-neighbourhood .cbs-images .image-wrapper:first-child {
  margin-right: 38px;
}
.propdetails-neighbourhood .cbs-images .image-wrapper img {
  min-height: 530px;
  min-width: 530px;
  max-height: 530px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.propdetails-neighbourhood .tooltip {
  cursor: help;
}
.propdetails-neighbourhood .right-column {
  float: right;
}
.propdetails-neighbourhood .reference {
  float: right;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  position: absolute;
  bottom: 50px;
  right: 0;
}
.propdetails-neighbourhood .cbs-image-wrapper {
  height: 475px;
  overflow: hidden;
  position: relative;
  margin: 60px 0 0 0;
  border-radius: 4px;
}
.propdetails-neighbourhood .cbs-image-wrapper img {
  min-height: 475px;
  min-width: 475px;
  max-height: 475px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.propdetails-neighbourhood .cbs-moreinfo {
  display: inline-block;
  color: #7ea387;
  text-transform: uppercase;
  width: 100%;
  clear: both;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  margin: 30px 0 50px 0;
}
.propdetails-neighbourhood .cbs-moreinfo:hover {
  color: #618069;
}
.propdetails-maparea.streetview {
  height: 872px;
}
.ui-sortable #streetviewmeta {
  display: block !important;
}
.ui-sortable #streetviewmeta .inside .clearfix {
  display: block !important;
}
.type-icon {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 50px;
  background: url(../images/Spritegrid-@1x.png);
}
.type-house {
  background-position: -250px -100px;
}
.type-bog {
  background-position: -150px -250px;
}
.type-shop {
  background-position: -200px -250px;
}
.type-appartment {
  background-position: 0 -100px;
}
.type-measurements {
  background-position: -350px -100px;
}
.type-bedrooms {
  background-position: -100px -100px;
}
.type-location {
  background-position: -300px -100px;
}
.type-acceptance {
  background-position: -50px -100px;
}
.type-energy {
  background-position: -200px -100px;
}
.type-garage {
  background-position: -150px -100px;
}
.type-garden {
  background-position: -400px -100px;
}
.type-sunhours {
  background-position: -350px -250px;
}
.propdetails-contact {
  padding: 80px 0;
  /*background: @green url(../images/pattern-bg-green.png);*/
  text-align: center;
}
.propdetails-contact a {
  display: inline-block;
  margin: auto;
  padding: 0 50px;
}
.embedded-property-list {
  margin: 0;
}
#video iframe {
  width: 1314px !important;
  height: 738px !important;
}
.video-padding {
  padding-top: 70px;
}
.totop {
  position: absolute;
  top: 80px;
  right: 0px;
  width: 50px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  color: #999;
  font-size: 15px;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  text-transform: lowercase;
  background: url(../images/Spritegrid-@1x.png) -500px 0;
  cursor: pointer;
  z-index: 999;
}
.totop:hover {
  color: #333333;
}
#map_canvas.property-alldetails {
  width: 840px;
  height: 407px;
  margin: 50px 0 50px 0;
}
.neighbourhood-top-area {
  background: #fff;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 50px auto;
}
.neighbourhood-top-area .neighbourhood-map-wrapper {
  height: 395px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.neighbourhoods {
  float: left;
  width: 100%;
  font-size: 15px;
  color: #999;
  padding: 30px;
  box-sizing: border-box;
}
.neighbourhoods ul {
  float: left;
  width: 100%;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
}
.neighbourhoods ul li {
  display: block;
  float: left;
  margin: 0 0 10px 0;
}
.neighbourhoods ul li .neighbourhoods-left {
  float: left;
  width: 252px;
}
.neighbourhoods ul li .neighbourhoods-right {
  float: left;
  width: 726px;
}
.neighbourhoods ul li a {
  text-decoration: none;
  color: #666666;
  padding-right: 3px;
}
.neighbourhoods ul li a:hover {
  color: #333333;
  border-bottom: 1px solid #333333;
}
.neighbourhoods ul li a.full {
  color: #7ea387;
}
.neighbourhoods ul li a.full:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.breadcrumb-section {
  width: 100%;
  height: 88px;
  background: #f2f2f2 url(../images/pattern-bg-gray.png);
  position: relative;
}
.breadcrumb-section .breadcrumb-section-content {
  margin: auto;
  position: relative;
  width: 1314px;
}
.breadcrumb-section .breadcrumb-section-content .breadcrumb-container {
  float: right;
  display: inline-block;
  width: auto;
  margin: 28px 0;
}
.neighbourhoods-landing {
  position: absolute;
  top: 188px;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
.neighbourhoods-landing .neighbourhoods-landing-map {
  width: -webkit-calc(100% - 1000px);
  width: -moz-calc(100% - 1000px);
  width: calc(100% - 1000px);
  left: 0;
  height: -webkit-calc(100% - 188px);
  height: -moz-calc(100% - 188px);
  height: calc(100% - 188px);
  position: absolute;
  background: #999;
}
.neighbourhoods-landing .neighbourhoods-landing-content {
  width: 1000px;
  right: 0;
  height: -webkit-calc(100% - 188px);
  height: -moz-calc(100% - 188px);
  height: calc(100% - 188px);
  position: absolute;
  background: #fff;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea {
  padding: 0 0 0 30px;
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
  position: absolute;
  bottom: 0;
  overflow: scroll;
  display: flex;
  flex-wrap: wrap;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column {
  width: 33.33%;
  height: auto;
  position: relative;
  float: left;
  padding: 10px 20px 0;
  box-sizing: border-box;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column h2 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 18px;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column h2 a {
  color: #666666;
  text-decoration: none;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column ul li {
  text-indent: 30px;
  margin: 0 0 10px 0;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column ul li a {
  color: #666666;
  text-decoration: none;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column a:hover {
  color: #333333;
  border-bottom: 1px solid #333333;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column a.full {
  color: #7ea387;
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea .neighbourhoods-column a.full:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.neighbourhoods-landing .neighbourhoods-landing-content p {
  float: right;
  margin: 0;
  padding: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 20px;
}
.neighbourhoods-landing .neighbourhoods-landing-content .embedded-footer {
  width: 100%;
  height: 38px;
  line-height: 36px;
  border-radius: 3px;
  text-indent: 20px;
  margin: 0;
}
.neighbourhoods-colorpanel {
  position: absolute;
  top: 170px;
  width: 100%;
  height: 100%;
  background: #fff;
}
.freeflow {
  margin-bottom: 0;
}
.article-box {
  width: 306px;
  height: 380px;
  background: #fff;
  float: left;
  margin: 0 30px 30px 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.article-box .article-image {
  width: 306px;
  height: 191px;
  overflow: hidden;
  position: relative;
  background: #e0e0e0;
}
.article-box .article-image img {
  height: 100%;
  margin: auto;
  display: block;
}
.article-box span {
  font-size: 15px;
  font-weight: 400;
  width: 235px;
  margin: 30px;
  display: block;
  color: #666666;
  height: 102px;
  overflow: hidden;
}
.article-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: 30px;
  line-height: 680px;
  color: #7ea387;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
div.article-box:nth-of-type(4n+0) {
  margin: 0 0 30px 0;
}
.article-box:hover {
  background: #f9f9f9;
}
.article-paging {
  width: 100%;
  margin: 20px 0 0 0;
}
.article-paging .navigation {
  float: right;
}
.article-paging .navigation a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  margin: 0 0 0 10px;
  background: #f2f2f2;
  float: left;
  text-align: center;
  line-height: 48px;
  text-decoration: none;
  color: #333333;
  overflow: hidden;
}
.article-paging .navigation a.next {
  text-indent: -999px;
  background: #f2f2f2 url(../images/object-go-arrow_small-@2x.png) center center no-repeat;
  background-size: 8px 25px;
}
.article-paging .navigation a.prev {
  text-indent: -999px;
  background: #f2f2f2 url(../images/object-go-arrow_small-reversed-@2x.png) center center no-repeat;
  background-size: 8px 25px;
}
.article-paging .navigation a.selected {
  background-color: #999;
  color: #fff;
}
.article-paging .navigation a:hover {
  background-color: #e0e0e0;
}
.article-paging .navigation a.selected:hover {
  background-color: #999;
}
.article-date {
  float: right;
  color: #999;
  font-size: 15px;
  margin: 25px 20px 0 0;
}
.extra-margin {
  border-bottom: 50px solid #fff;
}
.article-categories {
  background: #f2f2f2;
  width: 100%;
  position: relative;
  padding: 0 0 20px 0;
  display: block;
}
.article-categories .content-section {
  max-width: 1098px;
}
.article-categories span {
  display: block;
  padding: 20px 0 0 0;
  font-size: 15px;
  color: #666666;
}
.article-categories a {
  display: block;
  height: 40px;
  padding: 0 15px;
  line-height: 38px;
  background: #fff;
  float: left;
  margin: 20px 20px 0 0;
  text-transform: uppercase;
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #fff;
}
.article-categories a:hover {
  border: 1px solid #7ea387;
}
.article-categories.inpage {
  padding: 0;
}
.article-categories.inpage span {
  float: left;
  height: 62px;
  line-height: 80px;
  padding: 0;
  margin: 0 20px 0 0;
}
.article-categories.inpage .content-section {
  padding: 0 0 20px 0;
  display: block;
}
.article-categories.inpage a {
  margin: 19px 10px 0 0;
}
.article-details h1 {
  text-align: left;
}
.article-details .social-share {
  float: right;
}
.article-details .article-author {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}
.article-details-content {
  margin: auto;
  max-width: 1098px;
  display: block;
  padding-top: 0px;
}
.article-details-content .top-content {
  width: 100%;
}
.article-details-content p {
  margin: 15px 0;
  line-height: 25px;
}
.article-details-content p strong {
  font-weight: 600;
}
.article-details-content h1,
.article-details-content h2,
.article-details-content h3,
.article-details-content h4,
.article-details-content h5,
.article-details-content h6 {
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: normal;
  padding: 0;
  margin: 30px 0 0 0;
  font-size: 18px;
  color: #5e387e;
}
.article-details-content .alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.article-details-content .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.article-details-content .aligncenter {
  display: block;
  margin: auto;
}
.article-details-content a {
  color: #333333;
}
.article-details-content a:hover {
  color: #7ea387;
}
.article-details-content .scaling-button {
  display: inline-block;
  padding: 0 20px;
  color: #fff;
}
.article-details-content .scaling-button:hover {
  color: #fff;
}
.article-details-content ul {
  line-height: 20px;
  color: #666666;
  font-size: 15px;
  list-style: circle;
}
.article-details-content img {
  max-width: 100%;
}
.article-details-content ol {
  list-style-position: inside;
  color: #666666;
  list-style-type: none;
  padding-left: 0px;
}
.article-details-content ol li {
  background-image: url('../images/checklist.png');
  background-position: 0px;
  background-repeat: no-repeat;
  padding-left: 35px;
  line-height: 25px;
}
.fb-comments-wrapper {
  width: 100%;
  position: relative;
  background: #fff;
  padding-bottom: 50px;
}
.fb-comments-wrapper span {
  display: block;
  width: 1314px;
  font-size: 18px;
  text-transform: uppercase;
  margin: auto;
  font-weight: 600;
  color: #5e387e;
  padding-bottom: 30px;
}
.fb-comments-wrapper .content-section {
  box-sizing: border-box;
}
.fb-comments-wrapper .content-section ol {
  list-style-position: inside;
  color: #666666;
  list-style-type: none;
  padding-left: 0px;
}
.fb-comments-wrapper .content-section ol li {
  background-image: url('../images/checklist.png');
  background-position: 0px;
  background-repeat: no-repeat;
  padding-left: 35px;
  line-height: 25px;
}
.fb-comments,
.fb-comments iframe[style],
.fb-like-box,
.fb-like-box iframe[style] {
  width: 100% !important;
}
.fb-comments span,
.fb-comments iframe span[style],
.fb-like-box span,
.fb-like-box iframe span[style] {
  width: 100% !important;
}
.article-author-details {
  float: left;
  height: 50px;
}
.article-author-details .article-author-avatar {
  width: 50px;
  height: 50px;
  float: left;
  overflow: hidden;
  border-radius: 25px;
}
.article-author-details .article-author-avatar img {
  max-width: 50px;
}
.article-author-details a {
  float: left;
  height: 50px;
  display: block;
  padding: 0 30px 0 0;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  margin: 5px 0 0 20px;
  background: url(../images/object-go-arrow_small-@2x.png) right 9px no-repeat;
  background-size: 8px 25px;
}
.article-author-details a small {
  display: block;
  font-weight: 300;
  font-size: 15px;
}
.article-author-details a:hover {
  padding-right: 40px;
}
.service-grid.freeflow {
  padding: 30px 0 50px 0;
}
.propdetails-top .propdetails-top-image.fullwidth-image {
  width: 100%;
  height: 580px;
  margin: auto;
}
.propdetails-top .propdetails-top-image.fullwidth-image img {
  width: 2000px;
  height: auto;
  max-width: 2000px;
  max-height: auto;
  margin: auto;
}
.about-navigation ul li a {
  color: #7ea387;
}
.team-section {
  width: 100%;
  background: #f2f2f2;
  padding: 50px 0;
  position: relative;
}
.team-section .team-section-grid {
  margin: auto;
  display: block;
  max-width: 1314px;
  position: relative;
}
.team-section .team-section-grid h3,
.team-section .team-section-grid h2,
.team-section .team-section-grid h1 {
  font-size: 40px;
  font-weight: 300;
  color: #5e387e;
  text-align: center;
  margin: 0;
  padding: 70px 0 50px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-section-wrapper {
  padding: 30px 0;
}
.team-box {
  float: left;
  width: 306px;
  height: 354px;
  border-radius: 3px;
  background: #fff;
  margin: 0 30px 30px 0;
  position: relative;
  font-size: 15px;
  color: #666666;
}
.team-box .team-member-avatar {
  height: auto;
  margin: 50px 0 0 0;
  width: 100%;
  position: relative;
}
.team-box .team-member-avatar img {
  display: block;
  width: 126px;
  height: 126px;
  margin: auto;
  overflow: hidden;
  border-radius: 100%;
}
.team-box .team-member-details {
  padding: 0 20px;
  font-size: 15px;
  margin: 20px 0 0 0;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-box .team-member-details strong {
  display: block;
  margin: 5px 0;
  font-weight: 600;
}
.team-box .team-member-details b {
  font-weight: 600;
  display: block;
}
.team-box .team-member-details a {
  display: inline-block;
  color: #7ea387;
  text-decoration: none;
  font-weight: 600;
}
.team-box .team-box-action {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/object-go-arrow-@2x.png) 274px 191px no-repeat;
  background-size: 13px 40px;
}
.team-box a[name=email] {
  position: relative;
  z-index: 999;
}
.team-box a:hover {
  color: #618069;
}
.team-box.embedded-team-box {
  border: 1px solid #e0e0e0;
}
.team-box:hover {
  background: #f9f9f9;
}
div.team-box:nth-of-type(4n+0) {
  margin: 0 0 30px 0;
}
div.team-box.embedded-team-box:nth-of-type(4n+0) {
  margin: 0 30px 30px 0 !important;
}
.team-section.no-margin {
  padding: 0 0 50px 0;
}
.propdetails-top .propdetails-titles .propdetails-price.flexi {
  width: auto;
  padding-right: 20px;
}
.expert-broker-area {
  width: 306px;
  float: right;
  position: relative;
  margin: 50px 50px 0 0;
}
.expert-broker-area .expert-broker-image {
  width: 100%;
  height: 150px;
  margin: 30px 0 0 0;
}
.expert-broker-area .expert-broker-image img {
  width: 126px;
  height: 126px;
  display: block;
  margin: auto;
  border-radius: 100%;
}
.expert-broker-area .generic-button {
  margin: 20px 0 20px 0;
}
.expert-broker-area .expert-broker-details {
  position: relative;
  line-height: 22px;
  color: #666666;
}
.expert-broker-area .expert-broker-details span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.expert-broker-area .expert-broker-details strong {
  font-weight: 600;
  display: block;
  color: #333333;
}
.expert-broker-area .expert-broker-details a[name=email] {
  color: #7ea387;
  font-weight: 600;
  text-decoration: none;
}
.expert-broker-area .expert-broker-details a[name=email]:hover {
  color: #618069;
}
.expert-broker-area .expert-broker-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 255px;
  overflow: hidden;
  text-indent: -9999px;
}
.branch-top {
  width: 100%;
  background: #fff;
}
.branch-top .content-section {
  display: block;
}
.branch-top .branch-data {
  float: left;
  height: auto;
  width: 306px;
  margin: 50px 0 0 0;
}
.branch-top .branch-data strong {
  font-weight: 600;
  display: block;
  font-size: 22px;
  margin: 0 0 10px 0;
}
.branch-top .branch-data p {
  margin: 0 0 3px 0;
  font-size: 18px !important;
}
.branch-top .branch-data a {
  color: #7ea387;
  font-weight: 600;
  text-decoration: none;
}
.branch-top .branch-data .branch-openinghours {
  margin: 20px 0 0 0;
}
.branch-top .branch-data .branch-openingday {
  float: left;
  width: 40%;
  color: #666666;
  font-size: 15px;
}
.branch-top .branch-quote {
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  margin: 50px 100px 0 0;
  padding: 60px;
  width: 820px;
  box-sizing: border-box;
  float: right;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  font-size: 20px;
  text-align: center;
}
.branch-top .branch-services {
  width: 820px;
  float: right;
  margin: 20px 100px 0 0;
  font-size: 15px;
  color: #666666;
}
.branch-top .branch-services a {
  text-decoration: none;
  color: #666666;
  padding: 0 5px 0;
}
.branch-top .branch-services a:hover {
  text-decoration: underline;
  color: #333333;
}
.branch-top .branch-button {
  float: right;
  margin: 50px 20px 0 0;
  width: 360px;
}
.branch-top .first-button {
  margin: 50px 100px 0 0;
  clear: left;
}
.profile-linkedin {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  height: 50px;
  width: 50px;
  overflow: hidden;
  text-indent: -999px;
  z-index: 999;
  background: url(../images/Spritegrid-@1x.png) -400px -50px;
}
.profile-linkedin:hover {
  opacity: .5;
}
.user-miniprofile {
  position: relative;
  width: 100%;
}
.user-miniprofile .user-miniprofile-image {
  position: relative;
  height: 140px;
  width: 100%;
}
.user-miniprofile .user-miniprofile-image img {
  display: block;
  height: 126px;
  width: 126px;
  margin: auto;
  border-radius: 100%;
}
.user-miniprofile .user-miniprofile-details {
  font-size: 15px;
  text-align: center;
  color: #666666;
}
.user-miniprofile .user-miniprofile-details i {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.user-miniprofile .user-miniprofile-details strong,
.user-miniprofile .user-miniprofile-details b {
  font-weight: 600;
}
.user-miniprofile .user-miniprofile-details b {
  padding: 0 5px;
}
.user-miniprofile .user-miniprofile-details strong {
  font-size: 15px;
}
.user-miniprofile .user-miniprofile-details strong:first-of-type {
  margin: 0 !important;
}
.user-miniprofile .user-miniprofile-details a {
  margin: 8px 0 10px 0;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.user-miniprofile .user-miniprofile-details span {
  display: inline-block;
  width: 306px;
  text-align: left;
}
.user-miniprofile .user-miniprofile-details span b {
  float: right;
}
.user-miniprofile .generic-button {
  max-width: 214px;
  float: left;
  color: #fff !important;
  font-weight: normal !important;
  margin: 20px 0 0 0;
}
.user-miniprofile .user-miniprofile-linkedin {
  position: static !important;
  float: right;
  margin: 20px 0 0 0;
}
.expert-broker-area.detailpage {
  margin: 30px 86px 0 0;
}
.expert-broker-area.detailpage.mini-experts {
  margin: 50px 86px 0 0;
}
.mini-expert {
  width: 100%;
  margin: 0 20px 30px 0;
  position: relative;
}
.mini-expert .mini-expert-image {
  position: relative;
  float: left;
  margin: 0 10px 0 0;
}
.mini-expert .mini-expert-image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.mini-expert .mini-expert-details {
  float: left;
  position: relative;
  font-size: 14px;
  width: 240px;
  line-height: 22px;
}
.mini-expert .mini-expert-details span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.mini-expert .mini-expert-details strong {
  display: block;
  font-weight: 600;
  width: 210px;
}
.mini-expert .mini-expert-details b {
  padding: 0 0 0 4px;
}
.mini-expert .mini-expert-details a {
  color: #7ea387;
  position: relative;
  z-index: 9999;
}
.mini-expert .mini-expert-details a.toggle-contact {
  display: block;
  color: #fff;
  height: 25px;
  border-radius: 3px;
  background: #7ea387;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  width: 247px;
  margin: 15px 0 0 0;
  line-height: 23px;
}
.mini-expert .mini-expert-details a.toggle-contact:hover {
  background-color: #618069;
}
.mini-expert .broker-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  overflow: hidden;
}
.download-button {
  width: 286px;
  height: 50px;
  line-height: 48px;
  text-align: right;
  padding: 0 20px 0 0;
  border-radius: 3px;
  background: #666666;
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  margin: 20px 0 20px 0;
}
.download-button span {
  display: block;
  width: 50px;
  height: 50px;
  float: left;
  background: url(../images/Spritegrid-@1x.png) 0 -150px;
}
.download-button:hover {
  background: #999;
}
.team-section .team-section-grid.branch-grid {
  max-width: 1098px;
}
.team-section .team-section-grid.branch-grid .branch-box {
  width: 532px;
  position: relative;
  float: left;
  background: #fff;
  margin: 0 30px 30px 0;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-image {
  position: relative;
  width: 532px;
  height: 193px;
  overflow: hidden;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-image img {
  max-height: 192px;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details {
  height: 160px;
  padding: 20px;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details h3,
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details h2 {
  text-align: left;
  margin: 0 0 15px 0;
  padding: 0;
  text-transform: none;
  color: #333333;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: normal;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details p {
  margin: 0 0 5px 0;
  color: #666666;
  font-size: 18px;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details a {
  color: #7ea387;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
}
.team-section .team-section-grid.branch-grid .branch-box .branch-box-details a:hover {
  color: #618069;
}
.team-section .team-section-grid.branch-grid .branch-box a.branch-box-action {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  text-indent: -999px;
  background: url(../images/object-go-arrow.png) 482px 272px no-repeat;
}
.team-section .team-section-grid.branch-grid .branch-box a[name=email] {
  position: relative;
  z-index: 9999;
}
.team-section .team-section-grid.branch-grid .branch-box:hover {
  background: #f9f9f9;
}
.team-section .team-section-grid.branch-grid div.branch-box:nth-of-type(2n+0) {
  margin: 0 0 30px 0;
  float: right;
}
.savesearch-container {
  position: absolute;
  right: 150px;
  top: 90px;
  padding: 10px;
  background: rgba(153, 153, 153, 0.9);
  width: 340px;
  z-index: 99999;
  display: none;
}
.savesearch-container .savesearch-body {
  width: 300px;
  height: auto;
  padding: 20px;
  position: relative;
  background: #fff;
  font-size: 14px;
  color: #666666;
  display: block;
}
.savesearch-container .savesearch-body u {
  position: absolute;
  top: -15px;
  right: 125px;
  height: 5px;
  width: 9px;
  background: url(../images/Spritegrid-@1x.png) -450px 0 no-repeat;
}
.savesearch-container .savesearch-body strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #333333;
}
.savesearch-container .savesearch-body input[type=text] {
  max-width: 298px;
  margin: 20px 0;
}
.savesearch-container .savesearch-body a {
  float: left;
  cursor: pointer;
  width: 260px;
}
.savesearch-container .savesearch-body span {
  display: block;
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 20px 80px 0;
  background: url(../images/Spritegrid-@1x.png) -450px -50px;
}
.savesearch-container .savesearch-body a.savesearch-close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/Spritegrid-@1x.png) -500px -50px;
  text-indent: -999px;
  overflow: hidden;
}
.savesearch-container .savesearch-body a.savesearch-close:hover {
  background-position: -500px -100px;
}
.gravity-form {
  position: fixed;
  bottom: 20px;
  right: -360px;
  width: 356px;
  background: #7ea387;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 9999;
}
.gravity-form .gravity-form-logo {
  width: 141px;
  height: 69px;
  float: left;
  background: url(../images/puur_makelaars-logo.png);
  margin: 15px 25px 25px 25px;
}
.gravity-form span {
  float: left;
  display: block;
  height: 69px;
  font-size: 25px;
  color: #fff;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  line-height: 67px;
  text-align: center;
  margin: 15px 25px 0 25px;
}
.gravity-form a.gravity-form-close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/Spritegrid-@1x.png) -531px -50px;
  text-indent: -999px;
  overflow: hidden;
  z-index: 999;
  cursor: pointer;
}
.gravity-form a.gravity-form-close:hover {
  opacity: .5;
}
.gravity-form .gform_confirmation_message {
  float: left;
  width: 306px;
  color: #fff;
  padding: 0 25px 25px 25px;
}
.gravity-form .gform_wrapper {
  width: 306px;
  padding: 25px;
  background: #7ea387;
}
.gravity-form .gform_wrapper input {
  display: block;
  width: 304px !important;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  border: 1px solid #e0e0e0;
  height: 50px;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px !important;
  color: #999;
  font-weight: 300;
  text-indent: 20px;
  -webkit-appearance: none;
}
.gravity-form .gform_wrapper input:focus {
  color: #666666 !important;
}
.gravity-form .gform_wrapper label {
  display: none !important;
}
.gravity-form .gform_wrapper textarea {
  width: 306px !important;
  border: 1px solid #e0e0e0;
  padding: 20px !important;
  box-sizing: border-box;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px !important;
  color: #999;
  font-weight: 300;
  -webkit-appearance: none;
}
.gravity-form .gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 18px 0 0 0 !important;
}
.gravity-form .gform_wrapper .gform_footer input[type=submit] {
  width: 306px !important;
  border: none !important;
  cursor: pointer;
  background: #5e387e;
  font-size: 25px !important;
  color: #fff;
  font-weight: normal !important;
  text-transform: none;
  text-indent: 0px !important;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
}
.gravity-form .gform_wrapper .gform_footer input[type=submit]:hover {
  background: #4a2c63 !important;
}
.gravity-form .gfield_error,
.gravity-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
.gravity-form .gfield_error input,
.gravity-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required input {
  border-color: red;
  background: #ffeeee;
}
.gravity-form .gfield_description.validation_message {
  display: none !important;
}
.gravity-form .validation_error {
  color: #e0e0e0 !important;
  font-weight: normal !important;
  font-size: 14px !important;
  float: left !important;
}
.gravity-form.triggered {
  right: 20px;
}
.toggle-contact {
  position: relative;
  z-index: 999;
}
.contact-section {
  max-width: 1314px !important;
}
.quote-column {
  float: right !important;
}
.quote-column span {
  margin: 20px 7px !important;
  color: #333 !important;
  text-align: center;
  line-height: 35px;
}
.contact-column-second {
  margin: 0 0 23px 0 !important;
}
.contact-column {
  float: left;
  width: 642px;
  margin: 0 30px 0 0;
  min-height: 100px;
}
.contact-column.quote-column {
  display: none;
}
.contact-column .contactpagina-form_wrapper input::-webkit-input-placeholder {
  color: #fff !important;
}
.contact-column .contactpagina-form_wrapper input::-moz-placeholder {
  color: #fff  !important;
}
.contact-column .contactpagina-form_wrapper input:-ms-input-placeholder {
  color: #fff !important;
}
.contact-column .contactpagina-form_wrapper input:-moz-placeholder {
  color: #fff !important;
}
.contact-column .contactpagina-form_wrapper textarea::-webkit-input-placeholder {
  color: #fff !important;
}
.contact-column .contactpagina-form_wrapper textarea::-moz-placeholder {
  color: #fff  !important;
}
.contact-column .contactpagina-form_wrapper textarea:-ms-input-placeholder {
  color: #fff !important;
}
.contact-column .contactpagina-form_wrapper textarea:-moz-placeholder {
  color: #fff !important;
}
.contact-column .contact-form {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
}
.contact-column .contact-form span {
  float: left;
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #5e387e;
  font-weight: 300;
  font-size: 17px;
  margin: 0 0 30px 0;
  width: 100%;
}
.contact-column .contact-form .privacyverklaring {
  font-size: 14px;
  background-color: #F2F2F2;
  border-radius: 2px;
  padding: 10px;
}
.contact-column .contact-form .privacyverklaring a {
  color: #7ea387;
}
.contact-column .contact-form .gform_wrapper {
  width: 100%;
  padding: 0;
  margin: 0 !important;
  max-width: 100% !important;
}
.contact-column .contact-form .gform_wrapper input::not[type=checkbox] {
  display: block;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 0 30px 0 !important;
  border: 1px solid #e0e0e0;
  height: 50px;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px !important;
  color: #999;
  font-weight: 300;
  text-indent: 20px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.contact-column .contact-form .gform_wrapper .gfield_error .ginput_container {
  background: #ffeeee;
}
.contact-column .contact-form .gform_wrapper input:focus {
  color: #666666 !important;
}
.contact-column .contact-form .gform_wrapper label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.contact-column .contact-form .gform_wrapper label span {
  display: none;
}
.contact-column .contact-form .gform_wrapper textarea {
  width: 100% !important;
  border: 1px solid #e0e0e0;
  padding: 20px !important;
  box-sizing: border-box;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px !important;
  color: #999;
  font-weight: 300;
}
.contact-column .contact-form .gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 18px 0 0 0 !important;
}
.contact-column .contact-form .gform_wrapper .gform_footer input[type=submit] {
  /*
                    width: 100% !important;
                    border: none !important;
                    cursor: pointer;
                    background: @green;
                    font-size: 18px !important;
                    color: #fff;
                    font-weight: normal !important;
                    text-indent: 0px !important;
                    -webkit-font-smoothing: antialiased;
                    margin: 5px 0 0 0 !important;
                    text-transform:none;
                    padding:10px 0px;
                    border-radius:2px;
                    */
  display: block;
  height: 50px;
  width: 100%;
  border-radius: 3px;
  background: #7ea387;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: px 0 0 0;
  cursor: pointer;
  float: left;
  -webkit-appearance: none;
  text-transform: none;
}
.contact-column .contact-form .gform_wrapper .gform_footer input[type=submit]:hover {
  background: #618069 !important;
}
.contact-column .contact-form .gforms_confirmation_message {
  float: left;
  width: 100%;
  color: #333333;
  padding: 0;
}
.contact-column .contact-form .gfield_error,
.contact-column .contact-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
.contact-column .contact-form .gfield_error input,
.contact-column .contact-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required input {
  border-color: red;
  background: #ffeeee;
}
.contact-column .contact-form .gfield_description.validation_message {
  display: none !important;
}
.contact-column .contact-form .validation_error {
  color: #eea811 !important;
  font-weight: normal !important;
  font-size: 14px !important;
  float: left !important;
}
.contact-column .branch-box a {
  background-position: 481px 82px !important;
}
.contact-column .object-brokers {
  position: relative;
  width: 100%;
}
.contact-column .object-brokers span {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}
.contact-column .object-brokers .broker {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  background-color: #f2f2f2;
  box-sizing: border-box;
  padding-left: 10px;
}
.contact-column .object-brokers .broker img {
  float: right;
  margin: 0 0 0 5px;
}
.contact-column .object-brokers .broker strong {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0 0 0;
}
.contact-column .object-brokers .broker a {
  display: block;
  color: #7ea387;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin: 5px 0 0 0;
}
.contact-column .object-brokers .broker a:hover {
  color: #618069;
}
.contact-column .object-contact {
  display: none;
  margin: 22px 0 0 0;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  text-align: center;
}
.contact-column .object-contact span {
  text-transform: none;
  color: #999;
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400 !important;
  float: none;
}
.contact-column .object-contact span small {
  display: inline-block;
  width: 20px;
  height: 18px;
  background: url(../images/checkmark.png);
  margin-right: 20px;
}
.contact-column .object-contact a {
  min-width: 266px;
}
.contact-column .contact-section-inner {
  Width: 100%;
}
.contact-column .contact-data-first {
  float: left;
  /*padding-top: 30px;*/
  margin-top: 0px !important;
  /*margin-left:10px;*/
  width: 45%;
  text-align: left;
  clear: none !important;
  font-size: 14px;
}
.contact-column .contact-data-first span {
  float: none !important;
}
.contact-column .contact-data-first p {
  line-height: 9px;
}
.contact-column .contact-data-first a {
  color: #7ea387;
  text-decoration: none;
}
.contact-column .contact-data-second {
  float: right;
  padding-top: 30px;
  margin-top: 0px !important;
  /*margin-right: 30px;*/
  width: 55%;
  text-align: left;
  clear: none !important;
  font-size: 14px;
}
.contact-column .contact-data-second span {
  float: none !important;
  margin: 0 0 25px 0 !important;
}
.contact-column .contact-data-second P {
  line-height: 10px;
}
.contact-column .contact-data-second.pad-top-a {
  padding-top: 38px;
}
.contact-column .contact-data-second.pad-top-b {
  padding-top: 43px;
}
.contact-column .contact-data {
  position: relative;
  margin-top: 50px;
  clear: both;
  display: block;
}
.contact-column .contact-data .whatsapp {
  background-color: #7ea387;
}
.contact-column .contact-data .data {
  width: 50%;
  box-sizing: border-box;
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-column .contact-data .data.left {
  float: left;
  /*text-transform: uppercase;*/
  padding-right: 15px;
  text-align: left;
}
.contact-column .contact-data .data.right {
  float: left;
  /*padding-left: 15px;*/
}
.contact-column .contact-data.data-top-margin {
  margin-top: 30px;
}
div.contact-column:last-of-type {
  margin: 0;
}
.development-project-text {
  float: left;
  width: 100%;
  padding: 40px 40px 15px 40px;
  box-sizing: border-box;
  clear: both;
  border-top: 1px solid #e0e0e0;
  background: #fff !important;
}
.development-project-text p {
  font-size: 15px;
  color: #666666;
  line-height: 28px;
}
.development-project-text p:first-of-type {
  margin-top: 0;
}
.development-project-text p:only-child {
  margin: 0 !important;
}
.development-project-text a {
  color: #7ea387;
  text-decoration: none;
  text-transform: uppercase;
}
.development-project-text a:hover {
  color: #618069;
  border-bottom: 1px solid #618069;
}
.no-border {
  border: none !important;
}
.padded {
  padding-bottom: 50px;
}
.padded-top {
  padding-top: 70px;
}
.organization-icons {
  float: left;
  clear: left;
  width: auto;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  width: 155px;
  height: 52px;
  margin: 30px 0 0 0;
  background: url(../images/Spritegrid-@1x.png) -350px -200px no-repeat;
}
.property-grid.devprops.freeflow {
  width: 100%;
  max-width: 1098px !important;
  min-width: 1px !important;
  margin: auto;
  display: block;
}
.property-grid.freeflow .development-project {
  margin: 0 0 30px 0;
  background: #f9f9f9;
}
.property-grid.freeflow div.development-project:nth-of-type(2n+0) {
  float: right !important;
}
.login-container {
  padding: 10px 10px 6px 10px;
  position: absolute;
  right: 0;
  top: 50px;
  background: rgba(153, 153, 153, 0.9);
  display: none;
  z-index: 99999;
}
.login-container .login-container-content {
  background: #fff;
  position: relative;
  width: 680px;
  height: auto;
  border: 1px solid #f2f2f2;
}
.login-container .login-container-content .login-column {
  float: left;
  width: 306px;
  margin: 15px 0 0 25px;
}
.login-container .login-container-content .login-column .column-top {
  height: 60px;
  font-size: 25px;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  color: #eea811;
  line-height: 58px;
  margin: 0 0 30px 0;
}
.login-container .login-container-content .login-column .column-top span.puur {
  display: block;
  height: 100%;
  width: 170px;
  background: url(../images/puur_makelaars-logo-paars.png) no-repeat;
  float: left;
}
.login-container .login-container-content .login-column .column-top span.nvm {
  display: block;
  height: 100%;
  width: 170px;
  background: url(../images/nvm_dropdown-logo.png) no-repeat;
  float: left;
}
.login-container .login-container-content .login-column p {
  color: #666666;
  font-size: 15px;
  margin: 20px 0;
}
.login-container .login-container-content .login-column input {
  display: block;
  height: 48px;
  width: 266px;
  padding: 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 10px 0;
  font-family: 'Open Sans', sans-serif;
  outline: none;
}
.login-container .login-container-content .login-column a {
  margin: 10px 0 0 0;
  float: left;
  width: 268px;
  cursor: pointer;
  overflow: hidden;
}
.login-container .login-container-content .login-column a.processing-button {
  background: #7ea387 url(../images/processing-button.gif) center center no-repeat;
  text-indent: -9999px;
}
.login-container .login-container-content .login-column.login-register-column {
  width: 100%;
  display: none;
}
.login-container .login-container-content .login-column.login-register-column p {
  width: 94%;
}
.login-container .login-container-content .login-column.login-register-column form a {
  float: left;
  margin: 0 0 20px 15px;
}
.login-container .login-container-content .login-column.login-register-column input {
  float: left;
}
.login-container .login-container-content .login-column.login-register-column a.login-register-back {
  text-transform: uppercase;
  color: #7ea387;
  text-decoration: none;
  font-size: 15px;
  margin: 0 0 20px 0 !important;
  float: left;
}
.login-container .login-container-content a.property-filter-close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/Spritegrid-@1x.png) -500px -50px;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
}
.login-container .login-container-content a.property-filter-close:hover {
  background-position: -500px -100px;
}
.login-container .login-container-content .login-error {
  color: #eea811 !important;
}
.login-container .login-container-content input.validation-error {
  border-color: red;
  background: #ffeeee;
}
.login-container .login-container-content input[type=submit] {
  width: 306px;
  border: none;
  height: 50px;
  font-weight: normal;
  font-size: 25px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  margin: 20px 0 0 0;
  -webkit-appearance: none;
}
.login-container a.login-forgotpw,
.login-container a.login-register {
  text-transform: uppercase;
  color: #7ea387;
  text-decoration: none;
  font-size: 15px;
  margin: 30px 0 0 0 !important;
  float: left;
  display: block;
}
.login-container a.login-register {
  margin: 10px 0 15px 0 !important;
}
.login-container a.login-forgotpw:hover,
.login-container a.login-register:hover {
  color: #618069;
}
.login-container u {
  display: block;
  width: 9px;
  height: 5px;
  top: -15px;
  right: 20px;
  position: absolute;
  background: url(../images/Spritegrid-@1x.png) -450px 0 no-repeat;
}
.visiting-days .textbox {
  margin: 10px 0 5px 20px !important;
}
.visiting-days .textbox strong {
  margin: 0;
}
.visiting-day-label {
  margin: -11px 20px 0 20px;
  font-size: 11px;
  border: 1px #df751e solid;
  border-radius: 3px 3px 0 0;
}
.visiting-day-label span {
  display: inline-block;
  height: 18px;
  width: 87px;
  background: #df751e;
  padding: 0 5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 17px;
  margin: 0;
  font-weight: 700;
  text-align: center;
}
.visiting-day-label span:nth-child(2) {
  background: 0 0;
  color: #333;
  width: 58%;
  font-weight: 400;
}
.has-ribbon.textbox {
  margin-top: 10px !important;
  margin-bottom: 0px !important;
}
.visiting-day-label.in-negotiation-label {
  border: 1px #eea811 solid;
}
.visiting-day-label.in-negotiation-label span {
  background: #eea811;
  width: 100%;
  box-sizing: border-box;
}
.custom-days .visiting-day-label span {
  background: #5e387e;
}
.content-dim {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 193px;
  background: url(../images/image-fade.png);
}
.review-top {
  height: 625px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #666666;
  min-width: 1314px;
}
.review-top img.scaling-top-image {
  width: 100%;
  max-width: 1600px;
  min-width: 1400px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}
.review-top img.scaling-top-image.blurred {
  filter: blur(10px);
  max-width: 2000px;
  opacity: 0.6;
}
.review-top .review-top-content {
  max-width: 1314px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.review-top .review-top-content .breadcrumb-container {
  float: right;
  margin: 30px 0 30px 30px;
}
.review-top .review-page-title {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
.review-top .review-page-title h2,
.review-top .review-page-title h1 {
  color: #fff;
  font-weight: 600;
  font-size: 60px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  position: relative;
  float: left;
  margin: -20px 0 0 0 !important;
}
.review-top .review-page-title .social-share {
  float: right;
  clear: none;
}
.review-top .review-highlight,
.review-top .review-grade {
  width: 494px;
  margin-left: 50px;
  position: absolute;
  top: 135px;
}
.review-top .review-highlight p,
.review-top .review-grade p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  text-align: center;
  padding: 25px;
  color: #333333;
  min-height: 50px;
  background: #fff;
  border-radius: 35px;
}
.review-top .review-highlight span,
.review-top .review-grade span {
  display: block;
  text-transform: uppercase;
  text-align: right;
  width: 237px;
  color: #999;
  font-size: 14px;
  line-height: normal;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.review-top .review-highlight:after,
.review-top .review-grade:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 260px;
  border-bottom: 40px solid;
  border-left: 0px solid;
  border-right: 60px solid;
  border-top: 60px solid;
  border-color: #fff transparent transparent;
  bottom: -30px;
}
.detailed-review-head {
  position: relative;
  width: 100%;
  height: 300px;
  background: url(../images/review-page-header.jpg) center center;
}
.detailed-review-head h1 {
  font-size: 70px;
  color: #fff !important;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  text-align: left;
  padding: 180px 0 0 0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
}
.review-pagetext {
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
  line-height: 24px;
  color: #333333;
}
.review-pagetext:after {
  content: " ";
  clear: both;
  display: block;
}
.review-pagetext .review-logo {
  margin-bottom: 0;
  margin-right: 50px;
  height: auto;
}
.review-averages {
  background: #f2f2f2;
  display: block;
  margin-bottom: 30px;
}
.review-averages .content-section {
  display: block;
  padding: 0;
}
.review-averages .average-text {
  display: block;
  text-transform: uppercase;
  text-align: right;
  color: #999;
  font-size: 14px;
  line-height: normal;
  position: absolute;
  bottom: -40px;
  right: 25px;
}
.review-averages .review-quote {
  margin-right: 99px;
  position: relative;
}
.review-averages .review-grade p {
  min-width: 160px;
  height: auto !important;
  background: #fff;
  border-radius: 35px;
}
.review-averages .review-grade:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 20px;
  border-bottom: 40px solid;
  border-left: 0px solid;
  border-right: 45px solid;
  border-top: 35px solid;
  border-color: #fff transparent transparent;
  bottom: -18px;
}
.review-averages .review-grade .review-quote-left {
  width: 277px;
  border-right: 1px solid #e0e0e0;
  float: left;
  height: 133px;
  margin: 10px 0 0 0;
  position: relative;
}
.review-averages .review-grade .review-quote-left img {
  max-width: 196px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.review-averages .review-grade .review-quote-right {
  font-size: 72px;
  font-weight: 700;
  float: left;
  height: 133px;
  margin: 10px 0 0 0;
  line-height: 131px;
  text-align: center;
  width: 209px;
  color: #7ea387;
}
.review-averages .review-quote {
  width: 494px;
  height: auto !important;
  margin-top: 40px;
  margin-left: 50px;
  background: #fff;
  border-radius: 35px;
}
.review-averages .review-quote:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 260px;
  border-bottom: 40px solid;
  border-left: 0px solid;
  border-right: 75px solid;
  border-top: 60px solid;
  border-color: #fff transparent transparent;
  bottom: -70px;
}
.review-averages .review-quote .review-quote-left {
  width: 277px;
  border-right: 1px solid #e0e0e0;
  float: left;
  height: 133px;
  margin: 10px 0 0 0;
  position: relative;
}
.review-averages .review-quote .review-quote-left img {
  max-width: 196px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.review-averages .review-quote .review-quote-right {
  font-size: 72px;
  font-weight: 700;
  float: left;
  height: 133px;
  margin: 10px 0 0 0;
  line-height: 131px;
  text-align: center;
  width: 209px;
  color: #7ea387;
}
.review-averages .review-averages-left {
  float: left;
  border-right: 1px solid #fff;
  min-height: 310px;
}
.review-averages .review-averages-left .review-description {
  width: 643px;
  float: left;
}
.review-averages .review-averages-left .review-description p {
  margin: 40px 40px 40px 0px;
}
.review-averages .review-averages-right {
  float: left;
  /* margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: 270px;
  padding-left: 50px;
  box-sizing: border-box;
}
.review-averages .review-averages-right .button {
  padding: 10px 20px;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  box-sizing: border-box;
  background: #6f049a;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
  width: 100%;
}
.review-averages .review-averages-right .button:hover {
  background: #711b8d;
}
.review-averages .review-averages-right .button:last-of-type {
  margin-bottom: 0;
}
.review-averages .review-averages-right ul {
  margin: 40px 50px 20px 50px;
  width: 250px;
  list-style: none;
  padding: 0;
  float: left;
}
.review-averages .review-averages-right ul li {
  width: 250px;
  margin-bottom: 20px;
}
.review-averages .review-averages-right ul li small {
  float: right;
  font-size: inherit;
}
.review-averages .review-averages-right .review-grade-box {
  float: right;
  width: 175px;
  color: #999;
  margin-top: 50px;
}
.review-averages .review-averages-right .review-grade-box small {
  text-align: right;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}
.review-averages .review-averages-right .review-grade {
  font-size: 72px;
  width: 160px !important;
  height: 141px !important;
  text-align: center;
  float: right;
  background-position: -219px -193px;
  margin: 30px 0 0 0 !important;
}
.review-averages .review-averages-right .review-grade p {
  font-size: 52px;
  color: #7ea387;
  font-weight: bold;
  line-height: 100px;
}
.review-averages .review-averages-right .review-grade a {
  font-size: 14px;
  text-transform: uppercase;
  color: #7ea387;
  float: right;
  margin: 20px 0;
  font-weight: 600;
  text-decoration: none;
}
.review-averages.with-bulb .review-quote {
  margin-left: 0px;
  margin-right: 150px;
  height: 150px!important;
}
.review-averages.with-bulb .review-quote:after {
  content: '';
  position: relative;
  width: 0;
  height: 0;
  left: 300px;
  border-bottom: 40px solid;
  border-right: 0px solid;
  border-left: 75px solid;
  border-top: 60px solid;
  border-color: #fff transparent transparent;
  bottom: -60px;
}
.review-averages.with-bulb .review-averages-left {
  min-height: 270px;
}
.review-averages.with-bulb .review-quote-left {
  width: 277px;
  border-right: 1px solid #eee;
  float: left;
  height: 103px;
  margin: 25px 0 0 0;
  position: relative;
}
.detailed-review-table {
  width: 472px;
  position: relative;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.detailed-review-table .detailed-review-tablerow {
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #e0e0e0;
}
.detailed-review-table .detailed-review-tablecell {
  float: left;
  width: 127px;
  text-align: center;
  line-height: 37px;
  font-weight: 600;
  height: 39px;
}
.detailed-review-table .detailed-review-tablecell.heading {
  width: 344px;
  text-align: left;
  text-indent: 10px;
  font-weight: normal;
  color: #f2f2f2;
  border-right: 1px solid #e0e0e0;
  font-size: 15px;
}
.detailed-review-table .purple {
  background: #5e387e;
  color: #fff !important;
}
.detailed-review-area {
  background: #fff;
  position: relative;
  width: 100%;
  display: block;
}
.detailed-review-area .detailed-review-container {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  display: block;
}
.detailed-review-area .detailed-review-container .detailed-review {
  max-width: 1098px;
  margin: auto;
  display: block;
  position: relative;
}
.detailed-review-area .detailed-review-container .detailed-review a {
  top: 0;
}
.detailed-review-area .detailed-review-container .detailed-review-left {
  float: left;
  width: 472px;
}
.detailed-review-area .detailed-review-container .detailed-review-left span {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 25px;
  margin: 0 0 20px 0;
}
.detailed-review-area .detailed-review-container .detailed-review-right {
  float: right;
  width: 472px;
}
.detailed-review-area .detailed-review-container .detailed-review-right small {
  display: block;
  color: #999;
  margin: 0 0 20px 0;
}
.detailed-review-area .detailed-review-container .detailed-review-right .detailed-review-tablecell.heading {
  color: #666666;
}
.detailed-review-area .detailed-review-container .review-dataset {
  position: relative;
  font-size: 15px;
}
.detailed-review-area .detailed-review-container .review-dataset strong {
  font-weight: 600;
}
.detailed-review-area .detailed-review-container .review-dataset p {
  margin-top: 3px;
  line-height: 22px;
  color: #666666;
}
.detailed-review-donotdisplay {
  display: none;
}
.detailed-review-heading {
  width: 100%;
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 40px;
  text-transform: uppercase;
  color: #5e387e;
  font-weight: 300;
  text-align: center;
}
.popup-container {
  padding: 10px;
  background: rgba(153, 153, 153, 0.9);
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -235px 0 0 -340px;
  z-index: 9999;
  display: none;
}
.popup-container .popup {
  width: 638px;
  height: 308px;
  padding: 20px;
  border: 1px solid #f2f2f2;
  background: #fff;
  position: relative;
}
.popup-container .popup ul {
  padding: 15px 0 0 0;
  margin: 0;
  list-style: none;
}
.popup-container .popup ul li {
  float: left;
  width: 180px;
  height: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 5px 30px;
  font-size: 15px;
}
.popup-container .popup ul li a {
  color: #333333;
  font-weight: 600;
  text-decoration: none;
}
.popup-container .popup ul li a small {
  color: #999;
  font-size: inherit;
}
.popup-container .popup ul li a:hover {
  border-bottom: 1px solid #7ea387;
}
.popup-container a.property-filter-close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/Spritegrid-@1x.png) -500px -50px;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 9999;
}
.popup-container a.property-filter-close:hover {
  background-position: -500px -100px;
}
.button-errorpage {
  width: 406px;
  display: block;
  margin: auto;
}
.mobile-option {
  display: none;
}
.show-if-mobile {
  display: none;
}
.article-details-content .gform_body label {
  font-size: 16px !important;
  font-weight: normal !important;
  margin-bottom: 10px !important;
}
.article-details-content .gform_body label span {
  color: #eea811 !important;
}
.article-details-content .gform_body input[type=text] {
  display: block;
  height: 50px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  border-radius: 3px;
  text-indent: 20px;
  margin-bottom: 20px !important;
  min-width: 306px !important;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.article-details-content .gform_body textarea {
  border: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  border-radius: 3px;
  padding: 20px 20px 0 20px !important;
  margin-bottom: 10px !important;
  box-sizing: border-box;
  min-width: 306px !important;
  -webkit-font-smoothing: antialiased;
}
.article-details-content .gform_footer input[type=submit] {
  display: block;
  max-width: 306px !important;
  color: #fff;
  font-size: 20px !important;
  background: #7ea387;
  border: none;
  text-align: center;
  height: 50px;
  line-height: 48px;
  padding: 0 20px;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  min-width: 47%;
  border-radius: 3px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
.article-details-content .gform_footer input[type=submit]:hover {
  background: #618069;
}
.footer-credits {
  display: none!important;
  float: right;
  margin-right: 115px;
}
.footer-credits a {
  color: #666666;
  text-decoration: none;
}
.footer-credits a span {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../images/Spritegrid-@2x.png) -550px 0 no-repeat;
  background-size: 600px 500px;
  margin: 0 5px 0 5px;
  position: relative;
  bottom: -8px;
}
.footer-credits a:hover {
  color: #333333;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin: 0 !important;
}
.gform_wrapper .gfield_error .gfield_label {
  /*color: #fff !important;*/
}
.neighbourhoods-landing .neighbourhoods-landing-content .neighbourhoods-ajaxarea {
  overflow: visible !important;
}
.beta-ribbon {
  position: absolute;
  top: 7px;
  left: -38px;
  width: 120px;
  background: #eea811;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
  z-index: 9999;
}
.neighbourhoods-map {
  position: relative;
}
.trigger-fields {
  height: auto !important;
  padding: 9px;
  line-height: normal;
  margin-bottom: 50px;
}
.service-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -999px;
}
.errordocument {
  font-size: 15px;
}
.errordocument p {
  margin: 20px 0 !important;
}
.errordocument a {
  color: #7ea387;
  text-decoration: none;
}
.errordocument a:hover {
  color: #618069;
}
.errordocument a.generic-button {
  color: #fff;
}
.errordocument ul {
  padding: 0 0 0 30px;
  margin: 0;
  list-style: circle;
}
.errordocument ul li {
  padding-bottom: 3px;
}
.newsletter-details {
  max-width: 978px !important;
}
.newsletter-details .propdetails-text {
  max-width: 978px;
}
.newsletter-details h2 {
  text-align: left !important;
  max-width: 978px;
  margin: 0 auto 40px auto !important;
  padding-top: 50px;
}
.newsletter-details p {
  max-width: 978px;
}
.newsletter-details .social-share {
  float: right;
  margin-bottom: 50px;
}
.standalone-signup .newsletter-signup-form {
  width: 100%;
  border-right: none;
}
ul.newsletter-recenteditions {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  position: relative;
  width: 100%;
  padding: 0;
  list-style: none;
  max-width: 978px;
  margin: 0 0 50px 0;
}
ul.newsletter-recenteditions li {
  height: 78px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}
ul.newsletter-recenteditions li .newsletter-recenteditions-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 78px;
  width: 69px;
  margin: 0 20px 0 0;
}
ul.newsletter-recenteditions li .newsletter-recenteditions-image img {
  max-width: 69px;
}
ul.newsletter-recenteditions li p {
  float: left;
  font-size: 15px;
  padding: 18px 0 0 0;
  width: 80%;
  margin: 0 0 0 89px !important;
  color: #333333;
}
ul.newsletter-recenteditions li small {
  float: left;
  clear: left;
  font-size: 15px;
  color: #666666;
  margin: 0 0 0 89px;
}
ul.newsletter-recenteditions li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  overflow: hidden;
}
ul.newsletter-recenteditions li a span {
  display: block;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 13px;
  height: 40px;
  background: url(../images/object-go-arrow.png);
}
ul.newsletter-recenteditions li:hover {
  background: #ededed;
}
.add-to-favorites {
  width: 286px;
  height: 50px;
  line-height: 48px;
  text-align: right;
  padding: 0 20px 0 0;
  border-radius: 3px;
  background: #666666;
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  margin: 20px 0;
  cursor: pointer;
}
.add-to-favorites span {
  display: block;
  width: 50px;
  height: 50px;
  float: left;
  background: url(../images/Spritegrid-@1x.png) -400px -150px;
  opacity: .5;
}
.add-to-favorites:hover {
  background: #999;
}
.add-to-favorites:hover span {
  opacity: 1;
}
.add-to-favorites.in-favorites span {
  background-position: -450px -150px;
  opacity: 1;
}
.add-to-favorites.processing {
  background: #666666 url(../images/favorites-processing.gif) 265px 20px no-repeat;
}
.user-favorite-container {
  border-top: 1px solid #e0e0e0;
}
.user-favorite-container .myaccount-container {
  background: #fff;
  padding: 30px;
}
.user-favorite-container .myaccount-container > h2 {
  font-size: 40px;
  font-weight: 300;
  color: #5e387e;
  text-align: center;
  text-transform: uppercase;
  padding-top: 0;
  margin: 0 0 70px 0;
}
.user-favorite-container .myaccount-container > p {
  color: #666666;
  font-size: 15px;
  margin-bottom: 70px;
}
.user-favorites {
  width: auto !important;
  max-width: 548px;
}
.user-favorite-list {
  padding: 20px 0px 0 20px;
  border-top: 1px solid #e0e0e0;
  background: #f2f2f2;
}
.user-favorite-list > span {
  display: block;
  margin: 0 0 20px 0;
}
.user-favorite-list .search-result {
  height: auto;
}
.user-favorite-list .search-result .remove-favorite {
  width: 100%;
  height: 38px;
  line-height: 38px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
  float: left;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  color: #eea811;
  position: relative;
  z-index: 9999;
}
.user-favorite-list .search-result .remove-favorite:hover {
  color: #333333;
}
.user-favorite-list .search-result .remove-favorite.processing {
  background: #fff url(../images/processing.gif) center center no-repeat;
}
.user-favorites-map {
  width: 550px !important;
  position: relative;
}
.user-favorites-map > div {
  height: 100% !important;
  position: relative;
}
gravity-form .gform_wrapper li {
  float: left;
  clear: none !important;
}
gravity-form .gform_wrapper input.datepicker {
  width: 188px !important;
  background: #fff url(../images/ui-datepicker-icon.png) right center no-repeat;
}
gravity-form .gform_wrapper .timepicker input {
  float: left;
  width: 104px !important;
  margin-left: 10px !important;
  background: #fff url(../images/dropdown-arrow.png) right center no-repeat;
  cursor: pointer;
  opacity: 1 !important;
}
gravity-form .gform_wrapper input[type=submit] {
  float: left;
  margin: 6px 0 24px 0 !important;
}
body div#ui-datepicker-div[style] {
  position: fixed !important;
  bottom: 44px !important;
  right: 45px !important;
  width: 306px;
  padding: 50px 10px 10px 10px;
  height: 553px;
  box-shadow: none;
  top: auto !important;
  box-sizing: border-box;
  border-radius: 3px;
  background: url(../images/ui-datepicker-title.png);
  background-position: center 15px, center 410px;
  background-color: #fff;
  background-repeat: no-repeat;
  /* table.ui-datepicker-calendar tr td:first-of-type a {
        display: none;
    } */
}
body div#ui-datepicker-div[style] .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  height: 38px;
  line-height: 36px;
}
body div#ui-datepicker-div[style] .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all .ui-datepicker-prev {
  width: 40px;
  height: 40px;
  background: url(../images/ui-datepicker-prev.png) center center no-repeat;
}
body div#ui-datepicker-div[style] .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all .ui-datepicker-prev span {
  display: none;
}
body div#ui-datepicker-div[style] .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all .ui-datepicker-next {
  width: 40px;
  height: 40px;
  background: url(../images/ui-datepicker-next.png) center center no-repeat;
}
body div#ui-datepicker-div[style] .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all .ui-datepicker-next span {
  display: none;
}
body div#ui-datepicker-div[style] .ui-datepicker-title {
  height: 38px;
  line-height: 38px;
  text-transform: capitalize;
  font-weight: normal;
}
body div#ui-datepicker-div[style] .ui-datepicker-title span {
  text-decoration: none;
  font-size: 16px;
  color: #666666;
  font-family: 'Open Sans', sans-serif;
  text-shadow: none;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar th {
  width: 40px;
  height: 40px;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  text-transform: none;
  font-size: 15px;
  font-weight: normal;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td {
  width: 40px;
  height: 40px;
  border-color: #fff;
  background: #e0e0e0;
  color: #333333;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td a {
  color: #333333;
  background: none;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-shadow: none;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td a:hover {
  background: #f2f2f2;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td a.ui-state-active {
  background: #7ea387;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td.ui-datepicker-other-month span {
  text-shadow: none;
  background: #e0e0e0;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 38px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td.ui-datepicker-other-month a {
  color: #999 !important;
}
body div#ui-datepicker-div[style] table.ui-datepicker-calendar td.ui-datepicker-unselectable span {
  text-shadow: none;
  background: #f4f4f4;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 38px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
}
.gravity-form-timepicker {
  position: fixed !important;
  bottom: 44px !important;
  right: 45px !important;
  width: 286px;
  padding: 10px;
  height: 534px;
  box-shadow: none;
  top: auto !important;
  background: #fff;
  border-radius: 3px;
  display: none;
}
.gravity-form-timepicker > span {
  font-size: 16px;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  display: block;
  margin-top: 0px;
  height: 40px;
  line-height: 38px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  float: none;
}
.gravity-form-timepicker ul {
  position: relative;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  float: left;
}
.gravity-form-timepicker ul li {
  width: 94px;
  height: 40px;
  background: #e0e0e0;
  margin: 0 0 1px 1px;
  float: left;
  text-align: center;
}
.gravity-form-timepicker ul li a {
  display: block;
  height: 40px;
  width: 94px;
  line-height: 38px;
  cursor: pointer;
}
.gravity-form-timepicker ul li a:hover {
  background: #f2f2f2;
}
.gravity-form-timepicker ul li a.ui-state-active {
  background: #7ea387;
  color: #fff;
}
.property-detail-page {
  cursor: pointer;
}
.button-no-result {
  background: #666666 !important;
  cursor: default;
}
.new-header-small {
  height: 300px;
}
.new-header-small .propdetails-top-container {
  height: 300px;
}
.new-header-small .propdetails-top-image {
  height: 300px !important;
  background-color: #5e387e !important;
}
.header-icon {
  display: block;
  float: left;
  height: 90px;
  width: 70px;
  margin: 0 30px 0 0;
}
.has-header-icon {
  min-height: 110px !important;
}
.property-filter-container.error-page-filters {
  top: 665px !important;
}
.property-search.errordocument-search {
  border-top: 1px solid #e0e0e0;
}
.content-section.errordocument.extended-error {
  height: 450px;
}
.property-tags.errordocument.extended-error {
  background: url(../images/Header_404.jpg) center center no-repeat;
  background-size: cover !important;
}
p.errordocument-large.padded {
  padding: 0 200px;
  margin: 0;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 0 30px #000;
  text-align: center;
  line-height: 40px;
}
.errordocument.extended-error h1 {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #eea811;
  text-shadow: 0 0 30px #000;
  font-weight: 600;
}
.property-search.small-errordocument-search {
  top: auto !important;
  margin: 0 !important;
}
.property-filter-container.small-error-page-filters {
  top: 469px !important;
}
.small-errordocument {
  padding-top: 50px;
}
img[src="_placeholder.jpg"] {
  opacity: 0 !important;
  -webkit-transition: opacity 0.4 linear;
}
div#gform_confirmation_message_12 {
  float: left !important;
  color: #fff !important;
  padding: 30px !important;
}
/* New Stuff */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  opacity: 0.8;
  z-index: 99999;
  display: none;
}
.generic-modal {
  padding: 10px;
  background: rgba(153, 153, 153, 0.9);
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99999999;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 660px;
}
.generic-modal .generic-modal-content {
  background: #fff;
  padding: 30px;
  color: #666666;
  position: relative;
}
.generic-modal .generic-modal-content > span {
  font-size: 25px;
  color: #7ea387;
  font-family: 'ITCBradleyHandW01-Bold', cursive;
  display: block;
  float: left;
  height: 50px;
  line-height: 48px;
}
.generic-modal .generic-modal-content p {
  clear: left;
}
.generic-modal .generic-modal-content a.modal-close {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  background: url(../images/Spritegrid-@1x.png) -500px -50px;
  text-indent: -999px;
  overflow: hidden;
  z-index: 999;
  cursor: pointer;
}
.generic-modal .generic-modal-content a.modal-close:hover {
  background-position: -500px -100px;
}
.generic-modal .generic-modal-content .register-text {
  margin-bottom: 20px;
}
.generic-modal .modal-actions {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
  width: 100%;
}
.generic-modal .modal-actions a.generic-button {
  width: 230px;
}
.generic-modal .modal-actions a.generic-button.processing {
  text-indent: -999px;
  overflow: hidden;
  background: #7ea387 url(../images/processing-button.gif) center center no-repeat !important;
}
.generic-modal .modal-actions a {
  float: right;
  cursor: pointer;
}
.generic-modal .modal-actions a.additional-control {
  text-transform: uppercase;
  color: #7ea387;
  margin: 18px 25px 0 0;
  text-decoration: none;
  font-size: 14px;
}
.generic-modal .modal-actions a.additional-control:hover {
  color: #618069;
  text-decoration: underline;
}
.generic-modal .modal-icon {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/Spritegrid-@1x.png);
  float: left;
  margin: 0 20px 20px 0;
}
.modal-notifications {
  display: none;
}
.modal-notifications .modal-icon {
  background-position: -100px -350px;
}
.modal-notifications .notification-types {
  padding-left: 35px;
}
.modal-login {
  display: none;
}
.modal-login form {
  padding: 0;
  display: none;
  margin: 30px 0;
}
.modal-login form input {
  display: block;
  height: 48px;
  width: 248px;
  padding: 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 300;
  margin: 0 20px 10px 0;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  float: left;
}
.modal-login form input:nth-of-type(2n) {
  margin-right: 0 !important;
}
.modal-login .modal-icon {
  width: 150px;
  height: 62px;
  margin-top: -10px;
  background: url(../images/logo-@2x.png) no-repeat !important;
  background-size: 150px auto !important;
}
.modal-login p.login-error {
  color: #eea811;
}
.modal-login p .check {
  display: block;
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 10px 10px 0;
  background: url(../images/Spritegrid-@1x.png) -450px -50px;
}
.modal-login form.switched {
  display: block !important;
}
.modal-login a.generic-button:after {
  content: 'Inloggen';
}
.modal-login a.generic-button.switched:after {
  content: 'Account Aanmaken';
}
.modal-login a.create-account:after {
  content: 'Registreren';
}
.modal-login a.create-account.switched:after {
  content: 'Terug naar Inloggen';
}
.modal-login a.forgotpw.switched {
  display: none;
}
.modal-login .generic-modal-content > span::after {
  /*content: 'Inloggen';*/
}
.modal-login .generic-modal-content > span.switched::after {
  content: 'Account Aanmaken';
}
.modal-note,
.modal-share {
  display: none;
}
.modal-note form,
.modal-share form {
  clear: left;
  width: 100%;
}
.modal-note form textarea,
.modal-share form textarea {
  display: block;
  height: 140px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 300;
  margin: 0 20px 10px 0;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  float: left;
  resize: none;
}
.modal-note .modal-icon,
.modal-share .modal-icon {
  background-position: 0 -350px !important;
}
.modal-share input {
  display: block;
  height: 48px;
  width: 248px;
  padding: 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 300;
  margin: 0 20px 20px 0;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  float: left;
}
.modal-share input:nth-of-type(2n) {
  margin-right: 0 !important;
}
.modal-share input.validation-error {
  border-color: red !important;
}
.modal-share .modal-icon {
  display: none;
}
.modal-share p .check {
  display: block;
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 10px 10px 0;
  background: url(../images/Spritegrid-@1x.png) -450px -50px;
}
.modal-share p a {
  float: left;
  text-transform: uppercase;
  color: #7ea387;
  font-size: 15px;
}
.modal-share p a:hover {
  color: #618069;
  cursor: pointer;
}
.object-note {
  width: 100%;
  padding: 20px 0;
  background: #ffe0cc;
  position: relative;
  z-index: 99;
}
.object-note .object-note-wrapper {
  max-width: 1314px;
  margin: auto;
  position: relative;
}
.object-note .object-note-wrapper span {
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin: -5px 20px 0 0;
  background: url(../images/Spritegrid-@1x.png) -50px -350px;
}
.object-note .object-note-wrapper p {
  margin: 0;
}
.object-note .object-note-wrapper p strong {
  font-weight: 600;
}
.object-note .object-note-wrapper a {
  float: right;
  text-transform: uppercase;
  color: #7ea387;
  font-size: 15px;
}
.object-note .object-note-wrapper a:hover {
  cursor: pointer;
  color: #618069;
  text-decoration: underline;
}
.object-indicators {
  position: absolute;
  bottom: 10px;
  left: 10px;
  height: 30px;
  z-index: 999;
}
.object-indicators .indicator {
  float: left;
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(../images/Spritegrid-@1x.png);
}
.object-indicators .indicator.following {
  background-position: -100px -300px;
}
.object-indicators .indicator.note {
  background-position: -250px -300px;
}
.myaccount-section {
  background: #f2f2f2;
  padding: 30px 0;
  position: relative;
  width: 100%;
  display: block;
}
.myaccount-section .myaccount-container {
  max-width: 1314px;
  box-sizing: border-box;
  margin: auto;
  padding: 30px;
  position: relative;
  display: block;
  background: #fff;
}
.myaccount-section .myaccount-container .myaccount-left {
  width: 471px;
  float: left;
  margin-right: 80px;
}
.myaccount-section .myaccount-container .myaccount-right {
  width: 471px;
  float: left;
}
.myaccount-section .myaccount-container .myaccount-right,
.myaccount-section .myaccount-container .myaccount-notifications {
  font-size: 15px;
}
.myaccount-section .myaccount-container .myaccount-right a,
.myaccount-section .myaccount-container .myaccount-notifications a {
  color: #7ea387;
  text-transform: uppercase;
  text-decoration: none;
}
.myaccount-section .myaccount-container .myaccount-right a:hover,
.myaccount-section .myaccount-container .myaccount-notifications a:hover {
  color: #618069;
  text-decoration: underline;
}
.myaccount-section .myaccount-container .myaccount-right p,
.myaccount-section .myaccount-container .myaccount-notifications p {
  color: #666666;
}
.myaccount-section .myaccount-container .myaccount-right ul,
.myaccount-section .myaccount-container .myaccount-notifications ul {
  padding: 0;
  list-style: none;
  border-top: 1px solid #e0e0e0;
  font-size: 18px;
  margin: 50px 0 0 0;
}
.myaccount-section .myaccount-container .myaccount-right ul li,
.myaccount-section .myaccount-container .myaccount-notifications ul li {
  display: block;
  margin: 0 0 5px 0;
  height: 60px;
  line-height: 58px;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 10px;
}
.myaccount-section .myaccount-container .myaccount-right ul li span,
.myaccount-section .myaccount-container .myaccount-notifications ul li span {
  display: block;
  float: left;
  padding: 0 25px 0 0;
  margin: 0 15px 0 0;
  background: url(../images/notif-plus.png) right center no-repeat;
}
.myaccount-section .myaccount-container .myaccount-right ul li span:last-of-type,
.myaccount-section .myaccount-container .myaccount-notifications ul li span:last-of-type {
  background: none;
  padding: 0;
}
.myaccount-section .myaccount-container .myaccount-right ul li a,
.myaccount-section .myaccount-container .myaccount-notifications ul li a {
  padding-left: 5px;
  cursor: pointer;
  float: right;
}
.myaccount-section .myaccount-container h3 {
  display: block;
  width: 100%;
  font-size: 18px;
  text-transform: uppercase;
  color: #5e387e;
  font-weight: 300;
  margin-top: 0;
}
.myaccount-section .myaccount-container input {
  width: 469px;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  line-height: 46px;
  outline: none;
  font-size: 18px;
  color: #666666;
  text-indent: 20px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 10px 0;
}
.myaccount-section .myaccount-container input[type=password] {
  font-size: 24px;
  letter-spacing: 3px;
}
.myaccount-section .myaccount-container label {
  font-size: 14px;
  color: #666666;
  display: block;
  margin: 15px 0;
}
.myaccount-section .myaccount-container .myaccount-additional-action {
  display: block;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.myaccount-section .myaccount-container .myaccount-newsletters {
  position: relative;
  font-size: 15px;
  color: #666666;
}
.myaccount-section .myaccount-container .myaccount-newsletters a {
  display: block;
  color: #7ea387;
  text-transform: uppercase;
  text-decoration: none;
  margin: 15px 0;
}
.myaccount-section .myaccount-container .myaccount-newsletters a:hover {
  text-decoration: underline;
  color: #618069;
}
.myaccount-section .myaccount-container ul.password-tips {
  text-decoration: none;
  padding: 20px 0 0 20px;
  list-style: circle;
  font-size: 15px;
  color: #666666;
}
.myaccount-section .myaccount-container ul.password-tips li {
  display: list-item;
  height: auto;
  margin: 0 0 10px 0;
}
.myaccount-section .myaccount-container .myaccount-actions {
  float: left;
  width: 100%;
  margin: 50px 0 0 0;
}
.myaccount-section .myaccount-container .myaccount-actions .generic-button {
  width: 434px;
  cursor: pointer;
}
.myaccount-section .myaccount-container .myaccount-actions .toggle-logout {
  color: #7ea387;
  font-size: 15px;
  display: block;
  margin: 20px 0 0 0;
  text-transform: uppercase;
  text-decoration: none;
}
.myaccount-section .myaccount-container .myaccount-actions .toggle-logout:hover {
  color: #618069;
}
.myaccount-section .myaccount-container .myaccount-notification {
  width: 1058px;
  height: 50px;
  padding: 20px;
  position: relative;
  text-indent: 70px;
  margin: 30px auto 30px auto;
  line-height: 48px;
}
.myaccount-section .myaccount-container .myaccount-notification a {
  color: #666666;
}
.myaccount-section .myaccount-container .myaccount-notification span {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: 50px;
  height: 50px;
  color: #eea811;
  font-size: 50px;
  font-weight: 200;
  text-align: center;
  line-height: 48px;
}
.myaccount-section .myaccount-container .myaccount-notification.green {
  color: #7ea387;
  border: 1px solid #7ea387;
}
.myaccount-section .myaccount-container .myaccount-notification.green span {
  background: url(../images/Spritegrid-@1x.png) -450px -50px no-repeat;
}
.myaccount-section .myaccount-container .myaccount-notification.orange {
  color: #eea811;
  border: 1px solid #eea811;
}
.myaccount-section .myaccount-container .myaccount-notification.orange span {
  text-indent: 0px;
}
.myaccount-section .myaccount-container.subscription-container {
  background: none;
  padding: 0;
}
.propdetails-navigation.myaccount-navigation {
  border-top: 1px solid #e0e0e0 !important;
}
.propdetails-navigation.myaccount-navigation ul {
  border-right: none !important;
}
.propdetails-navigation.myaccount-navigation ul li {
  position: relative;
}
.propdetails-navigation.myaccount-navigation .tab-counter {
  position: absolute;
  top: -12px;
  right: -8px;
  background: #7ea387;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  z-index: 99;
  line-height: 19px !important;
}
.propdetails-navigation.myaccount-navigation li.current {
  background: #7ea387;
}
.propdetails-navigation.myaccount-navigation li.current a {
  color: #fff;
}
.propdetails-navigation.myaccount-navigation li.current:hover a {
  background: #87CC27;
  color: #fff;
}
.propdetails-navigation.myaccount-navigation li.disabled {
  background: #e0e0e0;
}
.propdetails-navigation.myaccount-navigation li.disabled a {
  color: #999;
}
.propdetails-navigation.myaccount-navigation li.disabled a:hover {
  background: #e0e0e0;
}
.propdetails-navigation.myaccount-navigation li.disabled:hover {
  background: #e0e0e0;
}
.detailed-review-head.myaccount {
  background: #5e387e url(../images/mypuur-background.jpg) center center no-repeat;
  background-size: cover;
}
.detailed-review-head.myaccount h1 {
  text-align: center;
  padding-top: 60px;
  font-size: 40px;
}
.detailed-review-head.myaccount span {
  display: block;
  text-align: center;
  color: #eea811;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 30px 0;
}
.unfollow-property,
.unfavorite-property {
  width: 100%;
  position: absolute;
  top: 0;
  height: 60px;
  line-height: 58px;
  text-align: center;
  z-index: 99999;
}
.unfollow-property a,
.unfavorite-property a {
  text-indent: 0;
  color: #7ea387;
  text-transform: uppercase;
  text-decoration: none;
}
.unfollow-property a:hover,
.unfavorite-property a:hover {
  background: #f9f9f9;
}
.property.subscribed-to {
  padding-top: 60px;
  display: block;
}
.property.subscribed-to > a {
  top: 60px;
}
div.property.subscribed-to:nth-of-type(3n+0) {
  margin-right: 30px;
}
.property.subscribed-to:hover {
  background: #fff;
}
.note {
  padding: 0 30px;
  background: #ffe0cc;
  position: relative;
  float: left;
  width: 948px;
  margin-left: -30px;
  height: 353px;
}
.note .remove-note {
  height: 60px;
  line-height: 58px;
  background: #fff;
  text-align: center;
  padding: 0 30px 0 30px;
  margin-left: -30px;
  width: 100%;
}
.note .remove-note a {
  display: block;
  width: 100%;
  height: 60px;
  color: #7ea387;
  text-transform: uppercase;
  text-decoration: none;
}
.note .remove-note:hover {
  background: #f9f9f9;
}
.note .remove-note:hover a {
  color: #618069;
}
.note > span {
  display: block;
  margin: 30px 30px 30px 0;
  float: left;
  width: 30px;
  height: 30px;
  background: url(../images/Spritegrid-@1x.png) -50px -350px;
}
.note p {
  line-heigt: 24px;
  margin: 30px 0;
  font-size: 15px;
  color: #666666;
}
.note p strong {
  font-weight: 600;
  color: #333333;
}
.note a.edit-note {
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  color: #7ea387;
  display: block;
  margin: 30px auto;
  width: 120px;
}
.note a.edit-note:hover {
  color: #618069;
}
.note form {
  display: none;
}
.note form textarea {
  display: block;
  padding: 30px;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  font-size: 15px;
  resize: none;
  outline: none;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  width: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 30px 0;
  height: 150px !important;
}
.note form a {
  width: 306px;
  float: right;
}
.note form a.processing {
  background: #7ea387 url(../images/processing-button.gif) center center no-repeat;
  text-indent: -999px;
  overflow: hidden;
}
.object-stats {
  padding: 0 30px 30px 30px;
  background: #fff;
  position: relative;
  float: left;
  width: 947px;
  margin-left: -29px;
  min-height: 353px;
}
.object-stats .object-stats-container {
  border: 1px solid #e0e0e0;
  border-bottom: none;
  margin-top: 30px;
  display: block;
}
.object-stats .object-stats-container .stats-row {
  display: block !important;
  border-bottom: 1px solid #e0e0e0;
}
.object-stats .object-stats-container .stats-row div.column:nth-of-type(3n+0) {
  border-right: none !important;
}
.object-stats .object-stats-container .stats-row .column.tooltipstered {
  cursor: help;
}
.object-stats .object-stats-container .column {
  border-right: 1px solid #e0e0e0;
  width: 40%;
  float: left;
  box-sizing: border-box;
  height: 140px;
  position: relative;
  line-height: 138px;
  text-align: center;
  font-size: 62px;
  font-weight: 600;
}
.object-stats .object-stats-container .column small {
  font-size: 18px;
  color: #333333;
  font-weight: 300;
  display: block;
  margin-top: -5px;
}
.object-stats .object-stats-container .column.alltime {
  color: #eea811;
}
.object-stats .object-stats-container .column.current,
.object-stats .object-stats-container .column.lastmonth {
  color: #5e387e;
}
.object-stats .object-stats-container .column.leading {
  width: 20% !important;
  font-size: 15px;
  line-height: normal;
}
.object-stats .object-stats-container .column.leading span {
  display: block;
  margin: 30px auto 15px auto;
  width: 50px;
  height: 50px;
  background: url(../images/Spritegrid-@1x.png);
}
.object-stats .object-stats-container .object-stats-head .column {
  height: 60px !important;
  line-height: 58px;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e0e0;
  border-right: none;
  font-size: 18px;
  color: #666666;
  font-weight: 400;
}
.object-stats .object-stats-container .icon-views span {
  background-position: -200px -350px !important;
}
.object-stats .object-stats-container .icon-followers span {
  background-position: -250px -350px !important;
}
.object-stats .object-stats-container .icon-shares span {
  background-position: -300px -350px !important;
}
.object-stats .object-stats-container .icon-favorites span {
  background-position: -350px -350px !important;
}
.object-stats .object-stats-container .icon-pdf span {
  background-position: -400px -350px !important;
}
.object-stats .object-stats-container .icon-contact span {
  background-position: -450px -350px !important;
}
.object-stats .object-stats-container .icon-sales span {
  background-position: -300px -400px !important;
}
.object-stats .object-stats-container .icon-purchases span {
  background-position: -350px -400px !important;
}
.broker-avatar {
  width: 130px;
  height: 130px;
  border-radius: 80px;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.broker-avatar img {
  max-width: 100%;
}
.broker-avatar + h1 {
  padding-top: 10px !important;
}
.with-stats {
  border-right: #e0e0e0;
  box-sizing: border-box;
}
.myaccount.broker {
  background: url(../images/header-myaccount-broker.jpg) center center !important;
  background-size: cover !important;
}
.object-stats.dashboard {
  width: 100%;
  box-sizing: border-box;
  margin: 0 !important;
}
.object-stats.dashboard .column {
  width: 30% !important;
}
.object-stats.dashboard .column.leading {
  width: 10% !important;
}
.object-stats.dashboard .stats-row div.column:nth-of-type(4n+0) {
  border-right: 0 !important;
}
.object-stats.dashboard .stats-row div.column:nth-of-type(3n+0) {
  border-right: 1px solid #e0e0e0 !important;
}
.myaccount-subnav {
  background: #5e387e;
  margin-top: -1px;
  position: relative;
  height: 50px;
}
.myaccount-subnav ul {
  max-width: 1314px;
  height: 50px;
  margin: 0 auto;
  display: block;
  padding: 0;
  border-left: 1px solid #b180c1;
}
.myaccount-subnav ul li {
  display: block;
  line-height: 48px;
  height: 50px;
  border-right: 1px solid #b180c1;
  float: left;
  color: #fff;
  padding: 0 30px;
}
.myaccount-subnav ul li a {
  display: block;
  height: 50px;
  color: #fff;
  text-decoration: none;
}
.myaccount-subnav ul li.current {
  background: #4a2c63;
}
.static-map {
  min-height: 1200px !important;
}
.prospect-ribbon {
  height: 35px !important;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  line-height: 33px !important;
  background: #7ea387;
  font-size: 17px !important;
}
.results-list-filters.large {
  height: 80px;
}
.results-list-filters.large .multibox {
  margin-top: 20px;
  display: block;
  float: left;
  height: 40px;
  width: 33%;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 14px;
  font-weight: normal !important;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
}
.results-list-filters.large .multibox.left {
  border-radius: 3px 0 0 3px;
}
.results-list-filters.large .multibox.right {
  border-left: none;
  border-radius: 0 3px 3px 0;
}
.results-list-filters.large .multibox.selected {
  background: #eff9e5;
}
.results-list-filters.large .add-prospect {
  display: block;
  float: left;
  height: 40px;
  font-size: 14px;
  font-weight: normal !important;
  line-height: 38px;
  text-align: center;
  background: #fff;
  width: calc(33% - 20px);
  margin: 20px 0 0 20px;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
  color: #333333;
  text-decoration: none;
}
.results-list-filters.large .add-prospect:hover {
  color: #7ea387;
}
.search-result.prospect-result {
  min-height: 183px !important;
}
.search-result.prospect-result .object-controls {
  height: 41px;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
  position: relative;
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: 0;
  background: #fff;
}
.search-result.prospect-result .object-controls a.control {
  width: 50%;
  box-sizing: border-box;
  height: 41px;
  line-height: 39px;
  text-indent: 15px !important;
  float: left;
  display: block;
  position: relative !important;
  top: auto;
  left: auto;
  color: #7ea387;
  text-decoration: none;
  background: url(../images/object-go-arrow_small.png) 236px center no-repeat;
}
.search-result.prospect-result .object-controls a.control:first-of-type {
  border-right: 1px solid #e0e0e0;
}
.search-result.prospect-result .object-controls a.control:hover {
  background-color: #f9f9f9;
  color: #618069;
}
.search-result.prospect-result:hover {
  background: #fff !important;
}
.login-required span {
  display: block;
  width: 100px;
  height: 100px;
  background: url(../images/Spritegrid-@1x.png) -500px -350px;
  margin: 40px auto;
}
.login-required p {
  max-width: 50%;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  font-weight: 300;
  margin: 60px auto 80px auto;
}
.login-required p a[data-modal="login"] {
  width: 100px;
  margin: 30px auto 0 auto;
}
.prospect-note {
  display: block;
}
.prospect-note .user-avatar {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 20px 0 0;
  border-radius: 200%;
  overflow: hidden;
}
.prospect-note .user-avatar img {
  max-width: 50px;
}
.prospect-note p {
  padding-top: 15px;
}
.reply-form {
  width: 100%;
  clear: left;
  display: block;
  padding: 10px 30px 30px 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-left: -30px;
}
.reply-form .user-avatar {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 20px 0 0;
  border-radius: 200%;
  overflow: hidden;
}
.reply-form .user-avatar img {
  max-width: 50px;
}
.reply-form h3,
.reply-form .logged-in-as,
.reply-form label {
  display: none;
}
.reply-form textarea {
  resize: none;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  height: 40px;
  width: 480px;
  float: right;
  padding: 15px;
  outline: none;
  margin-top: -10px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}
.reply-form input[type="submit"] {
  display: block;
  float: right;
  height: 50px;
  border-radius: 3px;
  padding: 0 80px;
  background: #7ea387;
  color: #fff;
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  border: none;
  line-height: 48px;
  cursor: pointer;
  margin-top: 20px;
  -webkit-appearance: none;
  text-transform: none;
}
.reply-form input[type="submit"]:hover {
  background: #618069;
}
.reply-form input.disabled {
  opacity: 0.5 !important;
  background: #7ea387 !important;
}
.reply-form .comment-form-comment {
  margin: 0;
  float: right;
}
.reply-form #respond {
  float: right;
}
.modal-comments {
  position: absolute;
  top: 250px !important;
  display: none;
  transform: none !important;
}
.modal-comments .generic-modal-content {
  padding-bottom: 0 !important;
}
.modal-comments .object-comment {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding: 30px;
  margin: 0 0 0 -30px;
  display: block;
}
.modal-comments .object-comment p {
  float: right;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  width: 480px;
  margin: 0;
  clear: none !important;
}
.modal-comments .object-comment p strong {
  font-weight: 600;
}
.modal-comments .user-avatar {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 20px 0 0;
  border-radius: 200%;
  overflow: hidden;
}
.modal-comments .user-avatar img {
  max-width: 50px;
}
.no-margin {
  margin-top: 0 !important;
}
.no-margin .content-section {
  text-align: center;
}
.no-margin .content-section .property {
  text-align: left;
}
.darker-bg {
  background: #e6e6e6;
}
.half-button {
  max-width: 300px;
  min-width: 300px;
  display: inline-block;
  margin: 0 20px;
}
.prospect-box {
  height: auto !important;
  min-height: 353px;
}
.prospect-box .object-comment {
  padding: 15px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 24px;
  background: #ffe0cc;
  float: left;
}
.prospect-box .object-comment .user-avatar {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 15px 0 0;
  border-radius: 200%;
  overflow: hidden;
}
.prospect-box .object-comment .user-avatar img {
  max-width: 50px;
}
.prospect-box .object-comment p {
  float: left;
  font-size: 15px;
  line-height: 20px;
  clear: none;
  margin: 0;
  width: 210px;
}
.myaccount-navigation + .inpage + .property-filter-container {
  top: 240px;
}
.no-query-results {
  font-size: 24px !important;
  font-weight: 300;
  width: 100% !important;
}
.energy-class {
  display: block;
  width: 48px;
  height: 21px;
  line-height: 21px !important;
  background: url(../images/energy-classes.png);
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  text-indent: 5px;
  font-size: 20px;
}
.energy-class.class-B {
  background-position: 0 -21px;
}
.energy-class.class-C {
  background-position: 0 -42px;
}
.energy-class.class-D {
  background-position: 0 -63px;
  color: #333333 !important;
}
.energy-class.class-E {
  background-position: 0 -84px;
}
.energy-class.class-F {
  background-position: 0 -105px;
}
.energy-class.class-G {
  background-position: 0 -126px;
}
.property-not-available-msg {
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  padding: 50px 30px;
  text-align: center;
}
.property-not-available-msg span {
  display: block;
  color: #5e387e;
  font-weight: normal;
  margin-bottom: 30px;
}
div.propdetails-top.not-scaling {
  display: block !important;
}
div.propdetails-top.not-scaling .propdetails-top-blurpanel {
  -webkit-filter: none !important;
  -moz-filter: none !important;
  filter: none !important;
  display: block !important;
}
div.propdetails-top.not-scaling img,
div.propdetails-top.not-scaling .propdetails-top-image.auto-margin img {
  height: 100% !important;
  width: auto !important;
  max-width: 1000000px !important;
}
.no-picture-available {
  border: 1px solid #fff;
  padding: 10px 15px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  position: absolute;
  top: -70px;
  left: 0px;
}
.composite-top-contact {
  height: 364px !important;
}
.composite-top-contact .composite-image {
  display: none;
}
.composite-top-contact .contact-page-title {
  position: relative;
  bottom: 0;
  max-width: 1314px;
  z-index: 999;
  margin: -150px auto 0 auto;
}
.composite-top-contact .contact-page-title h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 6px #333;
}
.composite-top {
  background: url(../images/pattern-bg-gray.png);
  position: relative;
  height: 196px;
  border-top: 1px solid #fff;
}
.composite-top .composite-top-container {
  max-width: 1314px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}
.composite-top .composite-top-container .breadcrumb-container {
  position: absolute;
  right: 0;
  top: 30px;
}
.composite-top .composite-top-container .composite-page-title {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 110px;
}
.composite-top .composite-top-container .composite-page-title .composite-image {
  width: 150px;
  height: 110px;
  background: #5e387e;
  border-radius: 4px 4px 0 0;
  float: left;
  margin: 0 30px 0 0;
  position: relative;
}
.composite-top .composite-top-container .composite-page-title .composite-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.composite-top .composite-top-container .composite-page-title h1,
.composite-top .composite-top-container .composite-page-title h2,
.composite-top .composite-top-container .composite-page-title h3 {
  float: left;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 108px;
  margin: 0;
  letter-spacing: 3px;
}
.composite-top .composite-page-title.forblog h1 {
  text-transform: uppercase ;
}
.composite-top-container-blog h1 {
  text-transform: uppercase !important;
}
.data-bog-disclaimer {
  font-size: 13px;
  color: #999;
  margin: 10px 0;
}
.colored-section {
  background: #f2f2f2;
  margin-bottom: 30px;
}
.scrollToTop {
  width: 50px;
  height: 50px;
  padding: 10px;
  text-align: center;
  background: #7ea387 !important;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 0px;
  right: 20px;
  display: none;
  background-image: url(../images/Spritegrid-@1x.png) !important;
  background-size: 600px 500px !important;
  background-position: -340px -190px !important;
  z-index: 999;
  box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.5);
}
.scrollToTop:hover {
  text-decoration: none;
}
.top {
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 9999;
}
.top .top-content {
  position: relative;
  width: 100%;
  min-width: 1314px;
  max-width: 1314px;
  margin: auto;
}
.top .top-content .logo {
  height: 100px;
  width: auto;
  overflow: hidden;
}
.top .top-content .logo img {
  width: auto;
  height: 75px;
  margin-top: 10px;
}
.top .top-content .top-menu {
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
  right: 0;
}
.top .top-content .top-menu li {
  float: right;
  font-size: 14px;
  margin: 0 0 0 25px;
  height: 34px;
}
.top .top-content .top-menu li > a {
  color: #333333;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  border-bottom: 1px solid #fff;
  padding-top: 5px;
}
.top .top-content .top-menu li > a:hover {
  border-bottom: 1px solid #7ea387;
}
.top .top-content .top-menu li ul {
  position: absolute;
  left: -160px;
  top: 20px;
  border: 10px solid rgba(153, 153, 153, 0.9);
  background: #fff;
  width: 306px;
  padding: 0;
  list-style: none;
  background-clip: content-box;
  display: none;
  z-index: 9999;
}
.top .top-content .top-menu li ul li {
  height: 50px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  width: 306px;
}
.top .top-content .top-menu li ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333333;
  text-transform: none;
  margin: 0;
  border-radius: 0;
  line-height: 48px;
  font-size: 15px;
  padding: 0;
  text-indent: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.top .top-content .top-menu li ul li a:hover {
  color: #fff;
  background: #7ea387;
}
.top .top-content .top-menu li:hover > ul {
  display: block;
}
.top .top-content .top-menu .user-is-loggedin {
  border-left: 1px solid #e0e0e0;
}
.top .top-content .top-menu .user-is-loggedin span a {
  color: #eea811;
}
.top .top-content .top-menu .user-is-loggedin span a:hover {
  border-color: #eea811;
}
.top .top-content .top-menu .login {
  border-left: 1px solid #e0e0e0;
  cursor: pointer;
}
.top .top-content .top-menu .login a {
  display: inline-block;
  height: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  vertical-align: middle;
  border: 1px solid #fff;
  margin-left: 15px;
  margin-top: 1px;
}
.top .top-content .top-menu .login a:hover {
  border-color: #fff !important;
  text-decoration: none !important;
  background: #f2f2f2;
}
.top .top-content .top-menu .login a span {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  background: #fff url(../images/Spritegrid-@1x.png) -400px -150px;
  border-radius: 60px;
  overflow: hidden;
  margin: -6px 15px 0 -10px;
}
.top .top-content .top-menu .user-is-loggedin {
  position: relative;
}
.top .top-content .top-menu .user-is-loggedin a {
  display: inline-block;
  height: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  vertical-align: middle;
  border: 1px solid #fff;
  margin-left: 15px;
  margin-top: 1px;
  min-width: 180px;
}
.top .top-content .top-menu .user-is-loggedin a small {
  display: block;
  height: 5px;
  width: 10px;
  background: url(../images/dropdown-arrow.png);
  float: right;
  margin: 8px 0 0 15px;
}
.top .top-content .top-menu .user-is-loggedin a span {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  background: #fff url(../images/Spritegrid-@1x.png) -450px -150px;
  border-radius: 60px;
  overflow: hidden;
  margin: -6px 15px 0 -10px;
}
.top .top-content .top-menu .user-is-loggedin a span img {
  max-width: 100%;
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown {
  padding: 0 !important;
  background: rgba(102, 102, 102, 0.6);
  right: 0 !important;
  top: 50px !important;
  left: auto !important;
  display: none !important;
  max-width: 250px;
  /* li:last-child {
			            border-radius: 0 3px 3px 0 !important;
		            } */
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown:before {
  display: block;
  width: 50px;
  height: 9px;
  position: absolute;
  top: -15px;
  right: -19px;
  background: url(../images/Spritegrid-@1x.png) -500px 0;
  content: '';
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown li {
  width: 100%;
  padding: 0 !important;
  height: 34px !important;
  line-height: 32px !important;
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown li a {
  height: 100%;
  width: 100%;
  padding: 0 0 0 10px !important;
  margin: 0 !important;
  text-indent: 0 !important;
  box-sizing: border-box;
  height: 34px;
  border: none !important;
  border-radius: 0 !important;
  line-height: 32px !important;
  font-size: 14px !important;
  color: #666666;
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown li a .tab-counter {
  display: block;
  float: right;
  width: 18px;
  height: 18px;
  background: #eea811;
  border-radius: 30px;
  line-height: 18px !important;
  color: #fff !important;
  text-align: center;
  margin: 5px;
  font-size: 12px;
  font-weight: 600;
}
.top .top-content .top-menu .user-is-loggedin ul.myaccount-dropdown li a:hover {
  background-color: #fff;
  color: #7ea387;
  border-bottom: 1px solid #e0e0e0 !important;
}
.top .top-content .top-menu .user-is-loggedin.toggled a small {
  transform: rotate(-180deg);
}
.top .top-content .top-menu .user-is-loggedin.toggled ul.myaccount-dropdown {
  display: block !important;
}
.top .top-content .top-menu .user-is-loggedin a:hover {
  border-color: #fff !important;
  text-decoration: none !important;
  background: #f2f2f2;
}
.top .top-content .main-menu {
  height: 38px;
  position: relative;
  float: left;
  margin: 46px 0 0 10px;
  list-style: none;
  padding: 0;
  z-index: 999;
}
.top .top-content .main-menu li {
  float: left;
  overflow: hidden;
  position: relative;
}
.top .top-content .main-menu li .submenu {
  height: 45px;
  position: absolute;
  top: 38px;
  width: 326px;
  left: -20px;
  z-index: 9999;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 9999px);
}
.top .top-content .main-menu li .submenu u {
  display: block;
  position: absolute;
  left: 60px;
  top: 5px;
  height: 5px;
  width: 9px;
  background: url(../images/Spritegrid-@1x.png) -450px -5px no-repeat;
}
.top .top-content .main-menu li .submenu ul {
  position: absolute;
  left: 0;
  top: 10px;
  border: 10px solid rgba(94, 56, 126, 0.8);
  background: #fff;
  width: 306px;
  padding: 0;
  list-style: none;
  background-clip: content-box;
}
.top .top-content .main-menu li .submenu ul li {
  height: 50px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  width: 306px;
}
.top .top-content .main-menu li .submenu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333333;
  text-transform: none;
  margin: 0;
  border-radius: 0;
  line-height: 48px;
  font-size: 15px;
  padding: 0;
  text-indent: 20px;
}
.top .top-content .main-menu li .submenu ul li a:hover {
  color: #fff;
  background: #7ea387;
}
.top .top-content .main-menu a {
  display: block;
  height: 38px;
  float: left;
  line-height: 36px;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  background: #fff;
  color: #5e387e;
  padding: 0 15px;
  margin: 0 0 0 7px;
  position: relative;
}
.top .top-content .main-menu a:hover {
  background: #f2f2f2;
}
.top .top-content .main-menu li:hover {
  overflow: visible;
}
.blog-column-more {
  width: 100%;
  position: absolute;
  top: 370px;
  left: 0px !important;
}
.blog-column-more a {
  margin: 0 0 0 0 !important;
}
.blog-column-more a:hover {
  background: none !important;
}
.composite-top-container-blogdetail {
  max-width: 1098px !important;
}
.composite-top-container-blog {
  max-width: 1098px !important;
}
.content-section-blog {
  padding-top: 60px;
  max-width: 1098px;
}
.content-section-blog .property-grid {
  padding-top: 40px;
}
.social-share-blogdetail {
  margin-top: 20px;
}
.top-content-blogdetail {
  width: 100%;
  margin-bottom: 30px;
  min-height: 55px;
}
.top-content-blogdetail span {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  top: 65px;
}
.nieuwsbrief-height {
  height: 300px !important;
  min-height: 300px !important;
}
.nieuwsbrief-height img {
  min-height: 300px !important;
}
.newsletter-signup-form-nieuwsbrief {
  border-right: none !important;
  padding-top: 0px !important;
  width: 100% !important;
}
.newsletter-signup-form-nieuwsbrief span {
  background: none !important;
  text-indent: 0 !important;
}
.newsletter-signup-form-nieuwsbrief form {
  float: right !important;
}
.newsletter-signup-form-nieuwsbrief form input[type="submit"],
.newsletter-signup-form-nieuwsbrief form input[type="text"] {
  margin: 0 !important;
}
.newsletter-signup-form,
.newsletter-twitter {
  background-image: none !important;
}
.top {
  display: none;
}
.border-top {
  border-top: 1px solid #e0e0e0;
}
.title-nieuwsbrief {
  position: relative;
  width: 1098px;
  margin: auto !important;
}
.gform_wrapper label.gfield_label + div.ginput_container {
  margin-top: 0 !important;
}
.propdetails-top .propdetails-titles .about-us {
  padding-left: 105px;
  max-width: 70%;
}
.review-top-content .review-page-title h1 {
  padding-left: 105px;
  max-width: 68%;
}
.gform_wrapper {
  margin: 10px 0 !important;
}
.propdetails-no-price {
  height: 50px;
}
/*# sourceMappingURL=base.css.map */