/*
Theme Name: Hello Elementor Child
Description: Child theme for Hello Elementor
Author: L33T
Template: hello-elementor
Version: 1.0
Text Domain: number1
*/

/* Custom select */
.apart-filter {
  display: flex;
  gap: 20px;
}
.select-box {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 18px;
  color: #60666d;
  z-index: var(--zi);
  border: 1px solid var(--e-global-color-accent);
}
.select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
.select-box__current:focus + .select-box__list {
  opacity: 1;
  -webkit-animation-name: none;
  animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.select-box__value {
  display: flex;
}
.select-box__input {
  display: none;
}
.select-box__input:checked + .select-box__input-text {
  display: block;
}
.select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 15px;
  background-color: #fff;
}
.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--e-global-color-accent);
  border-top: 0;
}
.select-box__option {
  display: block;
  padding: 15px;
  background-color: #fff;
}
.select-box__option:hover,
.select-box__option:focus {
  color: #546c84;
  background-color: #fbfbfb;
}
.no-results {
  width: 100%;
  text-align: center;
  grid-area: 1 / 1 / 2 / 3;
  background: #96969663;
  border: 1px solid var(--e-global-color-accent);
  padding: 13px 0;
  font-size: 20px;
}

@-webkit-keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

@media screen and (max-width: 767px) {
  .apart-filter {
    flex-wrap: wrap;
  }

  .select-box {
    font-size: 16px;
  }

  .select-box__input-text {
    padding: 7px 15px;
  }

  .no-results {
    font-size: 16px;
  }
}

/* Search box */
.search-box-cover .property-tab-section {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  /* Filters */
}
.search-box-cover .property-tab-section .filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-radius: 0px 16px 16px 16px;
  background: #fff;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  margin-top: -6px;
}


.search-box-cover.popup-book .property-tab-section .filters {
  background: none;
  margin-top: 0;
  box-shadow: none;
  padding: 0;
}
.search-box-cover.popup-book .property-tab-section .filter-group {
  flex: 1 1 130px;
}
.search-box-cover.popup-book .datepicker-wrapper,
.search-box-cover.popup-book .guest-input {
  width: 100%;
}
.search-box-cover.popup-book .property-tab-section .filter-group::after {
  content: none;
}

