/* FONTS */
@font-face {
  font-family: "Museo300";
  src: url("../fonts/museo300-regular-webfont.woff2") format("woff2"), url("../fonts/museo300-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo500";
  src: url("../fonts/museo500-regular-webfont.woff2") format("woff2"), url("../fonts/museo500-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo700";
  src: url("../fonts/museo700-regular-webfont.woff2") format("woff2"), url("../fonts/museo700-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo900";
  src: url("../fonts/museo900-regular-webfont.woff2") format("woff2"), url("../fonts/museo900-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tahu";
  src: url("../fonts/tahu-webfont.woff2") format("woff2"), url("../fonts/tahu-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Glyphicons/Footer - Todo: may need filtering down see line 905 */
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

/* VARS / COLOURS */
:root {
  --red: #ff321d;
  --dark-red: #ff321d;
  --dark-blue: #00275e;
  --white: #fff;
  --bg-grey: #eae9e8;
  --grey: #ddd;
  --light-grey: #b0b0b0;
  --mid-grey: #8e8e8e;
  --dark-grey: #717171;
  --black: #000;
  --rounded-corners: 0.7rem;
  --rounded-corners-small: 0.35rem;
}
.btn-primary {
  font-family: "Museo500", monospace, sans-serif !important;
  font-size: 1.2rem;
  line-height: 1.25;
  --bs-btn-color: var(--white);
  --bs-btn-bg: var(--red);
  --bs-btn-border-color: var(--red);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--red);
  --bs-btn-hover-border-color: var(--red);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--red);
  --bs-btn-active-border-color: var(--red);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white);
  --bs-btn-disabled-bg: var(--red);
  --bs-btn-disabled-border-color: var(--red);
}
.btn-secondary {
  --bs-btn-color: var(--mid-grey);
  /* background: linear-gradient(var(--white), var(--light-grey)); */
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: var(--mid-grey);
  --bs-btn-hover-color: var(--mid-grey);
  --bs-btn-hover-bg: var(--light-grey);
  --bs-btn-hover-border-color: var(--mid-grey);
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: var(--mid-grey);
  --bs-btn-active-border-color: var(--mid-grey);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--mid-grey);
  --bs-btn-disabled-border-color: var(--mid-grey);
}
.btn-recessed-secondary,
.btn-recessed-secondary:active,
.btn-recessed-secondary:focus {
  color: var(--dark-grey);
  --bs-btn-color: var(--mid-grey);
  background: linear-gradient(#ddd, #ccc);
  box-shadow: inset 0.05rem 0.3rem 0.4rem rgba(0, 0, 0, 0.2);
  border: 1px solid #aaa;
}
.btn-recessed-secondary svg {
  color: var(--red);
}

/* HACK PAGE WIDTH */

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    /* max-width: 1320px; */
    max-width: 1164px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    /* max-width: 1140px; */
    max-width: 1164px;
  }
}

/* HACK FONT SIZE */

html {
  font-size: 10px;
}
:root {
  --bs-body-font-size: 0.95rem; /* Overwrite this variable */
  font-size: var(--bs-body-font-size);
}

/* RESET */

/* remove focus halo from form elements */
*:focus {
  box-shadow: none !important;
}
.form-select:focus,
.form-control:focus,
.form-check-input:focus {
  border-color: var(--dark-blue);
}
.form-quick-search .form-control,
.form-quick-search .form-control:focus {
  border-color: var(--white);
}

* {
  font-family: "Museo300", monospace, sans-serif;
  font-style: normal;
  font-display: swap;
}
body {
  color: var(--mid-grey);
  background-color: var(--bg-grey); /* background-color: #f0f0f0; AC: Tweak? */
  padding-bottom: 0; /* AC: Tweak? */
}
body.light-theme {
  background-color: #fff; /* background-color: #f0f0f0; AC: Tweak? */
}

a {
  color: var(--dark-grey);
  text-decoration: none; /* AC: Tweak? */
}
a:hover {
  color: var(--black);
  text-decoration: underline; /* AC: Tweak? */
}
a.no-underline {
  text-decoration: none;
}

em strong,
em {
  font-style: italic;
}
.h1,
h1 {
  font-size: 36px
}

.h2,
h2 {
  font-size: 30px
}

.h3,
h3 {
  font-size: 24px
}

.h4,
h4 {
  font-size: 18px
}

.h5,
h5 {
  font-size: 14px
}

.h6,
h6 {
  font-size: 12px
}

h1,
h2,
h3 {
  color: var(--dark-blue);
}
.font900 {
  font-family: "Museo900", monospace, sans-serif !important;
}
.font700 {
  font-family: "Museo700", monospace, sans-serif !important;
}
.font500 {
  font-family: "Museo500", monospace, sans-serif !important;
}
.font300 {
  font-family: "Museo300", monospace, sans-serif !important;
}
.script {
  font-family: "Tahu", monospace, sans-serif !important;
}
.carousel-item h1.script {
  font-family: "Tahu", monospace, sans-serif !important;
}
.carousel-item h1.script span {
  color: var(--red) !important;
  font-family: "Tahu", monospace, sans-serif !important;
}
.red {
  color: var(--red) !important;
}
.blue {
  color: var(--dark-blue) !important;
}
.black {
  color: var(--black) !important;
}
.light-grey {
  color: var(--light-grey) !important;
}
.mid-grey {
  color: var(--mid-grey) !important;
}
.dark-grey {
  color: var(--dark-grey) !important;
}
.carousel-item h1 .red {
  color: var(--red) !important;
}
.bg-gray {
  background-color: var(--bg-grey);
}
.bg-white {
  background-color: var(--white);
}
.section-bottom-border {
  border-bottom: 2px solid var(--light-grey);
}

/* NAV */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff; /* AC: Tweak for footer styles */
}
.navbar .nav-link,
.navbar .btn-register,
.navbar .btn-myeves {
  font-family: "Museo500", monospace, sans-serif !important;
}
.navbar .btn-myeves {
  font-size: 0.875rem;
  line-height: 1.5;
}
.navbar .btn-myeves.dropdown-toggle::after {
  display: none;
}
.navbar-brand {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  margin-right: 2rem;
}
.navbar-nav .nav-link {
  color: var(--dark-grey);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding-top: 1.55rem;
    padding-bottom: 1.55rem;
  }
}

.nav-link:focus,
.nav-link:hover {
  color: var(--red);
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
  }
  .nav-link:focus:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--red);
  }
}
.dropdown-item .icon-svg.icon-sub-menu-chevron-right {
  rotate: -90deg;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--red);
  margin-left: auto;
}
/* shadow */
header {
  position: relative;
  z-index: 1000;
  /* z-index: 100000; */
}
header:after {
  content: "";
  position: absolute;
  top: 4.6rem;
  width: 100%;
  aspect-ratio: 25 / 1;
  background-image: url(../img/shadow-header.png);
  background-size: 100% 100%;
  pointer-events: none;
}

/* NAV DROPDOWN */
.dropdown-myeves .dropdown-menu,
.navbar-nav .dropdown-menu {
  border-radius: 0;
  padding: 0;
  border: 1px solid var(--light-grey);
  border-bottom: none;
}
.navbar-nav .dropdown-menu[data-bs-popper] {
  margin-top: 0;
}
.dropdown-myeves .dropdown-menu li,
.navbar-nav .dropdown-menu li {
  border-bottom: 1px solid var(--light-grey);
}
.dropdown-myeves .dropdown-menu .dropdown-item,
.navbar-nav .dropdown-item {
  color: var(--mid-grey);
  padding: 0.65rem 1rem;
}
.dropdown-myeves .dropdown-menu .dropdown-item:focus,
.dropdown-myeves .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
  background-color: var(--bg-grey);
  color: var(--mid-grey);
}

/* dropdown multilevel */
.navbar-nav .dropdown-menu li {
  position: relative;
}

.navbar-nav .dropdown-menu .dropdown-submenu {
  display: block;
  border:none;
  border-top: 1px solid var(--light-grey);
}
.navbar-nav .dropdown-menu .dropdown-submenu li {
  display: block;
  border:none;
}
.navbar-nav .dropdown-menu .dropdown-submenu li > a {
  padding-left:22px;
}
@media (min-width: 1081px) {
  .navbar-nav .dropdown-menu .dropdown-submenu {
    display: none;
    border: 1px solid var(--light-grey);
    border-bottom:none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-nav .dropdown-menu .dropdown-submenu li {
    display: block;
    border-bottom: 1px solid var(--light-grey);
  }
  .navbar-nav .dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
  }
}
.navbar-nav .dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}
.navbar-nav .dropdown-toggle::after {
  display: none;
}

/* SVGs */
svg path {
  fill: inherit;
}
svg use {
  fill: currentColor;
}
.logo-header {
  display: inline-block;
  width: 11.936rem;
  height: 2.4rem;
}
.icon-svg {
  width: 1em;
  height: 1em;
}
.icon-svg.h120 {
  width: 1.2em;
  height: 1.2em;
}
.icon-svg.h110 {
  width: 1.1em;
  height: 1.1em;
}
.icon-svg.h95 {
  width: 0.95em;
  height: 0.95em;
}
.icon-svg.h90 {
  width: 0.9em;
  height: 0.9em;
}
.icon-svg.h85 {
  width: 0.85em;
  height: 0.85em;
}
.icon-svg.h80 {
  width: 0.8em;
  height: 0.8em;
}
.dropdown-myeves .dropdown-item .icon-svg,
.navbar-nav .dropdown-item .icon-svg {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.3em;
}
.btn-sm .icon-svg {
  width: 0.8em;
  height: 0.8em;
}
/* .btn-search .icon-svg {
  width: 1.3em;
  height: 1.3em;
} */
.btn-addon-search .icon-svg {
  width: 1em;
  height: 1em;
}
.btn-addon-search {
  padding-left: 0.5em;
  padding-right: 0.5em;
  color: var(--mid-grey);
  background-color: var(--white);
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
  display: flex;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
}
.navbar-nav .nav-link .icon-svg {
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.3em;
}
.nav-link:focus .icon-svg use,
.nav-link:hover .icon-svg use {
  fill: var(--red);
}
.icon-svg.icon-svg-login-register {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.4em;
}
.icon-svg.icon-svg-login-register use {
  fill: var(--red);
}
.icon-svg.icon-svg-myeves {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.4em;
}

/* HOME TOP BANNER */
#evesCarousel .carousel-item {
}
#evesCarousel .carousel-item p {
  color: var(--dark-grey);
}
#evesCarousel .carousel-item > .container {
  position: relative;
  z-index: 2;
}
#evesCarousel .carousel-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(235, 235, 235, 0.83);*/
  z-index: 1;
}
#evesCarousel .carousel-item:after {
  background-color: rgba(235, 235, 235, 0.83);
}
@media (min-width: 768px) {
  #evesCarousel .carousel-item:after {
    display: none;
  }
}
#evesCarousel .carousel-item h1 {
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
}
@media (min-width: 768px) {
  #evesCarousel .carousel-item h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  #evesCarousel .carousel-item h1 {
    font-size: 4.5rem;
  }
}
#evesCarousel .carousel-indicators {
  bottom: auto;
  top: 1.4rem;
  z-index: 3;
}
#evesCarousel .carousel-indicators [data-bs-target] {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 1rem;
  opacity: 1;
  border: 1.5px solid var(--red);
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
#evesCarousel .carousel-indicators .active {
  background-color: var(--red);
}
#evesCarousel .carousel-control-next,
#evesCarousel .carousel-control-prev {
  display: none;
}

@media (min-width: 992px) {
  #evesCarousel .carousel-control-next,
  #evesCarousel .carousel-control-prev {
    display: block;
    z-index: 3;
    width: 10%;
  }
}
#evesCarousel .carousel-caption {
  bottom: auto;
  top: 4rem;
}
#evesCarousel .carousel-item {
  height: 20rem;
  width: 100%;
}
@media (min-width: 768px) {
  #evesCarousel .carousel-item {
    height: 26rem;
  }
}
@media (min-width: 992px) {
  #evesCarousel .carousel-item {
    height: 38rem;
  }
}
@media (min-width: 1200px) {
  #evesCarousel .carousel-item {
    height: 42rem;
  }
}
/* carousel item bg */
.bg-carousel-item {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #eae9e8;
}
.bg-carousel-item-image {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: right center;
}
@media (min-width: 768px) {
  .bg-carousel-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 60%;
    height: 100%;
    width: 15%;
    margin-left: -15%;
    background: linear-gradient(90deg, rgba(234, 233, 232, 1) 0%, rgba(234, 233, 232, 0) 100%);
    z-index: 1;
  }
  .bg-carousel-item-image {
    width: 55%;
  }
}
.bg-carousel-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 25%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* search-section */
.search-container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .search-container {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}
.carousel-and-search {
  position: relative;
}
.carousel-and-search .search-section {
  position: relative;
  z-index: 2;
}
.search-only {
  background-color: var(--bg-grey);
}
.search-only .search-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.carousel-only .carousel-inner {
  height: 300px;
}
@media (min-width: 992px) {
  .carousel-only .carousel-inner {
    height: 400px;
  }
}

