/*
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: "Montserrat", Sans-serif;
  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 / 4;
  background: #fff;
  border-radius: 20px;
  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;
  }
}

.location-city {
  position: relative;
  z-index: 1;
  overflow: hidden;

  &::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    transition: all 0.6s;
    background: #000;
    visibility: hidden;
    opacity: 0;
    border-radius: 20px;
    left: 0;
    top: 0;
    transform: scale(0.6);
    z-index: -1;
  }

  &:hover:after {
    visibility: visible;
    opacity: 0.5;
    transform: scale(1);
    transition: all 0.4s;
  }

  &:hover .location-name {
    bottom: 24px;
    transition: all 0.6s;
  }
}

.location-name {
  position: absolute;
  bottom: -100px;
  transition: all 0.6s;
  z-index: 2;
  left: 24px;
}

#prop-count {
  font-family: "Montserrat", Sans-serif;
  color: #fff;
  font-weight: 600;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 300ms linear;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .location-name {
    left: 10px;
  }
  .location-city {
    &:hover .location-name {
      bottom: 10px;
    }
  }
  #prop-count{
    font-size: 14px;
  }
}

/* Circle Animation */
@keyframes animation-7 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1000deg);
  }
}

.keyframe5 {
  animation-name: animation-7;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
}
.circle {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--e-global-color-accent);
}
.circle span {
  position: absolute;
  top: -70px;
  display: inline-block;
  transform-origin: 0 70px;
  color: var(--e-global-color-accent);
}
.circle-text-wrapper {
  border-width: 1px;
  border: 1px solid var(--e-global-color-accent);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  border-radius: 50%;
  padding: 8px;
  height: 140px;
  width: 140px;
}

@media screen and (max-width: 1024px) {
  .circle-text-wrapper {
    width: 95px;
    height: 95px;
  }
  .circle span {
    top: -45px;
    transform-origin: 0 45px;
  }
  .circle-text-wrapper img {
    width: 18px;
  }
}

/*============= 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 ===============*/