@media (max-width: 767px) {
  .search-box-cover .property-tab-section .filters {
    padding: 24px;
  }
}
.search-box-cover .property-tab-section .filter-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
  width: 220px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .property-tab-section .filter-group {
    width: 100%;
    flex: 4 4 100%;
  }



}
.search-box-cover .property-tab-section .filter-group::after {
  position: absolute;
  content: "";
  height: 100%;
  right: 25px;
  background: #1b1b1b;
  opacity: 10%;
  top: 0;
  width: 1px;
}
@media (max-width: 767px) {
  .search-box-cover .property-tab-section .filter-group::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .property-tab-section .filter-group::after {
    display: none;
  }
}
.search-box-cover .property-tab-section .filter-group button.customize-sale {
  width: 200px;
  padding: 18px 21px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f0f1f1;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  justify-content: space-between;
  height: 52px;
  font-size: 16px;
  font-weight: 500;
  color: #1b1b1b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .property-tab-section .filter-group button.customize-sale {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .search-box-cover .property-tab-section .filter-group button.customize-sale {
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .search-box-cover .property-tab-section .filter-group button.customize-sale {
    width: 220px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .search-box-cover .property-tab-section .filter-group button.customize-sale {
    width: 260px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .search-box-cover .property-tab-section .filter-group button.customize-sale {
    width: 180px;
  }
}
.search-box-cover
  .property-tab-section
  .filter-group
  button.customize-sale
  .icon {
  margin-left: 5px;
}
.search-box-cover
  .property-tab-section
  .filter-group
  button.customize-sale
  .icon
  svg {
  height: 24px;
  width: 24px;
  object-fit: cover;
}
.search-box-cover
  .property-tab-section
  .filter-group
  button.customize-sale:hover {
  background: var(--e-global-color-secondary);
  transition: all 0.4s;
  color: #fff;
}
.search-box-cover
  .property-tab-section
  .filter-group
  button.customize-sale.click {
  background: var(--e-global-color-secondary);
  color: #fff;
}
.search-box-cover .property-tab-section label {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 12px;
}



.search-box-cover .property-tab-section .nice-select {
  width: calc(100% - 65px);
  padding: 18px 21px !important;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f0f1f1;
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px !important;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .property-tab-section .nice-select {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .search-box-cover .property-tab-section .nice-select {
    width: 100%;
  }
}
.search-box-cover .property-tab-section .nice-select::after {
  height: 7px;
  width: 7px;
  object-fit: cover;
  right: 24px;
}
.search-box-cover .property-tab-section .nice-select ul {
  width: 100%;
}
.search-box-cover .property-tab-section button:hover,
.search-box-cover .property-tab-section select:hover {
  background: #eee;
}
.search-box-cover .property-tab-section .search-button {
  position: relative;
  top: 14px;
}
.search-box-cover .property-tab-section .search-button button {
  display: inline-block;
  padding: 20px 16px 20px 24px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  position: relative;
  z-index: 2;
  font-family: var(--e-global-typography-text-font-family);
  border: none;
  overflow: hidden;
  background-color: var(--e-global-color-secondary);
  transition: all 0.4s;
  border-radius: 70px;
  position: relative;
  z-index: 1;
}



.search-box-cover .property-tab-section .search-button button::after {
  position: absolute;
  content: "";
  height: 100%;
  left: 50%;
  top: 0;
  transition: all 0.4s;
  background: #1b1b1b;
  width: 10px;
  border-radius: 70px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;

  
}

@media screen and (max-width: 991px) {
  .search-box-cover .property-tab-section .search-button,.search-box-cover .property-tab-section .search-button button {
    width: 100%;
  }
  .search-box-cover .property-tab-section .search-button button::after {
    content: none;
  }
}
.search-box-cover .property-tab-section .search-button button span {
  display: inline-block;
  transform: rotate(-45deg) translateX(0px) translateY(1px);
  transition: all 0.4s;
}
.search-box-cover .property-tab-section .search-button button .arrow2 {
  transform: translateY(-4px) rotate(-45deg) translateX(-48px);
  transition: all 0.4s;
  opacity: 0;
}
.search-box-cover .property-tab-section .search-button button .arrow1 {
  transition: all 0.4s;
  opacity: 1;
}
.search-box-cover .property-tab-section .search-button button:hover .arrow2 {
  transform: translateY(-12px) rotate(-45deg) translateX(-18px);
  transition: all 0.4s;
  opacity: 1;
}
.search-box-cover .property-tab-section .search-button button:hover .arrow1 {
  transition: all 0.4s;
  transform: translateY(-7px) rotate(-45deg) translateX(45px);
  opacity: 0;
}
.search-box-cover .property-tab-section .search-button button:hover {
  color: #fff;
  transition: all 0.4s;
}
.search-box-cover .property-tab-section .search-button button:hover::after {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
  left: 0;
  width: 100%;
}
.search-box-cover .tab-header {
  display: flex;
}
.search-box-cover .tab-header {
  display: inline-block;
  overflow: hidden;
  border-radius: 16px 16px 0px 0px;
  background: rgba(237, 132, 56, 0.2);
  backdrop-filter: blur(5px);
}
.search-box-cover .tab-header .tab-btn {
  color: var(--e-global-color-secondary);
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 14px 24px;
  background: none;
}
.search-box-cover .tab-header .tab-btn.active {
  background: var(--e-global-color-secondary);
  color: #fff;
}
.search-box-cover .wd-search-form {
  background-color: #fff;
  padding: 32px 24px;
  /* Slider Fill (Dynamic Range) */
  /* Slider fill for colored range */
}
.search-box-cover .wd-search-form .group-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .search-box-cover .wd-search-form .group-price {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-box-cover .wd-search-form .group-price .box-title-price {
  margin-bottom: 10px;
}
.search-box-cover .wd-search-form .group-select {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .search-box-cover .wd-search-form .group-select {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .wd-search-form .group-select {
    grid-template-columns: repeat(2, 1fr);
  }
}
.search-box-cover .wd-search-form .group-select h5 {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}
.search-box-cover .wd-search-form .group-select .nice-select {
  width: 275px;
  padding: 18px 14px !important;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f0f1f1;
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px !important;
  height: auto;
}
@media (max-width: 767px) {
  .search-box-cover .wd-search-form .group-select .nice-select {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-box-cover .wd-search-form .group-select .nice-select {
    width: 100%;
  }
}
.search-box-cover .wd-search-form .group-select .nice-select::after {
  height: 7px;
  width: 7px;
  object-fit: cover;
  right: 16px;
}
.search-box-cover .wd-search-form .group-select .nice-select ul {
  width: 100%;
}
.search-box-cover .wd-search-form .group-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .search-box-cover .wd-search-form .group-amenities {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-box-cover .wd-search-form .group-checkbox {
  text-align: start;
}
.search-box-cover .wd-search-form .group-checkbox .title {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.search-box-cover .wd-search-form .group-checkbox .checkbox-item label .text-4 {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}
.search-box-cover .wd-search-form .group-checkbox .checkbox-item label input {
  accent-color: var(--e-global-color-secondary);
  margin: 0 4px 0 0;
}
.search-box-cover .wd-search-form .box-search {
  position: relative;
}
.search-box-cover .wd-search-form .box-search input,
.search-box-cover .wd-search-form .box-search input::placeholder {
  font-size: 14px;
  line-height: 22px;
}
.search-box-cover .wd-search-form .box-search .icon {
  position: absolute;
  font-size: 16px;
  right: 16px;
  top: 57%;
  transform: translateY(-50%);
}
.search-box-cover .wd-search-form .slider-item {
  width: 100%;
}
.search-box-cover .wd-search-form .slider-label {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}
.search-box-cover .wd-search-form .slider {
  position: relative;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
  margin-top: 20px;
}
.search-box-cover .wd-search-form input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.search-box-cover .wd-search-form input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid var(--e-global-color-secondary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.search-box-cover .wd-search-form input[type="range"]::-moz-range-thumb,
.search-box-cover .wd-search-form input[type="range"]::-ms-thumb {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid var(--e-global-color-secondary);
  border-radius: 50%;
  cursor: pointer;
}
.search-box-cover .wd-search-form .slider-fill {
  position: absolute;
  height: 4px;
  background-color: var(--e-global-color-secondary);
  z-index: 1;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 0;
}
.search-box-cover .wd-search-form label {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}
.search-box-cover .wd-search-form label span {
  color: #5c5d62;
}
.search-box-cover .wd-search-form .slider {
  position: relative;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
}
.search-box-cover .wd-search-form input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.search-box-cover .wd-search-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--e-global-color-secondary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.search-box-cover .wd-search-form input[type="range"]::-moz-range-thumb,
.search-box-cover .wd-search-form input[type="range"]::-ms-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--e-global-color-secondary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.search-box-cover .wd-search-form .slider-fill {
  position: absolute;
  height: 5px;
  background: var(--e-global-color-secondary);
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 5px;
  pointer-events: none;
  width: 0;
}
.search-box-cover .wd-search-form {
  border-bottom: 1px solid #f0f1f1;
  border-left: 1px solid #f0f1f1;
  border-right: 1px solid #f0f1f1;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 96%;
  width: 1300px;
  max-width: 100%;
  background: #fff;
  transition: all 0.6s;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .search-box-cover .wd-search-form {
    width: 100%;
    max-width: 100%;
  }
}
.search-box-cover .wd-search-form.show-box {
  display: block;
  opacity: 1;
  transition: all 0.6s;
  visibility: visible;
  margin-top: 0;
}

.property2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.property2 .container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 15px;
}
.property2 .property-listing-area {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.property2 .property-listing-area .owl-dots {
  text-align: center;
  border-radius: 30px;
/*   background: rgba(255, 255, 255, 0.5); */
  padding: 0 8px 4px;
  position: relative;
  margin-top: 48px;
}
.property2 .property-listing-area .owl-dots button {
  height: 12px;
  width: 12px;
  display: inline-block;
  transition: all 0.4s;
  background: var(--e-global-color-secondary);
  border-radius: 50%;
  margin: 0 10px 0 0;
  position: relative;
  z-index: 1;
}
.property2 .property-listing-area .owl-dots button::after {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: -6px;
  top: -6px;
  border: 1px solid var(--e-global-color-secondary);
  border-radius: 50%;
  visibility: visible;
  opacity: 0;
  transition: all 0.4s;
}
.property2 .property-listing-area .owl-dots button.active {
  background: var(--e-global-color-secondary);
}
.property2 .property-listing-area .owl-dots button.active::after {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
.property2 .property-listing-area .owl-dots button:nth-last-child(1) {
  margin: 0;
}
.property2 .property-listing-area .property-listing-boxarea {
  position: relative;
}
.property2 .property-listing-area .property-listing-boxarea:hover .img1 img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
.property2 .property-listing-area .property-listing-boxarea .img1 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.4s;
}
.property2 .property-listing-area .property-listing-boxarea .img1 img {
  width: 100%;
  height: 100%;
  max-height: 290px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.4s;
  aspect-ratio: 10 / 6.963;
}
.latest-props.property2
  .property-listing-area
  .property-listing-boxarea
  .img1
  img {
  max-height: 230px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  a.title {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
  transition: all 0.4s;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  a.title:hover {
  color: var(--e-global-color-secondary);
  transition: all 0.4s;
}
.property2 .property-listing-area .property-listing-boxarea .content-area p {
  color: #5c5d62;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: 16px;
  margin-bottom: 20px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  p
  span {
  vertical-align: middle;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  p
  span
  svg {
  height: 20px;
  width: 20px;
  object-fit: cover;
  margin: -4px 4px 0 0;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  ul
  li {
  display: inline-block;
  color: #5c5d62;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin: 0 20px 0 0;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  ul
  li
  span {
  vertical-align: middle;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  ul
  li
  span
  svg {
  height: 20px;
  width: 20px;
  object-fit: cover;
  margin: -4px 4px 0 0;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  ul
  li:nth-last-child(1) {
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    ul
    li:nth-last-child(1) {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    ul
    li:nth-last-child(1) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    ul
    li:nth-last-child(1) {
    margin-top: 10px;
  }
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 767px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    .btn-area {
    display: inline-block;
  }
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .nm-btn
  h3 {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .nm-btn
  h3
  span {
  color: #5c5d62;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    .btn-area
    .love-share {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .property2
    .property-listing-area
    .property-listing-boxarea
    .content-area
    .property-other-widget
    .btn-area
    .love-share {
    margin-top: 16px;
  }
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.4s;
  background: #f3e9e1;
  border-radius: 50%;
  position: relative;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart.active
  .heart2 {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart.active
  .heart1 {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart:hover {
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart:hover
  .heart2 {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart:hover
  .heart1 {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart
  .heart2 {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
  height: 21px;
  width: 21px;
  object-fit: contain;
  display: inline-block;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .heart
  .heart1 {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  top: 12px;
  left: 10px;
  height: 18px;
  width: 18px;
  object-fit: contain;
  display: inline-block;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  background: #e9d9c8b5;
  border-radius: 50%;
  position: relative;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share:hover {
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  ul {
  padding: 0;
  margin-bottom: 20px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share:hover
  svg {
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share
  svg {
  height: 22px;
  width: 22px;
  object-fit: cover;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 16px;
  z-index: 2;
  left: 16px;
  right: 16px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul
  li {
  display: inline-block;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul
  li:nth-last-child(1) {
  margin-left: 6px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul
  li:nth-last-child(1)
  a {
  background: var(--e-global-color-secondary);
  color: #fff;
  transition: all 0.4s;
  text-decoration: none;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul {
  padding: 0;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul
  li
  a {
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
  transition: all 0.4s;
  background: #fff;
  padding: 6px 12px;
  border-radius: 28px;
  text-decoration: none;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  ul
  li
  a:hover {
  background: var(--e-global-color-secondary);
  color: #fff;
  transition: all 0.4s;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  .camera {
  border-radius: 28px;
  background: #fff;
  padding: 6px 12px;
  color: #1b1b1b;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.property2
  .property-listing-area
  .property-listing-boxarea
  .content-area
  .rent-sale-area
  .camera
  svg {
  height: 16px;
  width: 16px;
  object-fit: contain;
  margin: -4px 0 0 0;
}

.property2 .heading1 h5 {
  color: var(--e-global-color-secondary);
  text-align: center;
  font-size: 16px;
  font-family: var(--e-global-typography-text-font-family);
}
.property2 .main-title {
  text-align: center;
	    font-weight: 600;
  font-family: "Montserrat", Sans-serif;
}

/* Why choose us */
.rlg-tabs {
  display: flex;
  gap: 20px;
}
.rlg-tabs--wrapper {
  width: 100%;
}
.rlg-tabs--nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.rlg-tabs--nav {
  padding: 0;
  list-style: none;
}
.rlg-tabs--nav .nav-link {
  height: 100%;
  pointer-events: none;
}
.rlg-tabs--nav .nav-link * {
  transition: none !important;
}
.rlg-tabs--nav .nav-link:hover * {
  color: #2e3136 !important;
}
.rlg-tabs--nav .nav-link:focus {
  background-color: #f1f2f3 !important;
  color: #2e3136 !important;
}
.rlg-tabs--nav li:last-of-type {
  margin-bottom: 0;
}
.rlg-tabs--nav .nav-item:nth-child(4n + 2) {
  grid-column-start: 2;
  grid-column-end: 4;
}
.rlg-tabs--nav .nav-item:nth-child(4n + 3) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.rlg-tabs--nav li button {
  padding: 0;
  border: none;
  width: 100%;
  text-align: left;
  text-transform: none;
  white-space: unset;
  background: none;
  background-color: #f1f2f3;
  padding: 24px 20px;
  border-radius: 10px;
}
.rlg-tabs--nav li button:hover {
  background: #f1f2f3;
}
.rlg-tabs--nav li button:hover * {
  color: #2e3136;
}
.rlg-tabs--nav li .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.rlg-tabs--nav li .pera {
  margin-top: 20px;
  font-size: 16px;
}
.rlg-tabs .tab-pane {
  display: none;
}
.rlg-tabs .tab-pane.active {
  display: block;
}
.rlg-tabs .tab-pane img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.rlg-tabs .tab-content,
.rlg-tabs .tab-content * {
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .rlg-tabs--left {
    width: 60%;
  }
  .rlg-tabs--right {
    width: calc(40% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .rlg-tabs--left {
    width: 100%;
  }
  .rlg-tabs--right {
    display: none;
  }
  .rlg-tabs--nav li {
    margin-bottom: 10px;
  }
  .rlg-tabs--nav li .title {
    font-size: 18px;
  }
  .rlg-tabs--nav li button {
    padding: 15px;
  }
}

.rlg-post-date {
  background: #1b1b1b;
  display: inline-block;
  transition: all 0.8s;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  top: -40px;
  right: 0;
  text-align: center;

  p {
    color: #fff;
    text-align: center;
    font-family: var(--e-global-typography-text-font-family);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
  }

  span {
    color: #fff;
    font-family: var(--e-global-typography-text-font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    text-transform: capitalize;
    display: inline-block;
    transition: all 0.4s;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 767px) {
  .rlg-post-date {
    padding: 9px;

    p {
      font-size: 23px;
      line-height: 23px;
    }

    span {
      font-size: 11px;
    }
  }
}

/*============= FILTER CSS AREA STARTS ===============*/
.others-section-area {
  background: #fff;
  padding: 32px 16px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .others-section-area {
    margin: 0;
    padding: 24px;
  }
}
.others-section-area .tab-header {
  display: flex;
}
.others-section-area .tab-header {
  display: inline-block;
  overflow: hidden;
}
.others-section-area .tab-header .tab-btn {
  color: #1b1b1b;
  font-style: normal;
  line-height: 16px;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 14px 24px;
  border-radius: 44px;
  background: #f1f2f3;
}
.others-section-area .tab-header .tab-btn.active {
  background: var(--e-global-color-accent);
  color: #fff;
}
.others-section-area .property-tab-section {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  /* Filters */
}
.others-section-area .property-tab-section .filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #f1f2f3;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
  margin-top: -6px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .others-section-area .property-tab-section .filters {
    padding: 24px;
  }
}
.others-section-area .property-tab-section .filter-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
  width: 220px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area .property-tab-section .filter-group {
    width: 100%;
    flex: 4 4 100%;
  }
}
.others-section-area .property-tab-section .filter-group::after {
  position: absolute;
  content: "";
  height: 100%;
  right: 25px;
  background: #1b1b1b;
  opacity: 10%;
  top: 0;
  width: 1px;
}
@media (max-width: 767px) {
  .others-section-area .property-tab-section .filter-group::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area .property-tab-section .filter-group::after {
    display: none;
  }
}
.others-section-area .property-tab-section .filter-group button.customize-sale {
  width: 220px;
  padding: 18px 21px;
  border: none;
  outline: none;
  border-radius: 52px;
  background: #fff;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  justify-content: space-between;
  height: 52px;
  color: #1b1b1b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area
    .property-tab-section
    .filter-group
    button.customize-sale {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .others-section-area
    .property-tab-section
    .filter-group
    button.customize-sale {
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .others-section-area
    .property-tab-section
    .filter-group
    button.customize-sale {
    width: 220px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .others-section-area
    .property-tab-section
    .filter-group
    button.customize-sale {
    width: 260px;
  }
}
.others-section-area
  .property-tab-section
  .filter-group
  button.customize-sale
  .icon {
  margin-left: 5px;
}
.others-section-area
  .property-tab-section
  .filter-group
  button.customize-sale
  .icon
  svg {
  height: 24px;
  width: 24px;
  object-fit: cover;
}
.others-section-area
  .property-tab-section
  .filter-group
  button.customize-sale:hover {
  background: var(--e-global-color-accent);
  transition: all 0.4s;
  color: #fff;
}
.others-section-area
  .property-tab-section
  .filter-group
  button.customize-sale.click {
  background: var(--e-global-color-accent);
  color: #fff;
}
.others-section-area .property-tab-section label {
  color: #1b1b1b;
  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
}
.others-section-area .property-tab-section .nice-select {
  width: calc(100% - 60px);
  padding: 18px 21px !important;
  border: none;
  outline: none;
  border-radius: 52px;
  background: #fff;
  color: #1b1b1b;
  font-style: normal;
  line-height: 16px !important;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area .property-tab-section .nice-select {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .others-section-area .property-tab-section .nice-select {
    width: 100%;
  }
}

.others-section-area .property-tab-section .nice-select::after {
  height: 7px;
  width: 7px;
  object-fit: cover;
  right: 24px;
}
.others-section-area .property-tab-section .nice-select ul {
  width: 100%;
}
.others-section-area .property-tab-section button:hover,
.others-section-area .property-tab-section select:hover {
  background: #eee;
}
.others-section-area .property-tab-section .search-button {
  position: relative;
  top: 14px;
}
.others-section-area .property-tab-section .search-button button {
  display: inline-block;
  padding: 20px 16px 20px 24px;
  color: #fff;
  font-style: normal;
  line-height: 16px;
  position: relative;
  z-index: 2;

  border: none;
  overflow: hidden;
  background-color: var(--e-global-color-accent);
  transition: all 0.4s;
  border-radius: 70px;
  position: relative;
  z-index: 1;
}
.others-section-area .property-tab-section .search-button button::after {
  position: absolute;
  content: "";
  height: 100%;
  left: 50%;
  top: 0;
  transition: all 0.4s;
  background: #1b1b1b;
  width: 10px;
  border-radius: 70px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.others-section-area .property-tab-section .search-button button span {
  display: inline-block;
  transform: rotate(-45deg) translateX(0px) translateY(1px);
  transition: all 0.4s;
}
.others-section-area .property-tab-section .search-button button .arrow2 {
  transform: translateY(-4px) rotate(-45deg) translateX(-48px);
  transition: all 0.4s;
  opacity: 0;
}
.others-section-area .property-tab-section .search-button button .arrow1 {
  transition: all 0.4s;
  opacity: 1;
}
.others-section-area .property-tab-section .search-button button svg {
  vertical-align: text-bottom;
  width: 17px;
  fill: #fff;
}
.others-section-area .property-tab-section .search-button button:hover .arrow2 {
  transform: translateY(-12px) rotate(-45deg) translateX(-18px);
  transition: all 0.4s;
  opacity: 1;
}
.others-section-area .property-tab-section .search-button button:hover .arrow1 {
  transition: all 0.4s;
  transform: translateY(-7px) rotate(-45deg) translateX(45px);
  opacity: 0;
}
.others-section-area .property-tab-section .search-button button:hover {
  color: #fff;
  transition: all 0.4s;
}
.others-section-area .property-tab-section .search-button button:hover::after {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
  left: 0;
  width: 100%;
}
.others-section-area .wd-search-form {
  background-color: #fff;
  padding: 32px 24px;
  /* Slider Fill (Dynamic Range) */
  /* Slider fill for colored range */
}
.others-section-area .wd-search-form .group-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .others-section-area .wd-search-form .group-price {
    grid-template-columns: repeat(1, 1fr);
  }
}
.others-section-area .wd-search-form .group-price .box-title-price {
  margin-bottom: 10px;
}
.others-section-area .wd-search-form .group-select {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .others-section-area .wd-search-form .group-select {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area .wd-search-form .group-select {
    grid-template-columns: repeat(2, 1fr);
  }
}
.others-section-area .wd-search-form .group-select h5 {
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
}
.others-section-area .wd-search-form .group-select .nice-select {
  width: 275px;
  padding: 18px 14px !important;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f0f1f1;
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px !important;
  height: auto;
}
@media (max-width: 767px) {
  .others-section-area .wd-search-form .group-select .nice-select {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .others-section-area .wd-search-form .group-select .nice-select {
    width: 100%;
  }
}
.others-section-area .wd-search-form .group-select .nice-select::after {
  height: 7px;
  width: 7px;
  object-fit: cover;
  right: 16px;
}
.others-section-area .wd-search-form .group-select .nice-select ul {
  width: 100%;
}
.others-section-area .wd-search-form .group-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .others-section-area .wd-search-form .group-amenities {
    grid-template-columns: repeat(1, 1fr);
  }
}
.others-section-area .wd-search-form .group-checkbox {
  text-align: start;
}
.others-section-area .wd-search-form .group-checkbox .title {
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.others-section-area
  .wd-search-form
  .group-checkbox
  .checkbox-item
  label
  .text-4 {
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
}
.others-section-area
  .wd-search-form
  .group-checkbox
  .checkbox-item
  label
  input {
  accent-color: var(--e-global-color-accent);
  margin: 0 4px 0 0;
}
.others-section-area .wd-search-form .box-search {
  position: relative;
}
.others-section-area .wd-search-form .box-search input,
.others-section-area .wd-search-form .box-search input::placeholder {
  font-size: 14px;
  line-height: 22px;
}
.others-section-area .wd-search-form .box-search .icon {
  position: absolute;
  font-size: 16px;
  right: 16px;
  top: 57%;
  transform: translateY(-50%);
}
.others-section-area .wd-search-form .slider-item {
  width: 100%;
}
.others-section-area .wd-search-form .slider-label {
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
}
.others-section-area .wd-search-form .slider {
  position: relative;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
  margin-top: 20px;
}
.others-section-area .wd-search-form input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.others-section-area .wd-search-form input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid var(--e-global-color-accent);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.others-section-area .wd-search-form input[type="range"]::-moz-range-thumb,
.others-section-area .wd-search-form input[type="range"]::-ms-thumb {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid var(--e-global-color-accent);
  border-radius: 50%;
  cursor: pointer;
}
.others-section-area .wd-search-form .slider-fill {
  position: absolute;
  height: 4px;
  background-color: var(--e-global-color-accent);
  z-index: 1;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 0;
}
.others-section-area .wd-search-form label {
  color: #1b1b1b;

  font-style: normal;
  line-height: 16px;
  margin-bottom: 12px;
}
.others-section-area .wd-search-form label span {
  color: #5c5d62;
}
.others-section-area .wd-search-form .slider {
  position: relative;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
}
.others-section-area .wd-search-form input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.others-section-area .wd-search-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--e-global-color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.others-section-area .wd-search-form input[type="range"]::-moz-range-thumb,
.others-section-area .wd-search-form input[type="range"]::-ms-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--e-global-color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.others-section-area .wd-search-form .slider-fill {
  position: absolute;
  height: 5px;
  background: var(--e-global-color-accent);
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 5px;
  pointer-events: none;
  width: 0;
  /* This will be dynamically updated */
}
.others-section-area .wd-search-form {
  border-bottom: 1px solid #f0f1f1;
  border-left: 1px solid #f0f1f1;
  border-right: 1px solid #f0f1f1;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 96%;
  width: 1300px;
  max-width: 100%;
  background: #fff;
  transition: all 0.6s;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .others-section-area .wd-search-form {
    width: 100%;
    max-width: 100%;
  }
}
.others-section-area .wd-search-form.show-box {
  display: block;
  opacity: 1;
  transition: all 0.6s;
  visibility: visible;
  margin-top: 0;
}

/*============= FILTER CSS AREA ENDS ===============*/

.guest-input {
  position: relative;
  width: calc(100% - 65px);
}
.guest-input .input-number-decrement {
  position: absolute;
  left: 0;
  top: 0;
}
.guest-input .input-number-increment {
  position: absolute;
  right: 0;
  top: 0;
}
.guest-input .input-number {
  vertical-align: top;
  text-align: center;
  outline: none;
  background-color: #f0f1f1;
  border: 0;
}

.input-number-decrement,
.input-number-increment {
  display: inline-block;
  width: 30px;
  line-height: 38px;
  background: #f1f1f1;
  color: #444;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.input-number-decrement:active,
.input-number-increment:active {
  background: #ddd;
}

.input-number-decrement {
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.input-number-increment {
  border-left: none;
  border-radius: 0 4px 4px 0;
}

#date-from,
#date-to {
  vertical-align: top;
  text-align: center;
  outline: none;
  background-color: #f0f1f1;
  border: 0;
}
.datepicker-wrapper {
  position: relative;
  width: calc(100% - 65px);
}
.datepicker {
  --primary-color: var(--e-global-color-accent);
  --corner: 5px;
  --column-gap: 10px;
  --column-width: 30px;
  --date-cell-size: 30px;
  --date-cell-shadow-opacity: 0;
  --row-gap: 10px;
  --row-height: 30px;
  --font-size: 15px;
  --icon-size: 10px;
  --shadow-cell-top: 0;
  --shadow-cell-left: 0;
}

.datepicker a {
  text-decoration: none !important;
}
#datepicker-container-from,
#datepicker-container-to {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  width: 100%;
  box-shadow: 0px 1px 5px 2px #5f5f5f21;
  border-radius: 5px;
}
#datepicker-container-from .datepicker,
#datepicker-container-to .datepicker {
  padding: 5px;
}

.datepicker_wrapper,
.datepicker_title_wrapper,
.datepicker_title_left_wrapper,
.datepicker_title_right_wrapper,
.datepicker_week_title_wrapper,
.datepicker_date_cell_wrapper {
  display: grid;
}

.datepicker_wrapper {
  grid-template-rows: var(--row-height) var(--row-height) 1fr;
}

.datepicker_title_wrapper {
  column-gap: var(--column-gap);
  grid-template-columns: 2fr 3fr 2fr;
}

.datepicker_title_left_wrapper,
.datepicker_title_right_wrapper {
  column-gap: var(--column-gap);
  grid-template-columns: 1fr 1fr;
}

.datepicker_skip {
  position: relative;
  background-color: var(--primary-color);
  border-radius: var(--corner);
  cursor: pointer;
}

.datepicker_skip svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: white;
  height: var(--icon-size);
  transform: translate(-50%, -50%);
  width: var(--icon-size);
  z-index: 1;
}

.datepicker_title_middle_wrapper,
.datepicker_week_title,
.datepicker_date_cell {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: center;
}

.datepicker_title_wrapper {
  user-select: none;
}

.datepicker_title_middle_wrapper {
  font-size: var(--font-size);
}

.datepicker_title_middle_wrapper .datepicker_month {
  margin-right: var(--column-gap);
}

.datepicker_week_title_wrapper {
  grid-template-columns: repeat(7, 1fr);
  padding-top: var(--row-gap);
  user-select: none;
}

.datepicker_week_title {
  opacity: 0.5;
}

.datepicker_month_wrappers {
  position: relative;
  aspect-ratio: 27/19.3;
  overflow: hidden;
}

.datepicker_month_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: transform 0.2s;
  width: 100%;
}

.datepicker_month_wrapper_prev {
  transform: translateX(-100%);
}

.datepicker_month_wrapper_next {
  transform: translateX(100%);
}

.datepicker_month_wrapper_drop {
  background-color: white;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
  transform-origin: top left;
  transform: rotateZ(45deg) translateY(100%);
  transition: box-shadow 0.5s, opacity 0.3s 0.2s, transform 0.5s;
  z-index: 5;
}

.datepicker_date_cell_wrapper {
  position: relative;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  height: 100%;
}

.datepicker_date_cell_wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(var(--shadow-cell-left), var(--shadow-cell-top));
  aspect-ratio: 1/1;
  background-color: var(--primary-color);
  border: 2px solid white;
  border-radius: calc(var(--corner) * 1.5);
  box-sizing: border-box;
  content: "";
  opacity: var(--date-cell-shadow-opacity);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0, 0.16, 0.32, 1.23);
  width: var(--date-cell-size);
  z-index: 0;
}

.datepicker_date_cell {
  position: relative;
  aspect-ratio: 1/1;
  /*background-color: #f0f0f0;*/
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 1;
}

.datepicker_date_cell:before,
.datepicker_date_cell:after {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
}

.datepicker_date_cell:before {
  background-color: white;
  content: "";
  width: 80%;
  z-index: 0;
}

.datepicker_date_cell:hover:before {
  background-color: var(--primary-color);
}

.datepicker_date_cell .number {
  position: relative;
  z-index: 10;
}

.datepicker_date_cell.prev,
.datepicker_date_cell.next {
  opacity: 0.5;
}

.datepicker_date_cell:hover {
  color: white;
}

.datepicker_date_cell.current {
  color: var(--primary-color);
}

.datepicker_date_cell.current:hover {
  color: white;
}

.datepicker_date_cell.current:before {
  border: 2px solid var(--primary-color);
  border-radius: var(--corner);
  transition: width 0.2s;
}

.datepicker_date_cell.current:hover:before {
  border-color: white;
  width: 60%;
}

.datepicker_date_cell.selected {
  color: white;
}

.datepicker_date_cell.selected:before {
  background-color: var(--primary-color);
  border-radius: var(--corner);
  width: 60%;
}

.datepicker_date_cell.selected:hover {
  color: var(--primary-color);
}

.datepicker_date_cell.selected:hover:before {
  background-color: white;
}

.datepicker_date_cell.current.selected {
  color: white;
}

.datepicker_date_cell.current.selected:before {
  background-color: var(--primary-color);
  width: 50%;
}

.datepicker_date_cell.current.selected:not(:hover):after {
  position: absolute;
  border: 2px solid var(--primary-color);
  border-radius: calc(var(--corner) * 1.5);
  content: "";
  width: 80%;
}

.datepicker_date_cell.current.selected:hover {
  color: var(--primary-color);
}

.datepicker_date_cell.current.selected:hover:before {
  background-color: white;
}

/* Sidebar filter */

.side-filter {
  background-color: #fff;
  padding: 10px;
  position: fixed;
  top: 33%;
  width: 260px;
  border-radius: 0 15px 15px 0;
  transform: translateX(-100%);
  transition: all 0.4s;
}

.side-filter.shown {
  transform: translateX(0);
}

.side-filter .open-filter {
  background-color: var(--e-global-color-secondary);
  position: absolute;
  right: -65px;
  top: 50%;
  transform: rotate(270deg);
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 0 0 5px 5px;
}

.side-filter .filter-part {
  background-color: #f1f2f3;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 15px;
}

.side-filter .part-name {
  margin-bottom: 10px;
  font-weight: 500;
}

#ui-datepicker-div {
  z-index: 99999 !important;
}

#ui-datepicker-div table thead:first-child tr:first-child th {
  border-block-start: 0;
}

.ui-datepicker table {
  border-top: 0 !important;
}

#ui-datepicker-div .ui-state-default {
  background: none;
}

#ui-datepicker-div td {
  background: none;
}
#ui-datepicker-div .ui-state-default:hover {
  border-color: var(--e-global-color-accent);
}
#ui-datepicker-div .ui-state-active {
  background-color: var(--e-global-color-accent);
  color: #fff;
}
#ui-datepicker-div .ui-datepicker-header {
  background: #c8a074;
}
#ui-datepicker-div .ui-datepicker-title {
  display: flex;
}
#ui-datepicker-div .ui-datepicker-title select {
  flex-grow: 1;
}
.unit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.unit-cards .property-listing-boxarea {
  width: calc(33.33% - 10px);
}
.unit-cards
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share {
  width: 120px !important;
  border-radius: 10px !important;
  color: #000;
  text-decoration: none;
}
.unit-cards
  .property-listing-boxarea
  .content-area
  .property-other-widget
  .btn-area
  .love-share
  .share:hover {
  color: var(--e-global-color-accent);
}

#ui-datepicker-div .ui-datepicker-title select {
  padding: 0 10px;
  height: 33px;
}

@media screen and (max-width: 1024px) {
  .datepicker-wrapper,
  .guest-input {
    width: 100%;
  }

  .unit-cards .property-listing-boxarea {
    width: calc(50% - 7.5px);
  }
}

@media screen and (max-width: 767px) {
  .search-box-cover .property-tab-section .filter-group {
    flex: 1 1 100%;
    width: 100%;
  }
  .search-box-cover .property-tab-section .search-button button {
    padding: 12px 9px 12px 15px;
    font-size: 13px;
  }
}

@media screen and (max-width: 569px) {
  .unit-cards .property-listing-boxarea {
    width: 100%;
  }
}

.unit-amenities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.unit-amenity {
  width: calc(25% - 15px);
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0px 0 4px 2px #8a8a8a30;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--e-global-typography-text-font-family);
  transition: 0.3s ease-in-out;
}

.unit-amenity:hover{
  background-color: #EEEEEE;
  transform: scale(1.02);
  box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, 0.21);

}

.unit-amenity .icon {
  height: 55px;
  margin-bottom: 15px;
  background-size: 55px 55px;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-am1 {
  background-image: url("./amenities/self-check-in.svg");
}
.icon-am2 {
  background-image: url("./amenities/concierge.svg");
}
.icon-am3 {
  background-image: url("./amenities/laundry.svg");
}
.icon-am4 {
  background-image: url("./amenities/excursion.svg");
}
.icon-am5 {
  background-image: url("./amenities/airport-transfer.svg");
}
.icon-am6 {
  background-image: url("./amenities/el-scoter.svg");
}
.icon-am7 {
  background-image: url("./amenities/camera.svg");
}
.icon-am8 {
  background-image: url("./amenities/parking.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am9 {
  background-image: url("./amenities/wifi.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am10 {
  background-image: url("./amenities/air-conditioner.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am11 {
  background-image: url("./amenities/first-aid-kit.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am12 {
  background-image: url("./amenities/kitchen.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am13 {
  background-image: url("./amenities/television.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am14 {
  background-image: url("./amenities/towels.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am15 {
  background-image: url("./amenities/hair-dryer.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am16 {
  background-image: url("./amenities/swimming-pool.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am17 {
  background-image: url("./amenities/folding-beach-chair.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am18 {
  background-image: url("./amenities/terrace.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am19 {
  background-image: url("./amenities/beach.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am20 {
  background-image: url("./amenities/products.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}
.icon-am21 {
  background-image: url("./amenities/dog.svg");
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(2263%) hue-rotate(348deg) brightness(89%) contrast(82%);
}

.facility {
  border: 1px solid #000;
  padding: 15px;
}
.facility-row {
  display: flex;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--e-global-typography-text-font-family);
}
.facility-row:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.facility .name,
.facility .value {
  width: 50%;
}

.facility .name {
  display: flex;
  align-items: center;
  gap: 5px;
}

.facility .icon {
  height: 20px;
  width: 20px;
  display: inline-block;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-fa1 {
  background-image: url("./amenities/beach.svg");
}
.icon-fa2 {
  background-image: url("./amenities/restaurant.svg");
}
.icon-fa3 {
  background-image: url("./amenities/atm.svg");
}
.icon-fa4 {
  background-image: url("./amenities/parking.svg");
}
.icon-fa5 {
  background-image: url("./amenities/airport2.svg");
}

#book-price {
  color: #fff;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-item .name {
  flex-grow: 1;
}

.service-item .remove-service {
  border: none;
  color: red;
  font-size: 20px;
}

#services-list {
  padding: 10px;
}

.thank-row {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 10px;
}
.thank-row span {
  font-weight: bold;
}
/* #ht-ctc-chat .ctc_s_7_1 {
  width: 60px;
  height: 60px;
} */
#ht-ctc-chat .ctc_s_7_icon_padding svg {
  height: 30px !important;
  width: 30px !important;
}

@media screen and (max-width: 1024px) {
  .unit-amenity {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .unit-amenity {
    width: 100%;
  }

  .rlg-tabs--nav {
    grid-template-columns: repeat(1, 1fr);
  }
  .rlg-tabs--nav .nav-item:nth-child(4n + 2),
  .rlg-tabs--nav .nav-item:nth-child(4n + 3) {
    grid-column-start: unset;
    grid-column-end: unset;
  }
}

#unit-book-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000d1;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
}
#unit-book-popup.active{
  display: flex;
}
.unit-book-inner {
  background: #fff;
  padding: 45px 15px 15px;
  border-radius: 5px;
  position: relative;
}
.unit-book-inner .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