#evesCarousel {
  z-index: 1;
}
@media (min-width: 992px) {
  .carousel-and-search .search-section {
    position: absolute;
    bottom: 0;
    bottom: 2.5rem;
  }
}
.search-wrapper {
  background-color: var(--white);
  border-radius: 0;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
}
.row.gap-sml,
.row.gap-sml .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row.gap-sml [class^="col"] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .search-wrapper {
    border-radius: var(--rounded-corners);
  }
}
.quick-search-wrapper {
  background-color: var(--dark-blue);
}
@media (min-width: 992px) {
  .quick-search-wrapper {
    border-top-right-radius: var(--rounded-corners);
  }
}
.quick-search-title {
  font-size: 1.8rem;
}
@media (min-width: 1200px) {
  .quick-search-title {
    font-size: 2rem;
  }
}
.search-wrapper .quick-search-wrapper label {
  color: var(--white);
  font-size: 1.2rem;
}
.search-wrapper .quick-search-wrapper input::placeholder {
  color: var(--light-grey);
  opacity: 1;
}
.btn-group {
  width: 100%;
}
.btn-group .form-select {
  text-align: left;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' style='fill-rule:evenodd%3Bclip-rule:evenodd%3Bstroke-linejoin:round%3Bstroke-miterlimit:2'%3E%3Cpath d='m8 8.4 3.9-3.9 1.5 1.6L8 11.6 2.6 6 4 4.5 8 8.4Z' style='fill:%23888888'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: right 0.45rem center;
  padding-right: 1.9rem;
}
.form-select.show {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' style='fill-rule:evenodd%3Bclip-rule:evenodd%3Bstroke-linejoin:round%3Bstroke-miterlimit:2'%3E%3Cpath d='m8 8.4 3.9-3.9 1.5 1.6L8 11.6 2.6 6 4 4.5 8 8.4Z' style='fill:%23ff321d'/%3E%3C/svg%3E");
}
.form-select .multiselect-selected-text {
  color: var(--mid-grey);
  font-family: "Museo500", monospace, sans-serif !important;
}
.form-select.show .multiselect-selected-text {
  color: var(--dark-blue);
}
.search-wrapper .form-select,
.search-wrapper button,
.search-wrapper input,
.search-wrapper optgroup,
.search-wrapper select,
.search-wrapper textarea,
.search-wrapper label,
.search-wrapper .dropdown-menu {
  font-size: 0.95rem;
  line-height: 1.559;
}
.search-wrapper button:hover {
  background-color: var(--bg-grey);
}
.multiselect-container .multiselect-option:hover {
  background-color: var(--bg-grey) !important;
}
.multiselect-container .multiselect-option.active {
  background-color: var(--dark-blue) !important;
  color: var(--white) !important;
}
.multiselect-container .multiselect-option.active input[type="checkbox"]:checked {
  background-color: #285ed7;
  border-color: #285ed7;
}
.multiselect-container .multiselect-option.active input[type="checkbox"]:checked:after {
  border-color: var(--white);
}
.multiselect-container .multiselect-option .form-check {
  margin-bottom: 0 !important;
}

.search-wrapper label.show-open-homes-only {
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* CHECKBOX */
.form-check label {
  padding-left: 0.3em;
}
input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: var(--white);
  height: 1.2rem;
  width: 1.2rem;
  color: white;
  margin-top: 0.1rem;
  border-color: var(--light-grey);
}
input[type="checkbox"]:after {
  content: " ";
  position: relative;
  left: 32%;
  top: 8%;
  width: 35%;
  height: 65%;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
  display: none;
}
input[type="checkbox"]:checked:after {
  display: block;
}

/* RANGE SLIDER */
h5.range-slider-values {
  color: var(--dark-blue);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
h5.range-slider-values span {
  color: var(--red);
}
@media (min-width: 768px) {
  .top-left-radius {
    position: relative;
  }
  .top-left-radius:before,
  .top-left-radius:after {
    content: "";
    position: absolute;
    top: 0;
  }
  .top-left-radius:before {
    left: 0;
    background: var(--dark-blue);
    height: 12px;
    width: 12px;
  }
  .top-left-radius:after {
    transform: translateX(-100%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 12px;
  }
}

/* tab row */
.tab-row {
  border-bottom: 1px solid var(--light-grey);
}
.tab-row .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-bottom: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: var(--red);
}
.tab-row .nav-tabs .nav-link.active:hover,
.tab-row .nav-tabs .nav-link.active {
  background-color: var(--bg-grey);
  border: 1px solid var(--light-grey);
  border-bottom: none;
}
.tab-row .nav-tabs {
  border-bottom: none;
  /* margin-bottom: -1px; */
}
.tab-row .nav-tabs .nav-link:hover {
  border: 1px solid transparent;
  border-bottom: none;
}
p.tab-row-links {
  margin-top: 0.5em;
  margin-bottom: 0.8em;
}
p.tab-row-links span {
  white-space: nowrap;
  display: inline-block;
  margin-left: 0.3em;
  margin-right: 0.3em;
}
p.tab-row-links span:last-child {
  margin-right: 0;
}
p.tab-row-links a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--dark-blue);
}
p.tab-row-links a:hover {
  color: var(--red);
}
p.tab-row-links svg {
  margin-bottom: 0.15em;
}

/* listing card */

.card {
  border-radius: var(--rounded-corners-small);
}
.card p {
  color: var(--mid-grey);
}
.listing-card-photo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66%;
  background-size: cover;
  border-top-right-radius: var(--rounded-corners-small);
  border-top-left-radius: var(--rounded-corners-small);
}
.listing-card-photo:before {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: 0;
  margin-right: -10px;
  margin-top: -10px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  z-index: 1;
}
.card a:hover .listing-card-photo {
  opacity: 0.8;
}
.listing-card-icons .icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}
.card a {
  text-decoration: none;
}
.card-footer {
  background-color: var(--white);
}
.card-pagination a {
  display: inline-block;
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--red);
}
.card-pagination a:last-child {
  margin-right: 0;
}
.card-pagination span {
  display: inline-block;
  margin: 0 0.5rem;
}

/* BS TEMPLATE SPECIFIC */

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}




/* AC: added from style.css Pt.1 */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-body {
    padding:2px
}
.modal-content {
    border-radius: 0px;
}
/*
.modal-xlg {
  width: 90%;
}
*/

@media (min-width: 991px) {
  .modal.modal-wide .modal-dialog {
    width: 90%;
    max-width: 1200px;
  }
  .modal.modal-wide .modal-dialog.modal-xlg {
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
  }
}
@media (min-width: 1200px) {
  .modal.modal-wide .modal-dialog.modal-sixteen-nine,
  .modal.modal-wide .modal-dialog.modal-xlg.modal-sixteen-nine {
		width: 0;
		padding-right: calc(((100vh - 60px) * 1.7777777) - 2px); /* reciprical of 56.25 16-9 proportion */
		height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }
  .modal.modal-wide .modal-dialog.modal-xlg {
		width: 0;
		padding-right: calc(((100vh - 60px) * 1.4925) - 2px); /* reciprical of 67 proportion */
		height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }
  .modal.modal-wide .modal-dialog.modal-xlg .modal-content {
	  position: absolute;
	  top:0;
	  bottom:0;
	  left:0;
	  right:0;
	}
}

@media (max-width: 768px) {
    .video-modal {
        width: auto !important;
    }
}
.modal.fade .modal-dialog {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.modal-body button.close {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    top: -11px;
    right: -11px;
    color: #fff;
    background-color: #ee3523;
    text-align: center;
    opacity: 1;
    border-radius:13px;
    border: 2px solid #fff;
}
.modal-body button.close:hover {
    color: #fff;
}
.modal-body button.close span {
    display: inline-block;
    vertical-align: middle;
    text-shadow: none;
    padding-bottom: 5px;
}
.popover-share a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #888;
    padding: 8px 0;
}
.popover-share a:hover {
    color: #ee3523;
}
.popover-share a:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: #ddd;
    bottom: 0;
    left: -14px;
    right: -14px;
}
.popover-share a:first-child {
    margin-top: -8px;
}
.popover-share a:last-child {
    margin-bottom: -8px;
}
.popover-share a:last-child:after {
    display: none;
}
.popover-share a:hover {
    color: #ee3523;
}
.popover-share .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.popover-share a .icon.icon-email {
    background-position: -220px -190px;
}
.popover-share a .icon.icon-facebook {
    background-position: -240px -190px;
}
.popover-share a .icon.icon-twitter {
    background-position: -260px -190px;
}
.popover-share a .icon.icon-linkedin {
    background-position: -280px -190px;
}
.popover-share a:hover .icon.icon-email {
    background-position: -220px -210px;
}
.popover-share a:hover .icon.icon-facebook {
    background-position: -240px -210px;
}
.popover-share a:hover .icon.icon-twitter {
    background-position: -260px -210px;
}
.popover-share a:hover .icon.icon-linkedin {
    background-position: -280px -210px;
}







.no-padding > [class*='col-'] {
    padding-right: 0;
    padding-left :0;
}
.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* AC: font size mismatch tweaks */
.h4, h4 {
	font-size: 18px;
}

.chevron-top {
    position: relative;
    border-top: 2px solid #ddd;
}
.chevron-top-white {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    margin: 0 0 -20px -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    z-index: 1;
    border-top: 20px solid #cfcfcf;
}
.chevron-top-white b {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: -22px 0 0 -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    z-index: 2;
}
.chevron-bottom {
    position: relative;
    border-bottom: 2px solid #ddd;
}
.chevron-bottom:before,
.chevron-bottom:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
}
.chevron-bottom:before {
    margin: 0 0 -20px -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    z-index: 1;
    border-top: 20px solid #cfcfcf;
}
.chevron-bottom:after {
    margin: 0 0 -18px -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    z-index: 2;
}
.chevron-bottom.chevron-bottom-white:after {
    border-top: 20px solid #fff;
}
.chevron-bottom.chevron-bottom-gray:after {
    border-top: 20px solid #f0f0f0;
}
.chevron-bottom.chevron-bottom-white {
    background-color: #fff;
}
.chevron-bottom.chevron-bottom-gray {
    background-color: #f0f0f0;
}

