.top-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #E20C7C;
  width: 100%;
  height: 40px;
  padding: 0 calc(calc(100vw - 1170px) / 2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.top-nav-wrapper .top-nav-search {
  display: none;
  background-color: rgba(226, 12, 124, 0.4);
  height: 100%;
  width: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

@media (max-width: 992px) {
  .top-nav-wrapper {
    padding: 0;
    min-height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-nav-wrapper .menu-header .menu-toggle {
    line-height: 50px;
  }
  .top-nav-wrapper .right-header {
    display: none;
  }
  .top-nav-wrapper .top-nav-search {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
  }
  .top-nav-wrapper.expand {
    height: 100%;
    overflow: auto;
  }
}

.menu-header {
  height: 100%;
  width: 40px;
  background-color: rgba(226, 12, 124, 0.4);
  color: white;
  position: relative;
  z-index: 9999;
}

.menu-header .menu-toggle {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.menu-header .menu-toggle.open .ti-menu::before {
  content: "\e646" !important;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}

.menu-header::after {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: white;
  content: "\e68e";
  font-family: 'themify';
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.menu-header .mobile-alternate-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: .5rem;
  display: none;
}

.menu-header .mobile-alternate-header > span {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: .5rem .5rem;
}

.menu-header .mobile-alternate-header > span.full {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.menu-header .mobile-alternate-header > span a {
  color: #333;
  background-color: white;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 .5rem;
}

.menu-header .menu {
  display: none;
  position: absolute;
  width: 250px;
  top: 40px;
  left: 0px;
  background-color: rgba(226, 12, 124, 0.9);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .menu-header .menu {
    top: 50px;
  }
}

.menu-header .menu a {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  width: 250px;
  padding: 8px 14px;
  font-size: 15px;
  display: block;
}

.menu-header .menu.expand {
  display: block;
}

.menu-header .menu .menu-item:hover {
  background-color: rgba(226, 12, 124, 0.3);
}

.menu-header .menu .menu-item:last-child .mobile-alternate-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-header .menu .menu-item-has-children {
  position: relative;
}

.menu-header .menu .menu-item-has-children > a {
  position: relative;
}

.menu-header .menu .menu-item-has-children > a::after {
  display: block;
  width: 10px;
  height: 10px;
  font-size: 10px;
  color: white;
  content: '\e64b';
  font-family: 'themify';
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.menu-header .menu .menu-item-has-children.expand > a::after {
  content: '\e648';
}

.menu-header .menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: none;
  background-color: rgba(6, 7, 7, 0.3);
}

.menu-header .menu .sub-menu.expand {
  display: block;
}

@media (max-width: 992px) {
  .menu-header .menu.expand {
    height: auto;
    opacity: 1;
    width: 100vw;
  }
  .menu-header .menu.expand .menu-item a {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .menu-header .menu.expand {
    width: 100vw;
    height: auto;
    padding-bottom: 1.5rem;
  }
  .menu-header .menu.expand .menu-item a {
    width: 100%;
  }
  .menu-header .menu.expand .menu-item-has-children.expand > a {
    background-color: #060707;
    color: white;
  }
  .menu-header .menu.expand .menu-item .sub-menu > .menu-item {
    padding-left: 1rem;
  }
}

.logo-mobile a img {
  max-width: 70px;
}

@media (min-width: 993px) {
  .logo-mobile {
    display: none;
  }
}

@media (max-width: 992px) {
  .logo-mobile a img {
    max-width: 100px;
    margin-top: 4px;
  }
}

.second-nav-wrapper {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px calc(calc(100vw - 1170px) / 2);
  position: fixed;
  top: 40px;
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  width: 100%;
  z-index: 25;
}

.second-nav-wrapper a {
  text-decoration: none;
  color: #333;
}

.second-nav-wrapper .logo {
  width: 25%;
  max-width: 25%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}

.second-nav-wrapper .logo a img {
  max-width: 15rem;
  height: auto;
}

.second-nav-wrapper .quick-links {
  width: 75%;
  max-width: 75%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 68px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.second-nav-wrapper .quick-links .quick-section {
  text-transform: uppercase;
}

.second-nav-wrapper .quick-links .quick-section:not(:last-child) {
  border-right: 1px solid #333;
}

.second-nav-wrapper .quick-links .quick-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: 500;
  padding: 4px 14px;
  height: 100%;
}

.second-nav-wrapper .quick-links .quick-section a.active {
  color: #E20C7C;
}

.second-nav-wrapper .quick-links .quick-section a:hover {
  color: #E20C7C;
  transition: color .3s;
  text-decoration: none;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  -ms-transition: color .3s;
  -o-transition: color .3s;
}

.second-nav-wrapper .quick-links .quick-section a .small-text {
  font-size: 15px;
}

.second-nav-wrapper .quick-links .quick-section a .medium-text {
  font-size: 22px;
}

@media (max-width: 992px) {
  .second-nav-wrapper {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .second-nav-wrapper .logo {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .second-nav-wrapper .quick-links {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .second-nav-wrapper .quick-links .quick-section {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    border: 0;
  }
}

.right-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 13px;
}

.right-header a {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 0 1em;
}

.right-header a:hover {
  text-decoration: none;
  color: white;
}

.quick-search-float {
  position: fixed;
  top: 40px;
  right: calc(calc(calc(100% - 1170px) / 2) + 0px);
  background-color: transparent;
  z-index: 15;
  overflow-x: hidden;
}

.quick-search-float .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.quick-search-float form.quicksearch {
  width: 0;
  visibility: hidden;
  transition: width .5s;
  -webkit-transition: width .5s;
  -moz-transition: width .5s;
  -ms-transition: width .5s;
  -o-transition: width .5s;
}

.quick-search-float form.quicksearch.show {
  width: 100%;
  visibility: visible;
  transition: width .5s;
  -webkit-transition: width .5s;
  -moz-transition: width .5s;
  -ms-transition: width .5s;
  -o-transition: width .5s;
}

.quick-search-float form.quicksearch.show ~ .toggler .toggler-icon::before {
  content: "\e646";
}

.quick-search-float form.quicksearch .search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.quick-search-float form.quicksearch select {
  display: none;
}

.quick-search-float form.quicksearch input[type="text"] {
  height: 40px;
  line-height: 40px;
  padding: 0 .5em;
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
  min-width: 200px;
}

.quick-search-float form.quicksearch .search_btn {
  border: 0;
  height: 40px;
  line-height: 40px;
  background-color: rgba(226, 12, 124, 0.7);
  color: white;
  width: 40px;
  text-align: center;
  cursor: pointer;
}

.quick-search-float form.quicksearch .search_btn:hover {
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.quick-search-float .select-list {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.quick-search-float .select-list-item {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  text-align: center;
  background-color: rgba(226, 12, 124, 0.7);
  color: white;
  cursor: pointer;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.quick-search-float .select-list-item.selected {
  background-color: #E20C7C;
}

.quick-search-float .select-list-item:hover {
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.quick-search-float .toggler .toggler-icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: rgba(226, 12, 124, 0.7);
  color: white;
  text-align: center;
  cursor: pointer;
}

.quick-search-float .toggler .toggler-icon:hover {
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

@media (max-width: 1024px) {
  .quick-search-float {
    right: -40px;
    top: 50px !important;
  }
}

@media (max-width: 767px) {
  .quick-search-float {
    right: -40px;
    top: 50px !important;
  }
}

body:not(.home) .quick-search-float {
  top: 128px;
}

body:not(.home) .top-nav-wrapper.expand .logo-mobile {
  position: absolute;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top-nav-wrapper.expand .top-nav-search {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
}

.ui-float-search {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.ui-float-search .ui-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: white;
}

.ui-float-search .ui-menu .ui-menu-item {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  text-align: center;
  background-color: #333;
  color: white;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus, *:active {
  outline: 0 !important;
}

strong {
  font-weight: 600 !important;
}

h1.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

h2.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

h3.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

h4.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

h5.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

h6.section-title {
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
}

.btn {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.top-left {
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
}

.top-right {
  top: 0;
  left: unset;
  right: 0;
  bottom: unset;
}

.bottom-left {
  top: unset;
  left: 0;
  right: unset;
  bottom: 0;
}

.bottom-right {
  top: unset;
  left: unset;
  right: 0;
  bottom: 0;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.color-red {
  color: #ce2121 !important;
}

.color-info {
  color: #f9f8f8 !important;
}

body {
  font-family: 'Arial', 'AZGillSans','Qanelas','Montserrat', sans-serif !important;
}

@media screen and (max-width: 992px) {
  body:not(.home) #page > div[role="main"] {
    padding-top: 0 !important;
  }
}

body #page.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 992px) {
  body.overflow-hidden {
    overflow: unset !important;
  }
}

#search_results_container fieldset {
  border: 0;
}

#search_results_container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#search_results_container ul li {
  padding: 0;
  margin: 0;
}

#search_results_container .ms-drop ul {
  padding: 5px 8px;
}

#search_results_container .realty_widget_quick_search {
  background-color: #333;
  padding: 10px;
  margin-bottom: 30px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li {
  position: relative;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li > .search_selection {
  display: none;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_property_types {
  width: 25%;
  padding-right: 4px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_suburb {
  width: 25%;
  padding-right: 4px;
  height: 38px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_suburb .instruction {
  display: none;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 25%;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price .prices {
  width: 50%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding-right: 4px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 25%;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms .numberofrooms, #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms .numberofcars {
  width: 33.33%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  padding-right: 4px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent {
  margin-right: 4px;
  height: 100%;
  -webkit-appearance: none;
  height: 38px;
  background-color: transparent;
  width: 100% !important;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-choice {
  height: 100%;
  width: 100%;
  background-color: white;
  border: 0;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-choice > span {
  height: 38px;
  line-height: 38px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-choice .placeholder {
  color: #333;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-drop {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-drop label::after {
  display: block;
  clear: both;
  content: "";
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-drop input[type="checkbox"] {
  margin-left: 10px;
  float: right;
  margin-top: .3em;
  width: 0;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-drop input[type="checkbox"]:after {
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  font-family: "themify";
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-drop input[type="checkbox"]:checked::after {
  display: block;
  width: 10px;
  height: 10px;
  content: "\e64c";
  position: absolute;
  top: 0;
  right: 4px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-search input[type="text"] {
  -webkit-box-shadow: inset 0 1px 4px rgba(51, 51, 51, 0.4), inset 1px 1px 1px rgba(51, 51, 51, 0.3);
          box-shadow: inset 0 1px 4px rgba(51, 51, 51, 0.4), inset 1px 1px 1px rgba(51, 51, 51, 0.3);
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-search input[type="text"]:focus {
  -webkit-box-shadow: inset 0 1px 4px #c62355, inset 1px 1px 1px rgba(51, 51, 51, 0.3);
          box-shadow: inset 0 1px 4px #c62355, inset 1px 1px 1px rgba(51, 51, 51, 0.3);
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul select, #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  height: 38px;
  line-height: 38px;
  padding: 0 1em;
  background-color: white;
  color: #333;
  width: 100%;
  margin: 0;
  border: 0;
  -webkit-appearance: none;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul select {
  padding-right: 24px;
  background-image: url(../images/chevron-down.svg);
  background-size: 14px;
  background-position: 90%;
  background-repeat: no-repeat;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .quick_search_btn {
  width: 8%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8%;
          flex: 0 0 8%;
  margin-bottom: 0;
  height: 38px;
}

#search_results_container .realty_widget_quick_search .search_quick-wrap .quick_search_btn input[type="submit"] {
  width: 100%;
  height: 38px;
  line-height: 38px;
  padding: 0;
  border: 0;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

@media (max-width: 1024px) {
  #search_results_container .realty_widget_quick_search .search_quick-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li {
    margin-bottom: 4px;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_property_types, #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_suburb, #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price, #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms {
    width: 50%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_suburb {
    padding-right: 0;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms .numberofcars {
    padding-right: 0;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .quick_search_btn {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  #search_results_container .realty_widget_quick_search .search_quick-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li {
    margin-bottom: 6px;
    padding-right: 0 !important;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_property_types {
    width: 100%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.search_suburb {
    width: 100%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price {
    width: 100%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price .prices {
    padding-right: 6px;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.price .prices:last-child {
    padding-right: 0;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms {
    width: 100%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms .numberofrooms {
    padding-right: 6px;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li.house_rooms .numberofcars {
    padding-right: 0;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent {
    margin-right: 0;
    width: 100% !important;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .qs-ul li .ms-parent .ms-choice {
    width: 100%;
  }
  #search_results_container .realty_widget_quick_search .search_quick-wrap .quick_search_btn {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

#search_results_container .total-properties, #search_results_container .number_properties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  font-weight: normal;
  font-size: 26px;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  text-align: center;
  color: #333;
  margin-bottom: .8rem;
}

#search_results_container .total-properties strong, #search_results_container .number_properties strong {
  margin: 0 10px;
  display: inline-block;
}

.home .logo-mobile {
  display: none;
}

.home .logo {
  padding-top: 60px;
}

.home .logo a {
  text-align: center;
  padding: 10px 0 30px;
}

@media (max-width: 1024px) {
  .home .logo {
    padding-top: 60px;
  }
  .home .logo a {
    text-align: center;
  }
  .home .logo a img {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .home {
    overflow-x: hidden;
  }
  .home .logo {
    padding-top: 60px;
  }
  .home .logo a {
    text-align: center;
  }
  .home .logo a img {
    max-width: 500px;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: left;
}

.logo a img {
  max-width: 50rem;
}

@media (max-width: 767px) {
  .logo a img {
    max-width: 25rem;
  }
}

.heading-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.heading-social-media:empty {
  margin: 0;
}

.heading-social-media a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0;
  text-align: center;
  text-decoration: none;
  background-color: white;
  color: #333;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  -webkit-transition: box-shadow .3s;
  -moz-transition: box-shadow .3s;
  -ms-transition: box-shadow .3s;
  -o-transition: box-shadow .3s;
}

.heading-social-media a:not(:last-child) {
  margin-right: 20px;
}

.heading-social-media a:hover {
  color: #E20C7C;
  -webkit-box-shadow: inset 0 0 0 3px transparent, inset 0 0 0px 2px white, inset 0 0 2px px #c8c8c8;
          box-shadow: inset 0 0 0 3px transparent, inset 0 0 0px 2px white, inset 0 0 2px px #c8c8c8;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  -webkit-transition: box-shadow .3s;
  -moz-transition: box-shadow .3s;
  -ms-transition: box-shadow .3s;
  -o-transition: box-shadow .3s;
}

.heading-social-media a [class^="ti-"] {
  line-height: 2rem;
}

@media (max-width: 767px) {
  .heading-social-media {
    margin-top: 1.265rem;
    margin-bottom: 2rem;
  }
}

.grid-wrapper {
  max-width: 1170px;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
  position: relative;
  min-width: 0;
  margin-bottom: 4rem;
}

@media (min-width: 1600px) {
  .grid-wrapper {
    padding-top: 40%;
  }
}

@media (max-width: 1024px) {
  .grid-wrapper {
    padding-top: 0;
    height: auto;
  }
}

.homepage-grid {
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 20% 20% 20%;
      grid-template-columns: 20% 20% 20% 20%;
  -ms-grid-rows: 33.33% 33.33%;
      grid-template-rows: 33.33% 33.33%;
  grid-gap: 10px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 658.125px;
}

.homepage-grid .homepage-grid-item {
  background-color: rgba(226, 12, 124, 0.9);
  color: white;
  overflow: hidden;
  position: relative;
}

.homepage-grid .homepage-grid-item .wrapper {
  width: 100%;
  height: 100%;
}

.homepage-grid .homepage-grid-item .wrapper .link-to-page {
  color: white;
}

.homepage-grid .homepage-grid-item .wrapper .link-to-page div {
  width: 100%;
  height: 100%;
}

.homepage-grid .homepage-grid-item .slider-caption {
  font-size: .8em;
}

.homepage-grid .homepage-grid-item img.image-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homepage-grid .homepage-grid-item .grid-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em;
  color: white;
  font-size: 28px;
  z-index: 5;
  height: 66px;
  max-height: 66px;
  line-height: 66px;
  width: auto !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage-grid .homepage-grid-item .grid-slide-left {
  position: relative;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: left .3s ease-in;
  -webkit-transition: left .3s ease-in;
  -moz-transition: left .3s ease-in;
  -ms-transition: left .3s ease-in;
  -o-transition: left .3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-thumbnail .small-title {
  font-size: 22px;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-thumbnail .big-title {
  font-size: 32px;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: left .3s ease-in;
  -webkit-transition: left .3s ease-in;
  -moz-transition: left .3s ease-in;
  -ms-transition: left .3s ease-in;
  -o-transition: left .3s ease-in;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-content > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-content .overlay {
  display: block;
  width: 100%;
  height: auto;
  padding: .8em;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  position: absolute;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-content .overlay.overlay-top {
  top: 0;
  left: 0;
}

.homepage-grid .homepage-grid-item .grid-slide-left > .grid-content .overlay.overlay-bottom {
  bottom: 0;
  left: 0;
}

.homepage-grid .homepage-grid-item .grid-slide-left:hover > .grid-thumbnail {
  left: -100%;
  transition: left .3s ease-out;
  -webkit-transition: left .3s ease-out;
  -moz-transition: left .3s ease-out;
  -ms-transition: left .3s ease-out;
  -o-transition: left .3s ease-out;
}

.homepage-grid .homepage-grid-item .grid-slide-left:hover > .grid-content {
  left: 0;
  transition: left .3s ease-out;
  -webkit-transition: left .3s ease-out;
  -moz-transition: left .3s ease-out;
  -ms-transition: left .3s ease-out;
  -o-transition: left .3s ease-out;
}

.homepage-grid .homepage-grid-item.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

.homepage-grid .homepage-grid-item.grid-2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
}

.homepage-grid .homepage-grid-item.grid-2 .grid-thumbnail {
  color: white;
}

.homepage-grid .homepage-grid-item.grid-2 .grid-content {
  padding: 1rem;
  background-color: white;
}

.homepage-grid .homepage-grid-item.grid-2 .grid-content img {
  -o-object-fit: contain;
     object-fit: contain;
}

.homepage-grid .homepage-grid-item.grid-3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
}

.homepage-grid .homepage-grid-item.grid-3 .grid-content {
  background-image: url("https://s3-ap-southeast-2.amazonaws.com/agentbox-wp-cloud-prod/wp-content/uploads/sites/99/2019/05/16135449/cms-2-80-1611076293.jpg");
}

.homepage-grid .homepage-grid-item.grid-4 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  background: url(../images/Pentahouse.jpg) rgba(51, 51, 51, 0.5) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container .box_title {
  bottom: 0;
  left: 0;
  font-size: 28px;
  line-height: 35px;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container .box_title a:hover {
  text-decoration: none;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container .box_title .pull-right {
  float: right;
  font-size: 16px;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container .box_title .pull-right span {
  cursor: pointer;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list {
  list-style: none;
  text-align: center;
  padding: 1rem 0;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .pull-right {
  font-size: 20px;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .nano {
  width: 90%;
  margin: 1rem auto;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .nano .nano-content {
  cursor: pointer;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .nano .nano-content:hover {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  background: rgba(0, 0, 0, 0.3);
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .nano .items a {
  color: white;
}

.homepage-grid .homepage-grid-item.grid-4 .inner_box #ofi_container li.open_list .nano .items a:hover {
  text-decoration: none;
}

.homepage-grid .homepage-grid-item.grid-5 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
}

.homepage-grid .homepage-grid-item.grid-5 .grid-content {
  background-color: white;
  padding: 1rem;
}

.homepage-grid .homepage-grid-item.grid-5 .grid-content img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.homepage-grid .homepage-grid-item.grid-6 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

.homepage-grid .homepage-grid-item.grid-6 .grid-content {
  background-image: none;
  background-color: white;
  padding: 1rem;
}

.homepage-grid .homepage-grid-item.grid-6 .grid-content img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

@media (max-width: 1024px) {
  .homepage-grid .homepage-grid-item.grid-6 .grid-content {
    padding: 1rem 3rem 3rem;
  }
}

.homepage-grid .homepage-grid-item.grid-7 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / span 2;
}

.homepage-grid .homepage-grid-item.grid-8 {
  background-image: url("https://s3-ap-southeast-2.amazonaws.com/agentbox-wp-cloud-prod/wp-content/uploads/sites/99/2019/05/15155553/cms-2-78-2210557718.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4 / span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

.homepage-grid .homepage-grid-item.grid-8 .slider-news-testi .slider-item .link-to-testimonial .slider-caption p {
  padding: 0 15px 20px 15px;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .homepage-grid .homepage-grid-item.grid-8 .slider-news-testi .slider-item .link-to-testimonial .slider-caption p {
    padding-bottom: 0;
    overflow: hidden;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
  }
}

.homepage-grid .homepage-grid-item.grid-8 .slider-news-testi .slider-item .link-to-testimonial .testi-author {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: white;
}

.homepage-grid .homepage-grid-item.grid-9 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
}

.homepage-grid .homepage-grid-item.grid-9 .grid-content {
  padding: 1rem;
  background-color: white;
}

.homepage-grid .homepage-grid-item.grid-10 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5 / span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
}

.homepage-grid .homepage-grid-item.grid-10 .grid-thumbnail {
  color: white;
}

.homepage-grid .homepage-grid-item.grid-10 .grid-content {
  background-image: url("https://s3-ap-southeast-2.amazonaws.com/agentbox-wp-cloud-prod/wp-content/uploads/sites/99/2019/05/16140119/cms-2-81-2210571980.jpg");
}

.homepage-grid .homepage-grid-item .slider-nav {
  z-index: 10;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  position: absolute;
}

.homepage-grid .homepage-grid-item .slider-nav .prev, .homepage-grid .homepage-grid-item .slider-nav .next {
  color: white;
  opacity: .8;
  font-size: 2rem;
  position: absolute;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.homepage-grid .homepage-grid-item .slider-nav .prev {
  left: .5rem;
}

.homepage-grid .homepage-grid-item .slider-nav .next {
  right: .5rem;
}

@media (max-width: 1024px) {
  .homepage-grid {
    max-height: 100%;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    position: relative;
    padding: 1rem;
  }
  .homepage-grid .homepage-grid-item.grid-1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-1 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-2 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-3 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-4 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-5 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-5 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-6 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-6 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-7 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    grid-row: 7/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-7 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-8 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    grid-row: 8/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-8 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-9 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 9;
    -ms-grid-row-span: 1;
    grid-row: 9/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-9 > .wrapper {
    position: absolute;
    top: 0;
  }
  .homepage-grid .homepage-grid-item.grid-10 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 10;
    -ms-grid-row-span: 1;
    grid-row: 10/span 1;
    min-height: unset;
    height: 0;
    padding-bottom: 56.25%;
  }
  .homepage-grid .homepage-grid-item.grid-10 > .wrapper {
    position: absolute;
    top: 0;
  }
}

@media (max-width: 767px) {
  .homepage-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[10];
        grid-template-rows: repeat(10, auto);
    position: relative;
    padding: 1rem;
  }
  .homepage-grid .homepage-grid-item.grid-1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-5 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-6 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-7 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    grid-row: 7/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-8 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    grid-row: 8/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-9 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 9;
    -ms-grid-row-span: 1;
    grid-row: 9/span 1;
    min-height: 40vw;
  }
  .homepage-grid .homepage-grid-item.grid-10 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 10;
    -ms-grid-row-span: 1;
    grid-row: 10/span 1;
    min-height: 40vw;
  }
}

.slider, .media-gallery, .media-floorplan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}

@media (max-width: 992px) {
  .listings.row {
    padding: 0 0;
  }
}

@media (max-width: 767px) {
  .listings.row {
    padding: 0 5%;
  }
}

.listings .listing-item-inner {
  background-color: rgba(250, 244, 238, 0.9);
  padding: 15px;
  color: #333;
  height: 100%;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .3s ease-out;
  transition: -webkit-box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out, -webkit-box-shadow .3s ease-out;
  -webkit-transition: box-shadow .3s ease-out;
  -moz-transition: box-shadow .3s ease-out;
  -ms-transition: box-shadow .3s ease-out;
  -o-transition: box-shadow .3s ease-out;
}

.listings .listing-item-inner:hover {
  -webkit-box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7);
          box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7);
  -webkit-transition: -webkit-box-shadow .3s ease-out;
  transition: -webkit-box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out, -webkit-box-shadow .3s ease-out;
  -webkit-transition: box-shadow .3s ease-out;
  -moz-transition: box-shadow .3s ease-out;
  -ms-transition: box-shadow .3s ease-out;
  -o-transition: box-shadow .3s ease-out;
}

.listings .listing-item-inner:hover + .sticker {
  -webkit-box-shadow: 0 3px 5px rgba(51, 51, 51, 0.7);
          box-shadow: 0 3px 5px rgba(51, 51, 51, 0.7);
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  -webkit-transition: box-shadow .3s;
  -moz-transition: box-shadow .3s;
  -ms-transition: box-shadow .3s;
  -o-transition: box-shadow .3s;
}

.listings .listing-item-inner .thumbnail {
  height: unset !important;
}

.listings .listing-item-inner .listing-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (0fr)[5];
      grid-template-rows: repeat(5, 0fr);
}

.listings .listing-item-inner .listing-info > div {
  margin-bottom: 10px;
}

.listings .listing-item-inner .listing-info .suburb-listing {
  font-size: 24px;
  margin-bottom: 0;
  padding-right: 42px;
  font-weight: normal;
  line-height: 1.1;
  text-transform: uppercase;
}

.listings .listing-item-inner .listing-info .address {
  padding-bottom: 1rem;
  padding-right: 2.5rem;
}

.listings .listing-item-inner .listing-info .rooms .ico {
  margin-right: 0;
}

.listings .listing-item-inner .listing-info .rooms .ico [class^="ti-"]::before {
  color: #E20C7C;
  margin-right: 4px;
  margin-left: 2px;
}

.listings .listing-item-inner .listing-info .rooms .ico:not(:first-child) {
  margin-left: 10px;
}

.listings .listing-item-inner .listing-info .rooms .ico:not(:first-child) [class^="ti-"]::before {
  margin-left: 10px;
}

.listings .listing-item-inner .listing-info .favorite {
  position: absolute;
  right: 0;
}

.listings .listing-item-inner .listing-info .favorite > p {
  width: 32px;
  height: 32px;
  background-color: #E20C7C;
  text-align: center;
  line-height: 32px;
  display: block;
  margin-bottom: .2rem;
}

.listings .listing-item-inner .listing-info .favorite > p:hover {
  background-color: #f42d95;
}

.listings .listing-item-inner .listing-info .favorite > p a {
  color: white;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.listings .listing-item .sticker {
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  -webkit-box-shadow: 0 0 1px transparent;
          box-shadow: 0 0 1px transparent;
}

.listings .listing-item .sticker a {
  font-weight: normal;
  text-decoration: none;
  background-color: #D2196F;
  color: white;
  width: auto;
  height: 32px;
  line-height: 32px;
  padding: 0 1em;
  text-align: center;
  display: block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

@media (max-width: 767px) {
  .listings .listing-item .sticker {
    left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .listings .listing-item {
    padding-right: 0;
    padding-left: 0;
  }
}

.page_toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
}

.page_toolbar .page_prev .prev_page_link {
  background-color: #333;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
}

.page_toolbar .page_prev .prev_page_link:not(:last-child) {
  margin-right: 4px;
}

.page_toolbar .page_prev .prev_page_link:hover {
  color: white;
  background-color: #E20C7C;
  transition: background-color .3s, color .2s;
  -webkit-transition: background-color .3s, color .2s;
  -moz-transition: background-color .3s, color .2s;
  -ms-transition: background-color .3s, color .2s;
  -o-transition: background-color .3s, color .2s;
}

.page_toolbar .page_prev .prev_page_link.current_page_link {
  color: white;
  background-color: #E20C7C;
}

.page_toolbar .page_next .next_page_link {
  background-color: #333;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
}

.page_toolbar .page_next .next_page_link:not(:last-child) {
  margin-right: 4px;
}

.page_toolbar .page_next .next_page_link:hover {
  color: white;
  background-color: #E20C7C;
  transition: background-color .3s, color .2s;
  -webkit-transition: background-color .3s, color .2s;
  -moz-transition: background-color .3s, color .2s;
  -ms-transition: background-color .3s, color .2s;
  -o-transition: background-color .3s, color .2s;
}

.page_toolbar .page_next .next_page_link.current_page_link {
  color: white;
  background-color: #E20C7C;
}

.page_toolbar .page_numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.page_toolbar .page_numbers .page_link {
  background-color: #333;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
}

.page_toolbar .page_numbers .page_link:not(:last-child) {
  margin-right: 4px;
}

.page_toolbar .page_numbers .page_link:hover {
  color: white;
  background-color: #E20C7C;
  transition: background-color .3s, color .2s;
  -webkit-transition: background-color .3s, color .2s;
  -moz-transition: background-color .3s, color .2s;
  -ms-transition: background-color .3s, color .2s;
  -o-transition: background-color .3s, color .2s;
}

.page_toolbar .page_numbers .page_link.current_page_link {
  color: white;
  background-color: #E20C7C;
}

@media (max-width: 1024px) {
  .page-property .property-detail {
    max-width: 92%;
    margin: 0 auto;
  }
}

.page-property .section-gallery {
  background-color: rgba(250, 244, 238, 0.8);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto;
  width: 100%;
  max-width: 1170px;
}

.page-property .section-gallery .realty_widget_media {
  position: relative;
}

.page-property .section-gallery .slider-nav {
  top: 50%;
  z-index: 9;
}

.page-property .section-gallery .slider-nav .prev, .page-property .section-gallery .slider-nav .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  z-index: 9;
}

.page-property .section-gallery .slider-nav .prev {
  left: .5rem;
}

.page-property .section-gallery .slider-nav .next {
  right: .5rem;
}

.page-property .section-gallery .tabs-menu ~ #video {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.page-property .section-gallery .tabs-menu ~ #video > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.page-property .section-gallery .tabs-menu ~ .tns-outer#floorplans-ow {
  background-color: #333;
}

.page-property .section-gallery .tabs-menu ~ .tns-outer.tab-active .media-gallery {
  height: 100%;
}

@media (max-width: 992px) {
  .page-property .section-gallery .tabs-menu ~ .tns-outer.tab-active {
    padding-bottom: 100%;
  }
}

.page-property .section-main {
  background-color: rgba(250, 244, 238, 0.8);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1170px;
}

.page-template {
  background-image: url("../../assets/images/beachfront-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-template .page-open-inspection #page-heading, .page-template .page-auction-timetable #page-heading {
  margin-bottom: 30px;
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
}

.page-template .page-open-inspection #page-heading .tab-listing, .page-template .page-auction-timetable #page-heading .tab-listing {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.page-template .page-open-inspection #page-heading .tab-listing > div, .page-template .page-auction-timetable #page-heading .tab-listing > div {
  min-width: 40px;
  height: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.page-template .page-open-inspection #page-heading .tab-listing > div:hover, .page-template .page-auction-timetable #page-heading .tab-listing > div:hover {
  background-color: #D2196F;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

.page-template .page-open-inspection #page-heading .tab-listing > div a, .page-template .page-auction-timetable #page-heading .tab-listing > div a {
  color: white;
}

@media (max-width: 767px) {
  .page-template .page-open-inspection #page-heading .tab-listing, .page-template .page-auction-timetable #page-heading .tab-listing {
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-template .page-open-inspection #page-heading .filter-form, .page-template .page-auction-timetable #page-heading .filter-form {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template .page-open-inspection #page-heading .filter-form .save-box, .page-template .page-auction-timetable #page-heading .filter-form .save-box {
  min-width: 40px;
  height: 36px;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.page-template .page-open-inspection #page-heading .filter-form .save-box:hover, .page-template .page-auction-timetable #page-heading .filter-form .save-box:hover {
  background-color: #D2196F;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

.page-template .page-open-inspection #page-heading .filter-form select, .page-template .page-auction-timetable #page-heading .filter-form select {
  width: 165px;
  height: 36px;
  line-height: 36px;
  padding: 0 1em;
  padding: 0 1.5em 0 .9em;
  border: 0;
  -webkit-appearance: none;
  background: url("../images/chevron-down.svg") no-repeat white;
  background-size: 15px;
  background-position: 92% center;
  -webkit-box-shadow: inset 0 0 1px #dcdcdd;
          box-shadow: inset 0 0 1px #dcdcdd;
  color: #333;
}

@media (max-width: 767px) {
  .page-template .page-open-inspection #page-heading .filter-form, .page-template .page-auction-timetable #page-heading .filter-form {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 90%;
    margin: 0 auto;
  }
}

.page-template .page-open-inspection #page-heading .page-title, .page-template .page-auction-timetable #page-heading .page-title {
  max-width: 33.33%;
  margin: 0 auto;
}

.page-template .page-open-inspection #page-heading .page-title *, .page-template .page-auction-timetable #page-heading .page-title * {
  width: 100%;
  display: block;
  text-align: center;
}

.page-template .page-open-inspection #page-heading .page-title h1, .page-template .page-auction-timetable #page-heading .page-title h1 {
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .page-template .page-open-inspection #page-heading .page-title, .page-template .page-auction-timetable #page-heading .page-title {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .page-template .page-open-inspection #page-heading, .page-template .page-auction-timetable #page-heading {
    width: 92%;
    margin: 0 auto;
  }
}

.page-template .page-open-inspection .page-content, .page-template .page-auction-timetable .page-content {
  max-width: 1170px;
  margin: 0 auto;
  background-color: transparent;
  padding-bottom: 3rem;
}

.page-template .page-open-inspection .page-content .table-title, .page-template .page-auction-timetable .page-content .table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 100%;
  padding: 1rem;
  font-size: 24px;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

.page-template .page-open-inspection .page-content .table-title > div, .page-template .page-auction-timetable .page-content .table-title > div {
  width: 24%;
  max-width: 24%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-open-inspection .page-content .table-title > div:last-child, .page-template .page-auction-timetable .page-content .table-title > div:last-child {
  width: 6%;
  max-width: 6%;
}

.page-template .page-open-inspection .page-content .table-title > div.table-inspect, .page-template .page-auction-timetable .page-content .table-title > div.table-inspect {
  width: 28%;
  max-width: 28%;
}

.page-template .page-open-inspection .page-content .table-title > div.table-price, .page-template .page-auction-timetable .page-content .table-title > div.table-price {
  width: 20%;
  max-width: 20%;
}

@media (max-width: 992px) {
  .page-template .page-open-inspection .page-content .table-title, .page-template .page-auction-timetable .page-content .table-title {
    display: none;
  }
}

.page-template .page-open-inspection .page-content .table-row, .page-template .page-auction-timetable .page-content .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: rgba(51, 51, 51, 0.8);
  margin-bottom: .5rem;
  color: white;
  padding: 1rem;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.page-template .page-open-inspection .page-content .table-row:hover, .page-template .page-auction-timetable .page-content .table-row:hover {
  background-color: rgba(51, 51, 51, 0.95);
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.page-template .page-open-inspection .page-content .table-row > div, .page-template .page-auction-timetable .page-content .table-row > div {
  width: 24%;
  max-width: 24%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 10px;
  font-size: 14px;
}

.page-template .page-open-inspection .page-content .table-row > div a, .page-template .page-auction-timetable .page-content .table-row > div a {
  color: white;
  text-decoration: none;
}

.page-template .page-open-inspection .page-content .table-row > div a:hover, .page-template .page-auction-timetable .page-content .table-row > div a:hover {
  text-decoration: none;
}

.page-template .page-open-inspection .page-content .table-row > div a h5, .page-template .page-auction-timetable .page-content .table-row > div a h5 {
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 28px;
  text-transform: none;
}

.page-template .page-open-inspection .page-content .table-row > div:last-child, .page-template .page-auction-timetable .page-content .table-row > div:last-child {
  width: 4%;
  max-width: 4%;
  text-align: right;
  font-size: 1.2em;
}

.page-template .page-open-inspection .page-content .table-row > div.td-inspect, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect {
  width: 28%;
  max-width: 28%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page-template .page-open-inspection .page-content .table-row > div.td-inspect .date, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .date {
  width: 80%;
  max-width: 80%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-open-inspection .page-content .table-row > div.td-inspect .calendar, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar {
  width: 20%;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-open-inspection .page-content .table-row > div.td-inspect .calendar a, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar a {
  text-decoration: none;
  color: white;
}

.page-template .page-open-inspection .page-content .table-row > div.td-inspect .calendar a:hover, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar a:hover {
  color: #E20C7C;
  text-decoration: none;
}

.page-template .page-open-inspection .page-content .table-row > div.td-price, .page-template .page-auction-timetable .page-content .table-row > div.td-price {
  font-weight: normal;
  width: 20%;
  max-width: 20%;
}

.page-template .page-open-inspection .page-content .table-row > div.td-features, .page-template .page-auction-timetable .page-content .table-row > div.td-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template .page-open-inspection .page-content .table-row > div.td-features > .features, .page-template .page-auction-timetable .page-content .table-row > div.td-features > .features {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: .25rem;
  word-break: break-all;
}

.page-template .page-open-inspection .page-content .table-row > div.td-features > .features [class^="ti-"], .page-template .page-auction-timetable .page-content .table-row > div.td-features > .features [class^="ti-"] {
  margin-right: 6px;
}

@media (max-width: 992px) {
  .page-template .page-open-inspection .page-content .table-row > div.td-features > .features, .page-template .page-auction-timetable .page-content .table-row > div.td-features > .features {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .page-template .page-open-inspection .page-content .table-row, .page-template .page-auction-timetable .page-content .table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
  }
  .page-template .page-open-inspection .page-content .table-row > div, .page-template .page-auction-timetable .page-content .table-row > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: .5rem 0 .5rem 50%;
    position: relative;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 2rem;
  }
  .page-template .page-open-inspection .page-content .table-row > div::before, .page-template .page-auction-timetable .page-content .table-row > div::before {
    content: attr(data-label);
    width: auto;
    font-weight: normal;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 .5em .5em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .page-template .page-open-inspection .page-content .table-row > div:last-child, .page-template .page-auction-timetable .page-content .table-row > div:last-child {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 32px !important;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: transparent;
    color: #333;
    padding: 0;
  }
  .page-template .page-open-inspection .page-content .table-row > div:last-child a, .page-template .page-auction-timetable .page-content .table-row > div:last-child a {
    color: #333;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #E20C7C;
    color: white;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    cursor: pointer;
  }
  .page-template .page-open-inspection .page-content .table-row > div:last-child a:hover, .page-template .page-auction-timetable .page-content .table-row > div:last-child a:hover {
    background-color: #060707;
  }
  .page-template .page-open-inspection .page-content .table-row > div p, .page-template .page-auction-timetable .page-content .table-row > div p {
    margin-bottom: 0;
  }
  .page-template .page-open-inspection .page-content .table-row > div.td-address a h5, .page-template .page-auction-timetable .page-content .table-row > div.td-address a h5 {
    font-size: 1rem;
    font-family: 'Arial', 'AZGillSans','Monserrat', sans-serif;
  }
  .page-template .page-open-inspection .page-content .table-row > div.td-features > .features, .page-template .page-auction-timetable .page-content .table-row > div.td-features > .features {
    width: 100%;
    max-width: 100%;
  }
  .page-template .page-open-inspection .page-content .table-row > div.td-inspect, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-template .page-open-inspection .page-content .table-row > div.td-inspect .date, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .date {
    width: 75%;
  }
  .page-template .page-open-inspection .page-content .table-row > div.td-inspect .calendar, .page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar {
    width: 25%;
    text-align: right;
  }
}

@media (max-width: 992px) {
  .page-template .page-open-inspection .page-content, .page-template .page-auction-timetable .page-content {
    max-width: 92%;
    margin: 0 auto;
  }
}

.page-template .page-auction-timetable .page-content .table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 100%;
  padding: 1rem;
  font-size: 24px;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
}

.page-template .page-auction-timetable .page-content .table-title > div {
  width: 20%;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-auction-timetable .page-content .table-title > div:last-child {
  width: 20%;
  max-width: 20%;
}

.page-template .page-auction-timetable .page-content .table-title > div.table-when {
  width: 23%;
  max-width: 23%;
}

.page-template .page-auction-timetable .page-content .table-title > div.table-inspect {
  width: 20%;
  max-width: 20%;
}

.page-template .page-auction-timetable .page-content .table-title > div.table-features {
  width: 17%;
  max-width: 17%;
}

.page-template .page-auction-timetable .page-content .table-title > div.table-price {
  width: 20%;
  max-width: 20%;
}

@media (max-width: 992px) {
  .page-template .page-auction-timetable .page-content .table-title {
    display: none;
  }
}

.page-template .page-auction-timetable .page-content .table-row > div {
  width: 20%;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 10px;
  font-size: 14px;
  position: relative;
}

.page-template .page-auction-timetable .page-content .table-row > div a {
  color: white;
  text-decoration: none;
}

.page-template .page-auction-timetable .page-content .table-row > div a:hover {
  text-decoration: none;
}

.page-template .page-auction-timetable .page-content .table-row > div a h5 {
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 28px;
  text-transform: none;
}

.page-template .page-auction-timetable .page-content .table-row > div:last-child {
  width: 20%;
  max-width: 20%;
  text-align: left;
  font-size: 1em;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-when {
  width: 23%;
  max-width: 23%;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-when a {
  position: absolute;
  top: 0;
  right: 1.5rem;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-inspect {
  width: 29%;
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-inspect .date {
  width: 80%;
  max-width: 80%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar {
  width: 20%;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar a {
  text-decoration: none;
  color: white;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-inspect .calendar a:hover {
  color: #E20C7C;
  text-decoration: none;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-price {
  font-weight: normal;
  width: 20%;
  max-width: 20%;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 17%;
  max-width: 17%;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-features > .features {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: .25rem;
  word-break: break-all;
}

.page-template .page-auction-timetable .page-content .table-row > div.td-features > .features [class^="ti-"] {
  margin-right: 6px;
}

@media (max-width: 767px) {
  .page-template .page-auction-timetable .page-content .table-row > div:last-child {
    position: relative;
    top: unset;
    right: unset;
    width: 100% !important;
    height: auto;
    line-height: 1.2;
    color: white;
    padding: .5em 0 .5em 50%;
  }
  .page-template .page-auction-timetable .page-content .table-row > div.td-when a {
    top: .5rem;
    right: .5rem;
  }
}

.page-template-template-suburbprofile #page-heading {
  margin-bottom: 30px;
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
}

.page-template-template-suburbprofile #page-heading .page-title {
  max-width: 33.33%;
  margin: 0 auto;
}

.page-template-template-suburbprofile #page-heading .page-title * {
  width: 100%;
  display: block;
  text-align: center;
}

.page-template-template-suburbprofile #page-heading .page-title h1 {
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .page-template-template-suburbprofile #page-heading .page-title {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .page-template-template-suburbprofile #page-heading {
    width: 92%;
    margin: 0 auto;
  }
}

.page-template-template-suburbprofile .page-content {
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1170px;
}

.page-template-template-suburbprofile .page-content::after {
  display: block;
  clear: both;
  content: "";
}

.page-template-template-suburbprofile .page-content p {
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media {
  margin-bottom: 1rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media .suburb-media-nav {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media .suburb-media-nav .tab-label {
  background-color: transparent;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
  font-family: 'Arial', 'AZGillSans','Montserrat', sans-serif;
  padding: 1em 1.2em;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media .suburb-media-nav .tab-label:hover, .page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media .suburb-media-nav .tab-label:focus, .page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media .suburb-media-nav .tab-label.active {
  color: #E20C7C;
  text-decoration: none;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery {
  position: relative;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery .slider-nav {
  top: 50%;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery .slider-nav .prev, .page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery .slider-nav .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery .slider-nav .prev {
  left: .5rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-gallery .slider-nav .next {
  right: .5rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-content .suburb-media #suburb-map #map_suburb {
  padding-bottom: 56.25%;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 1rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list {
  padding-bottom: 1rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder {
  display: block;
  width: 100%;
  padding: .4rem .8rem;
  border: 1px solid #E20C7C;
  background-color: transparent;
  color: #E20C7C;
  position: relative;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder:hover, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder[aria-expanded="true"] {
  text-decoration: none;
  background-color: #D2196F;
  color: white;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder:hover::after, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder[aria-expanded="true"]::after {
  color: white;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder::after {
  display: block;
  position: absolute;
  top: 50%;
  right: .8rem;
  color: #E20C7C;
  font-family: 'Themify';
  content: "\e61a";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder.collapsed::after {
  content: "\e61a";
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder:not(.collapsed)::after {
  content: "\e622";
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .accordion-placeholder[aria-expanded="false"]::after {
  content: "\e61a";
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper li {
  width: 100%;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper li:first-child a {
  border-top: 0;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper li:not(:last-child) a {
  border-bottom: 0;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper a {
  display: block;
  width: 100%;
  padding: .4rem .8rem;
  color: #E20C7C;
  border: 1px solid #E20C7C;
  background-color: transparent;
  text-decoration: none;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .suburb-list .suburb-list-wrapper a:hover {
  background-color: #E20C7C;
  color: white;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .find-property, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .recent-activity {
  padding-bottom: 1rem;
  padding-right: 3rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .find-property .section-title, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .recent-activity .section-title {
  color: #E20C7C;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .find-property a, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .recent-activity a {
  display: block;
  width: 100%;
  padding-left: 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  font-family: 'Arial', 'AZGillSans','Montserrat';
  margin-bottom: .5rem;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .find-property a:hover, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .recent-activity a:hover {
  color: #E20C7C;
  text-decoration: none;
}

.page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .find-property a::before, .page-template-template-suburbprofile .page-content .suburb-row .suburb-sidebar .recent-activity a::before {
  display: block;
  width: 1rem;
  height: 1rem;
  color: #E20C7C;
  content: "\e649";
  font-family: 'themify';
  position: absolute;
  top: 0;
  left: 0;
}

.page-template-template-suburbprofile .page-content .tns-outer {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.page-template-template-suburbprofile .page-content .tns-outer.tab-panel {
  display: none;
}

.page-template-template-suburbprofile .page-content .tns-outer.tab-panel.tab-active {
  padding-bottom: 56.25%;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-template-suburbprofile .page-content .tns-outer.tab-panel.tab-active .tab-panel {
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-template-suburbprofile .page-content .tns-outer .tns-ovh {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.page-template-template-suburbprofile .page-content .tns-outer .tns-ovh .tns-inner {
  position: unset;
}

.page-template-template-suburbprofile .page-content .tns-outer .tns-ovh .tns-inner .tns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-template-template-suburbprofile .page-content .tns-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.page-template-template-suburbprofile .page-content .tns-nav button {
  display: inline-block;
  -webkit-appearance: none;
  border: 2px solid #E20C7C;
  background-color: transparent;
  height: 16px;
  width: 16px;
  margin-right: 10px;
}

.page-template-template-suburbprofile .page-content .tns-nav button:hover {
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.page-template-template-suburbprofile .page-content .tns-nav button.tns-nav-active {
  background-color: #E20C7C;
}

@media (max-width: 1024px) {
  .page-template-template-suburbprofile .page-content {
    max-width: 92%;
  }
}

@media (max-width: 992px) {
  .page-template-template-suburbprofile .page-content {
    max-width: 92%;
  }
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content {
  padding: 0;
  background-color: transparent;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list {
  color: #333;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1rem;
  background-color: rgba(250, 244, 238, 0.9);
  -webkit-box-shadow: 0 2px 5px -2px #333;
          box-shadow: 0 2px 5px -2px #333;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap:hover {
  -webkit-box-shadow: 0 2px 10px -4px #333;
          box-shadow: 0 2px 10px -4px #333;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .location-desc h2 {
  font-size: 30px;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  font-weight: normal;
  color: #333;
  text-transform: uppercase;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .image {
  height: 0;
  padding-bottom: 65.25%;
  position: relative;
  overflow: hidden;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .image > * {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .view-more {
  padding: 1rem 0 0;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .view-more a {
  display: inline-block;
  padding: 0 1.2rem;
  height: 40px;
  line-height: 40px;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  text-decoration: none;
}

.page-template-template-suburbprofile .page-suburb-profiles .page-content .location-list .location-wrap .view-more a:hover {
  background-color: #D2196F;
  text-decoration: none;
}

.page-template-default {
  background-image: url("../../assets/images/beachfront-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .page-template-default .page-open-homes .tab-listing {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.page-template-default .page-open-homes .page-content {
  background: transparent;
}

.page-template-default #page-heading {
  margin-bottom: 30px;
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
}

.page-template-default #page-heading .filter-form {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-default #page-heading .filter-form .save-box {
  min-width: 40px;
  height: 36px;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.page-template-default #page-heading .filter-form .save-box:hover {
  background-color: #D2196F;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

.page-template-default #page-heading .filter-form select {
  width: 165px;
  height: 36px;
  line-height: 36px;
  padding: 0 1em;
  padding: 0 1.5em 0 .9em;
  border: 0;
  -webkit-appearance: none;
  background-color: white;
  -webkit-box-shadow: inset 0 0 1px #dcdcdd;
          box-shadow: inset 0 0 1px #dcdcdd;
  color: #333;
  background: url("../images/chevron-down.svg") no-repeat white;
  background-size: 15px;
  background-position: 92% center;
}

@media (max-width: 767px) {
  .page-template-default #page-heading .filter-form {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    max-width: 90%;
    margin: 0 auto;
  }
}

.page-template-default #page-heading .page-title {
  max-width: 33.33%;
  margin: 0 auto;
}

.page-template-default #page-heading .page-title * {
  width: 100%;
  display: block;
  text-align: center;
}

.page-template-default #page-heading .page-title h1 {
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  color: white;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .page-template-default #page-heading .page-title {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

.page-template-default #page-heading .tab-listing {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.page-template-default #page-heading .tab-listing > div {
  min-width: 40px;
  height: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.page-template-default #page-heading .tab-listing > div:hover {
  background-color: #D2196F;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

@media (max-width: 767px) {
  .page-template-default #page-heading .tab-listing {
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1024px) {
  .page-template-default #page-heading {
    max-width: 92%;
  }
}

@media (max-width: 992px) {
  .page-template-default #page-heading {
    max-width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-template-default #page-heading .page-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .page-template-default #page-heading .tab-listing {
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    margin-bottom: 1rem;
  }
  .page-template-default #page-heading .filter-form {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 50%;
    margin-bottom: 1rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.page-template-default .page-content {
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1170px;
}

.page-template-default .page-content::after {
  display: block;
  clear: both;
  content: "";
}

.page-template-default .page-content p {
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-template-default .page-content p.no_properties_error {
  display: block;
  padding: 1rem;
  background-color: #060707;
  color: white;
  text-align: center;
  font-weight: 500;
  -webkit-box-shadow: 0 2px 6px -2px #333;
          box-shadow: 0 2px 6px -2px #333;
}

@media (max-width: 1024px) {
  .page-template-default .page-content {
    max-width: 92%;
  }
}

@media (max-width: 992px) {
  .page-template-default .page-content {
    max-width: 92%;
  }
}

@media (max-width: 767px) {
  .page-template-default#properties-for-sale .page-properties-for-sale #page-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .page-template-default#properties-for-sale .page-properties-for-sale #page-heading > * {
    max-width: 90%;
    width: 90%;
    margin: 0 auto 1rem;
  }
}

.page-template-default .page-properties-for-sale .page-content {
  background-color: transparent;
  padding: 0;
}

@media (max-width: 767px) {
  .page-template-default .page-properties-for-sale #page-heading .page-title {
    position: static;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1rem;
  }
}

.page-template-default .page-projects .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-project-listings .page-content, .page-template-default .page-properties-for-lease .page-content, .page-template-default .page-commercial-listings .page-content, .page-template-default .page-leased-properties .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-favourite-property #page-heading .left-box {
  position: absolute;
  top: 50%;
  left: 0;
}

.page-template-default .page-favourite-property #page-heading .left-box a {
  width: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  min-width: 45px;
  text-decoration: none;
}

.page-template-default .page-favourite-property .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-search-results .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-recent-sales .page-content, .page-template-default .page-leased-properties .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-recent-sales .sorter_search_quick, .page-template-default .page-leased-properties .sorter_search_quick {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-default .page-recent-sales .sorter_search_quick .save-box, .page-template-default .page-leased-properties .sorter_search_quick .save-box {
  min-width: 40px;
  height: 36px;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.page-template-default .page-recent-sales .sorter_search_quick .save-box:hover, .page-template-default .page-leased-properties .sorter_search_quick .save-box:hover {
  background-color: #D2196F;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

.page-template-default .page-recent-sales .sorter_search_quick select, .page-template-default .page-leased-properties .sorter_search_quick select {
  width: 165px;
  height: 36px;
  line-height: 36px;
  padding: 0 1em;
  padding: 0 1.5em 0 .9em;
  border: 0;
  -webkit-appearance: none;
  background-color: white;
  -webkit-box-shadow: inset 0 0 1px #dcdcdd;
          box-shadow: inset 0 0 1px #dcdcdd;
  color: #333;
}

@media (max-width: 767px) {
  .page-template-default .page-recent-sales .sorter_search_quick, .page-template-default .page-leased-properties .sorter_search_quick {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 90%;
    margin: 0 auto;
  }
}

.page-template-default .page-land-for-sale .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-contact-us .page-content p:empty {
  display: none;
}

.page-template-default .page-contact-us .page-content .contact-detail {
  width: 33.33%;
  float: left;
  padding: 1rem 1rem 1rem 0;
  white-space: normal;
  word-break: break-word;
}

.page-template-default .page-contact-us .page-content .contact-map {
  margin-bottom: 50px;
}

.page-template-default .page-contact-us .page-content .gform_wrapper {
  width: 100%;
  float: left;
  margin-top: 0;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .gfield_label_before_complex {
  display: none;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container.ginput_complex label {
  color: #790000;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container {
  width: 100%;
  padding-right: 0;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container label {
  font-size: 15px;
  color: #333;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container select, .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  margin-right: 0;
  border: 1px solid #dcdcdd;
  -webkit-appearance: none;
  color: #333;
  background-color: white;
  height: 34px;
  line-height: 34px;
  padding: 0 .7em;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container select::-webkit-input-placeholder, .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder {
  color: transparent;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container select:-ms-input-placeholder, .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder {
  color: transparent;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container select::-ms-input-placeholder, .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])::-ms-input-placeholder {
  color: transparent;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container select::placeholder, .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])::placeholder {
  color: transparent;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container textarea {
  padding: .5em .7em;
  width: 100%;
  margin-right: 0;
  border: 1px solid #dcdcdd;
  -webkit-appearance: none;
  height: 104px;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_complex label {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_complex::after {
    clear: both;
    content: "";
    display: block;
  }
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_complex > span {
    width: calc(50% - 5px);
    float: left;
    clear: none;
  }
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_complex > span:first-child {
    margin-right: 5px;
  }
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_complex > span::last-child {
    margin-left: 5px;
  }
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span:last-child {
  padding-right: 0;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container .ui-selectmenu-icon {
  display: none;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container .ui-selectmenu-button.ui-button {
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0 .7em;
  border: 1px solid #dcdcdd;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

@media screen and (max-width: 767px) {
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_recaptcha iframe {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_footer {
  margin-top: 0;
}

.page-template-default .page-contact-us .page-content .gform_wrapper .gform_footer input[type="submit"] {
  background-color: #E20C7C;
  color: white;
  text-transform: uppercase;
  text-align: center;
  width: auto;
  min-width: 225px;
  height: 30px;
  font-size: 1rem;
  border: 0;
  font-weight: 100;
}

.page-template-default .page-contact-us .page-content .ui-selectmenu-button.ui-widget, .page-template-default .page-contact-us .page-content .ui-selectmenu-button.ui-button {
  display: block;
  position: relative;
  width: 100% !important;
}

.page-template-default .page-contact-us .page-content .ui-selectmenu-button.ui-widget .ui-icon, .page-template-default .page-contact-us .page-content .ui-selectmenu-button.ui-button .ui-icon {
  position: absolute;
  right: 1rem;
}

.page-template-default .page-contact-us .media-maps {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .page-template-default .page-contact-us .page-content .contact-detail {
    width: 100%;
  }
  .page-template-default .page-contact-us .page-content .gform_wrapper {
    width: 100%;
  }
  .page-template-default .page-contact-us .page-content .gform_wrapper .gform_footer {
    text-align: center;
  }
}

.page-template-default .page-property-alert .page-content .has-account, .page-template-default .page-login .page-content .has-account {
  text-align: center;
}

.page-template-default .page-property-alert .page-content .has-account a, .page-template-default .page-login .page-content .has-account a {
  color: #E20C7C;
  text-decoration: none;
}

.page-template-default .page-property-alert .page-content .has-account a:hover, .page-template-default .page-login .page-content .has-account a:hover {
  color: #060707;
}

.page-template-default .page-property-alert .page-content #return, .page-template-default .page-login .page-content #return {
  text-align: center;
  font-weight: normal;
  color: #E20C7C;
}

.page-template-default .page-property-alert .page-content #return p, .page-template-default .page-login .page-content #return p {
  margin-bottom: 2px;
  line-height: 1.1;
}

.page-template-default .page-property-alert .page-content .form_email_subscription, .page-template-default .page-property-alert .page-content form.subscribe, .page-template-default .page-login .page-content .form_email_subscription, .page-template-default .page-login .page-content form.subscribe {
  max-width: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 35px auto 20px;
  -webkit-box-shadow: 0 1px 3px rgba(51, 51, 51, 0.6);
          box-shadow: 0 1px 3px rgba(51, 51, 51, 0.6);
  background-color: rgba(250, 244, 238, 0.9);
  padding: 1.5rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section, .page-template-default .page-property-alert .page-content form.subscribe .section, .page-template-default .page-login .page-content .form_email_subscription .section, .page-template-default .page-login .page-content form.subscribe .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .heading, .page-template-default .page-property-alert .page-content form.subscribe .section .heading, .page-template-default .page-login .page-content .form_email_subscription .section .heading, .page-template-default .page-login .page-content form.subscribe .section .heading {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
  font-weight: normal;
  font-size: 1.5rem;
  font-family: 'Arial', 'AZGillSans','Oswald','Montserrat',sans-serif;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2, .page-template-default .page-property-alert .page-content form.subscribe .section .col-2, .page-template-default .page-login .page-content .form_email_subscription .section .col-2, .page-template-default .page-login .page-content form.subscribe .section .col-2 {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field, .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field, .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field, .page-template-default .page-login .page-content form.subscribe .section .col-2 .field {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field:nth-child(odd), .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field:nth-child(odd), .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field:nth-child(odd), .page-template-default .page-login .page-content form.subscribe .section .col-2 .field:nth-child(odd) {
  padding-right: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field::nth-child(even), .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field::nth-child(even), .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field::nth-child(even), .page-template-default .page-login .page-content form.subscribe .section .col-2 .field::nth-child(even) {
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field, .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field, .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field, .page-template-default .page-login .page-content form.subscribe .section .col-2 .field {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field:nth-child(odd), .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field:nth-child(odd), .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field:nth-child(odd), .page-template-default .page-login .page-content form.subscribe .section .col-2 .field:nth-child(odd) {
    padding-right: 0;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-2 .field::nth-child(even), .page-template-default .page-property-alert .page-content form.subscribe .section .col-2 .field::nth-child(even), .page-template-default .page-login .page-content .form_email_subscription .section .col-2 .field::nth-child(even), .page-template-default .page-login .page-content form.subscribe .section .col-2 .field::nth-child(even) {
    padding-left: 0;
  }
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3, .page-template-default .page-login .page-content .form_email_subscription .section .col-3, .page-template-default .page-login .page-content form.subscribe .section .col-3 {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 .field .ui-selectmenu-button.ui-button, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 .field .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 .field .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content form.subscribe .section .col-3 .field .ui-selectmenu-button.ui-button {
  width: 100%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 .field, .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 > span, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 .field, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 > span, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 .field, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 > span, .page-template-default .page-login .page-content form.subscribe .section .col-3 .field, .page-template-default .page-login .page-content form.subscribe .section .col-3 > span {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  padding-right: .5rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 .field:last-child, .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 > span:last-child, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 .field:last-child, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 > span:last-child, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 .field:last-child, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 > span:last-child, .page-template-default .page-login .page-content form.subscribe .section .col-3 .field:last-child, .page-template-default .page-login .page-content form.subscribe .section .col-3 > span:last-child {
  padding-right: 0;
}

@media (max-width: 767px) {
  .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3, .page-template-default .page-login .page-content .form_email_subscription .section .col-3, .page-template-default .page-login .page-content form.subscribe .section .col-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 .field, .page-template-default .page-property-alert .page-content .form_email_subscription .section .col-3 > span, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 .field, .page-template-default .page-property-alert .page-content form.subscribe .section .col-3 > span, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 .field, .page-template-default .page-login .page-content .form_email_subscription .section .col-3 > span, .page-template-default .page-login .page-content form.subscribe .section .col-3 .field, .page-template-default .page-login .page-content form.subscribe .section .col-3 > span {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-right: 0 !important;
  }
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field, .page-template-default .page-property-alert .page-content form.subscribe .section .field, .page-template-default .page-login .page-content .form_email_subscription .section .field, .page-template-default .page-login .page-content form.subscribe .section .field {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field .ms-parent, .page-template-default .page-property-alert .page-content form.subscribe .section .field .ms-parent, .page-template-default .page-login .page-content .form_email_subscription .section .field .ms-parent, .page-template-default .page-login .page-content form.subscribe .section .field .ms-parent {
  width: 100% !important;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field label, .page-template-default .page-property-alert .page-content form.subscribe .section .field label, .page-template-default .page-login .page-content .form_email_subscription .section .field label, .page-template-default .page-login .page-content form.subscribe .section .field label {
  font-weight: normal;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field label, .page-template-default .page-property-alert .page-content .form_email_subscription .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-property-alert .page-content form.subscribe .section .field label, .page-template-default .page-property-alert .page-content form.subscribe .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content .form_email_subscription .section .field label, .page-template-default .page-login .page-content .form_email_subscription .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content form.subscribe .section .field label, .page-template-default .page-login .page-content form.subscribe .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-property-alert .page-content form.subscribe .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content .form_email_subscription .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content form.subscribe .section .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 .9em;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field .options, .page-template-default .page-property-alert .page-content form.subscribe .section .field .options, .page-template-default .page-login .page-content .form_email_subscription .section .field .options, .page-template-default .page-login .page-content form.subscribe .section .field .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .section .field .options > span, .page-template-default .page-property-alert .page-content form.subscribe .section .field .options > span, .page-template-default .page-login .page-content .form_email_subscription .section .field .options > span, .page-template-default .page-login .page-content form.subscribe .section .field .options > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 1em;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .ui-selectmenu-button.ui-widget, .page-template-default .page-property-alert .page-content form.subscribe .ui-selectmenu-button.ui-widget, .page-template-default .page-login .page-content .form_email_subscription .ui-selectmenu-button.ui-widget, .page-template-default .page-login .page-content form.subscribe .ui-selectmenu-button.ui-widget {
  width: 100% !important;
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 0 0 8px;
  position: relative;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .ui-selectmenu-button.ui-widget .ui-icon, .page-template-default .page-property-alert .page-content form.subscribe .ui-selectmenu-button.ui-widget .ui-icon, .page-template-default .page-login .page-content .form_email_subscription .ui-selectmenu-button.ui-widget .ui-icon, .page-template-default .page-login .page-content form.subscribe .ui-selectmenu-button.ui-widget .ui-icon {
  background-image: url(../images/chevron-down.svg) !important;
  background-position: center;
  background-size: 15px;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-2, .page-template-default .page-property-alert .page-content form.subscribe .grid-2, .page-template-default .page-login .page-content .form_email_subscription .grid-2, .page-template-default .page-login .page-content form.subscribe .grid-2 {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column, .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column, .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column, .page-template-default .page-login .page-content form.subscribe .grid-2 .column {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column:nth-child(odd), .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column:nth-child(odd), .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column:nth-child(odd), .page-template-default .page-login .page-content form.subscribe .grid-2 .column:nth-child(odd) {
  padding-right: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column::nth-child(even), .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column::nth-child(even), .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column::nth-child(even), .page-template-default .page-login .page-content form.subscribe .grid-2 .column::nth-child(even) {
  padding-left: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .ui-selectmenu-button.ui-button, .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content .form_email_subscription .grid-2 .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content form.subscribe .grid-2 .ui-selectmenu-button.ui-button {
  width: 100% !important;
}

@media (max-width: 767px) {
  .page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column, .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column, .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column, .page-template-default .page-login .page-content form.subscribe .grid-2 .column {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column:nth-child(odd), .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column:nth-child(odd), .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column:nth-child(odd), .page-template-default .page-login .page-content form.subscribe .grid-2 .column:nth-child(odd) {
    padding-right: 0;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .grid-2 .column::nth-child(even), .page-template-default .page-property-alert .page-content form.subscribe .grid-2 .column::nth-child(even), .page-template-default .page-login .page-content .form_email_subscription .grid-2 .column::nth-child(even), .page-template-default .page-login .page-content form.subscribe .grid-2 .column::nth-child(even) {
    padding-left: 0;
  }
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-3, .page-template-default .page-property-alert .page-content form.subscribe .grid-3, .page-template-default .page-login .page-content .form_email_subscription .grid-3, .page-template-default .page-login .page-content form.subscribe .grid-3 {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 .column .ui-selectmenu-button.ui-button, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 .column .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content .form_email_subscription .grid-3 .column .ui-selectmenu-button.ui-button, .page-template-default .page-login .page-content form.subscribe .grid-3 .column .ui-selectmenu-button.ui-button {
  width: 100%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 .column, .page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 > span, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 .column, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 > span, .page-template-default .page-login .page-content .form_email_subscription .grid-3 .column, .page-template-default .page-login .page-content .form_email_subscription .grid-3 > span, .page-template-default .page-login .page-content form.subscribe .grid-3 .column, .page-template-default .page-login .page-content form.subscribe .grid-3 > span {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  padding-right: .5rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 .column:last-child, .page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 > span:last-child, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 .column:last-child, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 > span:last-child, .page-template-default .page-login .page-content .form_email_subscription .grid-3 .column:last-child, .page-template-default .page-login .page-content .form_email_subscription .grid-3 > span:last-child, .page-template-default .page-login .page-content form.subscribe .grid-3 .column:last-child, .page-template-default .page-login .page-content form.subscribe .grid-3 > span:last-child {
  padding-right: 0;
}

@media (max-width: 767px) {
  .page-template-default .page-property-alert .page-content .form_email_subscription .grid-3, .page-template-default .page-property-alert .page-content form.subscribe .grid-3, .page-template-default .page-login .page-content .form_email_subscription .grid-3, .page-template-default .page-login .page-content form.subscribe .grid-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 .column, .page-template-default .page-property-alert .page-content .form_email_subscription .grid-3 > span, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 .column, .page-template-default .page-property-alert .page-content form.subscribe .grid-3 > span, .page-template-default .page-login .page-content .form_email_subscription .grid-3 .column, .page-template-default .page-login .page-content .form_email_subscription .grid-3 > span, .page-template-default .page-login .page-content form.subscribe .grid-3 .column, .page-template-default .page-login .page-content form.subscribe .grid-3 > span {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-right: 0 !important;
  }
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field, .page-template-default .page-property-alert .page-content form.subscribe .details .field, .page-template-default .page-login .page-content .form_email_subscription .details .field, .page-template-default .page-login .page-content form.subscribe .details .field {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field .ms-parent, .page-template-default .page-property-alert .page-content form.subscribe .details .field .ms-parent, .page-template-default .page-login .page-content .form_email_subscription .details .field .ms-parent, .page-template-default .page-login .page-content form.subscribe .details .field .ms-parent {
  width: 100% !important;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field label, .page-template-default .page-property-alert .page-content form.subscribe .details .field label, .page-template-default .page-login .page-content .form_email_subscription .details .field label, .page-template-default .page-login .page-content form.subscribe .details .field label {
  font-weight: normal;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field label, .page-template-default .page-property-alert .page-content .form_email_subscription .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-property-alert .page-content form.subscribe .details .field label, .page-template-default .page-property-alert .page-content form.subscribe .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content .form_email_subscription .details .field label, .page-template-default .page-login .page-content .form_email_subscription .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content form.subscribe .details .field label, .page-template-default .page-login .page-content form.subscribe .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-property-alert .page-content form.subscribe .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content .form_email_subscription .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .page-template-default .page-login .page-content form.subscribe .details .field input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 .9em;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field .options, .page-template-default .page-property-alert .page-content form.subscribe .details .field .options, .page-template-default .page-login .page-content .form_email_subscription .details .field .options, .page-template-default .page-login .page-content form.subscribe .details .field .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .details .field .options > span, .page-template-default .page-property-alert .page-content form.subscribe .details .field .options > span, .page-template-default .page-login .page-content .form_email_subscription .details .field .options > span, .page-template-default .page-login .page-content form.subscribe .details .field .options > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 1em;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .email_btn input[type="submit"], .page-template-default .page-property-alert .page-content form.subscribe .email_btn input[type="submit"], .page-template-default .page-login .page-content .form_email_subscription .email_btn input[type="submit"], .page-template-default .page-login .page-content form.subscribe .email_btn input[type="submit"] {
  background-color: #E20C7C;
  color: white;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.page-template-default .page-property-alert .page-content .form_email_subscription .email_btn input[type="submit"]:hover, .page-template-default .page-property-alert .page-content form.subscribe .email_btn input[type="submit"]:hover, .page-template-default .page-login .page-content .form_email_subscription .email_btn input[type="submit"]:hover, .page-template-default .page-login .page-content form.subscribe .email_btn input[type="submit"]:hover {
  background-color: #D2196F;
}

.page-template-default .page-property-alert .page-content .form_email_subscription em, .page-template-default .page-property-alert .page-content form.subscribe em, .page-template-default .page-login .page-content .form_email_subscription em, .page-template-default .page-login .page-content form.subscribe em {
  font-size: .8rem;
  color: #060707 !important;
}

.page-template-default .page-meet-the-team #page-heading, .page-template-default .page-team #page-heading, .page-template-default .page-sales-team #page-heading {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
}

.page-template-default .page-meet-the-team #page-heading .left-box, .page-template-default .page-meet-the-team #page-heading .right-box, .page-template-default .page-team #page-heading .left-box, .page-template-default .page-team #page-heading .right-box, .page-template-default .page-sales-team #page-heading .left-box, .page-template-default .page-sales-team #page-heading .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  position: absolute;
  top: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.page-template-default .page-meet-the-team #page-heading .left-box a, .page-template-default .page-meet-the-team #page-heading .right-box a, .page-template-default .page-team #page-heading .left-box a, .page-template-default .page-team #page-heading .right-box a, .page-template-default .page-sales-team #page-heading .left-box a, .page-template-default .page-sales-team #page-heading .right-box a {
  min-width: 40px;
  height: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-default .page-meet-the-team #page-heading .left-box a *, .page-template-default .page-meet-the-team #page-heading .right-box a *, .page-template-default .page-team #page-heading .left-box a *, .page-template-default .page-team #page-heading .right-box a *, .page-template-default .page-sales-team #page-heading .left-box a *, .page-template-default .page-sales-team #page-heading .right-box a * {
  width: 100%;
  height: 100%;
  text-align: center;
}

.page-template-default .page-meet-the-team #page-heading .left-box, .page-template-default .page-team #page-heading .left-box, .page-template-default .page-sales-team #page-heading .left-box {
  left: 0;
}

.page-template-default .page-meet-the-team #page-heading .right-box, .page-template-default .page-team #page-heading .right-box, .page-template-default .page-sales-team #page-heading .right-box {
  right: 0;
  width: 40px;
  height: 40px;
}

@media (max-width: 1024px) {
  .page-template-default .page-meet-the-team #page-heading, .page-template-default .page-team #page-heading, .page-template-default .page-sales-team #page-heading {
    max-width: 92%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .page-template-default .page-meet-the-team #page-heading, .page-template-default .page-team #page-heading, .page-template-default .page-sales-team #page-heading {
    max-width: 92%;
  }
  .page-template-default .page-meet-the-team #page-heading .page-title, .page-template-default .page-team #page-heading .page-title, .page-template-default .page-sales-team #page-heading .page-title {
    margin-bottom: 6px !important;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-template-default .page-meet-the-team #page-heading .page-title h1, .page-template-default .page-meet-the-team #page-heading .page-title .position, .page-template-default .page-team #page-heading .page-title h1, .page-template-default .page-team #page-heading .page-title .position, .page-template-default .page-sales-team #page-heading .page-title h1, .page-template-default .page-sales-team #page-heading .page-title .position {
    width: 100%;
    margin-bottom: .5rem;
  }
  .page-template-default .page-meet-the-team #page-heading .left-box, .page-template-default .page-team #page-heading .left-box, .page-template-default .page-sales-team #page-heading .left-box {
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 40px;
    width: 40px;
    margin-bottom: 1rem;
    margin-right: .2rem;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .page-template-default .page-meet-the-team #page-heading .right-box, .page-template-default .page-team #page-heading .right-box, .page-template-default .page-sales-team #page-heading .right-box {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 40px;
    width: 40px;
    margin: 0;
    margin-left: .2rem;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}

.page-template-default .page-meet-the-team .page-title, .page-template-default .page-team .page-title, .page-template-default .page-sales-team .page-title {
  margin-bottom: 2rem !important;
}

.page-template-default .page-meet-the-team .page-title h1, .page-template-default .page-team .page-title h1, .page-template-default .page-sales-team .page-title h1 {
  margin-bottom: 0 !important;
}

.page-template-default .page-meet-the-team .page-content, .page-template-default .page-team .page-content, .page-template-default .page-sales-team .page-content {
  background-color: transparent;
  padding: 0;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top, .page-template-default .page-team .page-content .agent-detail-top, .page-template-default .page-sales-team .page-content .agent-detail-top {
  background-color: rgba(250, 244, 238, 0.8);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .image, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .image, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .image {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  display: block;
  position: relative;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .image > img, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .image > img, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .image > img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact {
  text-align: right;
  padding-top: .6rem;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: 'Arial', 'AZGillSans','Montserrat', 'oswald', sans-serif;
  padding-left: 0;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li {
  width: 50%;
  max-width: 50%;
  font-size: .915rem;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li:nth-child(odd), .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li:nth-child(odd), .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li:nth-child(odd) {
  text-align: left;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li [class^="ti-"], .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li [class^="ti-"], .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li [class^="ti-"] {
  margin-right: 6px;
  color: #E20C7C;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span {
  margin-left: 6px;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span.ti-mobile a[href^="tel:"], .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span.ti-mobile a[href^="tel:"], .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li span.ti-mobile a[href^="tel:"] {
  margin-left: 14px;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info a, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info a, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info a {
  color: #E20C7C;
  text-decoration: none;
  font-size: .915rem;
}

@media (max-width: 767px) {
  .page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact {
    text-align: left;
  }
  .page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-info .agent-contact .agent-contact-info li {
    width: 100%;
    max-width: 100%;
    margin-bottom: .5rem;
  }
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: auto;
  margin-bottom: 1rem;
  -webkit-margin-before: 0rem;
          margin-block-start: 0rem;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a {
  padding: 0.8rem 1.3rem;
  background-color: transparent;
  color: #333;
  text-align: center;
  text-decoration: none;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a:hover, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a:hover, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a:hover {
  color: white;
  text-decoration: none;
  background-color: #E20C7C;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a.active, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a.active, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .agent-panel-nav ul li a.active {
  background-color: #E20C7C;
  color: white;
  font-weight: 500;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
}

.page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel.tab-active, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel.tab-active, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel .tab-panel.tab-active {
  display: block;
}

@media (max-width: 1024px) {
  .page-template-default .page-meet-the-team .page-content .agent-detail-top .agent-detail-column.agent-panel, .page-template-default .page-team .page-content .agent-detail-top .agent-detail-column.agent-panel, .page-template-default .page-sales-team .page-content .agent-detail-top .agent-detail-column.agent-panel {
    margin-top: 1.5rem;
    height: auto;
  }
}

.page-template-default .page-meet-the-team .page-content .ui-widget-header, .page-template-default .page-team .page-content .ui-widget-header, .page-template-default .page-sales-team .page-content .ui-widget-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.page-template-default .page-meet-the-team .page-content .ui-widget-content, .page-template-default .page-team .page-content .ui-widget-content, .page-template-default .page-sales-team .page-content .ui-widget-content {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 2rem;
}

.page-template-default .page-meet-the-team .page-content .ui-widget-content .message-box, .page-template-default .page-team .page-content .ui-widget-content .message-box, .page-template-default .page-sales-team .page-content .ui-widget-content .message-box {
  width: 100%;
  background-color: rgba(250, 244, 238, 0.9);
  text-align: center;
  padding: 1rem;
}

.page-template-default .page-meet-the-team .page-content .ui-widget-content .message-box p, .page-template-default .page-team .page-content .ui-widget-content .message-box p, .page-template-default .page-sales-team .page-content .ui-widget-content .message-box p {
  margin-bottom: 0;
}

.page-template-default .page-meet-the-team .page-content .ui-widget-content .message-box .not-available, .page-template-default .page-team .page-content .ui-widget-content .message-box .not-available, .page-template-default .page-sales-team .page-content .ui-widget-content .message-box .not-available {
  font-weight: 500;
  color: #D2196F;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0;
  margin: 0 auto;
  max-width: 1170px;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item {
  height: 100%;
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(250, 244, 238, 0.9);
  margin: 0;
  border: 0;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item a, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item a, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #333;
  line-height: 60px;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item a.ui-tabs-anchor, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item a.ui-tabs-anchor, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item a.ui-tabs-anchor {
  padding: 0;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item a [class^="ti-"], .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item a [class^="ti-"], .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item a [class^="ti-"] {
  margin-right: 6px;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active, .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item:hover, .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item:focus, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item:hover, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item:focus, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item:hover, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item:focus {
  background-color: #E20C7C;
  border: 0 !important;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active a, .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item:hover a, .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item:focus a, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active a, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item:hover a, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item:focus a, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item.ui-tabs-active a, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item:hover a, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item:focus a {
  color: white;
  font-weight: 500;
}

@media (max-width: 992px) {
  .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
  .page-template-default .page-meet-the-team .page-content .agent-listings .agent-listings-nav .nav-item, .page-template-default .page-team .page-content .agent-listings .agent-listings-nav .nav-item, .page-template-default .page-sales-team .page-content .agent-listings .agent-listings-nav .nav-item {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes, .page-template-default .page-team .page-content .agent-listings .panel-open-homes, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes {
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-head, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-head, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-head > div, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-head > div, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-head > div {
  width: 20%;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 30px;
  line-height: 30px;
  padding: 0 1em;
  background-color: #060707;
  color: white;
  font-weight: 500;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-head > div:not(:last-child), .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-head > div:not(:last-child), .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-head > div:not(:last-child) {
  border-right: 1px solid white;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #060707;
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row:hover, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row:hover, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row:hover {
  background-color: rgba(226, 12, 124, 0.1);
}

.page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div {
  width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 100%;
  padding: .5em 1em;
}

@media (max-width: 767px) {
  .page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes, .page-template-default .page-team .page-content .agent-listings .panel-open-homes, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes {
    padding: 0;
    background-color: transparent;
  }
  .page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-head, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-head, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-head {
    display: none;
  }
  .page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 0;
    background-color: rgba(250, 244, 238, 0.9);
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div {
    width: 100%;
    padding-left: 50%;
    position: relative;
    margin-bottom: .5em;
  }
  .page-template-default .page-meet-the-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div::before, .page-template-default .page-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div::before, .page-template-default .page-sales-team .page-content .agent-listings .panel-open-homes .table-content .table-row > div::before {
    content: attr(data-label);
    display: block;
    width: 50%;
    height: 1em;
    font-size: 1em;
    font-weight: normal;
    position: absolute;
    color: #333;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item, .page-template-default .page-team .page-content .agent-list .agent-item, .page-template-default .page-sales-team .page-content .agent-list .agent-item {
  padding: 1rem;
  color: white;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-box, .page-template-default .page-team .page-content .agent-list .agent-item .agent-box, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-box {
  background-color: rgba(226, 12, 124, 0.7);
  padding: 30px 15px;
  -webkit-box-shadow: 0 0 3px rgba(226, 12, 124, 0.4);
          box-shadow: 0 0 3px rgba(226, 12, 124, 0.4);
  -webkit-transition: background-color .3s ease-in-out, -webkit-box-shadow .3s ease-out;
  transition: background-color .3s ease-in-out, -webkit-box-shadow .3s ease-out;
  transition: background-color .3s ease-in-out, box-shadow .3s ease-out;
  transition: background-color .3s ease-in-out, box-shadow .3s ease-out, -webkit-box-shadow .3s ease-out;
  -webkit-transition: background-color .3s ease-in-out, box-shadow .3s ease-out;
  -moz-transition: background-color .3s ease-in-out, box-shadow .3s ease-out;
  -ms-transition: background-color .3s ease-in-out, box-shadow .3s ease-out;
  -o-transition: background-color .3s ease-in-out, box-shadow .3s ease-out;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-box:hover, .page-template-default .page-team .page-content .agent-list .agent-item .agent-box:hover, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-box:hover {
  background-color: rgba(226, 12, 124, 0.85);
  -webkit-box-shadow: 0 0 10px 2px rgba(226, 12, 124, 0.7);
          box-shadow: 0 0 10px 2px rgba(226, 12, 124, 0.7);
  -webkit-transition: background-color .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  transition: background-color .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
  transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  -webkit-transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
  -moz-transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
  -ms-transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-header, .page-template-default .page-team .page-content .agent-list .agent-item .agent-header, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-header {
  width: 100%;
  text-align: center;
  padding-bottom: 1rem;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-header .agent-name, .page-template-default .page-team .page-content .agent-list .agent-item .agent-header .agent-name, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-header .agent-name {
  font-family: 'Arial', 'AZGillSans','Oswald';
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 200 !important;
  margin-bottom: 0;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-header .agent-role, .page-template-default .page-team .page-content .agent-list .agent-item .agent-header .agent-role, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-header .agent-role {
  font-style: italic;
  font-size: 14px;
  text-transform: capitalize;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-image, .page-template-default .page-team .page-content .agent-list .agent-item .agent-image, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-image {
  padding-bottom: 1rem;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-image figure, .page-template-default .page-team .page-content .agent-list .agent-item .agent-image figure, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-image figure {
  margin-bottom: 0;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li {
  padding: 0 1em;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  margin-bottom: .4em;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd):not(:last-child), .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd):not(:last-child), .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd):not(:last-child) {
  border-right: 1px solid white;
  text-align: right;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(even):not(:last-child), .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(even):not(:last-child), .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(even):not(:last-child) {
  text-align: left;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd), .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd), .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li:nth-child(odd) {
  text-align: center;
}

@media (max-width: 1024px) and (orientation: landscape) {
  .page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-phone, .page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-mobile, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-phone, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-mobile, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-phone, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li.agent-mobile {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center !important;
    border: 0 !important;
  }
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a {
  color: white;
  text-decoration: none;
}

.page-template-default .page-meet-the-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a:hover, .page-template-default .page-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a:hover, .page-template-default .page-sales-team .page-content .agent-list .agent-item .agent-detail .agent-contact-info li a:hover {
  color: #E20C7C;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .page-template-default .page-team #page-heading .left-box a[href="#email-agent"] {
    display: none;
  }
}

.page-template-default .page-team #page-heading .left-box a:not(:first-child) {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .page-template-default .page-team #page-heading .right-box {
    display: none;
  }
  .page-template-default .page-team #page-heading .left-box {
    width: auto;
  }
}

.page-template-default .page-login .page-content {
  max-width: 1170px;
  margin: 0 auto 2rem;
}

.page-template-default .page-login .page-content .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
}

.page-template-default .page-login .page-content .fields .title {
  text-align: center;
  width: 100%;
  font-weight: normal;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  margin-top: .5rem;
}

.page-template-default .page-login .page-content .fields .field {
  margin-bottom: 1rem;
}

.page-template-default .page-login .page-content .fields .field label {
  font-weight: 500;
  width: 100%;
}

.page-template-default .page-login .page-content .fields .field input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]) {
  height: 40px;
  line-height: 40px;
  padding: 0 .5em;
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
  max-width: 100%;
}

.page-template-default .page-login .page-content .fields .field input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]).alt {
  width: 100%;
}

.page-template-default .page-login .page-content .fields .field .button, .page-template-default .page-login .page-content .fields .field input[type="submit"] {
  background-color: #E20C7C;
  color: white;
  height: 40px;
  line-height: 40px;
  width: auto;
  padding: 0 1em;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: 0;
  -webkit-appearance: none;
}

.page-template-default .page-login .page-content .fields .field .button:hover, .page-template-default .page-login .page-content .fields .field input[type="submit"]:hover {
  background-color: #D2196F;
  text-decoration: none;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.page-template-default .page-login .page-content .fields .field .ms-parent {
  width: 100% !important;
}

.page-template-default .page-login .page-content .fields .field .input {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-default .page-login .page-content .fields .field .input .self {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 1em;
  margin-bottom: 0;
  line-height: 1;
}

.page-template-default .page-login .page-content .fields .field .input input[type="submit"], .page-template-default .page-login .page-content .fields .field .input .button, .page-template-default .page-login .page-content .fields .field .input a {
  margin-right: 10px;
}

.page-template-default .page-login .page-content .fields .field .input #subscribe_button {
  display: none;
}

.page-template-default .page-login .page-content .fields .field .input a.right {
  margin-left: auto;
  color: #E20C7C;
  text-decoration: none;
  display: inline-block;
  width: auto;
  padding: .5rem 1rem;
  background-color: #333;
  color: white;
}

.page-template-default .page-login .page-content .fields .field .input a.right:hover {
  color: white;
  background-color: #060707;
  text-decoration: none;
}

.page-template-default .page-login .page-content #return {
  text-align: center;
  color: #E20C7C;
  font-weight: 500;
}

@media (max-width: 992px) {
  .page-template-default .page-login .page-content {
    max-width: 92% !important;
    margin: 0 auto;
  }
  .page-template-default .page-login .page-content .grid-2 .column:not(:last-child) {
    margin-bottom: 1rem;
  }
  .page-template-default .page-login .page-content .grid-3 .column:not(:last-child) {
    margin-bottom: 1rem;
  }
  .page-template-default .page-login .page-content .fields .field .input .self {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .page-template-default .page-login .page-content .fields .field .input .self {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .page-template-default .page-login .page-content .fields .field .input a.right {
    margin-left: 0;
    display: block;
    width: auto;
    padding: .5rem 1rem;
    background-color: #333;
    color: white;
  }
}

.page-template-default .page-sitemap .page-content .menu {
  list-style: none;
}

.page-template-default .page-sitemap .page-content .menu .menu-item {
  position: relative;
  display: block;
  width: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
}

.page-template-default .page-sitemap .page-content .menu .menu-item::before {
  width: 2px;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: -.3rem;
  background-color: transparent;
  border: 1px dashed #333;
  display: block;
  content: "";
}

.page-template-default .page-sitemap .page-content .menu .menu-item a {
  color: #E20C7C;
  font-weight: 500;
  text-decoration: none;
  padding-left: 1.15rem;
  position: relative;
}

.page-template-default .page-sitemap .page-content .menu .menu-item a:hover {
  color: #D2196F;
}

.page-template-default .page-sitemap .page-content .menu .menu-item a:hover::before {
  border-color: #D2196F;
}

.page-template-default .page-sitemap .page-content .menu .menu-item a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 1rem;
  background-color: transparent;
  border: 1px dashed #595959;
  top: 50%;
  left: 0;
}

.page-template-default .page-sitemap .page-content .menu .menu-item.menu-item-has-children > a {
  padding-bottom: .2rem;
}

.page-template-default .page-sitemap .page-content .menu .menu-item.menu-item-has-children .sub-menu {
  padding-left: 3rem;
  list-style: none;
  position: relative;
}

.page-template-default .page-sitemap .page-content .menu .menu-item.menu-item-has-children .sub-menu::before {
  position: absolute;
  content: "";
  background-color: transparent;
  border: 1px dashed #333;
  height: calc(100% + .3rem);
  width: 2px;
  top: -.5rem;
  left: 0;
}

.page-investment-advantage .page-content code {
  font-size: 1rem !important;
  color: black !important;
  font-family: 'Arial', 'AZGillSans','Qanelas','Montserrat',sans-serif !important;
}

.page-investment-advantage .page-content > code {
  width: 80%;
  margin: 1rem auto;
  display: block;
}

.page-investment-advantage .page-content > code a {
  color: #E20C7C;
  text-decoration: none;
}

.page-investment-advantage .page-content > code a:hover {
  color: #060707;
  text-decoration: none;
}

.page-investment-advantage .page-content ul, .page-investment-advantage .page-content ol {
  margin-left: 1rem;
}

.page-investment-advantage .page-content p ~ h4 {
  margin-top: 2rem;
}

.page-investment-advantage .page-content .gform_wrapper {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}

.page-investment-advantage .page-content .gform_wrapper code {
  font-size: 1rem !important;
  color: black !important;
  font-family: 'Arial', 'AZGillSans','Qanelas','Montserrat',sans-serif !important;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield {
  width: 100%;
  margin-bottom: 1rem;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .gsection {
  margin-bottom: 0 !important;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .gsection .gsection_title {
  margin-top: 2rem !important;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .ginput_container select {
  width: 100% !important;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox [class^="gchoice_"] {
  margin-right: 1rem;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield .ui-selectmenu-button.ui-button {
  width: 100%;
}

.page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_2, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_3, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_27, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_25 {
  width: 50%;
}

@media (max-width: 767px) {
  .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_2, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_3, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_27, .page-investment-advantage .page-content .gform_wrapper .gform_fields .gfield#field_9_25 {
    width: 100%;
  }
}

.page-investment-advantage .page-content .gform_wrapper input[type="submit"], .page-investment-advantage .page-content .gform_wrapper .btn, .page-investment-advantage .page-content .gform_wrapper .button {
  height: 35px;
  line-height: 35px;
  background-color: #E20C7C;
  border: 0;
  -webkit-appearance: none;
  padding: 0 1.5rem;
  color: white;
  font-weight: bold;
}

body.error404 {
  background-image: url(https://s3-ap-southeast-2.amazonaws.com/agentbox-wp-cloud-prod/wp-content/uploads/sites/99/2019/04/16102300/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.error404 #page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 200px;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 6rem !important;
  color: white;
  text-shadow: 0 1px 3px black;
  margin-top: 128px;
}

body.error404 #page-title h1 {
  font-size: 6rem !important;
}

body.error404 #page-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  font-size: 2rem !important;
  color: white;
  text-shadow: 0 1px 3px black;
  min-height: calc(calc(100vh - 128px) - calc(200px + 52px));
}

@media (max-width: 992px) {
  body.error404 #page-entry {
    padding: 1rem;
  }
}

body#login .ui-selectmenu-menu .ui-menu {
  max-height: 220px !important;
}

.tns-visually-hidden {
  display: none;
}

.tns-outer {
  height: 100%;
  position: relative;
}

.tns-outer > button {
  display: none;
}

.tns-outer .tns-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.tns-outer .tns-inner .slider .slider-item, .tns-outer .tns-inner .slider .tns-item {
  position: relative;
}

.tns-outer .tns-inner .slider .slider-item a, .tns-outer .tns-inner .slider .tns-item a {
  width: 100%;
  height: 100%;
  display: block;
}

.tns-outer .tns-inner .slider .slider-item a img, .tns-outer .tns-inner .slider .tns-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tns-outer .tns-inner .slider .slider-item a .slider-caption, .tns-outer .tns-inner .slider .tns-item a .slider-caption {
  width: 100%;
  height: auto;
  padding: .5em;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tns-outer .tns-inner .slider .slider-item a .slider-caption *, .tns-outer .tns-inner .slider .tns-item a .slider-caption * {
  margin: 0;
  color: white;
  text-decoration: none;
}

.tns-outer .tns-inner .slider .slider-item a .slider-caption *:hover, .tns-outer .tns-inner .slider .tns-item a .slider-caption *:hover {
  color: white;
  text-decoration: none;
}

.tns-outer .tns-inner .slider.slider-featured > .slider-caption {
  width: 100%;
  height: auto;
  padding: .5em;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tns-outer .tns-inner .slider.slider-news-testi .slider-item a .slider-caption {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: .8em;
  padding: 1em 2.25em;
}

.tns-outer .tns-inner .media-floorplan .slider-image img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  height: 100%;
  width: 100%;
}

.page-property #page-heading {
  max-width: 1170px;
  margin: 0 auto 2rem;
  position: relative;
}

.page-property #page-heading .right-box {
  position: absolute;
  top: 50%;
  right: 0;
}

.page-property #page-heading .right-box .share_tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-property #page-heading .right-box .share_tools .social-box:not(:last-child) {
  margin-right: 4px;
}

.page-property #page-heading .right-box .share_tools .social-box a {
  width: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  min-width: 45px;
  text-decoration: none;
}

.page-property #page-heading .right-box .share_tools .social-box a:hover {
  text-decoration: none;
  background-color: #f31589;
}

.page-property #page-heading .left-box {
  position: absolute;
  top: 50%;
  left: 0;
}

.page-property #page-heading .left-box a {
  width: auto;
  padding: 10px;
  background-color: #E20C7C;
  color: white;
  text-align: center;
  min-width: 45px;
  text-decoration: none;
}

.page-property #page-heading .left-box a:hover {
  text-decoration: none;
  background-color: #f31589;
}

@media (max-width: 1024px) {
  .page-property #page-heading {
    max-width: 92%;
    margin: 0 auto;
  }
}

.page-property .section-main .section-overview .property-block, .page-property .section-main .section-overview .realty_plugins {
  border-bottom: 2px solid #D2196F;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.page-property .section-main .section-overview .property-block h2, .page-property .section-main .section-overview .realty_plugins h2 {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Monstserrat', verdana, sans-serif;
}

.page-property .section-main .section-overview .property-block .property_features, .page-property .section-main .section-overview .realty_plugins .property_features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-property .section-main .section-overview .property-block .property_features .features, .page-property .section-main .section-overview .realty_plugins .property_features .features {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .page-property .section-main .section-overview .property-block .property_features .features, .page-property .section-main .section-overview .realty_plugins .property_features .features {
    max-width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}

.page-property .section-main .section-overview .property-block .property_features .features [class^="ti-"], .page-property .section-main .section-overview .realty_plugins .property_features .features [class^="ti-"] {
  font-family: 'Arial', 'AZGillSans', 'Qanelas', 'Oswald';
}

.page-property .section-main .section-overview .property-block .property_features .features [class^="ti-"]::before, .page-property .section-main .section-overview .realty_plugins .property_features .features [class^="ti-"]::before {
  margin-right: 7px;
  font-family: 'themify';
}

@media (max-width: 767px) {
  .page-property .section-main .section-overview .property-block .property_features .features, .page-property .section-main .section-overview .realty_plugins .property_features .features {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  padding: 1rem;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box {
  padding: .75rem;
  background-color: #333;
  color: white;
  text-align: center;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box a, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box a {
  color: white;
  text-decoration: none;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent-name, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent-name {
  font-size: 18px;
  width: 100%;
  text-transform: uppercase;
  font-weight: normal;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo > a, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo > a img, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_photo > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_contact_info p, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info .agent-info-box .agent_contact_info p {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

@media (max-width: 767px) {
  .page-property .section-main .section-overview .property-block #agentinfo_contactform .agentinfo-row .agent_info, .page-property .section-main .section-overview .realty_plugins #agentinfo_contactform .agentinfo-row .agent_info {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.page-property .section-property-side .property_info h2 {
  text-transform: uppercase;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Monserrat', sans-serif;
}

.page-property .section-property-side .property_info .propety_facility {
  margin-bottom: 1rem;
}

.page-property .section-property-side .property_info .propety_facility .ico {
  margin-right: 0;
  display: inline-block;
  min-width: 4rem;
}

.page-property .section-property-side .property_info .propety_facility .ico [class^="ti-"]::before {
  color: #E20C7C;
  margin-right: 4px;
  margin-left: 2px;
}

.page-property .section-property-side .property_info .propety_facility .ico:not(:first-child):not(:last-child) {
  margin-left: 10px;
}

.page-property .section-property-side .property_info .propety_facility .ico:not(:first-child):not(:last-child) [class^="ti-"]::before {
  margin-left: 10px;
}

.page-property .section-property-side .property_info .property_inspection {
  border-top: 2px solid #E20C7C;
  padding: 1rem 0;
}

.page-property .section-property-side .property_info .property_inspection .inspection_detail p {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .2rem;
}

.page-property .section-property-side .property_info .property_inspection .inspection_detail p a {
  color: #E20C7C;
}

.page-property .section-property-side .property_info .property_inspection .inspection_detail p [class^="ti-"] {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: .2rem;
}

.page-property .section-property-side .property_info .property_auction {
  border-top: 2px solid #E20C7C;
  padding: 1rem 0;
}

.page-property .section-property-side .property_info .property_auction p {
  padding-left: 1.4rem;
  position: relative;
}

.page-property .section-property-side .property_info .property_auction p a {
  color: #E20C7C;
}

.page-property .section-property-side .property_info .property_auction p [class^="ti-"] {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: .2rem;
}

.page-property .section-property-side .property_info .property_overview {
  border-top: 2px solid #D2196F;
  padding: 1rem 0;
}

.page-property .section-property-side .property_info .property_overview .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 1.4rem;
}

.page-property .section-property-side .property_info .property_overview .detail .detail-label, .page-property .section-property-side .property_info .property_overview .detail .detail-content {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .page-property .section-property-side .property_info .property_overview .detail .detail-label, .page-property .section-property-side .property_info .property_overview .detail .detail-content {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .page-property .section-property-side .property_info .property_overview .detail .detail-label {
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .page-property .section-property-side .property_info .property_overview .detail {
    padding-left: 0;
  }
  .page-property .section-property-side .property_info .property_overview .detail .detail-label, .page-property .section-property-side .property_info .property_overview .detail .detail-content {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}

.page-property .tns-outer {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden visible;
}

.page-property .tns-outer.tab-panel {
  display: none;
}

.page-property .tns-outer.tab-panel.tab-active {
  padding-bottom: 56.25%;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-property .tns-outer.tab-panel.tab-active .tab-panel {
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-property .tns-outer .tns-ovh {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.page-property .tns-outer .tns-ovh .tns-inner {
  position: unset;
}

.page-property .tns-outer .tns-ovh .tns-inner .tns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-property .gallery-nav .gallery-nav-item {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #E20C7C;
  background-color: transparent;
}

.page-property .gallery-nav .gallery-nav-item:not(:last-child) {
  margin-right: 10px;
}

.page-property .tns-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.page-property .tns-nav button {
  display: inline-block;
  -webkit-appearance: none;
  border: 2px solid #E20C7C;
  background-color: transparent;
  height: 16px;
  width: 16px;
  margin-right: 10px;
}

.page-property .tns-nav button:hover {
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

.page-property .tns-nav button.tns-nav-active {
  background-color: #E20C7C;
}

@media (max-width: 767px) {
  .page-property #page-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 92%;
    margin: 0 auto 1rem;
  }
  .page-property #page-heading .page-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: auto;
  }
  .page-property #page-heading .left-box {
    position: static;
    margin-bottom: .5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: auto;
    width: 33.33%;
  }
  .page-property #page-heading .right-box {
    margin-top: 1rem;
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: auto;
    width: 66.66%;
  }
  .page-property #page-heading .right-box .share_tools {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

#maps #map_canvas {
  padding-bottom: 40%;
  z-index: 5;
}

@media (max-width: 992px) {
  #maps #map_canvas {
    padding-bottom: 100%;
  }
}

#map_search_result #map-canvas .leaflet-popup-content h5 {
  text-align: center;
  font-weight: bold;
}

.tabs-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.3rem;
}

.tabs-menu .tabs-submenu {
  height: 32px;
  line-height: 32px;
  padding: 0 1.25rem;
  width: auto;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.tabs-menu .tabs-submenu:hover {
  color: #E20C7C;
  text-decoration: none;
}

.tabs-menu .tabs-submenu.active {
  color: #E20C7C;
  text-decoration: none;
}

.tab-active {
  visibility: visible;
}

.tab-panel {
  visibility: hidden;
  height: 0;
  display: none;
}

.tab-panel.tab-active {
  visibility: visible;
  height: unset;
  display: block;
}

body.blog {
  background-image: url("../../assets/images/beachfront-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.blog #page-heading {
  margin-bottom: 30px;
  position: relative;
}

body.blog #page-heading .page-title {
  max-width: 33.33%;
  margin: 0 auto;
  text-align: center;
}

body.blog #page-heading .page-title h1 {
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  color: #333;
}

body.blog .blog_wrap {
  background-color: rgba(250, 244, 238, 0.8);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

body.blog .blog_wrap .posts-container {
  width: 75%;
  max-width: 75%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
}

body.blog .blog_wrap .posts-container .post {
  margin-bottom: 2.15rem;
}

body.blog .blog_wrap .posts-container .post .date {
  text-transform: uppercase;
}

body.blog .blog_wrap .posts-container .post .link-button {
  display: inline-block;
  width: auto;
  padding: 6px 10px;
  text-transform: capitalize;
  color: white;
  background-color: #E20C7C;
  text-decoration: none;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

body.blog .blog_wrap .posts-container .post .link-button:hover {
  background-color: #D2196F;
  text-decoration: none;
  transition: background-color .3s ease-out;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
}

body.blog .blog_wrap .posts-container .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: .5rem 0 1.25rem;
}

body.blog .blog_wrap .posts-container .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}

body.blog .blog_wrap .posts-container .pagination .nav-links .page-numbers {
  width: auto;
  height: auto;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 6px 12px;
}

body.blog .blog_wrap .posts-container .pagination .nav-links .page-numbers:not(:last-child) {
  margin-right: 6px;
}

body.blog .blog_wrap .posts-container .pagination .nav-links .page-numbers:hover {
  color: white;
  text-decoration: none;
  background-color: #E20C7C;
}

body.blog .blog_wrap .sidebar {
  width: 25%;
  max-width: 25%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  padding-left: 1.5rem;
}

body.blog .blog_wrap .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

body.blog .blog_wrap .sidebar ul li {
  width: 100%;
  background-color: #4d4d4d;
  color: white;
  padding: 1em;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  -webkit-transition: -webkit-box-shadow .2s ease-out;
  transition: -webkit-box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
  -webkit-transition: box-shadow .2s ease-out;
  -moz-transition: box-shadow .2s ease-out;
  -ms-transition: box-shadow .2s ease-out;
  -o-transition: box-shadow .2s ease-out;
}

body.blog .blog_wrap .sidebar ul li:hover {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-box-shadow .3s ease-out;
  transition: -webkit-box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out;
  transition: box-shadow .3s ease-out, -webkit-box-shadow .3s ease-out;
  -webkit-transition: box-shadow .3s ease-out;
  -moz-transition: box-shadow .3s ease-out;
  -ms-transition: box-shadow .3s ease-out;
  -o-transition: box-shadow .3s ease-out;
}

body.blog .blog_wrap .sidebar ul li a {
  color: white;
  text-decoration: none;
}

body.blog .blog_wrap .sidebar ul li a:hover {
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  body.blog .blog_wrap {
    max-width: 92%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  body.blog .blog_wrap .posts-container {
    width: 60%;
    max-width: 60%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }
  body.blog .blog_wrap .sidebar {
    width: 40%;
    max-width: 40%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  body.blog .blog_wrap {
    max-width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.blog .blog_wrap .posts-container {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  body.blog .blog_wrap .sidebar {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding-left: 0;
  }
}

body.post-template-default {
  background-image: url("../../assets/images/beachfront-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.post-template-default #page-title {
  max-width: 1170px;
  margin: 0 auto;
  display: none;
}

body.post-template-default #page-entry {
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  font-weight: 200;
  padding: 30px 25px;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1170px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #333;
  margin-top: 180px;
}

body.post-template-default #page-entry .blog-content {
  width: 75%;
  max-width: 75%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  height: 100%;
}

body.post-template-default #page-entry .blog-content .blog-title {
  font-family: 'Arial', 'AZGillSans','Oswald','Montserrat', sans-serif;
  text-transform: uppercase;
}

body.post-template-default #page-entry .blog-content a {
  color: #E20C7C;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

body.post-template-default #page-entry .blog-content a:hover {
  color: #060707;
  transition: color .3s ease-out;
  -webkit-transition: color .3s ease-out;
  -moz-transition: color .3s ease-out;
  -ms-transition: color .3s ease-out;
  -o-transition: color .3s ease-out;
}

body.post-template-default #page-entry .blog-content .pages {
  width: 100%;
}

body.post-template-default #page-entry .blog-content .pages [class*="grid-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (max-width: 767px) {
  body.post-template-default #page-entry .blog-content {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

body.post-template-default #page-entry .sidebar {
  width: 25%;
  max-width: 25%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  height: auto;
  padding-left: 1rem;
}

body.post-template-default #page-entry .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.post-template-default #page-entry .sidebar a {
  color: #E20C7C;
  text-decoration: none;
}

body.post-template-default #page-entry .sidebar a:hover {
  color: #060707;
  text-decoration: none;
}

body.post-template-default #page-entry .sidebar .share {
  margin-top: .5rem;
}

body.post-template-default #page-entry .sidebar .share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.post-template-default #page-entry .sidebar .share ul li {
  margin-right: 6px;
}

body.post-template-default #page-entry .sidebar .share ul li a {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  display: block;
  font-size: .7rem;
  background-color: white;
  color: #333;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.25);
          box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.25);
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

body.post-template-default #page-entry .sidebar .share ul li a:hover {
  color: white;
  background-color: #E20C7C;
  transition: background-color .3s;
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -ms-transition: background-color .3s;
  -o-transition: background-color .3s;
}

@media (max-width: 767px) {
  body.post-template-default #page-entry .sidebar {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  body.post-template-default #page-entry {
    width: 92%;
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  body.post-template-default #page-entry {
    margin-top: 60px;
  }
}

.mfp-bg {
  background-color: rgba(226, 12, 124, 0.5);
  mix-blend-mode: hue;
  opacity: 0;
}

.mfp-bg.mfp-ready {
  opacity: .8;
  transition: opacity 3s;
  -webkit-transition: opacity 3s;
  -moz-transition: opacity 3s;
  -ms-transition: opacity 3s;
  -o-transition: opacity 3s;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup {
  width: 600px;
  max-width: 600px;
  padding: 0;
  -webkit-box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.5);
          box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.5);
  color: #333;
  background-color: white;
  margin: 0 auto;
  position: relative;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .mfp-close {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 25px;
  background-color: white;
  text-align: center;
  color: #E20C7C;
  font-weight: bold;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: .5rem;
  right: .5rem;
  opacity: 1;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .title {
  background-color: #E20C7C;
  color: white;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  padding: 5px 15px;
  font-family: 'Arial', 'AZGillSans','Oswald', 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup form {
  padding: 1rem;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms, .mfp-wrap .mfp-container .mfp-content .mf-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding-bottom: 10px;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li:last-child, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li:last-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li label, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li label {
  width: 33.33%;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input:not([type="submit"]), .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li textarea, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li input:not([type="submit"]), .mfp-wrap .mfp-container .mfp-content .mf-popup ul li textarea {
  width: 66.66%;
  border: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  outline: 0 !important;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li textarea, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li textarea {
  min-height: 75px;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li img, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li img {
  margin-bottom: 1rem;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input[type="button"], .mfp-wrap .mfp-container .mfp-content .mf-popup ul li input[type="button"] {
  background-color: #E20C7C;
  color: white;
  padding: 6px 10px;
  display: inline-block;
  border: 0;
  text-align: center;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input[type="number"], .mfp-wrap .mfp-container .mfp-content .mf-popup ul li input[type="number"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input[type="number"]::-webkit-inner-spin-button, .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input[type="number"]::-webkit-outer-spin-button, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li input[type="number"]::-webkit-inner-spin-button, .mfp-wrap .mfp-container .mfp-content .mf-popup ul li input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-content .mf-popup {
    width: 90%;
    max-width: 90%;
  }
  .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li label {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li input:not([type="submit"]), .mfp-wrap .mfp-container .mfp-content .mf-popup .listforms li textarea {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.panel-listing, .panel-map {
  height: 100%;
  visibility: hidden;
  display: none;
}

.panel-listing > *, .panel-map > * {
  height: 0;
}

.panel-listing.panel-show, .panel-map.panel-show {
  height: auto;
  visibility: visible;
  display: block;
}

.panel-listing.panel-show > *, .panel-map.panel-show > * {
  height: auto;
}

.leaflet-popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 576px) {
  .leaflet-popup-content {
    max-width: 200px;
  }
}

.leaflet-popup-content .infoaddress {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

.leaflet-popup-content fieldset {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 3px;
}

.leaflet-popup-content fieldset ~ a {
  display: block;
  text-align: left;
}

.leaflet-popup-content .rooms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 10px;
}

.leaflet-popup-content .rooms li {
  margin-right: 4px;
  padding-right: 1em;
  width: 33.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}

.leaflet-popup-content .rooms li:nth-child(1) .ico span[class*="ti-"] {
  margin-right: .5em;
  display: inline-block;
}

.leaflet-popup-content .rooms li .ico {
  min-width: 1rem;
  width: 100%;
  display: block;
  position: relative;
}

.leaflet-popup-content .rooms li .ico span[class*="ti-"] {
  width: 1em;
  height: 1em;
  display: inline-block;
  text-align: center;
  position: relative;
}

.leaflet-popup-content .rooms li .ico .ti-car {
  margin-right: .5em;
}

.leaflet-popup-content .rooms li .ico .ti-car::before {
  font-size: .7em;
}

.leaflet-popup-content .rooms li .ico .ti-bed::before {
  font-size: .7em;
}

.leaflet-popup-content .info_img {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 576px) {
  .leaflet-popup-content .info_img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.leaflet-popup-content .info_img a {
  color: #E20C7C;
}

.leaflet-popup-content .info_img img {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  height: auto;
}

@media screen and (max-width: 576px) {
  .leaflet-popup-content .info_img img {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.leaflet-popup-content .info_img .detail-prop {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding-left: 1em;
  font-size: 1.25em;
}

@media screen and (max-width: 576px) {
  .leaflet-popup-content .info_img .detail-prop {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding-left: 0;
    padding-top: 1em;
  }
}

.ms-parent {
  margin-right: 4px;
  height: 100%;
  -webkit-appearance: none;
  height: 38px;
  background-color: transparent;
}

.ms-parent .ms-choice {
  height: 100%;
  width: calc(100% - 4px);
  background-color: white;
  border: 0;
}

.ms-parent .ms-choice > div, .ms-parent .ms-choice > div.open {
  background-image: url("../images/chevron-down.svg");
  background-size: 15px;
  background-position: center center;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.ms-parent .ms-choice > span {
  height: 38px;
  line-height: 38px;
}

.ms-parent .ms-drop {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.ms-parent .ms-drop ul > li {
  position: relative;
}

.ms-parent .ms-drop ul > li:hover, .ms-parent .ms-drop ul > li.selected {
  color: #E20C7C;
}

.ms-parent .ms-drop ul > li label span {
  font-weight: normal;
  word-break: break-word;
  white-space: normal;
}

.ms-parent .ms-drop label::after {
  display: block;
  clear: both;
  content: "";
}

.ms-parent .ms-drop input[type="checkbox"] {
  margin-left: 10px;
  float: right;
  margin-top: .3em;
  width: 0;
}

.ms-parent .ms-drop input[type="checkbox"]:after {
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  font-family: "themify";
}

.ms-parent .ms-drop input[type="checkbox"]:checked::after {
  display: block;
  width: 10px;
  height: 10px;
  content: "\e64c";
  position: absolute;
  top: 0;
  right: 4px;
  color: #E20C7C;
}

.ms-parent .ms-search input[type="text"] {
  -webkit-box-shadow: inset 0 1px 4px rgba(51, 51, 51, 0.4), inset 1px 1px 1px rgba(51, 51, 51, 0.3);
          box-shadow: inset 0 1px 4px rgba(51, 51, 51, 0.4), inset 1px 1px 1px rgba(51, 51, 51, 0.3);
}

.ms-parent .ms-search input[type="text"]:focus {
  -webkit-box-shadow: inset 0 1px 4px #c62355, inset 1px 1px 1px rgba(51, 51, 51, 0.3);
          box-shadow: inset 0 1px 4px #c62355, inset 1px 1px 1px rgba(51, 51, 51, 0.3);
}

.ui-selectmenu-button.ui-widget, .ui-selectmenu-button.ui-button {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 1em;
  background-color: white;
}

.ui-selectmenu-button.ui-widget:focus, .ui-selectmenu-button.ui-button:focus {
  outline: 0 !important;
}

.ui-selectmenu-button.ui-widget:active, .ui-selectmenu-button.ui-button:active {
  background-color: #060707;
  border: inherit !important;
}

.ui-selectmenu-button.ui-widget:hover, .ui-selectmenu-button.ui-button:hover {
  background-color: white;
}

.ui-selectmenu-button.ui-widget .ui-icon, .ui-selectmenu-button.ui-button .ui-icon {
  background-image: url("../images/chevron-down.svg") !important;
  background-position: center;
  background-size: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin-top: 1px;
}

@media (max-width: 767px) {
  .ui-selectmenu-button.ui-widget, .ui-selectmenu-button.ui-button {
    width: 100% !important;
  }
}

.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper, .ui-selectmenu-menu .ui-menu .ui-menu-item {
  padding: .3em 1em;
}

.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper:hover, .ui-selectmenu-menu .ui-menu .ui-menu-item:hover {
  background-color: #E20C7C;
  border: 0 !important;
  color: white;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -ms-transition: background-color .5s;
  -o-transition: background-color .5s;
}

.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper.ui-state-active, .ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper.ui-state-focus, .ui-selectmenu-menu .ui-menu .ui-menu-item.ui-state-active, .ui-selectmenu-menu .ui-menu .ui-menu-item.ui-state-focus {
  border: 0 !important;
  background: #E20C7C;
  color: white;
}

.gform_wrapper li.gfield.gfield_error {
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding-bottom: unset !important;
  padding-top: unset !important;
  background-color: transparent !important;
  padding-right: 16px !important;
}

.gform_wrapper li.gfield.gfield_error input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.gform_wrapper li.gfield.gfield_error select, .gform_wrapper li.gfield.gfield_error textarea, .gform_wrapper li.gfield.gfield_error .ui-button {
  border: 1px solid #D2196F !important;
}

.gform_wrapper li.gfield.gfield_error label {
  margin-top: 0 !important;
}

.gform_wrapper li.gfield.gfield_error .ginput_container {
  margin-top: 5px !important;
}

.gform_wrapper div.validation_error {
  color: white !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background-color: #E20C7C !important;
  width: calc(100% - 16px) !important;
}

.reload-captcha a.btn {
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  color: white;
  padding: 0 1.2rem;
  background-color: #060707;
  margin-left: 10px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.reload-captcha a.btn:hover {
  background-color: black;
}

.reload-captcha ~ label {
  margin-bottom: 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reload-captcha ~ input#securitycode {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 767px) {
  .reload-captcha {
    display: block;
    width: 100%;
    margin-left: 30%;
  }
}

.ui-tooltip {
  padding: 0 !important;
  background-color: transparent !important;
  border: 1px solid black !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.ui-tooltip .ui-widget-content {
  padding: 0 !important;
  background-color: transparent !important;
}

.ui-tooltip-content {
  padding: .5rem !important;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.page-content ul, .page-content ol {
  padding-left: 1rem;
}

.page-optimiser-packages .page-content .wp-block-image {
  display: inline-block;
  width: 33%;
  vertical-align: top;
}

.page-optimiser-packages .page-content .wp-block-image a {
  display: block;
  text-align: center;
}

.ui-accordion .ui-accordion-header {
  background-color: white;
  font-weight: normal;
  color: #E20C7C;
  line-height: 2;
}

.ui-accordion .ui-accordion-header:hover {
  background-color: #E20C7C;
  color: white;
  transition: background-color .3s ease-in;
  -webkit-transition: background-color .3s ease-in;
  -moz-transition: background-color .3s ease-in;
  -ms-transition: background-color .3s ease-in;
  -o-transition: background-color .3s ease-in;
}

.ui-accordion .ui-accordion-header.ui-state-active {
  border: 0;
  background: #E20C7C;
  color: white;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  margin-right: .5em;
}

.ui-accordion .ui-accordion-content {
  background-color: rgba(51, 51, 51, 0.7);
  color: white;
  height: auto !important;
}

.gform_wrapper #gform_18 .gform_fields, .gform_wrapper #gform_15 .gform_fields, .gform_wrapper #gform_12 .gform_fields, .gform_wrapper #gform_9 .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gform_wrapper #gform_18 .gform_fields > .gfield, .gform_wrapper #gform_15 .gform_fields > .gfield, .gform_wrapper #gform_12 .gform_fields > .gfield, .gform_wrapper #gform_9 .gform_fields > .gfield {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 767px) {
  .gform_wrapper #gform_18 .gform_fields > .gfield, .gform_wrapper #gform_15 .gform_fields > .gfield, .gform_wrapper #gform_12 .gform_fields > .gfield, .gform_wrapper #gform_9 .gform_fields > .gfield {
    width: 100%;
  }
}

.gform_wrapper #gform_18 .gform_fields > .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="reset"]), .gform_wrapper #gform_15 .gform_fields > .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="reset"]), .gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="reset"]), .gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="reset"]) {
  width: 100%;
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 .9em;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
}

.gform_wrapper #gform_18 .gform_footer, .gform_wrapper #gform_15 .gform_footer, .gform_wrapper #gform_12 .gform_footer, .gform_wrapper #gform_9 .gform_footer {
  text-align: center;
}

.gform_wrapper #gform_18 .gform_footer .gform_button, .gform_wrapper #gform_15 .gform_footer .gform_button, .gform_wrapper #gform_12 .gform_footer .gform_button, .gform_wrapper #gform_9 .gform_footer .gform_button {
  -webkit-appearance: none;
  border: 0;
  height: 38px;
  line-height: 38px;
  width: auto;
  display: inline-block;
  background-color: #E20C7C;
  color: white;
  font-weight: normal;
  text-transform: uppercase;
  padding: 0 1.5em;
}

.gform_wrapper #gform_18 .gform_footer .gform_button:hover, .gform_wrapper #gform_15 .gform_footer .gform_button:hover, .gform_wrapper #gform_12 .gform_footer .gform_button:hover, .gform_wrapper #gform_9 .gform_footer .gform_button:hover {
  background-color: #D2196F;
}

.gform_wrapper #gform_15 .gform_fields > .gfield#field_15_1, .gform_wrapper #gform_15 .gform_fields > .gfield#field_15_2, .gform_wrapper #gform_15 .gform_fields > .gfield#field_15_7, .gform_wrapper #gform_15 .gform_fields > .gfield#field_15_8, .gform_wrapper #gform_15 .gform_fields > .gfield#field_15_9 {
  width: 100%;
}

.gform_wrapper #gform_9 .gform_fields > .gfield#field_9_1, .gform_wrapper #gform_9 .gform_fields > .gfield#field_9_7, .gform_wrapper #gform_9 .gform_fields > .gfield#field_9_23 {
  width: 100%;
}

.gform_wrapper #gform_9 .gform_fields > .gfield#field_9_21, .gform_wrapper #gform_9 .gform_fields > .gfield#field_9_22 {
  width: 25%;
}

@media (max-width: 767px) {
  .gform_wrapper #gform_9 .gform_fields > .gfield#field_9_21, .gform_wrapper #gform_9 .gform_fields > .gfield#field_9_22 {
    width: 50%;
  }
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] {
  width: 33.33%;
  padding-right: 10px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #333;
  padding: 0 1em;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] input[type="radio"] {
  display: none;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] input[type="radio"]:checked + label {
  background-color: #E20C7C;
  font-weight: normal;
  color: white;
  border: 1px solid #E20C7C;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] label {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 38px;
  margin: 0;
  padding: 0 1em !important;
  background-color: white;
  max-width: 100%;
  text-align: center;
  border: 1px solid #c5c5c5;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] label:hover {
  background-color: #f545a1;
  font-weight: normal;
  color: white;
  border: 1px solid #f545a1;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ui-selectmenu-button.ui-widget, .gform_wrapper #gform_9 .gform_fields > .gfield .ui-selectmenu-button.ui-button {
  width: 100% !important;
  display: block;
  position: relative;
}

.gform_wrapper #gform_9 .gform_fields > .gfield .ui-selectmenu-button.ui-widget .ui-icon, .gform_wrapper #gform_9 .gform_fields > .gfield .ui-selectmenu-button.ui-button .ui-icon {
  right: 1rem;
  position: absolute;
}

.gform_wrapper #gform_12 .gform_fields > .gfield#field_12_1, .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_7, .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_23 {
  width: 100%;
}

.gform_wrapper #gform_12 .gform_fields > .gfield#field_12_21, .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_22 {
  width: 25%;
}

@media (max-width: 767px) {
  .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_21, .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_22 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_21 {
    padding-right: .7rem;
  }
}

@media (max-width: 767px) {
  .gform_wrapper #gform_12 .gform_fields > .gfield#field_12_22 {
    padding-left: .7rem;
  }
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] {
  width: 33.33%;
  padding-right: 10px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #333;
  padding: 0 1em;
}

@media (max-width: 767px) {
  .gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] {
    width: 50%;
  }
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] input[type="radio"] {
  display: none;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] input[type="radio"]:checked + label {
  background-color: #E20C7C;
  font-weight: normal;
  color: white;
  border: 1px solid #E20C7C;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] label {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 38px;
  margin: 0;
  padding: 0 1em !important;
  background-color: white;
  max-width: 100%;
  text-align: center;
  border: 1px solid #c5c5c5;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ginput_container_radio .gfield_radio [class^="gchoice_"] label:hover {
  background-color: #f545a1;
  font-weight: normal;
  color: white;
  border: 1px solid #f545a1;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ui-selectmenu-button.ui-widget, .gform_wrapper #gform_12 .gform_fields > .gfield .ui-selectmenu-button.ui-button {
  width: 100% !important;
  display: block;
  position: relative;
}

.gform_wrapper #gform_12 .gform_fields > .gfield .ui-selectmenu-button.ui-widget .ui-icon, .gform_wrapper #gform_12 .gform_fields > .gfield .ui-selectmenu-button.ui-button .ui-icon {
  right: 1rem;
  position: absolute;
}

#sorter_pagination {
  position: relative;
}

#sorter_pagination .sorter_search_quick .pdf {
  padding: 0;
  margin-bottom: 0;
}

#sorter_pagination .sorter_search_quick .pdf a {
  height: 36px;
  line-height: 36px;
  background: #333;
  color: white;
  padding: 0;
  text-align: center;
  font-weight: normal;
  padding: 0 1em;
}

#sorter_pagination .sorter_search_quick .pdf a:hover {
  background-color: #595959;
}

.gfield_contains_required .ginput_container_name .name_first label, .gfield_contains_required .ginput_container_name .name_last label {
  position: relative;
}

.gfield_contains_required .ginput_container_name .name_first label::after, .gfield_contains_required .ginput_container_name .name_last label::after {
  display: inline-block;
  content: "*";
  color: #790000;
  font-size: 1em;
  margin-left: 5px;
}

.color-required {
  color: #790000 !important;
}

.contact-form-float #gform_3 .gfield .ginput_recaptcha iframe {
  -webkit-transform: scale(0.69);
          transform: scale(0.69);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.gform_wrapper .gform_body .gfield .gfield_label {
  margin-bottom: 0;
}

.gform_wrapper .gform_body .gfield .ginput_container {
  margin-top: 5px;
}

.page-rental-inspections .page-content {
  background: transparent;
}

.page-rental-inspections .page-content .table-content .table-row .td-address a, .page-rental-inspections .page-content .table-content .table-row .td-inspect a {
  color: white;
}

.page-rental-inspections .page-content .table-content .table-row .td-address a:hover, .page-rental-inspections .page-content .table-content .table-row .td-inspect a:hover {
  text-decoration: none;
}

.page-testimonials .page-content {
  background-color: transparent;
}

.page-testimonials .page-content .testimonial {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 8px;
          column-gap: 8px;
}

@media screen and (max-width: 767px) {
  .page-testimonials .page-content .testimonial {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.page-testimonials .page-content .testimonial .testimonial-item .testi-quote {
  left: 10px;
  top: 10px;
  font-size: 1.3rem;
}

.page-testimonials .page-content .testimonial .testi-wrap {
  background-color: rgba(226, 12, 124, 0.9);
}

.page-testimonials .page-content .testimonial .testi-wrap .testi-value span {
  color: white !important;
}

.page-resources .page-content ul.nav-tabs {
  list-style: none;
  padding-left: 0;
}

.page-resources .page-content ul.nav-tabs li .btn {
  background: #faf4ee;
  color: #E20C7C;
}

.page-resources .page-content ul.nav-tabs li .btn:hover {
  background: #E20C7C;
  color: white;
}

.page-resources .page-content ul.nav-tabs li .btn.active {
  background: #E20C7C;
  color: white;
}

.page-resources .page-content ul.nav-tabs li:first-child {
  margin-right: 5px;
}

.page-resources .page-content .tab-content .tab-pane .form-group:last-child > div {
  margin-left: 33.333333%;
}

@media screen and (max-width: 575px) {
  .page-resources .page-content .tab-content .tab-pane .form-group:last-child > div {
    margin-left: 0;
  }
}

.page-resources .page-content .tab-content .tab-pane .form-group:last-child > div .btn {
  width: calc(100% / 2 - 3px);
}

.page-resources .page-content .tab-content .tab-pane .form-group:last-child > div .btn.btn-primary {
  background: #E20C7C;
  color: white;
  border-color: transparent;
}

.page-resources .page-content .tab-content .calc_table, .page-resources .page-content .tab-content #stamp_result_tr {
  width: 100%;
}

.page-resources .page-content .tab-content .calc_table td.calc_field, .page-resources .page-content .tab-content #stamp_result_tr td.calc_field {
  width: 34%;
  padding: calc(.375rem + 1px) 0;
  line-height: 2;
}

.page-resources .page-content .tab-content .calc_table td.calc_value input[type="text"], .page-resources .page-content .tab-content #stamp_result_tr td.calc_value input[type="text"] {
  border-radius: .25rem;
  width: 74%;
  padding: .375rem .75rem;
}

.page-resources .page-content .tab-content .calc_table td[colspan="2"], .page-resources .page-content .tab-content #stamp_result_tr td[colspan="2"] {
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .td-features {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.td-features .features {
  margin-right: 0;
  display: inline-block;
}

.td-features .features:first-child {
  width: 4rem;
}

.td-features .features:not(:first-child):not(:last-child) {
  margin-right: 15px;
}

.td-features .features [class^="ti"]::before {
  color: white;
  margin-right: 4px;
  margin-left: 2px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .td-features .features {
    display: block;
  }
  .td-features .features:not(:first-child):not(:last-child) {
    margin-right: 0;
    margin-left: 15px;
  }
  .td-features .features [class^="ti"] {
    display: inline-block;
    width: 35px;
  }
  .td-features .features .ti-bath {
    width: 20px;
  }
}

@media screen and (max-width: 767px) {
  .table-title {
    display: none;
  }
}

.panel-listing .table-title {
  color: white;
}

.panel-listing .table-content .table-row {
  background-color: rgba(226, 12, 124, 0.9);
  color: white !important;
  padding: 1rem;
}

.panel-listing .table-content .table-row a {
  color: white;
}

.ti-bath::before {
  font-size: 1em;
  margin-left: 4px !important;
}

footer.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 calc(calc(100vw - 1170px) / 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  background-color: #E20C7C;
  color: white;
  font-size: 14px;
}

footer.footer a {
  color: white;
  text-decoration: none;
}

footer.footer a:hover {
  text-decoration: none;
  color: white;
}

footer.footer .menu-footer a {
  margin-right: 4px;
}

footer.footer .left-footer, footer.footer .right-footer, footer.footer .footer-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 33.33%;
  max-width: 33.33%;
}

footer.footer .left-footer .copyright, footer.footer .right-footer .copyright, footer.footer .footer-social-media .copyright {
  padding-right: 6px;
}

footer.footer .footer-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer.footer .footer-social-media a {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: white;
  color: #333;
  height: 2rem;
  width: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1rem;
}

footer.footer .footer-social-media a:not(:last-child) {
  margin-right: 10px;
}

footer.footer .footer-social-media a:hover {
  color: #E20C7C;
}

footer.footer .right-footer {
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1024px) {
  footer.footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    padding: 1rem;
    text-align: center;
  }
  footer.footer .left-footer {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer.footer .right-footer {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer.footer .footer-social-media {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

.contact-form-float {
  position: fixed;
  top: 171px;
  right: 0;
  left: unset;
  bottom: unset;
  width: 250px;
  padding: 20px;
  background-color: rgba(250, 244, 238, 0.9);
  color: #333;
  z-index: 999;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  transform: translateX(250px);
  -webkit-transform: translateX(250px);
  -moz-transform: translateX(250px);
  -ms-transform: translateX(250px);
  -o-transform: translateX(250px);
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
  -webkit-transition: transform .4s ease-out;
  -moz-transition: transform .4s ease-out;
  -ms-transition: transform .4s ease-out;
  -o-transition: transform .4s ease-out;
}

.contact-form-float p {
  text-align: center;
  margin-bottom: 0;
}

.contact-form-float .form-label {
  position: absolute;
  left: 0;
  -webkit-transform: translate(-100%, -20px);
          transform: translate(-100%, -20px);
  padding: 0 14px;
  background: rgba(226, 12, 124, 0.9);
  color: white;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding: 0 1rem;
  cursor: pointer;
}

.contact-form-float .form-label [class^="ti-"] {
  -webkit-transform: translate(-100%, -20px);
  -moz-transform: translate(-100%, -20px);
  -ms-transform: translate(-100%, -20px);
  -o-transform: translate(-100%, -20px);
  padding-right: 6px;
}

.contact-form-float::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  height: 40px;
  background: #E20C7C;
  color: white;
  font-weight: 500;
  position: absolute;
  left: -150px;
  top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form-float.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
  -webkit-transition: transform .4s ease-out;
  -moz-transition: transform .4s ease-out;
  -ms-transition: transform .4s ease-out;
  -o-transition: transform .4s ease-out;
}

.contact-form-float.show .form-label [class^="ti-"]::before {
  content: "\e646" !important;
}

.contact-form-float .gform_wrapper {
  padding: 0;
  margin: 0;
}

.contact-form-float .gform_wrapper .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form-float .gform_wrapper .gform_fields .gfield {
  width: 100%;
  padding-right: 0;
  margin-top: 6px;
}

.contact-form-float .gform_wrapper .gform_fields .gfield:first-child {
  display: none;
}

.contact-form-float .gform_wrapper .gform_fields .gfield .ginput_complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-form-float .gform_wrapper .gform_fields .gfield .ginput_complex.ginput_container_name > span {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin-top: 12px;
}

.contact-form-float .gform_wrapper .gform_fields .gfield .ginput_complex.ginput_container_name > span:first-child {
  margin-top: 0;
}

.contact-form-float .gform_wrapper .gform_fields .gfield .gfield_label {
  display: none;
}

.contact-form-float .gform_wrapper .gform_fields .gfield label {
  display: none !important;
}

.contact-form-float .gform_wrapper .gform_fields .gfield select, .contact-form-float .gform_wrapper .gform_fields .gfield input:not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]) {
  width: 100%;
  height: 30px;
  font-size: 15px;
  font-weight: lighter;
  background-color: white;
  border: 1px solid #dcdcdd;
  -webkit-appearance: none;
}

.contact-form-float .gform_wrapper .gform_fields .gfield select::-webkit-input-placeholder, .contact-form-float .gform_wrapper .gform_fields .gfield input:not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"])::-webkit-input-placeholder {
  color: #333;
}

.contact-form-float .gform_wrapper .gform_fields .gfield select:-ms-input-placeholder, .contact-form-float .gform_wrapper .gform_fields .gfield input:not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]):-ms-input-placeholder {
  color: #333;
}

.contact-form-float .gform_wrapper .gform_fields .gfield select::-ms-input-placeholder, .contact-form-float .gform_wrapper .gform_fields .gfield input:not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"])::-ms-input-placeholder {
  color: #333;
}

.contact-form-float .gform_wrapper .gform_fields .gfield select::placeholder, .contact-form-float .gform_wrapper .gform_fields .gfield input:not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"])::placeholder {
  color: #333;
}

.contact-form-float .gform_wrapper .gform_fields .gfield textarea {
  height: 75px;
  background-color: white;
  border: 1px solid #dcdcdd;
}

.contact-form-float .gform_wrapper .gform_fields .gfield.gfield_error {
  background-color: transparent;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.contact-form-float .gform_wrapper .gform_footer {
  margin-top: 0;
}

.contact-form-float .gform_wrapper .gform_footer input[type="submit"] {
  background-color: #E20C7C;
  color: white;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  height: 30px;
  font-size: 1rem;
  border: 0;
}

.contact-form-float .gform_wrapper .validation_error {
  display: none;
}

.contact-form-float .gform_wrapper .validation_message {
  padding-top: 0 !important;
}

.contact-form-float .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.contact-form-float .gform_wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required:nth-child(2) div.ginput_container {
  margin-top: 0 !important;
}

@media (max-width: 992px) {
  .contact-form-float {
    display: none;
  }
}

@-webkit-keyframes slide-left {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
  90% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
  90% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  90% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@-webkit-keyframes slide-up {
  from {
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
  }
  to {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
  }
  to {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@-webkit-keyframes growHeight {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes growHeight {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
/*# sourceMappingURL=main.css.map */