﻿html {
  font-family: "Roboto", sans-serif;
  font-size: 98%;
  scroll-behavior: auto !important;  /* keep this override */
}

  body.scroll-locked { position: fixed; left: 0; right: 0; width: 100%; }
  .quick-search { overflow-anchor: none; } /* optional but helps */

html,
body{
  height: 100%;
  font-family: "Roboto",sans-serif;
  overscroll-behavior: contain; 
}

body {
   margin: 0;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #002d5b;
    margin: 0.5rem 0;
    padding: 0;
}

h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #002d5b;
    margin: 0.5rem 0;
    padding: 0;
}

.wrap {
   max-width: 1280px;
   width: 95%;
   margin: 0 auto;
   margin-top: 20px;
}

.quick-search { background: #dad8d8; margin-bottom: 2.5rem; padding: 2rem; display: flex; }
.quick-search-outer, .quick-search-outer form { display: flex; flex-direction: row; flex: 1; }
.quick-search__form-field { border: 1px solid #ccc; border-top: 0px; border-bottom: 0px; }

.quick-search__form-field, .select2 { width: 100% !important; }

.quick-search__form-field--tabs-radio {
  position: relative;
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}

.property-type { padding: 10px 20px; border-radius: 5px; background-color: #fff; color: #aaa9b0; }
.property-type.active { background-color: #fdb414; color: #fff; }

.searchForm__form__btn button {
    width: 100%;
    padding: 0.625rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    text-transform: capitalize;
    font-weight: normal;
    color: #fff;
    background-color: #002d5b;    
    border: none;
    outline: 0;
    cursor: pointer;
}

.quick-search__form-field--tabs-radio input {
  position: absolute;
  left: -99999em;
  top: -99999em;
}

.quick-search__form-field--tabs-radio input + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 50%;
  background-color: #fff;
  padding: 0.8rem;
  position: relative;
  border-top-right-radius: 5px;
  color: #ababab;
  text-align: center;
}

.quick-search__form-field--tabs-radio input + label:first-of-type {
  border-top-right-radius: 0;
  border-top-left-radius: 5px;
}

.quick-search__form-field--tabs-radio input:checked + label {
  background-color: #fdb414;
  color: #fff;
  z-index: 1;
}

.quick-search__form-field--tabs-radio, .searchForm__form__btn {
  max-height: 43px !important;
}

.searchForm__form__btn {
  max-height: 45px !important;
}

.quick-search .select2-selection__rendered {
  line-height: 44px !important;
}

.quick-search .select2-selection--multiple .select2-selection__rendered {
  line-height: 18px !important;
}

.quick-search .select2-container .select2-selection--single {
  height: 44px !important;
}

.quick-search .select2-selection__arrow {
  height: 41px !important;
}

.quick-search .select2-container--default .select2-selection--single .select2-selection__placeholder, 
.select-autocomplete .select2-search__field {
  color: #444;
  font-family: inherit !important;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea::placeholder {
  color: #444;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {  
  color: #000;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: none; 
}

.select2-search {
  display: none;
}

.select2-selection--multiple .select2-search {
  display: inherit;
  line-height: 31px !important;
  min-height: 37px !important;
}

.select-autocomplete {
  width: 100%;
  position: relative;
  font-size: 1rem;
  color: #5f5f5f;
}

.select-autocomplete svg {
  position: absolute;
  z-index: 1;
  width: 0.725em !important;
  padding: 6px;
  padding-left: 10px;
}

.search-sorting .select2-container--default .select2-selection--single {
  padding-left: 25px;
}

.searchForm__form__btn button:hover {
  background-color: #02468b;
  color: #fff;
}

.loading {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.loading .loading__container {
  padding: 2rem;
  margin: 1rem;
  background-color: #ffffff;
  border-radius: 5px;
}

.search-sorting {
    width: 200px;
    float: right;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 1.5rem;
}

.search-results__wrapper__title .search-sorting {
    margin: 1rem 10%;
    width: 80%;
}

.search-results__wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    float: none !important;
}

.search-results__wrapper__title h1 {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.5rem;
    width: 100%;
}

.search-results__wrapper__grid {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.propertybox {
    background-color: #e9e9e9;
    border: 1px solid #e9e9e9;
    margin: 0.5rem 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.5s all ease-in;
    transition: 0.5s all ease-in;
    font-size: 0.8rem;
    position: relative;
    min-height: 320px;
    color: #5f5f5f;
    display: inline-block;
}

.propertybox__thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.propertybox__img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.propertybox__imgtop {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.propertybox:not(:hover) .propertybox__imgtop {
    -webkit-transition: 0.5s all ease-in;
    transition: 0.5s all ease-in;
    z-index: 2;
    opacity: 0;
}

.propertybox__property-actions {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px #000;
}

.propertybox__content {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.propertybox__left-col {
    width: 60%;
    text-align: left;
}

.propertybox__right-col {
    width: 40%;
    text-align: right;
}

.propertybox__footer {
    width: 100%;
    padding-top: 1.2rem;
    font-weight: bold;
    color: #5f5f5f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.propertybox h2 {
    margin: 0;
    font-size: 1.3rem;
}

.propertybox h3 {
    margin: 0;
    font-size: 1rem;
    color: #3d3d3d;
}

.propertybox__price {
    font-weight: bold;
    color: #002d5b;
    font-size: 1.05rem;
    margin: 0.3rem 0;
    display: block;
}

.propertybox__ref, .propertybox__ref-link {
    font-size: 0.7rem;
}

.propertybox__footer {
    width: 100%;
    padding-top: 1.2rem;
    font-weight: bold;
    color: #5f5f5f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.propertybox__availability_label {
    font-size: 13px;
    border: 2px solid;
    border-radius: 6px;
    padding: 2px 6px;
    margin-left: auto;
}

.propertybox__footer svg, .property-top__col__part__details svg {
    color: #fdb414;
}

.propertybox__footer svg {
    font-size: 1.1rem;
}

.quick-search .svg-inline--fa.fa-fw {
    width: 0.85em;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.svg-inline--fa.fa-fw {
    width: 1.25em;
}

/** Property Detail **/
.property-details {
    width: 100%;
    position: relative;
}

.property-top {
    width: 100%;
    position: relative;
    padding: 0 1rem 1rem 1rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #fff), color-stop(43%, #e9e9e9), to(#fff));
    background: linear-gradient(90deg, #fff 1%, #e9e9e9 43%, #fff 100%);
    box-shadow: 2px 1px 10px 0 rgba(0,0,2,0.1);
}

.property-top--top {
    -webkit-animation-name: top-not-fixed-animation;
    animation-name: top-not-fixed-animation;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.property-top__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.property-top__col {
    width: 100%;
}

.property-top__col h1 {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.property-top__col__part {
    padding: 0.5rem 0;
    font-size: 14px;
    font-size: .875rem;
}

.property-top__col__part--others {
    float: left;
}

.property-top__col__part__details {
    padding: 0 0.5rem 0 0;
}

.property-top__col__part__details small {
    padding: 0 0.25rem;
}

.property-top__col__part--price {
    color: #002d5b;
    font-weight: bold;
    margin-top: -0.5rem;
    font-size: 28px;
    font-size: 1.75rem;
}

.property-details__navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  padding: 1.5rem 0 0.5rem 0.5rem;
}

.property-details__wrapper {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.property-details__navigation__back {
    width: 40%;
    cursor: pointer;
    display: inline-block;
    color: #002d5b;
}

.property-details__navigation__back svg {
  color: #fdb414;
}

.property-details .property-details-breadcrumbs {
    padding-top: 1rem;
    padding-left: 1.5rem;
    max-width: 1280px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

.breadcrumbs {
    display: inline-block;
    position: relative;
}

.breadcrumbs ul {
    display: inline;
    padding: 0;
    list-style-type: none;
}

.breadcrumbs ul li {
    float: left;
    margin-left: 5px;
    list-style-type: none;
}

.breadcrumbs ul li .breadcrumb-item {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.breadcrumbs ul li:first-child .breadcrumb-item {
    left: -5px;
    box-sizing: content-box;
}

.breadcrumbs ul li .breadcrumb-item .breadcrumb-item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    top: 0px;
    -webkit-filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
    padding-left: 5px;
    height: 30px;
    font-size: 14px;
    z-index: 2;
    color: #002d5b;
}

.breadcrumbs ul li .breadcrumb-item .breadcrumb-item-text span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumbs ul li:last-child .breadcrumb-item span {
    color: #FFA218;
    text-decoration: underline;
}

.breadcrumbs ul li:not(:last-child):hover .breadcrumb-item .breadcrumb-item-text {
    color: #FFA218;
    text-decoration: underline;
}

.property-detail {
    max-width: 1280px;
    width: 95%;
    margin: 1rem auto 0 auto;
    padding: 0.5rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.property-detail__first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.property-detail__first .description {
   color: #5f5f5f;
}

.property-detail__listing-info {
  border-top: 1px solid rgba(204,204,204,0.5);
  margin: 2rem 0;
  padding: 2rem 0;
}

.property-detail__listing-info h2 {
  margin: 0 0 2rem 0;
}

.property-detail__listing-info h2 svg {
  margin-right: 1rem;
  color: #fdb414;
  width: 0.725em !important;
}

.property-detail__second {
  width: 100%;
}

.property-detail__second__forms-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
}

.property-detail__second__forms-buttons__btn {
  width: 100%;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  background: #fdb414;
  color: #ffffff;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  font-size: 0.75rem;
  text-align: center;
  margin: 0.5rem auto;
    margin-top: 0.5rem;
  text-shadow: 0 0 0 rgba(255,255,255,0);
  max-width: calc(100% - 3.5rem);
}

.property-detail__second__forms-buttons__btn:first-of-type {
  margin-top: 0;
}

.property-detail__second__forms-buttons__btn span.ref {
  font-size: 1.5rem;
  color: #404040;
}

.property-detail__second__forms-buttons__btn span {
  font-size: 1.25rem;
  width: 100%;
  display: block;
  text-align: center;
  color: #404040;
}

.property-detail__second__forms-buttons__btn > span {
  margin-top: 10px;
  margin-bottom: 20px; 
}

.property-detail .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 1rem;
    visibility: visible;
    opacity: 1;
}

.form__field {
    margin-bottom: 1.5rem;
    width: 100%;
    position: relative;
}

.form__field--large .form__field .form__field__input {
    width: calc(100% - 1.8rem);
}

.form__field__input {
    width: 100%;
    border-radius: 5px;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    color: #5f5f5f;
    font-family: 'Roboto', sans-serif;
}

.form__field--large .form__field {
    width: 100%;
}

.form__field__input.form__field--submit {
  border: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.form__field__error {
    color: #e60707 !important;
    position: absolute;
    left: 0;
    bottom: -1.2rem;
    font-size: 0.8rem !important;
}

.form__field__btn {
    width: 100%;
    border-radius: 5px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #fdb414;
    background: #fdb414;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    cursor: pointer;
    height: auto;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.invalid-form-submit {
    background-color: #404040 !important;
    color: #fff !important;
    border: 1px solid #002d5b !important;
}

.checkField {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gdpr-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gdpr-field .checkField {
    height: 45px;
    width: 45px;
    margin-top: -5px;
}

.gdpr-field span {
    font-size: 0.9rem;
    padding: 0.5rem;
}

.slider-large img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid rgba(204,204,204,0.6);
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.slider-mini img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider-mini {
    padding-top: 10px;
    margin: 0px 20px 0px 20px;
}

.slick-prev {
   left: 10px;
}

.slick-next {
   right: 10px;
}

.slick-prev, .slick-next {
   z-index: 100;
}

.property_features {
   display: flex;
   flex-wrap: wrap;
}

.property_features li {
   padding: 0 0 10px 0;
   margin: 0 0 0 0px;
   flex: 1 1 45%;
   margin-right: 5%;
}

.pager {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  list-style: none;
  margin: 1rem;
}

.pager li {
  padding: 0.5rem 0;
  font-weight: bold;
}

.pager a {
  text-decoration: none;
  color: #fdb414;
}

.pager li span {
  cursor: pointer;
  color: rgba(204,204,204,0.5);
}

.pager li .navItem {
  cursor: pointer;
  background-color: #fff;
  color: #002d5b;
  font-size: 1rem;
  font-weight: normal;
  padding: 6px 12px;
  outline: 0;
}

.pager__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.pager__current span {
  border-radius: 50%;
  background-color: #fdb414;
  color: #fff !important;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
   .quick-search {
      flex-wrap: wrap;
      flex-direction: column;
   }
   
   .quick-search-outer, .quick-search-outer form {
      flex-wrap: wrap;
   }
}

@media (min-width: 768px) {
   .search-results__wrapper__title {
       display: grid;
       grid-template-columns: 33% 33% 33%;
   }
   
   .search-results__wrapper__grid .propertybox {
       width: calc(50% - 3rem);
   }
   
   .search-results__wrapper__title .search-sorting {
       width: 200px;
       margin: 1rem 0 1rem auto;
   }   
   
   .property-top__inner {
       display: -webkit-box;
       display: -ms-flexbox;
       display: flex;
   }
   
   .property-top__col {
       width: auto;
   }   
   
   .property-top__col {
       -webkit-box-orient: vertical;
       -webkit-box-direction: normal;
       flex-direction: column;
   }
   
   .property-top__col h1 {
       font-size: 2rem;
   }
   
   .property-top__col__part--others {
       width: auto;
   }
   
   .property-top__col__part--price {
       -webkit-box-align: end;
       align-items: flex-end;
       text-align: right;
       font-size: 32px;
       font-size: 2rem;
   }   
   
   .property-top__col:last-of-type {
       margin-left: auto;
   }   
   
   .property-detail__second {
     -webkit-box-orient: horizontal;
     -webkit-box-direction: normal;
     flex-direction: row;
     -webkit-box-align: center;
     align-items: center;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
   }
   
   .property-detail__second__forms-buttons {
     width: 50%;
   }      
}

@media (min-width: 1025px) {
   .searchForm__form__btn {
       width: 8.4375rem;
       display: -webkit-box;
       display: -ms-flexbox;
       display: flex;
   }
   
   .searchForm__form__btn button {
       border-bottom-left-radius: 0;
       border-bottom-right-radius: 5px;
       border-top-right-radius: 5px;
   }
   
   .quick-search__form-field--tabs-radio {
     border-top-left-radius: 5px;
     border-bottom-left-radius: 5px;
     border-top-right-radius: 0;
     max-width: 8.4375rem;
   }   
   
   .quick-search__form-field {
     border-right: 1px solid #ccc;
     border-bottom: 0;
   }
   
   .quick-search__form-field--tabs-radio input + label:first-of-type {
     border-right: 1px solid #ccc;
   }
   
   .search-results__wrapper__grid .propertybox {
       width: calc(33.13% - 3rem);
   }
   
   .property-detail {
       -webkit-box-orient: horizontal;
       -webkit-box-direction: normal;
       flex-direction: row;
   }   
   
   .property-detail__first {
       width: 70%;
       padding: 0 1rem 0 0;
   }
   
   .property-detail__second {
     display: block;
     width: 30%;
     padding: 0 0 0 1rem;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     flex-direction: column;
     justify-content: space-around;
   }   
   
   .property-detail__second__forms-buttons {
     width: 100%;
   }   
   
   .gdpr-field .checkField {
       height: auto;
       width: auto;
       margin-top: -10px;
   }      
}

@media (min-width: 1380px) {
   .property-detail__second__forms-buttons__btn {
     max-width: none;
   }
}