.row-more-people,
.row-featured-carousel,
.row-blog-open-homes,
.row-sell-people-offices {
    padding: 30px 0;
}
.row-more-people h1,
.row-more-people p {
    text-align: center;
}
.row-more-people h1 {
    margin-top: 10px;
    color: #00275e;
}
.row-more-people h1 span {
    font-family: 'museo300';
    color: #ee3523;
}
.row-blog-open-homes {
    padding-bottom: 0;
}
.row-blog-open-homes h1,
.row-blog-open-homes h2 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 30px;
    color: #555;

}
.row-blog-open-homes h1 a,
.row-blog-open-homes h2 a {
    color: #555;
    font-family: 'museo300';
}
.row-blog-open-homes h6 {
    font-family: Verdana, Helvetica, Arial;
    font-weight: bold;
    font-size: 14px;
    margin: 15px 0 5px 0;
    color: #00275e;
}
.row-blog-open-homes h6 span {
    font-weight: normal;
    color: #bbb;
}
.row-blog-open-homes h6 span b {
    display: inline-block;
    margin: 0 3px 0 10px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -260px -55px;
    background-repeat: no-repeat;
}
.row-blog-open-homes h1 span.icon,
.row-blog-open-homes h2 span.icon {
    width: 32px;
    height: 32px;
    margin-top: -3px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.row-blog-open-homes h1 span.icon-blog,
.row-blog-open-homes h2 span.icon-blog {
    background-color: #ee3523;
    background-position: -400px -0px;
    border-radius: 16px;
}
.row-blog-open-homes h1 span.icon-open-home,
.row-blog-open-homes h2 span.icon-open-home {
    width: 22px;
    background-position: -427px -38px;
}
.row-blog-open-homes p.comments {
    display: block;
    float: right;
    padding-top: 5px;
    padding-right: 15px;
    margin: 0;
}
.row-blog-open-homes p.comments b {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-position: -241px -145px;
}
.row-blog-open-homes button {
    display: inline-block;
    margin: 15px 0 0 0;
    color: #fff;
    background-color: #ee3523;
}
.row-blog-open-homes .home-openhome p,
.row-blog-open-homes .home-openhome h3 {
    margin: 0 0 7px 0;
}
.row-blog-open-homes .home-openhome h1 {
    margin-bottom: 15px;
}
.row-blog-open-homes .home-openhome h3 {
    color:#ee3523;
    font-size:16px;
    font-weight:bold;
}
.row-featured-carousel {
    padding-bottom: 0;
}
.row-featured-carousel h2 {
    margin-top: 0;
    color: #00275e;
}
.row-featured-carousel .well {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.row-featured-carousel .carousel-inner .row {
    margin-right: 0;
}
.row-featured-carousel .carousel,
.row-featured-carousel .carousel .item {
    margin: 0;
    background: none;
    height: auto;
}
.row-featured-carousel .carousel .listing {
    position: relative;
    min-height: 347px;
    margin-bottom: 20px;
}
.row-featured-carousel .carousel .carousel-control {
    background: none;
    opacity: 1;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
}
.row-featured-carousel .carousel .carousel-control .glyphicon {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #bbb;
    top: 50%;
}
.row-featured-carousel .carousel .carousel-control.left .glyphicon{
    left: 0;
}
.row-featured-carousel .carousel .carousel-control.left {
    left:-20px;
}
.row-featured-carousel .carousel .carousel-control.right {
    right:-20px;
}
.row-featured-carousel .carousel .carousel-control.right .glyphicon {
    right: 0;
}
.row-featured-carousel .carousel .carousel-control .glyphicon {
    position: absolute;
    margin-top: -20px;
    top: 50%;
    line-height: 34px;
    color: #bbb;
    text-shadow: none;
    z-index: 2;
}
.round-shadow {
    position: relative;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    padding-bottom: 55px;
    margin: 15px 0;
    background-color: #fff;
}
.round-shadow:after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    left:0;
    bottom: -20px;
    height: 20px;
    background-image: url('/eves_property/img/shadow_bottom.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.row-sell-people-offices .round-shadow img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.row-sell-people-offices .round-shadow h3>a {
    color: #555;
    font-family: 'museo300';
    font-weight: normal;
}
.row-sell-people-offices .round-shadow h3 {
    margin: 15px 15px 10px 15px;
    color: #555;
}
.row-sell-people-offices .round-shadow p {
    margin: 0 15px;
}
.row-sell-people-offices .round-shadow>a {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-weight: bold;
    color: #ee3523;
}

.row-video-landing {
  padding: 50px 0;
}
.row-video-landing .video-landing-header h2 {
  margin-bottom:20px;
  text-align: center;
  color: #00275E;
}
.row-video-landing .round-shadow {
  background-color: #fff;
}
.chevron-bottom-white.row-video-landing .round-shadow {
  background-color: #F0F0F0;
}
.row-video-landing .round-shadow img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.row-video-landing .round-shadow h3>a {
  color: #555;
  font-family: 'museo300';
  font-weight: normal;
}
.row-video-landing .round-shadow h3 {
  margin: 15px 15px 10px 15px;
  color: #555;
}
.row-video-landing .round-shadow p {
  margin: 0 15px;
}
.row-video-landing .round-shadow>a {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-weight: bold;
  color: #ee3523;
}
.row-video-landing .video-landing-panel .round-shadow {
  padding-bottom: 0;
}
.row-video-landing .video-landing-panel h3 {
  color: #555555;
}
.row-video-landing .video-landing-panel p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.row-video-landing .video-landing-panel button {
  background-color: #ee3523;
  color: #fff;
}
.row-video-landing .video-landing-panel button:hover {
  color: #333;
}

/* AC: added from style.css Pt.2 */
.breadcrumbs-bar {
    height:110px;
    background: #f0f0f0; /* Old browsers */
    background: -moz-linear-gradient(top,  #f0f0f0 0%, #f0f0f0 70%, #bbbbbb 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(70%,#f0f0f0), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f0f0f0 0%,#f0f0f0 70%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f0f0f0 0%,#f0f0f0 70%,#bbbbbb 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f0f0f0 0%,#f0f0f0 70%,#bbbbbb 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f0f0f0 0%,#f0f0f0 70%,#bbbbbb 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#bbbbbb',GradientType=0 ); /* IE6-9 */
}
@media (max-width: 991px) and (min-width: 768px) {
    .breadcrumbs-bar {
        margin-top: 130px;
    }
}
@media (max-width: 768px) {
    .breadcrumbs-bar {
        margin-top: 50px;
        margin-bottom: 20px;
    }
}
.breadcrumbs {
    position: relative;
    padding-left: 20px;
    margin-top: 22px;
    color: #ee3523;
    line-height: 100%;
}
.breadcrumbs:before {
    display: block;
    position: absolute;
    content: '';
    width: 12px;
    height: 11px;
    margin-top: -5px;
    left: 0;
    top: 50%;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -316px -60px;
    background-repeat: no-repeat;
}
.breadcrumbs a {
    color: #888;
}
.collapse-padding {
    padding-right: 0;
}
@media (max-width: 767px) {
    .collapse-padding {
        padding-right: 15px;
    }
}

/* AC: skipped search styles */

/* AC: added from style.css Pt.3 */

/* NEXT PREV */

.next-prev-row {
    margin-bottom: -20px;
}
.next-prev-row a {
    color: #888;
}
.next-prev-row a span.glyphicon {
    color: #ee3523;
}
.next-prev-row a:hover span.glyphicon,
.next-prev-row a:hover {
    color: #00275e;
}

/* CONTENT */

.btn.active {
    -moz-box-shadow:   none;
    -webkit-box-shadow: none;
    box-shadow:         none;
}
.results-layout {
    display:inline-block;
    margin-left:15px;
}
.results-layout button {
    color: #b3b3b3;
}
.results-layout button:hover {
    color: #999;
}
.results-layout button.active {
    color: #fff;
    background-color: #ee3523;
}
.search-type-filter-row .results-type button {
    text-transform: uppercase;
}
.search-type-filter-row .results-type button.active {
    background-color: #A6A6A6;
    color: #fff;
}
.search-type-filter-row .results-type button.active:after {
    content: '';
    display: block;
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -10px;
    margin-bottom: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #A6A6A6;
}
.search-type-filter-row .results-layout button.active {
    background-color: #ee3523;
}
.search-type-filter-row button.dropdown-toggle span {
    /* color: #ee3523; */
}
.search-type-filter-row div>span {
    color: #ee3523;
    font-family: 'museo700';
}
.search-filter {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid #D2D2D2;
}
.search-filter h4 {
    font-family: 'museo700';
    color: #00275e;
    background-color: #E7E7E7;
    padding: 7px 15px;
    margin: 0 -15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 1px solid #D2D2D2;
}
.search-filter h5 {
    position: relative;
    font-family: 'museo700';
    color: #00275e;
    background-color: #E7E7E7;
    border: 1px solid #adadad;
    padding: 6px 12px;
    border-radius: 4px;
}
.search-filter h5 span.glyphicon {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -7px;
    color: #ee3523;
}
/*
.search-filter .btn-group,
.search-filter .checkbox label {
        width: 100%;
}
.search-filter .checkbox label span {
        float: right;
}
.search-filter .btn-default {
        background-color: #E7E7E7;
        font-family: 'museo700';
        color: #00275e;
}
*/
/*
.search-filter .multiselect .caret {
        background-color: #E7E7E7;
}
.search-filter .multiselect .caret::after {
        border-color: #ee3523;
}
*/

.next-prev {
    color: #aaa;
}

/* LISTING COMMON */

.listing-tab-row {
    position: relative;
    background-color: #fff;
    padding-top:30px;
    border-bottom: 1px solid #ddd;
}
.listing-tab-row .nav-tabs>li.active>a,
.listing-tab-row .nav-tabs>li.active>a:focus,
.listing-tab-row .nav-tabs>li.active>a:hover {
    background-color: #f0f0f0;
    color: #ee3523;
}
.listing-tab-row .nav-tabs {
    position: relative;
    z-index: 0;
}
.listing-tab-row .nav-tabs>li>a {
    text-transform: uppercase;
    font-size: 12px;
    color: #555;
    border-radius: 0;
    border-right: 1px solid #ddd;
    margin-right: 0;
}
.search-results-title h2,
.search-results-title h1 {
    font-family: 'museo300';
    margin: 0;
    color: #00275e;
    font-size: 26px;
    line-height: 28px;
}

.listing {
    /* padding-left: 15px; */
    /* padding-right: 0; */
    /* padding-bottom: 15px; */
}
.search-results-maincol .listing {
    /* padding-left: 0px; */
    /* padding-right: 15px; */
}
@media (max-width: 767px) {
    .listing {
        /* padding-left: 0; */
        /* padding-right: 0; */
    }
    .search-results-maincol .listing {
        /* padding-left: 0px; */
        /* padding-right: 0px; */
    }
}
.listing > div {
    position: relative;
}
.listing h4,
.listing .listing-heading {
    padding-top: 15px;
    margin: 0 15px 2px 15px;
    font-family: 'museo700';
    font-size: 18px;
    line-height: 19px;
    color: #00275e;
}
.listing h4 a,
.listing .listing-heading a {
    font-family: 'museo700';
}
.listing p {
    margin: 0 15px;
    height: 20px;
    overflow: hidden;
    color: #888;
    font-size: 13px;
}
.listing p b {
    color: #ee3523;
    /* 	font-weight: normal; */
}
.listing ul.listing-icons {
    list-style: none;
    margin: 5px 15px;
    padding: 0;
}
.listing .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: -5px 5px 0 3px;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.listing .icon.icon-bedrooms {
    background-position: -30px -40px;
}
.listing .icon.icon-bathrooms {
    background-position: 0 -40px;
}
.listing .icon.icon-carports {
    background-position: -60px -40px;
}
.listing .icon.icon-garages {
    background-position: -90px -40px;
}
.listing .icon.icon-parking-covered {
    background-position:-90px -40px
}
.listing .icon.icon-lounges {
    background-position: -120px -40px;
}
.listing-title-icons {
    position: relative;
    overflow: auto;
}
.listing-title-icons p {
    display: inline-block;
}
.listing h5,
.listing .listing-price {
    /* 	font-family: 'museo700'; */
    font-family: Verdana, Helvetica, Arial;
    /*background-color: #E7E7E7;*/
    margin: 0;
    padding: 10px 15px 8px 15px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #ee3523;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
}
.listing h5 a,
.listing .listing-price a {
    float: right;
}
.listing h5 a .icon,
.listing .listing-price a .icon {
    width: 16px;
    height: 16px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.sidebar-container span.icon.icon-heart {
    background-position: -188px -145px;
    width: 16px;
    height: 16px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.sidebar-container span.icon.icon-heart.active {
    background-position: -185px -55px;
    width: 16px;
    height: 16px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.listing h5 a .icon.icon-heart,
.listing .listing-price a .icon.icon-heart {
    background-position: -205px -55px;
}
.listing h5 a .icon.icon-heart.active,
.listing .listing-price a .icon.icon-heart.active {
    background-position: -185px -55px;
}
.listing h5 a .icon.icon-share,
.listing .listing-price a .icon.icon-share {
    background-position: -385px -3px;
}
.listing h5 a .icon.icon-share.active,
.listing .listing-price a .icon.icon-share.active {
    background-position: -367px -3px;
}

.listing-carousel {
    border: none;
}
.listing-carousel .item a {
    position: relative;
}
.listing-carousel .carousel-control {
    width: 10%;
    opacity: 0;
}
.listing-carousel .carousel-control:hover,
.listing-carousel .carousel-control:focus {
    opacity: 1;
}
.listing-carousel .carousel-control.left,
.listing-carousel .carousel-control.right {
    background: none;
}
.listing-carousel .carousel-control.left .glyphicon,
.listing-carousel .carousel-control.right .glyphicon {
    width: 30px;
    height: 30px;
    line-height: 25px;
    font-size: 14px;
    background-color: #ee3523;
    border-radius: 15px;
    border: 2px solid #fff;
    text-shadow: none;
    margin-top: -15px;
}
.listing-carousel .carousel-control.left .glyphicon {
    left: 0;
    margin-left: -13px;
}
.listing-carousel .carousel-control.right .glyphicon {
    right: 0;
    margin-right: -13px;
}

.listing .listing-grid-info > a,
.listing .listing-list-info > a {
    display: block;
    text-decoration: none;
}
.listing .listing-grid-info > a:hover,
.listing .listing-list-info > a:hover {
    background-color: #f0f0f0;
}

.listing .listing-grid-info > a,
.listing .listing-list-info > a {
    padding: 0 15px;
}
.listing  .listing-price {
    padding-left: 30px;
}
@media (min-width: 768px) {
    .listing .listing-grid-info > a,
    .listing .listing-list-info > a {
        padding: 0;
    }
    .listing  .listing-price {
        padding-left: 15px;
    }
}

/* AC BS update/additions */
.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 15%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
	filter: alpha(opacity=50);
	opacity: .5;
}
.carousel-control.left {
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
	background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x;
}
.carousel-control.right {
	right: 0;
	left: auto;
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
	background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
}
.listing-tab-row .nav-tabs {
	border-bottom: none;
    margin-bottom: -1px;
}
.listing-tab-row .nav-tabs > li > a {
	position: relative;
	display: block;
	padding: 10px 15px;
    border-bottom: none;
}
.listing-tab-row .nav-tabs > li > a.active,
.listing-tab-row .nav-tabs > li > a.active:focus,
.listing-tab-row .nav-tabs > li > a.active:hover {
	background-color: #f0f0f0;
	color: #ee3523;
}

.listing-tab-row .results {
    margin: 8px 0 0 0;
    text-align: right;
}

.listing-tab-row .results a {
    color: #00275e;
}

/* LISTING PAGE BANNERS */

.listing-grid-photos.banner .carousel-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/eves_property/img/sprites-photo-banners.png');
    background-image: url('/eves_property/img/v2/sprites-photo-banners.svg'), none;
    background-repeat: no-repeat;
    background-position: 1000px 1000px;
    width: 195px;
    height: 38px;
    z-index: 3;
}
.listing-grid-photos.banner.banner-auction-monday .carousel-inner:before { 		background-position: 0 -500px; }
.listing-grid-photos.banner.banner-auction-tuesday .carousel-inner:before { 		background-position: 0 -540px}
.listing-grid-photos.banner.banner-auction-wednesday .carousel-inner:before { 	background-position: 0 -580px; }
.listing-grid-photos.banner.banner-auction-thursday .carousel-inner:before { 	background-position: 0 -620px; }
.listing-grid-photos.banner.banner-auction-friday .carousel-inner:before { 		background-position: 0 -660px; }
.listing-grid-photos.banner.banner-auction-saturday .carousel-inner:before { 	background-position: 0 -700px; }
.listing-grid-photos.banner.banner-auction-sunday .carousel-inner:before { 		background-position: 0 -740px; }
.listing-grid-photos.banner.banner-mortgagee-sale .carousel-inner:before { 		background-position: 0 -780px; }
.listing-grid-photos.banner.banner-brought-forward .carousel-inner:before { 		background-position: -200px -500px; }
.listing-grid-photos.banner.banner-new-listing .carousel-inner:before { 				background-position: -200px -540px; }
.listing-grid-photos.banner.banner-price-reduction .carousel-inner:before { 		background-position: -200px -580px; }
.listing-grid-photos.banner.banner-under-offer .carousel-inner:before { 				background-position: -200px -620px; }
.listing-grid-photos.banner.banner-waterfront .carousel-inner:before { 				background-position: -200px -660px; }
.listing-grid-photos.banner.banner-withdrawn .carousel-inner:before { 					background-position: -200px -700px; }
.listing-grid-photos.banner.banner-final-notice .carousel-inner:before { 			background-position: -200px -740px; }
.listing-grid-photos.banner.banner-final-viewing .carousel-inner:before { 			background-position: -200px -780px; }
.listing-grid-photos.banner.banner-sold-label .carousel-inner:before {
    width: 150px;
    height: 52px;
    background-position: -400px -500px;
}

/* END LISTING PAGE BANNERS */

.listing-grid > div {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    padding-bottom: 160px; /* height of info */
}

.listing .listing-list-photos-container,
.listing .listing-grid-photos {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 67%;
    background-color: #ddd;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    -moz-box-shadow:   inset 0 0 12px #ddd;
    -webkit-box-shadow: inset 0 0 12px #ddd;
    box-shadow:         inset 0 0 12px #ddd;
}
.listing .listing-list-photos-container div,
.listing .listing-grid-photos div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.listing .listing-list-photos {
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.listing .listing-list-photos a img {
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
/* video icon */
.main-img-container.icon-video:before {
    font-family: 'Glyphicons Halflings';
    content:"\e072";
    color: #fff;
    display: block;
    position: absolute;
    left:50%;
    top:50%;
    width: 80px;
    height: 80px;
    font-size: 46px;
    padding-top: 4px;
    /* 	line-height: 88px; */
    text-align: center;
    margin-top: -40px;
    margin-left: -40px;
    padding-left: 5px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 40px;
    border: 4px solid #fff;
}
.main-img-container.icon-video:hover:before {
    background-color: rgba(238,53,35,0.7);
}
.main-img-container.icon-video:hover {
    cursor: pointer;
}
.thumbnail.icon-video:before,
.listing .icon-video div a:before {
    font-family: 'Glyphicons Halflings';
    content:"\e072";
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    padding-left: 3px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0px 0px -20px;
    border-radius: 20px;
    background-color: rgba(0,0,0,0.5);
    border: 2px solid #fff;
}

/* end video icon */
.listing .listing-list-photos div.item a,
.listing .listing-grid-photos div.item a,
.listing .listing-list-photos > div > a,
.listing .listing-grid-photos > div > a {
    display: block;
    width: 100%;
    height: 100%;
}
.listing .listing-list-photos div.item a:hover,
.listing .listing-grid-photos div.item a:hover,
.listing .listing-list-photos > div > a:hover,
.listing .listing-grid-photos > div > a:hover {
    background-color: rgba(255,255,255,0.2);
}
.listing .listing-grid-info {
    width:100%;
    position: absolute;
    bottom:0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
    z-index: 1;
}
.listing .listing-grid-photos:before {
    content: '';
    display: block;
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -10px;
    margin-top: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    z-index: 1;
}
.listing-grid-info h6,
.listing-grid-info .appointment-open-home {
    font-family: Verdana, Helvetica, Arial;
    font-size: 12px;
    line-height: 20px;
    border-top: 1px solid #ddd;
    padding: 8px 15px 10px 15px;
    margin: 0;
    line-height: 20px;
    text-align: center;
}
.listing ul.listing-icons.listing-grid-icons {
    font-size: 13px;
}
.listing ul.listing-icons.listing-grid-icons span {
    width: 24px;
    height: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .listing ul.listing-icons.listing-grid-icons {
        font-size: 11px;
    }
    .listing ul.listing-icons.listing-grid-icons span {
        margin: -5px 3px 0 1px;
    }
}


.listing ul.listing-icons.listing-grid-icons span.icon-bedrooms {
    background-position: -24px -145px;
}
.listing ul.listing-icons.listing-grid-icons span.icon-bathrooms {
    background-position: 0 -145px;
}
.listing ul.listing-icons.listing-grid-icons span.icon-carport {
    background-position: -48px -145px;
}
.listing ul.listing-icons.listing-grid-icons span.icon-garages {
    background-position: -72px -145px;
}
.listing ul.listing-icons.listing-grid-icons span.icon-parking-covered {
    background-position:-72px -145px
}
.listing ul.listing-icons.listing-grid-icons span.icon-lounges {
    background-position: -96px -145px;
}
.listing .listing-grid-info h6.open-home,
.listing .listing-grid-info .appointment-open-home.open-home {
    color: #00275e;
    font-weight: bold;
}

/* LISTING LIST */

.listing-list > div {
    margin: 0;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
}
.listing-list h4,
.listing-list .listing-heading {
    font-size: 22px;
    margin: 0 0 10px 0;
    padding: 10px 15px 6px 15px;
    border-bottom: 1px solid #e7e7e7;
    overflow: auto;
}
.listing-list h4 i,
.listing-list .listing-heading i {
    display: block;
    float: left;
    font-family: 'museo700';
    font-style: normal;
}
.listing-list h4 span,
.listing-list .listing-heading span {
    display: block;
    float: right;
    font-family: Verdana, Helvetica, Arial;
    font-size: 13px;
    font-weight: bold;
    color: #ee3523;
    margin-top: 3px;
}
.listing ul.listing-icons li {
    display: inline-block;
    padding-top:2px;
}
.listing ul.listing-icons li span.listing-id {
    color: #888;
}
.listing-list-info > p,
.listing-list-info a > p {
    margin: 5px 15px 0 15px;
    padding-bottom: 45px;
    height: auto;
    width: 95%;
}
.listing-title-icons p {
    display: block;
    float: left;
    height: auto;
    margin: 3px 0 5px 15px;
}
.listing-title-icons ul.listing-icons {
    display: block;
    float: right;
    margin: 0 10px 5px 0;
}
.listing .list-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-left: 0;
}
.listing .list-footer h5 {
    padding: 10px 15px;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    border-bottom-left-radius: 0;
    border-top: 1px solid #e7e7e7;
}
.listing .list-footer h5 a {
    display: inline-block;
    margin-top: 4px;
}
.listing .list-footer h5 b {
    font-weight: normal;
    color: #888;
    display: inline-block;
    margin: 4px 10px 0 0;
    float: right;
    font-size: 12px;
}
.listing .list-footer h5 em,
.listing .list-footer em {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    float: left;
    margin-top: 3px;
}
.listing .list-footer h5 em.open-home,
.listing .list-footer em.open-home {
    font-weight: bold;
}
.listing .list-footer h5 em.open-home span,
.listing .list-footer em.open-home span {
    color: #00275e;
}
.open-home .icon {
    width: 14px;
    height: 20px;
    background-position: -390px -50px;
    margin: -2px 3px 0 0;
}
.listing .list-footer h5 em.view-appointment {
    color: #888;
}
.view-appointment {
    color: #a6a6a6;
}
.view-appointment .icon {
    width: 14px;
    height: 20px;
    background-position: -370px -50px;
    margin: -2px 3px 0 0;
}
.listing .listing-list-photos-container div {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 4px;
}


/*TYPE AHEAD*/

span.twitter-typeahead {
    position: relative;
    width: 100%;
}
/*
.search-for-quick-search-input {
    height: 50px;
}
.search-for-quick-search-input form {
    position: relative;
    display: block;
    height: 30px;
    margin-top: 12px !important;
}
.search-block .search-top-row .search-for-quick-search-input form b {
    margin-top: -17px;
}
.search-block .search-top-row form button {
    top: -1px;
}
*/
.search-block .search-top-row form span.twitter-typeahead input {
    /* 	color: green; */
}
.tt-dropdown-menu {
    margin-top: 5px;
    width: auto;
    min-width: 230px;
    padding: 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px;
    -moz-box-shadow:    0 8px 8px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
    box-shadow:         0 8px 8px 0 rgba(0,0,0,0.2);
    z-index: 1077 !important;
}
.form-quick-search .tt-suggestion p {
    position: relative;
}
.form-quick-search .tt-suggestion p a {
    font-family: Verdana, Helvetica, Arial;
    font-size: 14px;
    line-height: 26px;
    border-radius: 3px;
    color: #00275e;
    padding: 6px 5px 6px 28px;
    line-height: 125%;
}
.form-quick-search .tt-suggestion p a:before {
    position: absolute;
    display: block;
    font-family: 'Glyphicons Halflings';
    content:"\e021"; /* home icon */
    width: 16px;
    height: 16px;
    top: 7px;
    left: 7px;
    line-height: 1;
    top: 1;
}
.form-quick-search .tt-suggestion p.auto_sug_AGENT a,
.form-quick-search .tt-suggestion p.auto_sug_BRANCH a {
    color: #888;
}
.form-quick-search .tt-suggestion p.auto_sug_AGENT a:before {
    content: '';
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-position: -280px -53px;
}
.form-quick-search .tt-suggestion p.auto_sug_AGENT a {
    color: #888;
}
.form-quick-search .tt-suggestion p.auto_sug_SUBURB a:before,
.form-quick-search .tt-suggestion p.auto_sug_DISTRICT a:before,
.form-quick-search .tt-suggestion p.auto_sug_REGION a:before {
    color: #888;
    content:"\e062"; /* map marker */
}
.form-quick-search .tt-suggestion p.auto_sug_BRANCH a {
    color: #888;
}
.form-quick-search .tt-suggestion p.auto_sug_BRANCH a:before {
    color: #ee3523;
    content:"\e062"; /* map marker */
}
.form-quick-search .tt-suggestion p {
    padding-right: 0;
}
.form-quick-search .tt-suggestion p a {
    display: block;
}
.form-quick-search .tt-suggestion p a:hover {
    background-color: #eee;
}
.tt-hint {
    color: #888;
}

.form-quick-search .btn-addon-search {
    position:absolute;
    right:0;
    padding:9px;
}

.typeahead.form-control.tt-hint,
.typeahead.form-control.tt-input {
    padding-right:36px;
}

/* DETAIL PAGE */

.detail-image-block {
    /*
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    */
    margin-bottom: 15px;
}
.detail-image-block h3 {
    color: #00275e;
    margin: 0 -15px 0 -15px;
    padding: 18px 15px 13px 15px;
    border-bottom: 1px solid #ddd;
    font-family: 'museo700';
}
.detail-image-block h3 span {
    font-size: 16px;
    color: #ee3523;
    float: right;
    margin-top: 5px;
}
.detail-image-block h4 {
    font-size: 14px;
    font-family: Verdana, Helvetica, Arial;
    text-transform: uppercase;
    margin: 15px 0;
}
.detail-image-block h4 span {
    color: #ee3523;
    font-weight: bold;
}
.row-property-detail-title {
    margin-bottom: 10px;
}
.row-property-detail-title h1 {
    font-size: 20px;
    color: #00275e;
    margin: 0;
}
.row-property-detail-title h1 span {
	display: inline-block;
  white-space: nowrap;
}
.row-property-detail-title h4 {
    font-family: 'museo700';
    font-size: 20px;
    line-height: 20px;
    padding-top: 10px;
    color: #ee3523;
    margin: 0;
}
.row-property-detail-title h1 b a {
    font-size: 28px;
    color: #ee3523;
    font-family: 'museo700';
}
.row-property-detail-title h1 b a:hover {
    text-decoration: none;
}
.row-property-detail-title h1 b {
	display: block;
	padding-right: 10px;
}
@media (min-width: 768px) {
	.row-property-detail-title h1 b {
		display: inline-block;
	}
}
.row-property-detail-icons {
    position: relative;
    margin-bottom: 10px;
}
@media (min-width: 991px) {
	.row-property-detail-title div:last-child,
	.row-property-detail-icons div:last-child {
	   text-align: right;
	}
}

.detail-buttons {
    margin-top: 15px;
    margin-bottom: 5px;
}
.detail-buttons a {
    font-family: 'museo700';
    color: #00275e;
}
.detail-buttons a:last-child {
    margin-left: 5px;
}
.detail-buttons .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: -3px 3px 0 0;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.detail-buttons .icon.icon-share {
    background-position: -347px -145px;
}
.detail-buttons .icon.icon-save {
    background-position: -188px -145px;
}
.detail-buttons a.btn-default.saved .icon.icon-save {
    background-position: -185px -54px;
}
.row-property-detail-icons:before {
    display: block;
    content: '';
    position: absolute;
    top:0;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: #ddd;
}
.row-property-detail-icons ul.detail-icons {
    list-style: none;
    display: block;
    /* 	float: right; */
    margin: 20px 0 10px 0;
    padding: 0;
}
.row-property-detail-icons ul.detail-icons li {
    font-family: 'museo700';
    display: inline-block;
    vertical-align: bottom;
    color: #ee3523;
}
.row-property-detail-icons ul.detail-icons .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px 3px 3px;
    vertical-align: bottom;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.row-property-detail-icons ul.detail-icons .icon.icon-bedrooms {
    background-position: -30px -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-bathrooms {
    background-position: 0 -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-carports {
    background-position: -60px -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-garages {
    background-position: -90px -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-parking-covered {
    background-position: -90px -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-lounges {
    background-position: -120px -40px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-parking-uncovered {
    background-position: 0px -190px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-swimming-pool {
    background-position: -30px -190px;
}
.row-property-detail-icons ul.detail-icons .icon.icon-office {
    background-position: -60px -190px;
}
.detail-image-block h5 {
    font-size: 12px;
    font-family: Verdana, Helvetica, Arial;
    margin: 15px 0;
}
.detail-image-block h5 span {
    color: #ee3523;
    font-weight: bold;
    text-transform: uppercase;
}

/* AC: added from style.css Pt.4 */

.main-img-menu {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    /* 	width: 100%; */
    text-align: center;
}
@media (max-width: 991px) {
    .main-img-menu {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        /* 	width: 100%; */
    }
    .main-img-menu .btn {
        float: none;
        margin-right: -4px;
    }
    .thumbs-carousel {
        margin-top: 15px !important;
    }
}
.main-img-menu a.btn-img-menu {
    font-family: 'museo500';
    color: #00275e;
    border-color: #fff;
    background-color: #eee;
    flex-wrap: wrap;
}
.main-img-menu a.btn-img-menu.active,
.main-img-menu a.btn-img-menu.focus,
.main-img-menu a.btn-img-menu:active,
.main-img-menu a.btn-img-menu:focus,
.main-img-menu a.btn-img-menu:hover {
    border-color: #fff;
    background-color: #fff;
}

.main-img-menu a.btn-img-menu.disabled {
    color: #999;
    opacity: 1;
}
.main-img-menu a.btn-img-menu.photos span.count:before {
    display: block;
    content: '';
    position: absolute;
    top: 44%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ee3523;
    z-index: -1;
}
.main-img-menu a.btn-img-menu span {
    margin-left: 3px;
    margin-right: 3px;
    display: inline-block;
    position: relative;
    font-size: 0.85em;
    font-family: 'museo300';
    color: #fff;
    z-index: 1;
}
.main-img-menu a.btn-img-menu span.count {
    margin-left: 12px;
}
.main-img-menu .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -3px 0 0 0;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.main-img-menu .icon.icon-photos {
    background-position: -300px -170px;
}
.main-img-menu .icon.icon-video {
    background-position: -320px -170px;
}
.main-img-menu .icon.icon-floorplan {
    background-position: -340px -170px;
}
.main-img-menu .icon.icon-virtualtour {
    background-position: -360px -170px;
}
.main-img-menu .icon.icon-location {
    background-position: -380px -170px;
}
.main-img-menu .disabled .icon.icon-photos {
    background-position: -300px -190px;
}
.main-img-menu .disabled .icon.icon-video {
    background-position: -320px -190px;
}
.main-img-menu .disabled .icon.icon-floorplan {
    background-position: -340px -190px;
}
.main-img-menu .disabled .icon.icon-virtualtour {
    background-position: -360px -190px;
}
.main-img-menu .disabled .icon.icon-location {
    background-position: -380px -190px;
}

.main-img {
    position: relative;
}
.main-img p {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    margin: 0;
}
.main-img p a {
    font-size: 13px;
    display: block;
    position: relative;
    background-color: rgba(0,0,0,0.5);
    color: #ddd;
    line-height: 40px;
    padding: 0 10px;
}
.main-img p a:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,0.7);
}
.main-img p a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -20px;
    margin-right: -15px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid rgba(0,0,0,0.5);
}
.main-img p a:hover:after {
    border-left: 15px solid rgba(0,0,0,0.7);
}
.main-img-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    z-index: 2;
}
.main-img-sub-container {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color: #fff;
}
.btn-enlarge {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 32px;
    right: 20px;
    z-index:10;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-position: -90px -190px;
}
@media (max-width: 767px) {
    .btn-enlarge {
        bottom: 15px;
        right: 15px;
    }
}
.main-img-sub-container > div,
.main-img-sub-container > iframe {
    z-index: 5;
}
.main-img-container .carousel {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin: 0;
    height: auto;
}
.main-img-container .carousel .carousel-inner,
.main-img-container .carousel .carousel-inner .item {
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.main-img-container #carousel-floorplans .carousel-inner,
.main-img-container #carousel-floorplans .carousel-inner .item {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fff;
}
#modal_floorplan.zoom-modal .item {
  background-size: contain;
  background-color: #fff;
}
.item.modal-item-video {
    position: relative;
}
.modal-item-video iframe,
.main-img-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@-moz-keyframes rotate {
    from {
        -moz-transform:rotate(0deg)
}
    to {
        -moz-transform:rotate(360deg)
    }
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform:rotate(0deg)
}
    to {
        -webkit-transform:rotate(360deg)
    }
}
@keyframes rotate {
    from {
        transform:rotate(0deg)
}
    to {
        transform:rotate(360deg)
    }
}
.main-img:after {
    font-family: 'Glyphicons Halflings';
    content:"\E030";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 32px;
    line-height: 32px;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1200ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1200ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotate;
    -ms-animation-duration: 1200ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-transition: rotate(3600deg);
    z-index: 1;
}
.main-img.banner #carousel-main-img .carousel-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/eves_property/img/sprites-photo-banners.png');
    background-image: url('/eves_property/img/v2/sprites-photo-banners.svg'), none;
    background-repeat: no-repeat;
    background-position: 1000px 1000px;
    width: 298px;
    height: 58px;
    z-index: 3;
}
.main-img.banner-auction-monday #carousel-main-img .carousel-inner:before { 			background-position: 0 0; }
.main-img.banner-auction-tuesday #carousel-main-img .carousel-inner:before { 		background-position: 0 -60px}
.main-img.banner-auction-wednesday #carousel-main-img .carousel-inner:before { 	background-position: 0 -120px; }
.main-img.banner-auction-thursday #carousel-main-img .carousel-inner:before { 		background-position: 0 -180px; }
.main-img.banner-auction-friday #carousel-main-img .carousel-inner:before { 			background-position: 0 -240px; }
.main-img.banner-auction-saturday #carousel-main-img .carousel-inner:before { 		background-position: 0 -300px; }
.main-img.banner-auction-sunday #carousel-main-img .carousel-inner:before { 			background-position: 0 -360px; }
.main-img.banner-mortgagee-sale #carousel-main-img .carousel-inner:before { 			background-position: 0 -420px; }
.main-img.banner-brought-forward #carousel-main-img .carousel-inner:before { 		background-position: -300px 0; }
.main-img.banner-new-listing #carousel-main-img .carousel-inner:before { 				background-position: -300px -60px; }
.main-img.banner-price-reduction #carousel-main-img .carousel-inner:before { 		background-position: -300px -120px; }
.main-img.banner-under-offer #carousel-main-img .carousel-inner:before { 				background-position: -300px -180px; }
.main-img.banner-waterfront #carousel-main-img .carousel-inner:before { 					background-position: -300px -240px; }
.main-img.banner-withdrawn #carousel-main-img .carousel-inner:before { 					background-position: -300px -300px; }
.main-img.banner-final-notice #carousel-main-img .carousel-inner:before { 				background-position: -300px -360px; }
.main-img.banner-final-viewing #carousel-main-img .carousel-inner:before { 			background-position: -300px -420px; }
.main-img.banner-sold-label #carousel-main-img .carousel-inner:before {
    height: 97px;
    background-position: -600px 0;
}
.zoom-modal {
    position: absolute; /* Needed because the carousel overrides the position property */
    position: fixed;
    padding: 0;
    height: 100%;
    bottom: 0;
}
.zoom-modal .item {
    width: 100%;
    height: 0;
    padding-bottom: 67%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.zoom-modal .carousel-control,
.main-img .carousel-control {
    background:none;
    width: 8%;
    opacity:0.5;
    mix-blend-mode: screen;
}
.zoom-modal .carousel-control:hover,
.zoom-modal .carousel-control:focus,
.main-img .carousel-control:hover,
.main-img .carousel-control:focus {
    opacity: 1;
}
.zoom-modal .carousel-control.left,
.zoom-modal .carousel-control.right,
.main-img .carousel-control.left,
.main-img .carousel-control.right {
    background: none;
}
.zoom-modal .carousel-control.left .glyphicon,
.zoom-modal .carousel-control.right .glyphicon,
.main-img .carousel-control.left .glyphicon,
.main-img .carousel-control.right .glyphicon {
    position: absolute;
    background-color: #fff;
    cursor: pointer;
    width: 44px;
    height: 44px;
    line-height: 42px;
    font-size: 25px;
    border-radius: 22px;
    color: #000;
    text-shadow: none;
    top: 50%;
    left: 50%;
    display: inline-block;
    margin-left: -22px;
    margin-top: -22px;
    z-index: 5;
}
.zoom-modal#modal_floorplan .carousel-control.left .glyphicon,
.zoom-modal#modal_floorplan .carousel-control.right .glyphicon,
.main-img #carousel-floorplans .carousel-control.left .glyphicon,
.main-img #carousel-floorplans .carousel-control.right .glyphicon {
    color: #fff;
    background-color: #000;
}
.zoom-modal#modal_floorplan .carousel-control,
.main-img #carousel-floorplans .carousel-control {
    opacity:0.2;
    mix-blend-mode: multiply;
}
.zoom-modal#modal_floorplan .carousel-control:hover,
.zoom-modal#modal_floorplan .carousel-control:focus,
.main-img #carousel-floorplans .carousel-control:hover,
.main-img #carousel-floorplans .carousel-control:focus {
    opacity:0.5;
}

/* THUMBNAIL CAROUSEL */
.thumbs-carousel {
    padding: 0;
    margin: 30px 0 15px 0;
    border: none;
    overflow: hidden;
}
.thumbs-carousel .carousel {
    height: auto;
    margin-bottom: 0;
    width: 100%;
    /* width: calc(100% + 15px); */
}
.thumbs-carousel .carousel-item {
    height: auto;
}
.thumbs-carousel .carousel .item {
    display: none;
    height: auto;
}
.thumbs-carousel .carousel .item.active {
    display: flex;
}
.thumbs-carousel .carousel .row > .col-item {
    padding-left: 5px !important;
    padding-right: 5px !important;
    line-height: 1;
}
.thumbs-carousel .thumbnail {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 0;
    padding-bottom: 65%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.thumbs-carousel a.thumbnail:hover,
.thumbs-carousel a.thumbnail:focus,
.thumbs-carousel a.thumbnail.active {
    border-color: #fff;
}
.thumbs-carousel a.thumbnail:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.thumbs-carousel a.thumbnail:hover:after {
    background-color: rgba(255,255,255,0.5);
}
.thumbs-carousel .carousel-control {
    width: 4%;
    opacity: 1;
}
.thumbs-carousel .carousel-control:hover,
.thumbs-carousel .carousel-control:focus {
    opacity: 1;
}
.thumbs-carousel .carousel-control.left,
.thumbs-carousel .carousel-control.right {
    background: rgba(255,255,255,0.5);
}
.thumbs-carousel .carousel-control.right {
    right: 0;
}
.thumbs-carousel .carousel-control.left .glyphicon,
.thumbs-carousel .carousel-control.right .glyphicon {
    width: 30px;
    height: 30px;
    line-height: 24px;
    font-size: 24px;
    text-shadow: none;
    margin-top: -15px;
    color: #ee3523;
}
.thumbs-carousel .carousel-control.left .glyphicon {
    left: 50%;
    margin-left: -15px;
}
.thumbs-carousel .carousel-control.right .glyphicon {
    right: 50%;
    margin-right: -15px;
}
.thumbs-carousel .item .eves-logo span {
    display: block;
    background: url('/eves_property/img/eves-logo.gif');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    padding-bottom: 67%;
}
.thumbs-carousel .carousel-inner > .item .col-item {
    padding: 0 15px 0 0;
}
/* OVERRIDE BOOTSTRAP THUMB ANIMATION */
.thumbs-carousel .carousel-inner > .item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transition: .4s ease-in-out left;
    -o-transition: .4s ease-in-out left;
    transition: .4s ease-in-out left;
}
/* @media all and (transform-3d), (-webkit-transform-3d) { */
.thumbs-carousel .carousel-inner > .item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transition: -webkit-transform .4s ease-in-out;
    -o-transition:      -o-transform .4s ease-in-out;
    transition:         transform .4s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}
.thumbs-carousel .carousel-inner > .item.next,
.thumbs-carousel .carousel-inner > .item.active.right {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
.thumbs-carousel .carousel-inner > .item.prev,
.thumbs-carousel .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.thumbs-carousel .carousel-inner > .item.next.left,
.thumbs-carousel .carousel-inner > .item.prev.right,
.thumbs-carousel .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/* } */
/* END OVERRIDE BOOTSTRAP THUMB ANIMAITON */
.accordion-button:not(.collapsed) {
	color: #00275e;
	background-color: #e7e7e7;
}




.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel-body {
	padding: 15px;
}
.description-panel h3 {
    margin-top: 0;
    font-family: 'museo700';
    color: #00275e;
  }
.panel-group .panel {
    border-radius: 5px;
    margin-bottom: 15px;
}
.panel-title .accordion-button {
    font-weight: bold;
}

.panel-title a {
    display: block;
    font-family: 'museo700';
    background-color: #e7e7e7;
    color: #00275e;
    padding: 10px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.panel-title a:hover {
    text-decoration: none;
}
.panel-title a span {
    width: 20px;
    text-align: center;
    color: #ee3523;
    margin-right: 3px;
}
.panel-title a span.icon {
    width: 20px;
    height: 20px;
    margin-top: -1px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.panel-title a span.icon.icon-description {
    background-position: -144px -145px;
}
.panel-title a span.icon.icon-info {
    background-position: -166px -145px;
}
.panel-title a span.icon.icon-floorplan {
    background-position: -122px -145px;
}
.panel-default>.panel-heading {
    background-color: #e7e7e7;
}
.panel-heading {
    padding: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.panel-sale-method .panel-heading .panel-title {
    font-family: 'museo700';
    font-size: 16px;
    color: #00275e;
    padding: 10px 15px;
    margin: 0;
}
.panel-sale-method .panel-body {
    position: relative;
}
.panel-sale-method .panel-body .calendar-link {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    margin-top: 0;
}
.panel-sale-method .panel-body h5 {
    font-family: 'museo500';
    color: #ee3523;
    margin-bottom: 0;
    margin-top: 0;
}
.panel-sale-method .panel-body h5 span {
    font-size: 12px;
}
.panel-sale-method .panel-body p {
    margin-bottom: 0;
}
.panel-body h5 {
    font-family: Verdana, Helvetica, Arial;
    font-weight: bold;
    color: #00275e;
}
.panel-body h5 span {
    color: #ee3523;
}
.panel-body h5 i {
    font-weight: normal;
}
.property-info p {
    margin: 5px 0 5px 0;
}
.property-info p b {
    font-family: 'museo700';
    font-weight: normal;
}
.property-info .row {
    border-bottom: 1px solid #eee;
}

/* DETAIL sidebar */

.sidebar-container {
    width: auto;
    padding-right: 0;
}
.sidebar-buttons {
    padding-left: 0;
    padding-right: 0;
}
.btn-sidebar {
    width: 100%;
    text-align: left;
    background-color: #fff;
}
.btn-sidebar:hover {
    background-color: #e6e6e6;
}
.sidebar-block {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}
.sidebar-inner {
    padding: 10px 15px;
}
.sidebar-block p {
    position: relative;
    padding: 10px 15px;
    margin: 0 -15px;
}
.sidebar-block .red {
    color: #ee3523;
}
.sidebar-block h4 a{
    font-family: 'museo700';
    color: #00275e;
}
.sidebar-block h4 {
    font-family: 'museo700';
    color: #00275e;
    font-size: 18px;
    background-color: #e7e7e7;
    margin: 0;
    padding: 10px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.sidebar-block h4 span.icon {
    width: 14px;
    height: 20px;
    display: inline-block;
    margin-right: 2px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.sidebar-open-homes p {
    font-family: "museo300";
    position: relative;
/*     border-top: 1px solid #ddd; */
}
.sidebar-open-homes p b {
    display: block;
    font-family: 'museo700';
    font-weight: normal;
}
.sidebar-open-homes p:first-child {
    border-top: none;
}
.sidebar-open-homes p span.red {
    color: #ee3523;
}
.sidebar-open-homes p span.blue {
    color: #00275e;
}
.sidebar-block h4 span.icon.open-home {
    margin-top: -3px;
    background-position: -390px -50px;
}
span.calendar-add {
    width: 40px;
    height: 20px;
    margin: 3px 0 -5px 5px;
    display: inline-block;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
span.calendar-add.calendar-add-google {
    background-position: -305px -170px;
}
span.calendar-add.calendar-add-outlook {
    background-position: -345px -170px;
}
.calendar-link {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -8px;
}
.icon-calendar,
.sidebar-block p a span.icon-calendar {
    width: 21px;
    height: 17px;
    display: block;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: -229px -54px;
}
.popover-calendar a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #888;
    padding: 8px 0;
}
.popover-calendar a:hover {
    color: #ee3523;
}
.popover-calendar a:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: #ddd;
    bottom: 0;
    left: -14px;
    right: -14px;
}
.popover-calendar a:first-child {
    margin-top: -8px;
}
.popover-calendar a:last-child {
    margin-bottom: -8px;
}
.popover-calendar a:last-child:after {
    display: none;
}
.popover-calendar a:hover {
    color: #ee3523;
}
.popover-calendar .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.popover-calendar a .icon.icon-outlook {
    background-position: -140px -190px;
}
.popover-calendar a .icon.icon-google {
    background-position: -160px -190px;
}
.popover-calendar a .icon.icon-ical {
    background-position: -180px -190px;
}
.popover-calendar a .icon.icon-download {
    background-position: -200px -190px;
}
.popover-calendar a:hover .icon.icon-outlook {
    background-position: -140px -210px;
}
.popover-calendar a:hover .icon.icon-google {
    background-position: -160px -210px;
}
.popover-calendar a:hover .icon.icon-ical {
    background-position: -180px -210px;
}
.popover-calendar a:hover .icon.icon-download {
    background-position: -200px -210px;
}

.sidebar-container .icon {
    width: 16px;
    height: 16px;
    margin-top: -1px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.sidebar-container .icon.icon-wishlist {
    background-position: -188px -145px;
}
.sidebar-container .icon.icon-wishlist-filled {
    background-position: -185px -54px;
}
.sidebar-container .icon.icon-pdf {
    background-position: -206px -145px;
}
.sidebar-container .icon.icon-email {
    background-position: -224px -145px;
}
.sidebar-block.sidebar-agent {
    margin-top: 0;
    padding-bottom: 0;
}
.sidebar-block .portrait-wrapper {
    margin-top: 15px;
    position: relative;
    width: 140px;
    max-width: 140px;
}
.sidebar-block .portrait-wrapper > div {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}
.portrait-wrapper div.portrait {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    border-radius: 50%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sidebar-block.sidebar-agent img {
    margin-top:15px
}
.sidebar-block.sidebar-agent h3 {
    font-family: 'museo700';
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #ee3523;
}
.sidebar-block h4 span.icon.head-shoulders {
    margin-bottom: -2px;
    background-position: -282px -53px;
}
.sidebar-block.sidebar-agent p {
    font-size: 13px;
    line-height: 18px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.sidebar-block.sidebar-agent a {
    color: #888;
}
.sidebar-block.sidebar-agent p span.glyphicon {
    margin-left: -15px;
}
.btn-auction,
.btn-send-email,
.btn-profile {
    font-family: 'museo700';
    background-color: #888;
    color: #fff;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}
.btn-send-email,
.btn-send-email:hover {
    background-color: #ee3523;
}
.btn-profile,
.btn-profile:hover {
    background-color: #888;
}
.btn-auction:hover,
.btn-send-email:hover,
.btn-profile:hover {
    color: #fff;
}
.sidebar-auction button {
    margin-bottom: 15px;
}
.auction-map {
    display: none;
    margin-bottom: 15px;
}

/* OUR PEOPLE */
.our-people-agent-block span.manager {
  color:#ee3523;
}

.our-people-filter .btn-group {
    width: 100%;
    padding-right: 15px;
}
.our-people-section-heading h1 {
    color: #00275e;
    font-size: 30px;
    padding-top: 15px;
}

.our-people-section-heading.with-border h1 {
    border-top: 1px solid #ddd;
}

.our-people-header {
    position: relative;
    padding-left: 60px !important;
}
.our-people-header:before {
    content: '';
    display: block;
    position: absolute;
    height: 45px;
    width: 45px;
    left: 15px;
    top: 16px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -405px -145px;
    background-repeat: no-repeat;

}
@media (max-width: 991px) {
    .our-people-header:before {
        top: 3px;
    }
}
.our-people-header h1 {
    color: #ee3523;
    font-size: 24px;
    margin: 15px 0 2px 0;
}
.our-people-header a {
    color: #888;
}
.our-people-header button {
    margin-top: 25px;
    font-family: 'museo700';
    color: #fff;
}
.our-people-header button.btn:hover {
    color: #fff;
}
.our-people-header button.btn-listings {
    background-color: #ee3523;
}
.our-people-header button .glyphicon {
    color: #fff;
}
.our-people-header .icon {
    width: 16px;
    height: 16px;
    margin-top: -1px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.our-people-header .icon.icon-email {
    background-position: -224px -145px;
}
.our-people-header .glyphicon {
    color: #ee3523;
}
.our-people-agent-block > div {
    margin: 0 0 30px 0;
    background-color: #fff;
    border-radius: 5px;
}
.our-people-agent-block h3 {
    margin: 26px 0 0 0;
    color: #00275e;
    font-size: 16px;
    font-family: 'museo700';
    font-weight: normal;
}
.our-people-agent-block p.position {
  font-family: 'museo300';
  font-weight: bold;
  color: #ee3523;
  margin-bottom: 5px;
}
.our-people-agent-block p.position.position-manager {
  color: #18BDC3;
}
.our-people-agent-block p {
    margin-bottom: 2px;
    font-size: 13px;
}
.our-people-agent-block a {
    color: #888;
}
.our-people-agent-image,
.our-people-agent-text {
    height: 155px;
    overflow: hidden;
    position: relative;
}
.our-people-agent-image {
  width: 116px;
  margin-left: 18px;
  float: left;
}
.our-people-agent-text {
  margin-left: 152px;
}
@media (min-width: 768px) {
  .our-people-agent-image,
  .our-people-agent-text {
      height: 200px;
  }
}
@media (min-width: 1081px) {
  .our-people-agent-image,
  .our-people-agent-text {
      height: 155px;
  }
}

.our-people-agent-image > div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    transform:translate(-50%, -50%);
    border-radius: 50%;
    overflow:hidden;
}
.our-people-agent-image img {
    max-width: 160px;
    position: relative;
    width: 100%;
}

.icon.icon-email-gray,
.icon.icon-our-people-gray {
    width: 14px;
    height: 14px;
    margin-top: -1px;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
}
.icon.icon-email-gray {
    background-position: -313px -145px;
}
.icon.icon-our-people-gray {
    background-position: -435px -19px;
}

/* AGENTS */

.sidebar-agent.agent-page h3 {
    margin-bottom: 10px;
}
.sidebar-agent.agent-page h6 {
    margin-top: -5px;
    color: #ee3523;
    font-size: 16px;
}
.sidebar-agent .agent-social-row {
    margin: 10px 0;
}
.sidebar-agent .agent-social-row p {
    padding: 0;
}
.sidebar-agent .agent-social-row ul.social-row {
    padding-left: 0;
}
.sidebar-agent .agent-social-row ul.social-row li {
    vertical-align: middle;
}
.sidebar-agent .agent-social-row ul.social-row li.social-row-heading {
    color: #ee3523;
    margin-right: 10px;
}

.agent-tabs {
    padding-right: 0;
}
@media (min-width: 768px) {
  .agent-tabs ul.nav-tabs li {
    width: 25%;
  }
}
.agent-tabs ul.nav-tabs li a {
    font-family: 'museo700';
    font-size: 16px;
    color: #888;
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #ddd;
    border-radius: 0;
}
.agent-tabs ul.nav-tabs > li > a:hover {
    border-color: #ddd;
    border-bottom-color: transparent;
}
.agent-tabs ul.nav-tabs li.active a {
    background-color: #fff;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    color: #00275e;
}
.agent-tabs ul.nav-tabs li a span.glyphicon,
.agent-tabs ul.nav-tabs li.active a span.glyphicon {
    color: #ee3523;
    margin-right: 3px;
}
.agent-tabs ul.nav-tabs li a span.icon {
    width: 20px;
    height: 20px;
    margin: -3px 3px 0 0;
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
}
.agent-tabs ul.nav-tabs li a span.icon-info {
    background-position: -166px -145px;
}
.agent-tabs ul.nav-tabs li a span.icon-feedback {
    background-position: -241px -145px;
}

.agent-tab-content h1 {
    color: #00275e;
    font-size: 30px;
    padding-top: 30px;
}
.agent-tab-content h1.grad {
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 50%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 50%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
.agent-tab-content .tab-pane {
    margin-top: 1px;
}
.agent-tab-content-pane {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.btn-view-all {
    background-color: #00275e;
    font-family: 'museo700';
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
}
.btn-view-all:hover {
    color: #fff;
}
ul.feedback {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.feedback li {
    margin: 0 0 30px 0;
    padding: 0;
}
ul.feedback li p.quote {
    position: relative;
    margin: 0px;
    padding: 0 40px;
}
ul.feedback li p.quote:before,
ul.feedback li p.quote:after {
    font-family: Georgia, serif;
    display: block;
    position: absolute;
    font-size: 100px;
    line-height: 50px;
    color: #eee;
}
ul.feedback li p.quote:before {
    top: 15px;
    left: 0;
    content: '\201C';
}
ul.feedback li p.quote:after {
    bottom: -35px;
    right: 0;
    content: '\201D';
}
ul.feedback li p.credit {
    text-align: right;
    font-style: italic;
    font-size: 13px;
}

/* SEARCH RESULTS */

.our-people-results-separator {
    border-top: 1px solid #ddd;
    margin: 10px 0 0 0;
    padding-top: 10px;
}
.our-people-results-separator .container {
    margin: 0 -15px;
}


/* AC: added from style.css Pt.5 */

#mortgage-calculator {
    padding: 0;
    background-color: transparent;
    border: none;
}
#mortgage-calculator, #mortgage-calculator h3 {
    color: #fff;
    margin: 0;
    font-family: Century Gothic;
}
#mortgage-calculator .slider-handle {
    background-color: #0063A5;
}
#mortgage-calculator .blue-bg h3 {
    padding-left: 10px;
    cursor:pointer;
}
#mortgage-calculator h3 img{
    margin-right: 5px;
    height: 20px;
    width: auto;
}
#mortgage-calculator h3 {
    font-size: 18px;
}
#mortgage-calculator .lblue-bg h3 {
    font-size: 12px;
    text-transform: uppercase;
    width: 120px;
    float: left;
}
#mortgage-calculator .lblue-bg #repayment {
    float:right;
    font-size: 16px;
    font-weight: bold;
}
#mortgage-calculator  .head {
    padding: 10px;
}
#mortgage-calculator .rounded {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
#mortgage-calculator .blue-bg {
    background-color: #0063a6;
}
#mortgage-calculator .lblue-bg {
    display: none;
/*    background: #0e76ad url('/eves_property/img/blue-bg.jpg') repeat-x top left; */
}
#mortgage-calculator .white-bg {
    border: 1px solid #005c95;
    background-color: #ffffff;
    color: #2a2a2a;
    padding: 10px;
    font-size: 10px;
}
#mortgage-calculator form>div {
    margin-bottom: 10px;
}
#mortgage-calculator form>div>span {
    color: #026faa;
}
#mortgage-calculator form input, #mortgage-calculator form select {
    color: #2a2a2a;
    padding: 2px 5px;
}
#mortgage-calculator .input1 input, #mortgage-calculator .input2 input {
    width: 100px;
}
#mortgage-calculator .input1 label, #mortgage-calculator .input2 label {
    width: 120px;
    float: left;
}
#mortgage-calculator .slider1 label {
    width: 80px;
}
#mortgage-calculator .slider1 input {
    width: 30px;
}
#mortgage-calculator .slider2 label {
    width: 60px;
}
#mortgage-calculator .slider2 input {
    width: 40px;
}
#mortgage-calculator .input3 label {
    width: 130px;
    float: left;
}
#mortgage-calculator .buttons .button {
    padding: 10px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#mortgage-calculator .buttons .button:hover {
    text-decoration: none;
}
#mortgage-calculator .buttons .button.lblue {
    background: #0e76ad url('/eves_property/img/blue-bg.jpg') repeat-x top left;
}
#mortgage-calculator .buttons .button.blue {
    background-color: #002c59;
}
#mortgage-calculator .mortgage-footer p {
    color: #002e5c;
    font-size: 13px;
    font-weight: bold;
    font-family: Century Gothic, Arial;
}
#mortgage-calculator .mortgage-footer p>img {
    margin-left: 15px;
}
#mortgage-calculator .mortgage-footer p>span {
    color: #0063a6;
    font-size: 15px;
}
#mortgage-calculator .mortgage-footer p.small a {
    color: #afafaf;
    font-size: 11px;
    font-weight: normal;
}
#mortgage-calculator .slider.slider-horizontal .slider-track {
    right: 5px;
    width: auto;
}
#mortgage-calculator .slider.slider-horizontal .slider-handle {
    margin-left: -5px;
}
#mortgage-calculator #mortgage-terms p{
    margin-bottom: 0;
}
#mortgage-calculator #mortgage-terms{
    padding: 10px;
    font-style: italic;
    font-size: 10px;
    display: none;
}
#mortgage-calculator #mortgage-terms .button.terms.up {
    background-color: #002c59;
    font-weight: nortmal;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    float: right;
}

/* ADDED FOR VEGA CALCULATOR */

#mortgage-calculator.vega-calculator,
#mortgage-calculator.vega-calculator span,
#mortgage-calculator.vega-calculator h3,
#mortgage-calculator.vega-calculator label,
#mortgage-calculator.vega-calculator a,
#mortgage-calculator.vega-calculator #mortgage-terms p{
  font-family: 'Segoe UI';
  color: #5a5a5a;
}
#mortgage-calculator.vega-calculator .blue-bg .head {
  padding: 10px 20px;
}
#mortgage-calculator.vega-calculator .blue-bg .head h3 img {
  margin-top: -4px;
}
#mortgage-calculator.vega-calculator .blue-bg .head h3 {
  color: #fff;
  padding-left: 0;
}
#mortgage-calculator.vega-calculator .lblue-bg .head h3 {
  color: #5a5a5a;
}
#mortgage-calculator.vega-calculator .lblue-bg .head #repayment {
  color: #a1034e;
}
#mortgage-calculator.vega-calculator .buttons .button.lblue,
#mortgage-calculator.vega-calculator .buttons .button.blue,
#mortgage-calculator.vega-calculator .blue-bg {
  background: rgb(161,3,78);
  background: linear-gradient(90deg, rgba(161,3,78,1) 0%, rgba(130,2,63,1) 100%);
}
#mortgage-calculator.vega-calculator .lblue-bg {
  background-color: #ededed;
}
#mortgage-calculator.vega-calculator .white-bg {
  font-size: 11px;
  border: none;
  padding: 20px;
  padding-bottom: 0;
}
#mortgage-calculator.vega-calculator .slider-handle {
  background-color: #a1034e;
}
#mortgage-calculator.vega-calculator select,
#mortgage-calculator.vega-calculator input {
  border: 1px solid #cccccc;
  padding: 5px 10px;
  border-radius: 5px;
}
#mortgage-calculator.vega-calculator .input1 label,
#mortgage-calculator.vega-calculator .input2 label,
#mortgage-calculator.vega-calculator .input3 label {
  width: 50%;
  padding-top: 5px;
}
#mortgage-calculator.vega-calculator .input1 span,
#mortgage-calculator.vega-calculator .input2 span,
#mortgage-calculator.vega-calculator .input3 span {
  display: inline-block;
  width: 50%;
  color: #a1034e;
}
#mortgage-calculator.vega-calculator .slider1 span,
#mortgage-calculator.vega-calculator .slider2 span {
  color: #a1034e;
}
#mortgage-calculator.vega-calculator .input1 input,
#mortgage-calculator.vega-calculator .input2 input,
#mortgage-calculator.vega-calculator .input3 select {
  width: calc(100% - 10px);
  color: #8b8b8b;
}
#mortgage-calculator.vega-calculator .slider1 input,
#mortgage-calculator.vega-calculator .slider2 input {
  margin: 0 4px;
  color: #8b8b8b;
}
#mortgage-calculator.vega-calculator .slider1 input {
  width: 35px;
}
#mortgage-calculator.vega-calculator .slider2 input {
  width: 45px;
}
#mortgage-calculator.vega-calculator .input3 select {
  margin-left: 10px;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo {
  margin: 20px 0;
  vertical-align: middle;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo-button {
  display: inline-block;
  width: calc(100% - 100px);
  vertical-align: middle;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo-button a {
  display: inline-block;
  color: #a1034e;
  font-size: 12px;
  border: 1px solid #a1034e;
  line-height: 20px;
  border-radius: 12px;
  padding: 1px 10px 3px 10px;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo-button a:hover {
  background-color: #a1034e;
  color: #fff;
  text-decoration: none;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo-logo {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  width: 90px;
}
#mortgage-calculator.vega-calculator .mortgage-footer .button-logo-logo img {
  width: 100%;
  max-width: 100%;
}
#mortgage-calculator.vega-calculator .mortgage-footer p {
  margin: 0;
  padding: 10px 0;
}
#mortgage-calculator.vega-calculator .mortgage-footer p.small {
  background: rgb(161,3,78);
  background: linear-gradient(90deg, rgba(161,3,78,1) 0%, rgba(130,2,63,1) 100%);
  color: #fff;
  margin: 0 -20px;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#mortgage-calculator.vega-calculator .mortgage-footer p.small a {
  color: #fff;
}
#mortgage-calculator.vega-calculator #mortgage-terms {
  background-color: #fff;
  margin-top: -10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#mortgage-calculator.vega-calculator #mortgage-terms p {
  padding: 10px 20px;
}
#mortgage-calculator.vega-calculator #mortgage-terms .button.terms.up {
  background-color: #a1034e;
}

/* AC: added from style.css Pt.6 */

.sidebar-box {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid #d2d2d2;
    padding: 15px 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow:    0px 0px 10px 0px rgba(50, 50, 50, 0.25);
    box-shadow:         0px 0px 10px 0px rgba(50, 50, 50, 0.25);
}
.sidebar-box.white {
    background-color: #fff;
}
.sidebar-box.blue {
    background-color: #00275e;
    color: #fff;
}
.sidebar-box.blue h4{
    color: #fff;
}
.sidebar-box h4{
    font-size: 25px;
    color: #2c2c2c;
}

.btn.btn-red {
    background-color: #ef2f20;
    padding: 6px 12px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.btn.btn-red:hover {
  color: #333;
}
.btn.btn-red span.glyphicon {
  margin-top:-3px;
  margin-left:2px;
  margin-right:2px;
}

.sidebar-box.newsletter label {
    color: #ef2f20;
    font-weight: bold;
    font-size: 12px;
}
.sidebar-box.newsletter input[type=email],.sidebar-box.newsletter input[type=text] {
    width: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: none;
    padding: 5px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

/*Sidebar*/
.sidebar-links {
    list-style: none;
    padding:0 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.sidebar-links li span.glyphicon {
    font-size: 12px;
    color: #ee3523;
    position: absolute;
    top: 5px;
}
.sidebar-links li a {
    padding-left: 20px;
    display: block;
    color: #8A8A8A;
}
.sidebar-links li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #E7E7E7;
}
/*Heart Icon Popup*/
.heart-container{
    position:relative;
    float: right;
}
.heart-popup .arrow-down{
    border-top-color: #ee3523;
    bottom: -7px;
    right: 5px;
    margin-right: -2px;
    position: absolute;
}
.heart-popup {
    width: 180px;
    padding: 5px;
    text-align: center;
    display: none;
    position: absolute;
    top: -50px;
    right: 0;
    background-color: #ee3523;
    font-weight: normal;
    font-size: 11px;
    z-index: 1000;
    color: white;
    border-radius: 2px;
}
.topCounter{
    position: absolute;
    display: none;
    top: -7px;
    right: -7px;
    background-color: #00275e;
    border-radius: 10px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    border: 1px solid white;
}
a.listing-close {
    position: absolute;
    top: -15px;
    right: 5px;
    z-index:100;
}
.error-message {
    font-weight:bold;
    text-align: center;
    color:#ef2f20;
    border: 1px solid #ef2f20;
    padding: 10px;
}

/*CSS arrows*/
.arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom:10px solid black;
}
.arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f00;
}
.arrow-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-left: 10px solid green;
}
.arrow-left {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-right:10px solid blue;
}

ul.sitemap li>strong{
    color:#00275e;
}
ul.sitemap li>ul li:before{
    display: none;
}

.listing-grid.competition-lbx-winner{
    padding-bottom: 13px;
}

/*
.listing-grid:nth-child(3n){
    padding-bottom: 15px;
}
*/
.listing-grid {
    padding-bottom: 15px;
}

@media (min-width: 768px ) {
    /*
    .listing-grid:nth-child(3n){
        padding-bottom: 13px;
    }
    .listing-grid:nth-child(2n){
        padding-bottom: 15px;
    }
    */
}
@media (min-width: 993px) {
    /*
    .listing-grid {
        padding-bottom: 15px;
    }
    */
}

.listing-grid.competition-lbx-winner>div{
    border-color: #E52233;
    border-width:2px;
}
.listing-list.competition-lbx-winner>div{
    border-color: #E52233;
    border-width:2px;
}
.detail-image-block.competition-lbx-winner {
    border-color: #E52233;
    border-width:2px;
}
.lbxCompetitionImage{
    cursor:pointer;
}
.competition-lbx-winner-overlay{
    position: absolute;
    top: 70px!important;
    left: 160px!important;
    right: 0;
    z-index: 100;
    background: transparent url('/eves_property/img/letterbox.png') center center;
    background-size: 25% auto!important;
    background-repeat: no-repeat;
    background-position: bottom 72px right 190px!important;
}
.listing-list .competition-lbx-winner-overlay{
    background-position: bottom 70px right 190px!important;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .competition-lbx-winner-overlay{
        left: 30px!important;
        top: 20px!important;
        background-position: bottom 20px right 60px!important;
    }
    .listing-list .competition-lbx-winner-overlay{
        background-position: bottom 22px right 60px!important;
    }
}
@media only screen and (min-width: 767px) and (max-width: 992px) {
    .competition-lbx-winner-overlay{
        left: 30px!important;
        top: 20px!important;
        background-position: bottom 22px right 60px!important;
    }
    .listing-list .competition-lbx-winner-overlay{
        background-position: bottom 20px right 60px!important;
    }
}

/*------ BLOG SIDEBAR ------ */

ul.blog-archive-month li {
    position: relative;
    padding: 0;
}
ul.blog-archive-month li a {
    text-decoration: none;
    border-radius: 4px;
    padding: 3px 0 3px 16px;
    display: block;
}
ul.blog-archive-month li a:hover {
    text-decoration: none;
    background-color: #e7e7e7;
}
ul.blog-archive-month li > span {
    position: absolute;
    top: 5px;
    left: 0;
}
ul.blog-archive-post {
    padding-left: 15px;
    margin-top: 5px;
}
ul.blog-archive-post li {
    margin-bottom: 2px;
}
ul.blog-archive-post li a {
    position: relative;
    display: block;
    padding: 3px 5px 3px 30px;
    border-radius: 4px;
    color: #727272;
    line-height: 18px;
    min-height: 27px;
}
ul.blog-archive-post li a:hover {
    text-decoration: none;
    background-color: #e7e7e7;
}
ul.blog-archive-post li a span {
    position: absolute;
    width: 23px;
    height: 23px;
    top: 1px;
    left: 1px;
    margin: 1px;
    background-color: #fff;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
ul.blog-archive-post li a span b,
ul.blog-archive-post li a span i {
    display: block;
    text-align: center;
}
ul.blog-archive-post li a span b {
    padding-top: 1px;
    font-size: 12px;
    line-height: 12px;
}
ul.blog-archive-post li a span i {
    font-size: 7px;
    line-height: 10px;
    background-color: #ccc;
    color: #fff;
    font-style: normal;
}

/* ADDED 19th SEPT 2021 */

.city-pages-header {
    color: #00275e;
}
.city-pages-agents  .our-people-header {
    padding-left: 0 !important;
}
.city-pages-agents .our-people-header:before {
    display: none;
}
.city-pages-agents .our-people-agent-block > div {
  margin-bottom: 0;
}
.city-pages-agents .our-people-agent-text,
.city-pages-agents .our-people-agent-image {
  height: 157px;
  overflow: hidden;
  position: relative;
}
.city-pages-agents .our-people-agent-text {
  margin-left:0;
}
.city-pages-agents .our-people-agent-image {
  width: 116px;
  margin-left: 0;
}
.city-pages-agents .our-people-agent-text h3 {
  margin-top:15px;
  color: #00275e;
  font-size: 18px;
  font-family: 'museo300';
}
.city-pages-agents .our-people-agent-text p {
  color: #888;
  font-weight: normal;
}
.city-pages-agents .our-people-agent-image > div {
  transform:none;
  transform:translateX(-50%);
}
.city-pages-agents .our-people-agent-image img {
    max-width: 160px;
    position: relative;
    width: 100%;
}
.map-address h4 {
margin-top: 30px;
margin-bottom: 4px;
  font-family: 'museo700';
  font-size: 16px;
  color: #ee3523;
}
.map-address a {
  text-decoration: none;
  color: #888;
}
.map-address .glyphicon {
  top: 3px;
  color: #ee3523;
}
.map-address .icon {
  width: 16px;
  height: 16px;
  margin-top: -1px;
  display: inline-block;
  vertical-align: middle;
  background: url('/eves_property/img/v3/eves-sprites.png');
  background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
  background-repeat: no-repeat;
  background-color: transparent;
}
.map-address .icon.icon-email {
  background-position: -224px -145px;
}

/* AC: added from style.css Pt.7 */
/* QUICK SEARCH ?? */

.search-block.under-carousel {
    margin-top: -50px;
    position: relative;
}
.search-block.under-carousel:before {
    display: block;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 311px;
    height: 30px;
    margin-top: -29px;
    margin-right: 16px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -120px -73px;
    background-repeat: no-repeat;
}
.search-block.under-carousel.home-quick-search:before {
    display: none;
}
.search-quick-search {
    position: relative;
    z-index: 2;
}

.search-block div.search-for-quick-search,
.search-block div.search-for-quick-search p {
    padding-right: 0;
}
.search-block div.search-for-quick-search p span {
    font-family: 'museo300';
    display: inline-block;
    background-color: #ee3523;
    padding: 5px 0 5px 10px;
    line-height: 20px;
    width: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.search-block div.search-for-quick-search p span i {
    font-family: 'museo300';
    font-style: normal;
}
.search-block div.search-for-quick-search-input {
    border-top-right-radius: 5px;
    padding-left: 0;
    height: 50px;
}
@media (max-width: 1200px) and (min-width: 767px) {
    .search-block div.search-for-quick-search p span i {
        display: none;
    }
}
@media (max-width: 991px) {
    .search-block .nav-wrapper ul li a span.glyphicon {
        display: none;
    }
}
@media (max-width: 991px) and (min-width: 767px) {
    .search-block div.search-for-quick-search p {
        font-size: 14px;
    }
    .search-block div.search-for-quick-search p span i {
        display: none;
    }
    .search-block div.search-for-quick-search-input {
        border-top-right-radius: 0;
    }
}
.search-for-quick-search-input form {
    margin-top: 12px !important;
}
@media (max-width: 767px) {
    .search-block div.search-for-quick-search {
        padding-right: 15px;
    }
    .search-block div.search-for-quick-search p {
        line-height: 30px;
        padding-top: 10px;
    }
    .search-block div.search-for-quick-search p span {
        border-radius: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
    .search-block div.search-for-quick-search-input {
        padding-left: 15px;
        height: 38px;
    }
    .search-block div.search-for-quick-search-input form {
        margin-top: 0 !important;
    }
    .search-block div.search-for-quick-search-input form b {
        display: none;
    }
    .search-block div.search-for-quick-search-input form input {
        padding-left: 10px;
        border-radius: 0;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
}
.search-block div.search-for-quick-search-input p {
    padding-left: 0;
}
.search-block div.search-for-quick-search-input p form {
    display: inline-block;
    padding: 5px 0 5px 10px;
    line-height: 20px;
    height: 30px;
    width: 100%;
    text-transform: uppercase;
}

/* SEARCH BAR TOP ROW */

.nav-wrapper {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border: none;
}
.nav-wrapper ul {
    display: table-row;
}
.nav-wrapper li {
    display: table-cell;
    margin: 0;
    border-right: 1px solid #fff;
}


/*.nav-wrapper div:nth-child(1) { width: 16%; } /* residential */
/*.nav-wrapper div:nth-child(2) { width: 13%; } /* lifestyle */
/*.nav-wrapper div:nth-child(3) { width: 10%; } /* rural */
/*.nav-wrapper div:nth-child(4) { width: 12%; } /* sections */
/*.nav-wrapper div:nth-child(5) { width: 14%; } /* rentals */
/*.nav-wrapper div:nth-child(6) { width: 19%; } /* commercial */
/*.nav-wrapper div:nth-child(7) { width: 16%; } /* our people */

.search-block .search-top-row .nav-wrapper ul li a {
    text-align: center;
    padding: 0;
    font-size: 16px;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .search-block .search-top-row .nav-wrapper ul li a {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .nav-wrapper ul li {
        border-bottom: 1px solid #fff;
    }
    .nav-wrapper ul li:nth-child(7) {
        border-right: none;
    }
}
@media (max-width: 479px) {
    .nav-wrapper {
        display: block;
    }
    .nav-wrapper ul {
        padding: 0;
        margin: 0;
        display: block;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-wrapper ul li {
        display: inline-block;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
        margin-left: -1px;
        margin-top: -1px;
    }
    .nav-wrapper ul li:nth-child(7) {
        border-right: 1px solid #fff;
    }
    .search-block .search-top-row .nav-wrapper ul li a {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*
            .nav-wrapper div:nth-child(3) {
                    border-right: none;
            }
    */
    /*	.nav-wrapper div:nth-child(1) { width: 40%; } /* residential */
    /*	.nav-wrapper div:nth-child(2) { width: 30%; } /* lifestyle */
    /*	.nav-wrapper div:nth-child(3) { width: 30%; } /* rural */
    /*	.nav-wrapper div:nth-child(4) { width: 30%; } /* sections */
    /*	.nav-wrapper div:nth-child(5) { width: 25%; } /* rentals */
    /*	.nav-wrapper div:nth-child(6) { width: 45%; } /* our people */
    .search-block.under-carousel::before {
        display: none;
    }
    #home-carousel .carousel-caption h1 {
        line-height: 30px;
        font-size: 26px;
    }
}
.search-block .search-top-row {
    padding: 0;
}
.search-block .search-top-row > div.dark {
    background-color: #00275e;
}
.search-block .search-top-row a,
.search-block .search-top-row p,
.search-block .search-top-row form {
    display: block;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 50px;
    /* 	padding: 0 15px; */
    font-size: 16px;
    font-family: 'museo300';
}
@media (max-width: 479px) {
    .search-block .search-top-row a {
        line-height: 40px;
    }
}
.search-block .search-top-row a:hover {
    text-decoration: none;
}
.search-block ul li.search-current {
    position: relative;
    background-color: #ee3523 !important;
}
.search-block ul li.search-current .icon.icon-our-people {
    background-position: -329px -145px;
}
.search-block ul li.search-current a {
    text-decoration: none;
}
@media (min-width: 767px) {
    .search-block ul li.search-current:after {
        content: '';
        display: block;
        position: absolute;
        right: 50%;
        bottom: 0;
        margin-right: -10px;
        margin-bottom: -10px;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #ee3523;
        z-index: 1;
    }
}
@media (min-width: 992px) {
    .search-block div.search-for-rent a:after {
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
    }
}
.search-block div.search-for-sale {
    border-top-left-radius: 5px;
}
.search-block div.search-for-quick-search,
.search-block div.search-for-quick-search p {
    padding-right: 0;
}
.search-block div.search-for-quick-search p span {
    font-family: 'museo300';
    display: inline-block;
    background-color: #ee3523;
    padding: 5px 0 5px 10px;
    line-height: 20px;
    width: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.search-block div.search-for-quick-search p span i {
    font-family: 'museo300';
    font-style: normal;
}
.search-block div.search-for-quick-search-input {
    border-top-right-radius: 5px;
    padding-left: 0;
    height: 50px;
}
@media (max-width: 1200px) and (min-width: 767px) {
    .search-block div.search-for-quick-search p span i {
        display: none;
    }
}
@media (max-width: 991px) {
    .search-block .nav-wrapper ul li a span.glyphicon {
        display: none;
    }
}
@media (max-width: 991px) and (min-width: 767px) {
    .search-block div.search-for-quick-search p {
        font-size: 14px;
    }
    .search-block div.search-for-quick-search p span i {
        display: none;
    }
    .search-block div.search-for-quick-search-input {
        border-top-right-radius: 0;
    }
}
.search-for-quick-search-input form {
    margin-top: 12px !important;
}
@media (max-width: 767px) {
    .search-block div.search-for-quick-search {
        padding-right: 15px;
    }
    .search-block div.search-for-quick-search p {
        line-height: 30px;
        padding-top: 10px;
    }
    .search-block div.search-for-quick-search p span {
        border-radius: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
    .search-block div.search-for-quick-search-input {
        padding-left: 15px;
        height: 38px;
    }
    .search-block div.search-for-quick-search-input form {
        margin-top: 0 !important;
    }
    .search-block div.search-for-quick-search-input form b {
        display: none;
    }
    .search-block div.search-for-quick-search-input form input {
        padding-left: 10px;
        border-radius: 0;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
}
.search-block div.search-for-quick-search-input p {
    padding-left: 0;
}
.search-block div.search-for-quick-search-input p form {
    display: inline-block;
    padding: 5px 0 5px 10px;
    line-height: 20px;
    height: 30px;
    width: 100%;
    text-transform: uppercase;
}
.icon.icon-our-people {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: -282px -53px;
    margin-top: -2px;
}
.search-block .search-top-row form {
    padding-left: 0;
    position: relative;
}
.search-block .search-top-row form input {
    display: inline-block;
    width: 100% !important;
    border: none;
    height: 30px;
    border-radius: 0;
    margin-top: -2px;
    padding-left: 20px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media (max-width: 767px) {

}
/* .search-block div form input:after { */
.search-block .search-top-row form b {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 10px solid #ee3523;
}
.search-block .search-top-row form button {
    position: absolute;
    right: 0;
    /* top: 10px; */
	top: -1px;
    border: none;
    height: 28px;
    color: #555;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

#property-carousel .carousel-item {
    height: 100%;
}
#property-carousel .carousel-item:after {
    display: none;
}
#property-carousel .cards-wrapper {
    display: flex;
    justify-content: center;
    margin-left:-6px;
    margin-right:-6px;
    margin-bottom:12px;
}
#property-carousel .carousel-item .card {
    flex: 1 1 0;
    margin-left:6px;
    margin-right:6px;
}
#property-carousel .carousel-control-next,
#property-carousel .carousel-control-prev {
    position: relative;
    display: inline-block;
    width: auto;
    color: var(--red);
    text-align: left;
    opacity: 1;
}

.featured-city-carousel .carousel-item {
	height: 100%;
}


/* FOOTER */
.footer-row {
    margin-top: 70px;
    background: #2b2b2b; /* Old browsers */
    background: -moz-linear-gradient(top,  #2b2b2b 0%, #000000 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b2b2b), color-stop(100%,#000000)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #2b2b2b 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #2b2b2b 0%,#000000 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #2b2b2b 0%,#000000 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #2b2b2b 0%,#000000 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b2b2b', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.footer-row.sold-sign {
    margin-top: 100px;
}
.footer-row .container {
    position: relative;
}
.footer-row > .container-footer:before {
    display: block;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 435px;
    height: 35px;
    margin-top: -35px;
    margin-right: 16px;
    background: var(--bg-grey) url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: 0 -105px;
    background-repeat: no-repeat;
}
.footer-row.sold-sign > .container:after {
    display: block;
    position: absolute;
    content: '';
    left: 15px;
    top: 0;
    width: 100px;
    height: 100px;
    margin-top: -100px;
    background-image: url('/eves_property/img/sold-sign.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-row h4 {
    color: #fff;
    margin-top: 30px;
}
.footer-row p {
    font-size: 12px;
    color: #767676;
}
.footer-row ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-row ul li {
    margin: 0 0 3px 0;
}
.footer-row ul li span {
    margin: 0;
}

.footer-row.light-theme {
    background: #D9D9D9; /* Old browsers */
    background: -moz-linear-gradient(top,  #D9D9D9 0%, #ffffff 20%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D9D9D9), color-stop(20%,#ffffff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #D9D9D9 0%,#ffffff 20%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #D9D9D9 0%,#ffffff 20%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #D9D9D9 0%,#ffffff 20%); /* IE10+ */
    background: linear-gradient(to bottom,  #D9D9D9 0%,#ffffff 20%); /* W3C */
}
.footer-row.light-theme h4 {
    color: #00275e;
}
.footer-row.light-theme b {
    color: #767676;
}
.footer-row.light-theme > .container-footer:before {
    display: block;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 435px;
    height: 35px;
    margin-top: -35px;
    margin-right: 16px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: 0 -240px;
    background-repeat: no-repeat;
}
.footer-row.light-theme span.logo {
    display: block;
    position: absolute;
    margin: 0;
    top: 59px;
    right: 15px;
    width: 104px;
    height: 22px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -305px -215px;
    background-repeat: no-repeat;
}
.page-content ul>li>a:visited {
    color: #551A8B;
}

ul.social-row li {
    display: inline-block;
}
ul li span.icon {
    display: inline-block;
    vertical-align: middle;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-repeat: no-repeat;
    background-color: #ee3523;
    width: 16px;
    height: 16px;
    border-radius: 8px;
}
ul li span.icon-mail {
    background-position: -281px -25px;
}
ul li span.icon-phone {
    background-position: -265px -25px;
}
ul.social-row li span.icon {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    margin: 0 3px 0 0;
    background-color: #888;
}
ul.social-row li span.icon:hover {
    background-color: #ee3523;
}
ul.social-row li span.icon-facebook {
    background-position: 0px -75px;
}
ul.social-row li span.icon-twitter {
    background-position: -28px -75px;
}
ul.social-row li span.icon-linkdin {
    background-position: -56px -75px;
}
ul.social-row li span.icon-google {
    background-position: -84px -75px;
}
ul.social-row li span.icon-rss {
    background-position: -150px -40px;
}
ul.social-row li span.icon-instagram {
    background-position: -420px -200px;
}
.footer-row p.fineprint {
    margin-top: 30px;
    padding: 30px 125px 30px 0;
    border-top: 1px solid #767676;
    line-height: 20px;
}
.footer-row b {
    color: #fff;
    font-weight: normal;
    white-space: normal;
}
.footer-row i {
    white-space: nowrap;
    font-style: normal;
    display: inline-block;
}

.footer-row span {
    color: #ee3523;
    display: inline-block;
    margin: 0 10px;
}
.footer-row a {
    color: #767676;
}
.footer-row a.sitemap {
    color: #ee3523;
    display: inline-block;
    margin: 0 10px 0 0;
}
.footer-row span.logo {
    display: block;
    position: absolute;
    margin: 0;
    top: 59px;
    right: 15px;
    width: 104px;
    height: 22px;
    background: url('/eves_property/img/v3/eves-sprites.png');
    background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
    background-position: -190px 0;
    background-repeat: no-repeat;
}
.footer-row .footer-script,
.footer-row .footer-script span {
    font-family: 'hand-script';
    font-weight: normal;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}
.footer-row .footer-script {
    color: #fff;
    margin: 25px 0;
}

/* AC: tweaks/patches Pt.8 */
.btn-group {
	background:#fff;
}
.dropdown-menu > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
}
.btn-group .dropdown-toggle::after {
	display: none;
	margin:0;
	vertical-align:0;
	content: "";
	border: none;
}
.btn-group .glyphicon {
	margin-left:2px;
    padding:4px;
}
.btn-default {
	background-color: #fff;
	border-color: #adadad;
}
.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open > .dropdown-toggle.btn-default {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.w-auto {
  width:auto;
}

.btn-search:hover {
	color: #333;
	background-color: var(--red);
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.close {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
}
button.close {
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

/* Glyphicons/Footer - Todo: may need filtering down */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.applied {
  border-color:#00275e;
}
.applied.form-select span.multiselect-selected-text {
  color:#00275e;
}

.dropdown-menu-end[data-bs-popper] {
	right: auto;
	left: auto;
}

#alert_suburbs input {
  margin-right:5px;
  vertical-align: middle;
}
#alert_districts input {
  margin-right:5px;
  vertical-align: middle;
}

.property-carousel .listing-price {
	/* font-family: 'museo700'; */
	font-family: Verdana, Helvetica, Arial;
	margin: 0;
	padding: 10px 15px 8px 15px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	color: #ee3523;
	font-size: 13px;
	line-height: 18px;
	font-weight: bold;
}

.property-carousel .listing-price a {
	float: right;
}

.property-carousel .listing-price a .icon.icon-heart {
	background-position: -205px -55px;
}
.property-carousel .listing-price a .icon.icon-heart.active {
	background-position: -185px -55px;
}

.property-carousel .listing-price a .icon.icon-share {
	background-position: -385px -3px;
}

.property-carousel .listing-price a .icon {
	width: 16px;
	height: 16px;
	margin-top: -4px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
	background: url('/eves_property/img/v3/eves-sprites.png');
	background-image: url('/eves_property/img/v3/eves-sprites.svg'), none;
	background-repeat: no-repeat;
	background-color: transparent;
}

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}