@charset "UTF-8";

/* Loader css */
:root {
  --loader-width: 40px;
  --loader-height: 40px;
  --less-margin: -20px;
  --loader-color-primary: #27ae60;
  --loader-color-secondary: #eee;
  --line-width: 2px;
  --animation-duration: 2s;
}
.preloader,
.page-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
}
.preloader .loader,
.page-loader .loader {
  position: relative;
  border: var(--line-width) solid var(--theme-gray-color);
  border-radius: 50%;
  border-top: var(--line-width) solid var(--theme-primary-color);
  width: var(--loader-width);
  height: var(--loader-height);
  -webkit-animation: spin var(--animation-duration) linear infinite;
  animation: spin var(--animation-duration) linear infinite;
  margin-top: var(--less-margin);
  margin-left: var(--less-margin);
}

.btn-loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: btn-l-spin 1s linear infinite;
  max-width: 20px;
  margin: auto;
}

@keyframes btn-l-spin {
  to {
    transform: rotate(360deg);
  }
}

.dots {
  display: inline-flex;
  margin-left: 5px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  margin: 0 1px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  animation: dot-fade 1.4s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-fade {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 0.8;
}

option:hover {
  background-color: var(--form-border-color) !important;
}

select:focus > option:checked {
  background-color: var(--form-border-color) !important;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loader css */

/* Continuous Progress/Processing Bar */
.processing {
  position: relative;
  height: 2px;
  display: block;
  width: 100%;
  background-color: #e1ffe0;
  border-radius: 2px;
  background-clip: padding-box;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden;
}
.processing .continuous {
  background-color: var(--theme-primary-color);
}
.processing .continuous:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: continuous 3.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.processing .continuous:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: continuous-short 3.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}
@keyframes continuous {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes continuous-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

/*==================================
Theme Color All Codes Variable
==================================*/

:root {
  --theme-general-color: #6d7175;
  /* theme gray color */
}

:root {
  --theme-primary-color: #71b862;
  /* theme primary color */
}

:root {
  --theme-secondary-color: #2e3746;
  /* theme secondary color */
}

:root {
  --theme-white-color: #fff;
  /* theme white font color */
}
:root {
  --theme-li-hover-bg-color: #f6f8fb;
}
:root {
  --theme-light-color: #f8f9fa;
  /* theme light gray color */
}

:root {
  --theme-gray-color: #efefef;
  /* theme gray color */
}

:root {
  --theme-dark-color: #181a1d;
  /* theme dark color ok*/
}

:root {
  --theme-extra-color: #71b862;
  /* theme extra color */
}

:root {
  --theme-footer-color: #002c3f;
  /* theme dark color ok*/
}

:root {
  --theme-primary-opacity-color: rgba(113, 184, 98, 0.8);
  /* theme secondary color */
}

:root {
  --theme-secondary-opacity-color: rgba(46, 55, 70, 0.8);
  /* theme secondary color */
}

:root {
  --theme-dark-opacity-color: rgba(24, 26, 29, 0.8);
  /* theme dark opacity color */
}

:root {
  --theme-white-opacity-color: rgba(255, 255, 255, 0.5);
  /* theme light color */
}

:root {
  --text-light-color: #a5a5a5;
  /* text light color */
}

:root {
  --text-gray-color: #c3c3c3;
  /* theme text gray color */
}
:root {
  --light-border-color: #dcdcdc;
}
:root {
  --react-select-option-color: #f8f8f8;
}

:root {
  --theme-red-color: #fd0b0b;
}

:root {
  --theme-red-color2: #da6161;
}
:root {
  --theme-validation-err: #dc3545;
}
:root {
  --form-border-color: #dcdee0;
}
:root {
  --collapse-widget-border-color: #dee2e6;
}
:root {
  --text-light-dark-color: #4f4f4f;
}
:root {
  --collapse-widget-grid-bg: #f6f7fb;
}
:root {
  --theme-danger-color: #b02a37;
}
:root {
  --control-border-color: #ced4da;
}
/*==================================
Font Variable
==================================*/

:root {
  --theme-general-font: "Barlow", sans-serif;
  /* Font use for normal text and general text */
}

:root {
  --theme-hiperlink-font: "Sen", sans-serif;
  /* Font use for normal text and general text */
}

:root {
  --theme-highlight-font: "Sen", sans-serif;
  /* Font used in title or special area */
}

.sub-title {
  font-weight: 400;
  font-size: 18px;
}

.footer-widget .widget-title {
  font-weight: 400;
}

.btn {
  font-size: 16px;
  color: inherit;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.button:focus:not(:focus-visible),
.shadow-none {
  box-shadow: none !important;
}
.btn-link {
  font-weight: 500;
  text-decoration: none;
}
.link-primary-500-14 {
  cursor: pointer;
  font-size: 500;
  font-size: 14px;
  font-family: var(--theme-hiperlink-font);
  color: var(--theme-primary-color);
}

/* Color css */

/**

* Template Name: Uniland - Real Estate Template
* Version: 3.3
* Author: Unicoder
* Email: unicoder16@gmail.com
* Developed By: Unicoder
* Last Update: 15th June, 2022
* Author URL: www.unicoderbd.com

**/
/*===============================================================================
****CSS TABLE ****

#
# Default CSS Start
# Button Style
# Nav Pils Style Start
# Form Design Style Start
# Header Style Start
# Slide Filter Style Start
# jSlider Style Start
# Pagination Style Start
# Custom Scroll Bar Style Start
# About Us Style Start
# Photo Gallery Style Start
# Service Area Style Start
# Agent Block Style Start
# Agent Page Single Style Start
# Property Block Style Start
# Blog Thumbnail Style Start
# Sidebar Widgets Style Start
# Fact Counter Style Start
# Mixitup Style Start
# Accordion Style Start
# Owl Carousel Style Start
# Page Banner Style Start
# Search Banner Style Start
# Map Element Style Start
# Property Page Style Start
# Compare Page Style Start
# Deshboard Style Start
# Footer Style Start
# Responsive Style Start
# Social Media Style Start

==================================================================================*/

/*===============================================================================
Default CSS Start
==================================================================================*/
a {
  cursor: pointer;
}
a,
.photo-overlay::before,
[class*="accordion-plus-"] .ac-toggle::after {
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
body {
  font-size: 13px;
  font-family: var(--theme-general-font);
  font-weight: 400;
  line-height: 26px;
}
#page_wrapper {
  overflow: hidden;
}
a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--theme-highlight-font);
  line-height: revert;
  font-weight: 600;
}

h1,
.h1 {
  /* font-size: 30px; */
}

h2,
.h2 {
  /* font-size: 28px; */
}

h3,
.h3 {
  /* font-size: 26px; */
}

h4,
.h4 {
  /* font-size: 22px; */
}

h5,
.h5 {
  /* font-size: 20px; */
}

h6,
.h6 {
  /* font-size: 16px; */
}
img {
  max-width: 100%;
}
.bb-lr-0 {
  border-bottom-left-radius: 0 !important;
}
.bb-rr-0 {
  border-bottom-right-radius: 0 !important;
}
.max-100 {
  max-width: 100px !important;
}
.min-h-34 {
  min-height: 34px !important;
}
.min-h-40 {
  min-height: 40px !important;
}
.min-h-50 {
  min-height: 50px !important;
}
.min-h-60 {
  min-height: 60px !important;
}
.min-h-70 {
  min-height: 70px !important;
}
.min-h-80 {
  min-height: 80px !important;
}
.min-h-90 {
  min-height: 90px !important;
}
.min-h-100 {
  min-height: 100px !important;
}
.min-h-150 {
  min-height: 150px !important;
}
.min-h-130 {
  min-height: 130px !important;
}
.min-h-200 {
  min-height: 200px !important;
}
.min-h-250 {
  min-height: 250px !important;
}
.min-h-300 {
  min-height: 300px !important;
}
.min-h-400 {
  min-height: 400px !important;
}
.max-h-400 {
  max-height: 400px !important;
}
.max-h-600 {
  max-height: 600px !important;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  line-height: 25px;
}
p {
  line-height: 28px;
}
p:last-child {
  margin-bottom: 0;
}
sup {
  top: -10px;
  left: inherit;
  right: -10px;
}
.input-group-text {
  /* z-index: 100 !important; */
  width: 42px !important;
  text-align: center;
  color: var(--theme-general-color) !important;
}
label {
  margin-bottom: 0px;
}
textarea {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
textarea.form-control {
  height: auto !important;
}
.lbl-fg-f500,
.form-view > div > span:first-child {
  font-size: 14px;
  font-weight: 500;
}
.font-400 {
  font-weight: 400 !important;
}
.py-60,
.pt-60 {
  padding-top: 60px !important;
}
.py-60,
.pb-60 {
  padding-bottom: 60px !important;
}
.py-100,
.pt-100 {
  padding-top: 100px !important;
}
.py-100,
.pb-100 {
  padding-bottom: 100px !important;
}
.font-fifteen {
  font-size: 15px !important;
}
.z-index-9 {
  z-index: 9;
}
.wrap-txt {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.txt-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none !important;
}
.btn-link {
  font-weight: 400;
  display: inline-block;
  align-items: center;
  width: max-content;
  color: var(--theme-general-color);
}
.btn-link:hover {
  color: var(--theme-primary-color);
}
.text-center .btn-link {
  margin: 0 auto;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: var(--theme-dark-color);
  background-color: var(--theme-white-color);
  border-color: var(--theme-gray-color);
}
.box-shadow {
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
}
.box-shadow-top {
  box-shadow: 0 -1rem 0.1rem -1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-text {
  font-weight: 400;
}
.hide {
  display: none !important;
}
.div-trans {
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fade-box {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.fade-box.show {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.modal-content {
  border-radius: 0;
}
.quick-email-modal,
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99992;
  width: 100%;
  height: 100%;
  overflow: hidden scroll !important;
}
.view-close {
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 99;
  background-color: var(--theme-dark-color);
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  color: var(--theme-white-color);
}
.btn-light.focus,
.btn-light:focus {
  box-shadow: none;
}
.header-unfix.nav-on-top,
.header-unfix.fixed-top {
  position: static !important;
  animation: unset !important;
}
.header-unfix.fixed-top.nav-on-banner {
  position: absolute !important;
  animation: unset !important;
}
.icon-text {
  display: flex;
  align-items: center;
}
#page_wrapper.overlay::before {
  background-color: var(--theme-secondary-opacity-color);
  z-index: 99999;
}
.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push {
  height: 100vh;
  width: 360px;
  padding: 100px 40px;
  overflow-y: scroll;
}
.slide-nav-close {
  cursor: default;
}
.img-fit-grid {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.img-fit-grid-small {
  aspect-ratio: 3/2.3;
  object-fit: cover;
}
.img-fit-grid-contain {
  aspect-ratio: 3/2;
  object-fit: contain;
}

table td,
table th {
  border: none;
  padding: 10px 15px;
}
.table-striped td {
  border-top: 1px solid #dee2e6;
}
.table-striped th {
  box-shadow: none;
}
.d-ruby {
  display: ruby !important;
}
.fact-counter .progress {
  height: 5px;
}
.fact-counter .count-num {
  font-family: var(--theme-general-font) !important;
}
.vertical-timeline::before {
  left: 90px;
}
.vertical-timeline::after {
  left: 95px;
  height: 82%;
  background-color: var(--theme-primary-color);
}
.decimal-list li {
  list-style-type: decimal;
  list-style-position: inside;
}
.artical-list li a {
  padding: 8px 0;
  display: inline-block;
}
.disc-list li {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 0.1rem;
}
.line-list li {
  position: relative;
  padding-left: 30px;
}
.line-list li:not(:last-child) {
  margin-bottom: 20px;
}
.line-list li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--theme-primary-color);
  left: 0;
  top: 12px;
}
.slider-signup input {
  width: 100%;
  background: #fff;
  line-height: 47px !important;
  height: 60px;
  border-radius: 30px;
  padding: 8px 130px 8px 30px;
}
.slider-signup .form-control::placeholder {
  font-size: 15px !important;
  font-weight: 500 !important;
}
.slider-signup button {
  position: absolute;
  line-height: 50px;
  border-radius: 25px;
  right: 5px;
  top: 5px;
  width: 120px;
  font-size: 15px;
  text-align: center;
}
.tagline-2::before {
  top: calc(100% - 18px);
}
.tagline,
.tagline-2 {
  font-weight: 500;
  position: relative;
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.tagline-3 {
  background-color: var(--theme-primary-opacity-color);
  color: var(--theme-primary-color);
  padding: 0 20px;
  line-height: 30px;
  display: table;
  border-radius: 50rem;
}
.line-title::before,
.testimonial-item .name::before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  width: 80px;
  height: 2px;
  background-color: var(--theme-primary-color);
}
.ls-0 {
  letter-spacing: 0 !important;
}
.testimonial-block-1 {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.testimonial-block-1 .name-block {
  /* position: absolute; */
  /* align-self: self-end; */
  bottom: 20px;
}
.testimonial-block-1 .image-avata {
  width: 50px;
}
.testimonial-block-1 p {
  font-size: 15px;
  line-height: 30px;
}
.testimonial-block-1 .quote-icon {
  font-size: 40px;
}
.form-switch .form-check-input {
  background-repeat: no-repeat;
}
.half-bg-footer {
  z-index: 1;
}
.half-bg-footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-color: var(--theme-footer-color);
  z-index: -1;
}
.video-hero {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
}
.jquery-background-video {
  position: absolute;
  max-width: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hover-dark:hover {
  background-color: var(--theme-dark-color) !important;
}
.hover-primary:hover {
  background-color: var(--theme-primary-color) !important;
}
.hovertxt-primary:hover {
  color: var(--theme-primary-color) !important;
}
.hover-secondary:hover {
  background-color: var(--theme-secondary-color) !important;
}
[class*="icon-"]:before,
[class*="icon-"] span:before {
  color: inherit !important;
}
.hover-text-underline:hover {
  text-decoration: underline;
}
/*Wizard Style*/

/* Wizard.css */
.wizard-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
}

.step-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-weight: bold;
  color: #6c757d;
  transition: border-color 0.4s linear, background-color 0.4s linear,
    color 0.4s linear;
  position: relative;
}

.step-label {
  margin-top: 8px;
  font-size: 0.85rem;
}

.step-wrapper:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  right: 0;
  height: 2px;
  background-color: #e4e4e4;
  z-index: 1;
  width: 100%;
}

/* This draws the line between steps */
.step-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  right: 0;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s linear, background-color 0.4s linear;
}

/* When completed, animate the line growing */
.step-wrapper.completed:not(:last-child)::after {
  background-color: var(--theme-primary-color);
  transform: scaleX(1);
  width: 100%;
}

.step-wrapper.active .step-circle {
  border-color: var(--theme-primary-color);
  color: var(--theme-primary-color);
}

.step-wrapper.active .step-label,
.step-wrapper.completed .step-label {
  color: var(--theme-primary-color);
}

.step-wrapper.completed .step-circle {
  background-color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
  color: #fff;
}
@media screen and (min-height: 1100px) {
  .form-section {
    margin: 100px 0 0 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .step-label.application {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .step-label.application {
    font-size: 0.75rem !important;
    display: none;
  }

  .step-wrapper.active .step-label.application {
    display: block;
    position: absolute;
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .step-label.application {
    font-size: 0.85rem !important;
    display: none;
  }
}

/* Wizard.css end */
/*===============================================================================
Button Style
===============================================================================*/
/*----------*/
button:focus {
  /* box-shadow: none !important; */
}

.btn.btn-primary {
  background-color: var(--theme-primary-color);
  color: var(--theme-white-color);
}
/*----------*/
.btn.btn-secondary {
  background-color: var(--theme-secondary-color);
  color: var(--theme-white-color);
}
/*----------*/
.btn.btn-dark {
  background-color: var(--theme-dark-color);
  color: var(--theme-white-color);
}
/*===============================================================================
Nav Pils Tab Style Start
==================================================================================*/

.nav-pills {
  margin-bottom: 20px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--theme-primary-color);
  background-color: transparent;
}
.nav-pills .nav-link {
  padding: 0;
  color: var(--theme-general-color);
  position: relative;
}
.nav-pills .nav-item:not(:last-child) {
  margin-right: 20px;
}
.tab-style-1 {
  display: flex;
  justify-content: center;
}
.tab-style-1 .nav-pills .nav-link {
  padding-bottom: 5px;
}
.tab-style-1 .nav-pills .nav-link::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.tab-style-1 .nav-pills .nav-link.active::before,
.tab-style-1 .nav-pills .show > .nav-link::before {
  background-color: var(--theme-primary-color);
}
.div-page-title {
  z-index: 1;
}
.user-menu {
  background-color: var(--theme-footer-color);
  box-shadow: 0 0.2rem 0.2rem rgb(14 43 61) !important;
}
.user-menu .nav-item.active a {
  color: var(--theme-primary-color) !important;
}
.user-info-ddmenu a,
.user-menu .nav-item .dropdown-menu a {
  color: var(--text-light-dark-color) !important;
}
.user-menu .nav-item .dropdown-menu li.active a {
  color: var(--text-primary-color) !important;
}
.user-menu a {
  color: var(--theme-white-color) !important;
}
.user-menu .nav-item .dropdown-menu li {
  line-height: 30px !important;
}
.user-menu .nav-item .dropdown-menu .dropdown-item i:before {
  font-size: 15px !important;
}

/* .nav-profile-pic img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  border-radius: 100%;
} */

/*===============================================================================
Form Design Style Start
==================================================================================*/
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icon/angle-down-solid.png);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: calc(100% - 20px);
  cursor: pointer;
}

/* For IE <= 11 */

select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
}

.form-group {
  position: relative;
  display: flex;
}
.form-group input:not(:last-child) {
  margin-right: 5px;
}
.search-form.header-active-form .form-control {
  width: 350px;
  padding: 15px 40px 15px 20px;
}
.search-form .form-control {
  height: 50px;
  padding: 5px 30px 5px 20px;
  background: var(--theme-light-color);
  font-size: 1rem;
  color: #495057;
}
.form-control::placeholder {
  color: #6c757d !important;
  font-size: 15px !important;
  opacity: 0.5;
}
.form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: var(--theme-dark-color);
}
.form-control.file-control {
  padding: 0.375rem 0.75rem !important;
}
.pdf-form-ctl,
.signature-ctl {
  border-radius: 0 !important;
  height: auto !important;
  border: none !important;
  border-bottom: solid 1px var(--text-light-dark-color) !important;
  padding: 0 0 !important;
  /* background-color: #b7b19f !important; */
  width: 220px;
  max-width: 250px;
  color: var(--text-light-dark-color) !important;
}
.pdf-form-ctl:focus,
.signature-ctl:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  border-bottom: solid 1px var(--text-light-dark-color) !important;
}
.signature-ctl {
  width: 250px;
  height: 80px;
  padding: 5px 0 !important;
}
.quick-search {
  padding: 30px;
}
.quick-search.map-search-filter {
  padding: 20px;
}
.widget .quick-search {
  padding: 0;
}
.quick-search .form-control,
.quick-search .react_select_ctrl div[class$="-control"] {
  border: 1px solid;
  border-color: var(--control-border-color);
  font-size: 13px !important;
  color: var(--text-light-dark-color);
  padding: 0 13px;
  height: 38px !important;
  min-height: 38px !important;
}
.quick-search .react_select_ctrl .react_select_menu div[class$="-option"] {
  font-size: 13px !important;
}
.quick-search textarea.form-control {
  height: auto !important;
  min-height: auto !important;
}
.quick-search .react_select_ctrl div[class$="-control"] {
  padding: 0 !important;
}
.quick-search .react_select_ctrl input,
.quick-search .react_select_ctrl div[class$="-indicatorContainer"] {
  top: -2px;
  position: relative;
}
.quick-search .react_select_ctrl div[class$="-placeholder"],
.quick-search .react_select_ctrl div[class$="-singleValue"],
.quick-search .form-control::placeholder {
  font-size: 13px !important;
  color: var(--text-light-color) !important;
  margin-top: -5px !important;
}
/* .css-k3o0h2 {
  padding: 0 2px 2px 2px !important;
}
.css-41c7c3 {
  padding: 2px 8px 4px 8px !important;
} */
.form-boder .form-control {
  border-color: var(--form-border-color);
}
.react_select_menu div[class$="-option"] {
  color: var(--theme-general-color) !important;
}
.react_select_ctrl div[class$="-multiValue"],
.multiValue {
  font-size: 14px !important;
  color: var(--text-light-color) !important;
  margin-top: 1px !important;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 8px !important;
}
.multiValue {
  padding: 0px 5px 0 5px;
  border: none !important;
}
.multiValue:not(:first-child) {
  margin-left: 5px;
}
.multiValue .remove {
  cursor: pointer;
  color: var(--theme-red-color2);
  font-size: 13px;
  padding: 0px 4px 0 4px;
}
.css-9jq23d {
  padding: 0 !important;
  padding-left: 6px !important;
}
.react_select_indicator,
.react_clear_indicator {
  border: none !important;
  outline: none !important;
  padding: 0.375rem 0.375rem 0.375rem 0.75rem !important;
  background-color: transparent !important;
}
.react_clear_indicator {
  background-image: url('data:image/svg+xml,<svg viewPort="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg"><line x1="1" y1="9" x2="9" y2="1" stroke="%236d7175" stroke-width="1.5"/><line x1="1" y1="1" x2="9" y2="9" stroke="%236d7175" stroke-width="1.5"/></svg>');
}
.react_select_ctrl.ddlborder div {
  border-color: var(--form-border-color) !important;
}
.react_select_ctrl div {
  color: var(--theme-general-color) !important;
  border-radius: 3px !important;
}
.react_select_ctrl div.text-primary {
  color: var(--theme-primary-color) !important;
}
.react_select_ctrl.br-l-0 div {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.react_select_menu {
  z-index: 9999 !important;
}
.css-k3o0h2 {
  text-overflow: ellipsis !important;
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}
.bootstrap-select > .dropdown-toggle {
  background: var(--theme-white-color);
  border: 1px solid;
  border-color: var(--theme-gray-color);
  height: 50px;
  font-size: 15px;
  padding: 0 15px;
  color: var(--theme-dark-color);
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--theme-light-color);
  color: var(--theme-primary-color);
}
.bootstrap-select .dropdown-menu li {
  position: relative;
  line-height: 35px;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}
.bootstrap-select .bs-ok-default:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
  border-style: solid;
  border-width: 0 0.16em 0.16em 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 13px;
}
.form-icon-right .icon-font,
.form-icon-right .fas {
  right: 20px;
  top: 50%;
  position: absolute;
}
.form-control {
  margin-bottom: 0;
}
.form-select-ps {
  width: 85px;
  font-size: 12px;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
}
.filter-option-inner-inner {
  font-family: var(--theme-general-font) !important;
  text-shadow: none;
  font-weight: 400;
  font-size: 15px;
}
.banner-search-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none;
  outline: none;
  outline-offset: unset;
}
.aditional-features {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  margin: 0;
}
.aditional-features.visible-static.visible {
  position: static !important;
}
.aditional-features.visible {
  visibility: visible;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: var(--theme-light-color) !important;
}
.custom-check-box li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.custom-check-box-2 label,
.custom-check-box li label,
.ccbox > span {
  padding-left: 23px;
  position: relative;
  cursor: pointer;
  line-height: 24px;
}
.ccbox > span {
  padding-left: 20px;
  line-height: 15px;
  font-size: 13px !important;
}
.custom-check-box-2.gr-cc > span {
  padding-left: 20px;
  line-height: 15px;
  font-size: 13px !important;
}
.custom-check-box-2,
.ccbox {
  padding: 0;
}
.custom-check-box-2 label,
.ccbox > span {
  margin-left: 0;
}
.custom-check-box-2 label::before,
.custom-check-box li label::before,
.custom-check-box.gr-cc li label::before,
.ccbox > span::before {
  background-color: #ffffff;
  border: 1px solid var(--form-border-color);
  height: 18px;
  top: 0.25rem;
  width: 18px;
  box-sizing: border-box;
  border-radius: 0.25rem;
  content: "";
  left: 0;
  position: absolute;
  transition: border-color 0.3s ease 0s;
}
.gr-cc > label::before {
  width: 16px;
  height: 16px;
  top: 0.1rem;
}
.ccbox > span::before {
  width: 14px;
  height: 14px;
  top: 0.1rem;
  right: 10px;
}
.custom-check-box-2 .radio-lbl::before {
  border-radius: 100px !important;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-check-box-2 input[type="checkbox"]:checked + label::before,
.custom-check-box li input[type="checkbox"]:checked + label::before,
.custom-check-box-2.gr-cc input[type="checkbox"]:checked + label::before,
.custom-check-box-2 input[type="radio"]:checked + .radio-lbl::before,
.ccbox input[type="checkbox"]:checked + span::before,
.ccbox input[type="radio"]:checked + .radio-lbl::before {
  font-size: 7px;
  line-height: 19px;
  position: absolute;
  text-align: center;
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  border: none;
  background-color: var(--theme-primary-color);
  color: var(--theme-white-color);
}
.ccbox input[type="checkbox"]:checked + span::before,
.ccbox input[type="radio"]:checked + .radio-lbl::before {
  line-height: 14px;
}
.custom-check-box-2.gr-cc input[type="checkbox"]:checked + label::before,
.custom-check-box-2.gr-cc input[type="radio"]:checked + .radio-lbl::before {
  line-height: 16px !important;
}
.price-toggle {
  text-align: left;
}
.entry-form input {
  width: calc(100% - 110px);
}
.entry-form button {
  position: absolute;
  background: transparent;
  right: 0;
  border: 0;
  width: 100px;
  text-align: center;
  line-height: 42px;
}
.widget.agent-search select {
  background-color: transparent;
  font-size: 15px;
  color: var(--theme-dark-color);
}
.form-boder select,
.widget.agent-search select {
  border: 1px solid var(--theme-gray-color);
  padding: 6px 30px 6px 15px;
  width: 100%;
  font-size: 14px;
  color: var(--theme-general-color);
  background-position: calc(100% - 20px);
}
.property-search-form.on-slider {
  margin-top: -155px;
  z-index: 99;
  margin-bottom: 40px;
}
.uline-none {
  text-decoration: none !important;
}
.form-action {
  text-align: right;
}
.form-action button,
.modal-action button {
  background: transparent;
  /* filter: brightness(110%); */
  border-radius: 0.25rem !important;
  padding: 0 20px;
  line-height: 32px;
  font-size: 13px;
  /* box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important; */
}
.form-action button:not(:last-child) {
  margin-right: 20px;
}
.modal-action button:not(:last-child) {
  margin-right: 10px;
}
.form-action .form-error {
  text-align: left;
  font-size: 14px !important;
}
.pdf-viewer-container {
  height: 600px;
  margin: 20px auto;
  border: 1px solid #ddd;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pdf-viewer-container {
    height: 600px;
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .pdf-viewer-container {
    height: 600px;
    max-width: 100%;
  }
}
/*===============================================================================
Header Style Start
==================================================================================*/
.nav-logo {
  width: 80px;
}
.dropdown-item,
.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 400;
}
.navbar-toggler,
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav > li.dropdown > a.nav-link::after,
.navbar-nav > li.dropdown .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
  position: absolute;
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 8px;
  top: 50%;
  right: -10px;
  display: block;
  border: none;
}
.dropdown-item a {
  display: block !important;
}
.user-info-ddmenu .user-info-img {
  width: 40px !important;
  max-width: 40px !important;
}
.fl-r {
  float: right !important;
}
.fl-l {
  float: left !important;
}
.wpx-50 {
  width: 50px !important;
  max-width: 50px !important;
}
.w-120 {
  width: 120px !important;
  max-width: 120px !important;
}
.w-130 {
  width: 130px !important;
  max-width: 130px !important;
}
.lh-26 {
  line-height: 26px !important;
}
.lh-22 {
  line-height: 22px !important;
}
.lh-20 {
  line-height: 20px !important;
}
.lh-5 {
  line-height: 5px !important;
}
.lh-18 {
  line-height: 18px !important;
}
.lh-30 {
  line-height: 30px !important;
}
.lh-38 {
  line-height: 38px !important;
}
.lh-45 {
  line-height: 45px !important;
}
.bg-none {
  background: none !important;
  background-color: none !important;
}
.bo-0 {
  border: none !important;
}
.bo-r-0 {
  border-right: none !important;
}
.bo-b-0 {
  border-bottom: none !important;
}
.bo-top {
  border-top: 1px solid #dee2e6 !important;
}
.bo-t1-primary {
  border-top: 1px solid var(--theme-primary-color) !important;
}
.bo-gray {
  border: 1px solid var(--theme-gray-color) !important;
}
.bo-b1-primary {
  border-bottom: 1px solid var(--theme-primary-color) !important;
}
.bo-t1-gray {
  border-top: 1px solid var(--theme-gray-color) !important;
}
.bo-2-lihover {
  border: 2px solid var(--theme-li-hover-bg-color) !important;
}
.bo-b1-lihover {
  border-bottom: 1px solid var(--theme-li-hover-bg-color) !important;
}
.bo-b1-gray {
  border-bottom: 1px solid var(--theme-gray-color) !important;
}
.bo-t2-primary {
  border-top: 2px solid var(--theme-primary-color) !important;
}
.bo-b2-primary {
  border-bottom: 2px solid var(--theme-primary-color) !important;
}
.filter-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.95);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.filter-section.show {
  max-height: 500px; /* Adjust based on content */
  opacity: 1;
  transform: scaleY(1);
}

.filter-section.hide {
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.95);
}
.bo2-transparent {
  border: 2px solid transparent;
}
.transition2sl {
  transition: all 0.2s linear;
}

.hoverbo1bg-primary:hover {
  border: 2px solid var(--theme-primary-color) !important;
  background-color: color-mix(
    in srgb,
    var(--theme-primary-color) 8%,
    white
  ) !important;
}

.hover-shadow:hover {
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.fixed-column {
  position: fixed;

  height: 100%; /* Full height */
  overflow-y: auto; /* Enable vertical scrolling if needed */
  z-index: 1000; /* Stay above other content */
}
.st-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.st-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease;
}

.st-card.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.st-card.disabled .arrow {
  display: none !important;
}

.st-card:hover,
.st-card.disabled {
  background-color: var(--theme-li-hover-bg-color);
}

.st-card.active {
  background-color: var(--theme-primary-opacity-color);
  transition: all 0.5s ease;
  transform: scale(1.01);
}

.st-card.active i,
.st-card.active .card-content div {
  color: var(--theme-white-color) !important;
}

.st-card .icon {
  width: 34px;
  /* height: 40px; */
  margin-right: 0.5rem;
  flex-shrink: 0;
  color: var(--theme-primary-color);
  align-items: start;
}
.st-card .card-content {
  flex-grow: 1;
}
.st-card .card-text {
  flex-grow: 1;
}

.st-card .card-title {
  font-family: var(--theme-highlight-font);
  color: var(--text-light-dark-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0px;
}

.st-card .card-description {
  font-size: 0.9rem;
  color: var(--text-light-dark-color);
}

.st-card .arrow {
  font-size: 15px;
  padding-right: 0.8rem;
  padding-left: 1rem;
  color: var(--theme-primary-color);
}
/* .navbar-nav .dropdown-menu {
  position: absolute !important;
} */
.user-option {
  cursor: pointer;
}
.user-info-ddmenu,
.ddmenu {
  position: absolute !important;
  border: solid 1px var(--theme-gray-color) !important;
  margin-top: 5px !important;
  right: 0px;
  z-index: 1000;
}
.bc-ddmenu {
  position: fixed !important;
  border: solid 1px var(--theme-gray-color) !important;
  margin-top: 2px !important;
  z-index: 1000;
}
.ddmenu,
.bc-ddmenu {
  min-width: 190px;
}
.ddmenu li,
.bc-ddmenu li {
  margin: 4px 0 !important;
}
.ddmenu.text-primary li a,
.bc-ddmenu.text-primary li a {
  color: var(--text-primary-color) !important;
}
.user-info-ddmenu {
  min-width: 260px !important;
  max-width: 100% !important;
}
.user-info-ddmenu.condition {
  right: 26px !important;
}
.user-info-nav-item.publiclayout {
  align-self: center;
  height: 40px;
  margin-top: 13px;
  z-index: 1000;
}
.user-info-nav-item.publiclayout .user-option {
  display: flex;
  align-items: center;
  /* margin-top: 12px; */
  padding: 0 20px;
}
.user-info-ddmenu .user-info-head {
  position: relative;
  border-bottom: solid 1px var(--theme-primary-color);
  font-family: var(--theme-hiperlink-font) !important;
}
.round-5rem {
  border-radius: 0.5rem;
}
.btn-round {
  border-radius: 25px;
}
.btn-xs {
  padding: 0 16px !important;
  line-height: 30px !important;
  font-size: 12px !important;
  font-weight: normal;
}
.btn-xxs {
  padding: 0 14px !important;
  line-height: 26px !important;
  font-size: 12px !important;
  font-weight: normal;
}
.btn-glow ul {
  background: transparent;
  filter: brightness(90%) !important;
}
.btn-glow {
  background: transparent;
  filter: brightness(110%);
}
.dropdown-menu a,
.dropdown-menu a:hover {
  color: inherit; /*var(--theme-secondary-color); */
}
.dropdown-toggle.ddmenu-toggle::after {
  vertical-align: 0.155em !important;
}
.user-info-ddmenu::before,
.ddmenu.arrow::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  display: block;
  background: inherit;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  transform-origin: center;
  border: solid 1px var(--text-gray-color) !important;
  border-color: inherit;
  z-index: -1;
  clip: rect(0, 9px, 9px, 0);
}
.ddmenu.lt.arrow::before {
  left: 1rem;
}
.ddmenu.ltp5.arrow::before {
  left: 0.5rem;
}
.no-after-cnt::after {
  content: "" !important;
}
.img-round {
  border-radius: 50%;
}
.user-info-nav-item {
  /* border-left: solid 1px var(--theme-gray-color); */
}
.icon-wrapper {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  cursor: pointer;
}
.icon-wrapper-alt .icon-wrapper-bg {
  opacity: 0.3;
  transition: opacity 0.2s;
  border-radius: 40px;
}
.icon-wrapper-alt {
  margin: 0;
  height: 33px;
  width: 33px;
  text-align: center;
  overflow: visible;
}
.icon-wrapper .icon-wrapper-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
}
.h-70,
.user-navbar {
  height: 60px;
}
.icon-wrapper i {
  margin: 0 auto;
  font-size: 16px;
  position: relative;
  z-index: 5;
  align-self: center;
}
.icon-wrapper-alt:hover .icon-wrapper-bg {
  opacity: 0.4;
}
.icon-anim-pulse {
  animation: pulse_animation;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes pulse_animation {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1.21);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.09);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.badge {
  font-size: 0.8em;
  font-weight: 500;
}
.badge-danger {
  color: #fff;
  background-color: var(--theme-red-color2);
}
.badge-dot {
  position: absolute;
  text-indent: -999em;
  padding: 0;
  width: 12px;
  height: 12px;
  border: solid 2px var(--theme-red-color2);
  border-radius: 30px;
  z-index: 10;
}
.badge-dot {
  top: 0px;
  right: -1px;
  border: 0;
}
.badge-dot.badge-dot-sm {
  width: 10px;
  height: 10px;
  border: solid 2px #efcccc;
}
.collpase-widget {
  min-width: 340px;
  width: 340px;
  margin-top: 8px;
  right: 0px !important;
  left: -2px !important;
  position: absolute;
  border-radius: 5px;
  z-index: 1000;
  /* left: calc(100%-340px); */
}
.cwn {
  left: calc(100% - 380px) !important;
}
.collpase-widget .widget-header,
.widget-cnt-body,
.collpase-widget .widget-footer {
  padding-right: 10px;
  padding-left: 10px;
}
.widget-cnt-body {
  margin: 10px 0 0 0;
  max-height: 300px;
  overflow-y: auto;
}
.widget-cnt-body img.profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.widget-cnt-body .minfo {
  padding-right: 10px;
  padding-left: 10px;
}
.widget-cnt-body .name {
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 5px;
  color: var(--theme-primary-color);
  font-family: var(--theme-highlight-font);
}
.widget-cnt-body .message {
  font-size: 13px;
  font-weight: 400;
}
.widget-cnt-body .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/.5em auto no-repeat;
  padding: 0;
}
.widget-cnt-body .row {
  align-items: start !important;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
  border: solid 1px var(--collapse-widget-border-color);
}
.collpase-widget .row {
  align-items: center;
  --bs-gutter-x: 0 !important;
}
.widget-cnt-body > div.nlist .row:nth-child(odd) {
  background-color: var(--collapse-widget-grid-bg);
}
.widget-cnt-body > div.nlist .row:nth-child(even) {
  background-color: var(--theme-white-color);
}
.widget-cnt-body .date {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray-color);
}
.widget-cnt-body .time {
  margin: 10px 0 5px 0;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  color: var(--theme-primary-color);
}
.collpase-widget .widget-header,
.collpase-widget .widget-footer {
  line-height: 50px;
}
.collpase-widget .widget-header .title {
  font-size: 15px;
  font-weight: 500;
}
.collpase-widget .widget-header {
  border-bottom: dashed 1px var(--collapse-widget-border-color);
}
.collpase-widget .widget-footer {
  border-top: solid 1px var(--collapse-widget-border-color);
  text-align: center;
}
.collpase-widget .widget-footer,
.collpase-widget .widget-footer a {
  color: var(--text-light-dark-color) !important;
  font-size: 12px;
  font-weight: 500;
}
/*===============================================================================
Slide Filter Style Start
==================================================================================*/

.select-custom li {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 2px;
}
.select-custom li label {
  padding: 3px 12px;
  border: 1px solid #d7d7d8;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.select-custom li input[type="radio"]:checked + label {
  border-color: var(--theme-primary-color);
  color: var(--theme-primary-color);
}
.select-custom li input[type="radio"]:checked + label:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1px;
  border: 12px;
  border-style: solid;
  border-color: var(--theme-primary-color) transparent transparent transparent;
  transform: rotate(-45deg);
  right: -12px;
  bottom: -12px;
}
.select-custom li input[type="radio"]:checked + label:after {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-size: 5px;
  right: -1px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  color: #fff;
  font-weight: 900;
  z-index: 9;
}
.slide-filter .price-range-toggle {
  width: 100%;
}
/*===============================================================================
jSlider Style Start
==================================================================================*/

.jslider .jslider-pointer {
  background-color: var(--theme-primary-color);
  border: 4px solid #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
}
.jslider {
  display: block;
  width: 95%;
  height: 1em;
  position: relative;
  top: 30px;
}
.jslider table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
.jslider td,
.jslider th {
  padding: 0;
  vertical-align: top;
  text-align: left;
  border: 0;
}
.jslider table,
.jslider table tr,
.jslider table tr td {
  width: 100%;
  vertical-align: top;
}
.jslider .jslider-bg {
  position: relative;
}
.jslider .jslider-bg .l {
  width: 10%;
  background-position: 0 0;
  left: 0;
  background: var(--theme-light-color);
}
.jslider .jslider-bg .f {
  width: 80%;
  left: 10%;
  background-repeat: repeat-x;
  background-position: 0 -20px;
  background: var(--theme-light-color);
}
.jslider .jslider-bg .r {
  background-position: right 0;
  width: 100%;
  right: -18px;
  background: var(--theme-light-color);
}
.jslider .jslider-bg i {
  height: 4px;
  position: absolute;
  font-size: 0;
  top: 0;
}
.jslider .jslider-bg .v {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 0;
  height: 4px;
  background: var(--theme-primary-color);
}
.jslider .jslider-pointer {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: 0 -60px;
  position: absolute;
  left: 20%;
  top: -7px;
  cursor: pointer;
  cursor: hand;
}
.jslider .jslider-pointer-hover {
  background-position: -20px -60px;
}
.jslider .jslider-label {
  font-size: 9px;
  line-height: 12px;
  color: black;
  opacity: 0.4;
  white-space: nowrap;
  padding: 0px 2px;
  position: absolute;
  top: -18px;
  left: 0px;
}
.price-filter .jslider .jslider-label,
.area-filter .jslider .jslider-label {
  display: none !important;
}
.jslider .jslider-label-to {
  left: auto;
  right: 0;
}
.jslider-value > span {
  float: right;
}
.area-filter .jslider-value > span {
  float: left;
  padding-right: 3px;
}
.jslider .jslider-value {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 1px 2px 0;
  position: absolute;
  top: -30px;
  left: 20%;
  background: transparent;
  line-height: 13px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.jslider .jslider-value-to {
  margin-right: -18px;
}
.jslider .jslider-label small,
.jslider .jslider-value small {
  position: relative;
  top: -0.4em;
}
.jslider .jslider-scale {
  position: relative;
  top: 9px;
}
.jslider .jslider-scale span {
  position: absolute;
  height: 4px;
  border-left: 1px solid #999;
  font-size: 0;
}
.jslider .jslider-scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0px;
  top: 5px;
  color: #999;
}
.jslider-single .jslider-pointer-to,
.jslider-single .jslider-value-to,
.jslider-single .jslider-bg .v,
.jslider-limitless .jslider-label {
  display: none;
}
.price-range-toggle {
  width: 285px;
  padding: 30px;
  background: #fff;
  border-radius: 6px;
  height: 100px;
  right: 0;
  top: 130%;
  position: absolute;
  box-shadow: 0px 0px 50px 0px rgba(32, 32, 32, 0.15);
  visibility: hidden;
  opacity: 0;
  z-index: 0;
}
.price-range-toggle.visible {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
.aditional-features:before,
.price-range-toggle:before {
  background-color: #ffffff;
  content: "";
  height: 20px;
  left: auto;
  margin: 0 auto;
  position: absolute;
  right: 25%;
  top: -5px;
  width: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.opacity-1 {
  opacity: 1 !important;
}
/*===============================================================================
Pagination Style Start
==================================================================================*/
.pagination {
  gap: 5px;
}
.pagination .page-link,
.pagination .page-item.disabled .page-link {
  background: transparent;
}
.pagination-dotted-active .pn {
  width: 15px !important;
}
.pagination-dotted-active .page-link {
  color: #fff;
  border: none;
  border-radius: 50% !important;
  /* overflow: hidden; */
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  word-wrap: break-word;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
  /* margin: 0 5px; */
}
.pagination-dotted-active .page-item:first-child .page-link,
.pagination-dotted-active .page-item:last-child .page-link {
  width: auto;
}
.pagination-dotted-active .active .page-link {
  background: var(--theme-primary-color);
  border: none;
  /* color: var(--theme-primary-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 !important; */
  color: var(--theme-white-color);
}
.pagination .page-item {
  border-radius: 50%;
}
.pagination .page-link {
  color: var(--theme-general-color);
}
.pagination .page-link:focus {
  border: none !important;
  box-shadow: none !important;
}
.pagination .page-link fa:before {
  font-size: 11px;
}
/*===============================================================================
Custom Scroll Bar Style Start
==================================================================================*/

.dashboard-nav-area::-webkit-scrollbar,
.left-filter-fixed::-webkit-scrollbar,
.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push::-webkit-scrollbar {
  display: none;
}
.active-chat-list::-webkit-scrollbar,
.msg-history::-webkit-scrollbar {
  width: 2px;
}
.cscrollbar::-webkit-scrollbar {
  width: 5px;
}
.cscrollbar-h::-webkit-scrollbar {
  height: 5px;
}
.rpv-core__inner-pages::-webkit-scrollbar,
.rpv-thumbnail__list::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
}
.rpv-core__inner-pages,
.rpv-thumbnail__list {
  overflow-x: hidden !important;
}
::-webkit-scrollbar-track,
.rpv-core__inner-pages::-webkit-scrollbar-track,
.rpv-thumbnail__list::-webkit-scrollbar-track {
  background: #f1f1f1;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.active-chat-list::-webkit-scrollbar-track,
.msg-history::-webkit-scrollbar-track,
.cscrollbar::-webkit-scrollbar-track,
.rpv-core__inner-pages::-webkit-scrollbar-track,
.rpv-thumbnail__list::-webkit-scrollbar-track {
  background: var(--theme-white-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* Handle */

::-webkit-scrollbar-thumb {
  background: var(--theme-dark-color);
}

.active-chat-list::-webkit-scrollbar-thumb,
.msg-history::-webkit-scrollbar-thumb,
.cscrollbar::-webkit-scrollbar-thumb,
.rpv-core__inner-pages::-webkit-scrollbar-thumb,
.rpv-thumbnail__list::-webkit-scrollbar-thumb {
  background: var(--theme-gray-color);
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover,
.rpv-core__inner-pages::-webkit-scrollbar-thumb:hover {
  background: var(--theme-primary-color);
}

/*===============================================================================
About Us Style Start
==================================================================================*/

.about-us-img-wrap {
  position: relative;
}
.about-us-img-wrap .video-wrap {
  position: absolute;
  bottom: 100px;
  width: 50%;
  height: 30%;
  overflow: hidden;
  border-radius: 10px;
}
.about-us-info-wrap blockquote {
  background-color: var(--theme-primary-opacity-color);
  padding: 20px;
  margin: 25px 0;
  border-left: 4px solid;
  border-color: var(--theme-primary-color);
  font-size: 16px;
}
.icon-text-1 {
  display: flex;
  align-items: center;
}
.icon-text-1 .icon-area {
  width: 50px;
  height: 50px;
  display: table;
  background-color: var(--theme-primary-opacity-color);
  text-align: center;
  color: var(--theme-primary-color);
  border-radius: 50%;
  margin-right: 15px;
  line-height: 37px;
  position: relative;
}
.icon-text-1 .icon-area .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.icon-text-1 .icon-area .ifs-20::before {
  font-size: 25px;
  line-height: 25px;
}
.list-half-width {
  display: inline-block;
  width: 100%;
}
.list-half-width > * {
  width: 50%;
  float: left;
  padding-right: 20px;
  margin: 10px 0;
}
.flat-info {
  display: flex;
  align-items: center;
}
.flat-info img {
  width: 20px !important;
  margin-left: 5px;
}
.flat-info li span:first-child {
  display: flex;
  align-items: center;
  justify-content: left;
}
.flat-info > * {
  padding: 0 20px;
  border-right: 1px solid var(--theme-general-color);
}
.flat-info > *:first-child {
  padding-left: 0;
}
.flat-info > *:last-child {
  padding-right: 0;
  border-right: 0;
}
/*===============================================================================
Apartment Sketch Style Start
==================================================================================*/

.apartments-plan-info {
  padding: 50px;
}
.apartments-info-list > ul li:not(:first-child) {
  margin-top: 20px;
}
.apartments-info-list > ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.apartments-info-list > ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px dashed;
  border-color: var(--theme-white-color);
  z-index: 1;
}
.apartments-info-list > ul li span,
.apartments-info-list > ul li label {
  background-color: var(--theme-primary-color);
  z-index: 9;
}
.apartments-info-list > ul li label {
  padding-right: 10px;
}
.apartments-info-list > ul li span {
  padding-left: 10px;
}
/*===============================================================================
Photo Gallery Style Start
==================================================================================*/

.photo-overlay {
  position: relative;
  overflow: hidden;
}
.photo-overlay::before {
  content: "";
  position: absolute;
  background: rgba(var(--theme-primary-color-rgba), 0.9);
  height: 100%;
  left: 20%;
  right: 20%;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.photo-overlay:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
}
.photo-overlay a.quick-view,
.photo-overlay a.photo-view {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  display: block;
  z-index: 10;
  text-align: center;
  opacity: 0;
}
.photo-overlay:hover a.quick-view {
  opacity: 1;
  margin-left: 24px;
}
.photo-overlay:hover a.photo-view {
  opacity: 1;
  margin-left: -24px;
}
/*===============================================================================
Service Area Style Start
==================================================================================*/

.thumb-angle-left .box-70px {
  position: relative;
  text-align: center;
}
.thumb-angle-left .box-70px::before {
  position: absolute;
  content: "";
  border-width: 10px;
  bottom: -10px;
  left: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--theme-primary-color);
}
.service-style-1,
.hover-style-1 {
  position: relative;
}
.hover-style-1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--theme-primary-color);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.hover-style-1:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.service-style-1 .icon-wrap {
  width: 100px;
  height: 100px;
  background-color: rgba(var(--theme-primary-color-rgba), 0.3);
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto;
}
.service-style-1 .icon-wrap .icon {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.service-style-1:hover .icon-wrap {
  background-color: var(--theme-white-color);
}
.service-style-1:hover .title a {
  color: var(--theme-white-color) !important;
}
.service-style-1 .btn-icon {
  position: absolute;
  bottom: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--theme-white-color);
  left: 50%;
  transform: translateX(-50%);
  color: var(--theme-dark-color);
  z-index: 9;
}
.service-style-1 .btn-icon .icon {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.service-style-1:hover .btn-icon {
  color: var(--theme-primary-color);
}
/*===============================================================================
Agent Block Style Start
==================================================================================*/
.agent-thumb-copious {
  border-radius: 6px;
}
.member-score {
  padding: 0 8px;
  position: relative;
  height: max-content;
  cursor: default;
}
.member-score::before {
  position: absolute;
  content: "";
  border: 5px solid;
  border-color: transparent var(--theme-primary-color) transparent transparent;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.prop-details li {
  line-height: 30px;
  font-size: 15px;
}
.prop-details b {
  font-weight: 500;
  color: var(--theme-dark-color);
}
.agent-style-1 .entry-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
}
.agent-style-1 .agent-level {
  position: absolute;
  z-index: 10;
  transform: rotate(-90deg);
  top: 40px;
  left: -42px;
  width: 110px;
  text-align: center;
  background-color: var(--theme-primary-color);
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--theme-white-color);
}
.agent-style-1 .agent-contact {
  font-family: var(--theme-highlight-font);
}
.agent-style-1 .agent-contact li span {
  font-weight: 700;
  color: var(--theme-dark-color);
  margin-right: 3px;
}
.agent-style-1 .agent-level span {
  display: inline-block;
}
.agent-style-1 .image-wrap {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.agent-style-1 .about-avata {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}
.agent-style-1 .about-avata .name {
  font-weight: 500;
}
.agent-style-1 .about-avata .designation {
  font-size: 13px;
}
.agent-style-1 .entry-content-wrapper {
  padding: 16px;
}
.agent-style-1 .entry-content-wrapper .entry-footer {
  margin-top: 16px;
}
.agent-style-1 .customer-review {
  text-align: right;
}
.agent-style-1 .customer-review .review-number {
  display: inline-block;
  font-size: 12px;
  color: var(--text-light-color);
  font-weight: 500;
}
.agent-style-1 .customer-review .member-score {
  margin-left: auto;
}
.agent-style-1 .social-media {
  margin-top: 10px;
  gap: 10px;
}
.agent-style-1 .social-media a {
  border: 1px solid;
  border-color: var(--theme-gray-color);
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  display: block;
  border-radius: 5px;
  color: var(--text-light-color);
}
.agent-style-1 .social-media a:hover {
  background-color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
  color: var(--theme-white-color);
}
.agent-style-1.list-view .entry-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.agent-style-1.list-view .entry-wrapper .entry-thumbnail-wrapper {
  flex: 0 0 auto;
  width: 40%;
}
.agent-style-1.list-view .entry-wrapper .entry-content-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 60%;
}
.agent-style-1.list-view .entry-wrapper .agent-name {
  font-size: 21px;
}
.agent-style-1.list-view .entry-wrapper .entry-footer {
  margin-top: auto;
}
.agent-style-2 .thumb-wrapper {
  padding: 50px;
  position: relative;
}
.agent-style-2 .thumb-wrapper .thumbnail-img {
  width: 100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border: 3px solid #eee;
  border-radius: 100%;
  padding: 5px;
  margin-bottom: 15px;
}
.agent-style-2 .thumb-wrapper .thumbnail-img img {
  border-radius: 100%;
}
.agent-style-2 .on-listed {
  line-height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
}

/*===============================================================================
Agent Page Single Style Start
==================================================================================*/
.agent-style-1.agent-details .entry-content-wrapper {
  padding: 30px;
}

.agent-style-1.agent-details .customer-review,
.agent-style-1.agent-details .agent-rating {
  gap: 5px;
  font-size: 14px;
}

.agent-rating .rating-star {
  width: 61px;
  position: relative;
}

.agent-rating .rating-star::before {
  content: "\f005\f005\f005\f005\f005";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light-color);
  left: 0;
}

.agent-rating .rating-star span {
  display: flex;
  height: 28px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.agent-rating .rating-star span::before {
  content: "\f005\f005\f005\f005\f005";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  left: 0;
  color: orange;
  font-weight: 600;
}

.agent-properties .mix-tab ul li {
  background-color: var(--theme-gray-color);
  padding: 12px 30px;
  font-family: var(--theme-highlight-font);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

.agent-properties .mix-tab ul li.mixitup-control-active {
  background-color: var(--theme-white-color);
}

.mixitup-control {
  transition: all 0.3s linear;
}

/*===============================================================================
Property Block Style Start
==================================================================================*/
.property-grid-1 .listing-ctg,
.property-list-2 .listing-ctg {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-block !important;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 40px;
  height: auto !important;
  z-index: 10;
}
.property-grid-1 .listing-ctg:hover,
.property-list-2 .listing-ctg:hover {
  text-decoration: underline;
}
.property-grid-1 .listing-ctg i {
  margin-right: 3px;
  color: var(--theme-primary-color);
}
.property-grid-1 .listing-price,
.property-grid-2 .listing-price,
.property-grid-4 .listing-price {
  font-weight: 700;
  color: var(--theme-primary-color);
  display: flex;
  font-family: var(--theme-highlight-font);
  font-size: 21px;
  align-items: center;
  gap: 5px;
}
.property-grid-1 .listing-location,
.property-grid-2 .listing-location,
.property-grid-3 .listing-location,
.property-grid-4 .listing-location,
.property-grid-6 .listing-location,
.property-grid-7 .listing-location {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-grid-1 .listing-location i,
.property-grid-2 .listing-location i,
.property-grid-3 .listing-location i,
.property-grid-6 .listing-location i,
.property-grid-7 .listing-location i {
  font-size: 13px;
  color: var(--theme-primary-color);
}
.property-grid-1 .listing-title,
.property-grid-1 .listing-title a {
  font-weight: 500;
  color: var(--theme-dark-color);
  font-size: 18px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-grid-1 .listing-title:hover,
.property-grid-1 .listing-title a:hover {
  color: var(--theme-primary-color);
}
.property-grid-2 .listing-title,
.property-grid-2 .listing-title a {
  font-weight: 400;
  color: var(--theme-dark-color);
  margin-bottom: 0;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-grid-2 .listing-title:hover,
.property-grid-2 .listing-title a:hover {
  color: var(--theme-primary-color);
}
.property-grid-2 ul.quantity {
  margin-bottom: 15px;
}
.property-grid-1 .listing-price small,
.property-grid-2 .listing-price small,
.property-grid-4 .listing-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-general-color);
}
.property-grid-1 .listing-price del,
.property-grid-2 .listing-price del,
.property-grid-4 .listing-price del {
  font-size: 17px;
  font-weight: 400;
  color: var(--theme-general-color);
  padding-left: 3px;
}
.property-grid-1 .quantity li span,
.property-grid-2 .quantity li span,
.property-grid-3 .quantity li span,
.property-grid-5 .quantity li span,
.property-grid-6 .quantity li span,
.property-grid-7 .quantity li span,
.property-list-1 .quantity li span,
.property-list-2 .quantity li span {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
  margin-right: 8px;
}
.property-grid-3 .listing-price del,
.property-grid-7 .listing-price del {
  font-size: 17px;
  font-weight: 400;
  color: var(--theme-white-color);
  padding-left: 3px;
}
.property-grid-3 .listing-price small,
.property-grid-7 .listing-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-white-color);
}
.property-grid-3 .listing-price {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: flex;
  line-height: 40px;
  margin: 0;
  padding: 0 10px;
  font-weight: 700;
  color: var(--theme-white-color);
  font-family: var(--theme-highlight-font);
  font-size: 18px;
  gap: 5px;
}
.property-grid-3 .btn.btn-primary {
  line-height: 40px;
  font-size: 13px;
}
.property-grid-3 .listing-title,
.property-grid-3 .listing-title a {
  color: var(--theme-dark-color);
  font-size: 18px;
  margin-bottom: 0;
}
.property-grid-3 .listing-title:hover,
.property-grid-3 .listing-title a:hover {
  color: var(--theme-primary-color);
}
.property-grid-7 .listing-price {
  font-weight: 700;
  color: var(--theme-primary-color);
  font-family: var(--theme-highlight-font);
  font-size: 21px;
}
.property-grid-7 .listing-title,
.property-grid-7 .listing-title a {
  font-weight: 400;
  color: var(--theme-white-color);
}
.property-grid-7 .listing-title:hover,
.property-grid-7 .listing-title a:hover {
  color: var(--theme-primary-color);
}
.property-grid-7 .listing-location {
  color: var(--theme-white-color);
  font-size: 14px;
}
.property-grid-7.property-block {
  height: auto;
}
.property-grid-7 [class*="overlay-"]::before {
  z-index: 1;
  background: rgb(46, 55, 70);
  background: linear-gradient(
    0deg,
    rgba(46, 55, 70, 0.8) 0%,
    rgba(46, 55, 70, 0.5) 50%,
    rgba(46, 55, 70, 0) 100%
  );
}
.property-grid-7 .property_text {
  position: absolute;
  z-index: 10;
  left: 24px;
  bottom: 24px;
}
.property-grid-7 .quantity li {
  color: var(--theme-white-color);
}
.property-grid-9 {
  position: relative;
}
.property-grid-9 [class*="overlay-"]::before {
  z-index: 1;
  background: rgb(46, 55, 70);
  background: linear-gradient(
    0deg,
    rgba(46, 55, 70, 0.8) 0%,
    rgba(46, 55, 70, 0.5) 50%,
    rgba(46, 55, 70, 0) 100%
  );
}
.property-grid-9 .entry-content-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 10;
}
.property-grid-9 .listing-price {
  font-weight: 700;
  color: var(--theme-white-color);
  display: flex;
  font-family: var(--theme-highlight-font);
  font-size: 21px;
  align-items: baseline;
  gap: 5px;
}
.property-grid-9 .listing-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-white-color);
}
.property-grid-9 .listing-location {
  margin-bottom: 0;
  display: inline-block;
  color: var(--theme-white-color);
  width: 100%;
  font-size: 14px;
}
.property-grid-9 .listing-location i {
  font-size: 13px;
  color: var(--theme-primary-color);
}
.property-grid-9 .entry-footer a {
  font-size: 13px;
}
.listing-ctg i {
  margin-right: 3px;
}
.property-block {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.property-block .post-meta {
  width: 100%;
}
.property-block .cata,
.property-block .catart {
  right: 15px;
  top: 15px;
  z-index: 9;
  display: flex;
  opacity: 0.9;
}
.property-block .catart {
  right: 15px !important;
}
.property-block .cata span,
.property-block .catart span {
  padding: 0 10px;
  font-size: 12px;
  margin-right: 3px;
  height: 25px;
  line-height: 25px;
}
.img-border-white {
  border: solid 1px #fff;
}
.quantity {
  gap: 15px;
}
.quantity li:last-child {
  padding: 0;
}
.agent-meta {
  display: flex;
}
.agent-meta img,
.post-meta .agent img {
  width: 40px;
  height: 40px;
}
.quick-meta {
  right: 15px;
  bottom: 15px;
  z-index: 10;
}
.quick-meta li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: var(--theme-dark-opacity-color);
  display: inline-block;
  margin: 2px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
}
.quick-meta li a {
  display: block;
  color: var(--theme-white-color);
}
.lsd_list li {
  border-radius: 5px;
  background-color: rgb(247, 247, 247);
  height: 35px;
  padding: 4px 20px;
  text-align: center;
}
.lsd_list li a {
  color: #484848;
  font-size: 14px;
  line-height: 30px;
  display: block;
}
.property-grid-4 .location {
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 9;
  color: var(--theme-white-color);
}
.property-grid-4 .thumbnail-img .quick-meta li {
  width: auto;
  height: auto;
  background-color: rgba(var(--theme-white-color-rgba), 0.3);
}
.property-grid-4 .thumbnail-img .quick-meta li a {
  display: flex;
  align-items: center;
  padding: 0px 10px;
  line-height: 30px;
  color: var(--theme-white-color);
}
.property-grid-4 .thumbnail-img .quick-meta li a i {
  margin-right: 5px;
}
.property-grid-4 .flat-info {
  margin-bottom: 15px;
}
.property-grid-4 .agent {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
}
.property-grid-4 .btn-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--theme-primary-color);
  display: inline;
}
.property-grid-4 .view-fiender {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  gap: 5px;
}
.property-grid-4 .view-fiender li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background-color: var(--theme-dark-color);
  text-align: center;
}
.property-grid-4 .view-fiender li a {
  color: var(--theme-primary-color);
  display: block;
}
.property-grid-4 .agent img {
  width: 40px;
  height: 40px;
}
.property-grid-4 .quick-meta li a {
  color: var(--theme-general-color);
  background-color: var(--theme-light-color);
}
.property-grid-4 .quick-meta li a:hover {
  color: var(--theme-white-color);
  background-color: var(--theme-primary-color);
}
.property-grid-5 .post-meta ul {
  display: flex;
  align-items: center;
}
.property-grid-5 .post-meta ul li:not(:last-child) {
  margin-right: 30px;
}
.property-grid-5 .post-meta a:hover span {
  text-decoration: none;
}
.property-grid-5 .entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.property-grid-5 .listing-price {
  padding: 6px 15px;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--theme-light-color);
  color: var(--theme-primary-color);
  display: inline-flex;
  border-radius: 20px;
  font-family: var(--theme-highlight-font);
  gap: 5px;
}
.property-grid-5 .listing-price small {
  font-size: 14px;
  padding-left: 5px;
  font-weight: 400;
}
.property-grid-5 .listing-ctg {
  position: absolute;
  left: 15px;
  top: 15px;
  display: inline-block;
  font-size: 12px;
  line-height: 25px;
  padding: 0 10px;
  z-index: 100;
  background-color: var(--theme-primary-color);
}
.property-grid-5 .listing-title {
  margin-bottom: 0;
}
.property-grid-5 .agent {
  padding-top: 15px;
}
.property-grid-5 .quantity {
  margin-top: 15px;
}
.property-block .owl-carousel.nav-between-in .owl-nav button {
  visibility: hidden;
  opacity: 0;
}
.property-block .owl-carousel {
  height: 100%;
}
.property-block .owl-carousel div {
  height: 100%;
}
.property-block
  .thumbnail-img:hover
  .owl-carousel.nav-between-in
  .owl-nav
  button {
  visibility: visible;
  opacity: 1;
}
.property-grid-6 .listing-ctg {
  position: absolute;
  left: 15px;
  top: 15px;
  display: inline-block;
  font-size: 12px;
  line-height: 25px;
  padding: 0 10px;
  z-index: 100;
  background-color: var(--theme-secondary-color);
}
.property-grid-6 .listing-ctg i {
  display: none;
}
.property-grid-6 .quick-meta li {
  background-color: var(--theme-white-color);
}
.property-grid-6 .quick-meta li a {
  display: block;
  color: #fff;
  color: var(--theme-secondary-color);
  font-weight: 500;
}
.property-grid-6 .listing-title a {
  color: var(--theme-secondary-color);
}
.property-grid-6 .listing-title a:hover {
  color: var(--theme-secondary-color);
  text-decoration: underline;
}
.property-grid-6 .listing-price {
  padding: 3px 15px;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--theme-primary-color);
  color: var(--theme-secondary-color);
  display: inline-flex;
  border-radius: 20px;
  font-family: var(--theme-highlight-font);
}
.property-grid-6 .listing-price small {
  font-size: 14px;
  padding-left: 5px;
  font-weight: 400;
}
.property-grid-6 .agent {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
}
.property-grid-6 .quantity {
  padding-top: 15px;
  justify-content: space-between;
}
.property-grid-6 .quantity li span {
  color: var(--theme-secondary-color);
}
.property-list-1 .thumbnail-img a,
.property-list-2 .thumbnail-img a {
  display: block;
  height: 100%;
}
.property-list-1 .thumbnail-img img,
.property-list-2 .thumbnail-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.property-list-1 .listing-title,
.property-list-1 .listing-title a,
.property-list-2 .listing-title,
.property-list-2 .listing-title a {
  font-weight: 700;
  color: var(--theme-dark-color);
  font-size: 18px;
  margin-bottom: 0;
}
.property-list-1 .listing-title:hover,
.property-list-1 .listing-title a:hover,
.property-list-2 .listing-title:hover,
.property-list-2 .listing-title a:hover {
  color: var(--theme-primary-color);
}
.property-list-1 .listing-price {
  padding: 6px 0;
  font-size: 21px;
  font-weight: 700;
  color: var(--theme-primary-color);
  display: inline-flex;
  border-radius: 3px;
  font-family: var(--theme-highlight-font);
  gap: 5px;
  margin-top: 10px;
}
.property-list-1 .agent ul li span {
  font-size: 13px;
  color: var(--text-light-color);
}
.property-list-1 .listing-location,
.property-list-2 .listing-location {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
  font-size: 14px;
}
.property-list-1 .listing-location i,
.property-list-2 .listing-location i {
  font-size: 13px;
  color: var(--theme-primary-color);
}
.property-list-1 ul.quantity,
.property-list-2 ul.quantity {
  margin-bottom: 10px;
}
.property-list-1 .listing-price small,
.property-list-2 .listing-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-general-color);
}
.property-list-2 .listing-price {
  font-size: 21px;
  font-weight: 700;
  color: var(--theme-primary-color);
  display: inline-flex;
  border-radius: 3px;
  margin-bottom: 5px;
  font-family: var(--theme-highlight-font);
  gap: 5px;
}
.property-list-2 .thumbnail-img {
  flex-shrink: 0;
  overflow: hidden;
}
.property-list-2 .btn-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--theme-primary-color);
  display: inline;
}
.product-offer-item {
  font-size: 15px;
}
.product-offer-item strong {
  font-weight: 500;
  color: var(--theme-dark-color);
}
div.summary .product-offer-item:before {
  color: var(--theme-primary-color);
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
}
div.summary .product-offer-item:before {
  content: "\f02b";
}
div.summary .product-offer-item::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: inherit;
  vertical-align: middle;
}
.product-status {
  line-height: 25px;
  height: 25px;
}
.map-view-list,
.map-view-grid {
  padding-right: 12px !important;
}
/*===============================================================================
Blog Thumbnail Style Start
==================================================================================*/

.thumb-blog-overlay .post-meta a span {
  font-size: 13px;
}
/*===============================================================================
Blog Single Style Start
==================================================================================*/

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: start;
  flex-wrap: wrap;
}
.media-body,
.flex-1 {
  -ms-flex: 1;
  flex: 1;
}
/*===============================================================================
Sidebar Widgets Style Start
==================================================================================*/

.widget-box-model .widget,
.agent-search,
.woo-filter-bar,
.widget_recent_property,
.widget_send_message,
.property_carousel_widget,
.advance_search_widget {
  background-color: #fff;
  border: 1px solid #dee2e6;
  margin-bottom: 30px;
}
.widget {
  padding: 30px;
}
.widget .owl-carousel .owl-dots {
  margin-top: 0;
}
.widget_recent_property > ul > li {
  display: flex;
  margin-bottom: 20px;
}
.widget_recent_property li img {
  width: 60px;
  max-width: 60px;
  height: 60px;
  margin-right: 12px;
  border-radius: 3px;
}
.widget_recent_property li .listing-title {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  max-width: 100%;
  display: grid;
}
.widget_recent_property .listing-price {
  font-weight: 700;
  color: var(--theme-primary-color);
  display: inline-block;
  font-family: var(--theme-highlight-font);
  font-size: 18px;
  margin-bottom: 5px;
}
.widget_recent_property .listing-price del {
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-general-color);
  padding-left: 3px;
}
.widget_recent_property .listing-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-general-color);
  padding-left: 3px;
}
.widget_recent_property .quantity {
  gap: 10px;
}
.widget_recent_property .quantity li {
  padding-right: 5px;
  font-size: 13px;
}
.widget_recent_property .quantity li span {
  margin-right: 5px;
  display: inline-block;
}
.widget_recent_property .listing-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.view-category button {
  border-radius: 7px;
}
.widget_search .screen-reader-text {
  display: none;
}
.widget_search .search-field {
  border: 1px solid;
  border-color: var(--theme-gray-color);
  font-size: 13px !important;
  color: #484848;
  height: 50px;
  padding: 13px 15px;
  border-radius: 3px;
  width: 100%;
}
.widget_search label {
  width: 100%;
}
.widget_search input[type="submit"] {
  display: none;
}
.widget_sidebarnav ul li,
.widget_categories ul li {
  padding: 12px 0;
}
.widget_sidebarnav ul li a {
  font-size: 15px;
  color: var(--theme-general-color);
}
.widget_sidebarnav ul li a:hover {
  color: var(--theme-primary-color);
}
.widget_recent_entries ul li a {
  font-weight: 400;
}
/*===============================================================================
Fact Counter Style Start
==================================================================================*/

.bar-progress {
  font-weight: 400;
}
/*===============================================================================
Mixitup Style Start
==================================================================================*/

.mixitup-control-active {
  color: var(--theme-primary-color);
}
/*===============================================================================
Accordion Style Start
==================================================================================*/

.ac-card {
  padding: 10px 0;
}
.ac-collapse {
  margin-top: 20px;
}
.bb-accordion .ac-toggle i {
  background-color: var(--theme-secondary-color);
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50rem;
  font-size: 12px;
  text-align: center;
  line-height: 33px;
  margin-right: 10px;
  color: var(--theme-white-color);
  float: left;
}
[class*="accordion-plus-"] .ac-toggle {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border-bottom: solid 1px var(--theme-gray-color);
  overflow: hidden;
  border-radius: 3px;
}
[class*="accordion-plus-"] .ac-toggle:hover,
[class*="accordion-plus-"] .ac-toggle.active {
  background-color: var(--theme-li-hover-bg-color);
}
.accordion-plus-right .ac-toggle {
  padding-right: 30px;
  line-height: 30px;
  display: block;
}
.accordion-plus-left .ac-toggle {
  padding-left: 30px;
}
[class*="accordion-plus-"] .ac -toggle::before,
[class*="accordion-plus-"] .ac-toggle::after {
  content: "\e606";
  font-family: "simple-line-icons";
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-primary-color);
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  /* background-color: var(--theme-dark-color);  */
  top: 20%;
  transform: translateY(-50%);
}
.accordion-plus-left .ac-toggle.active::before {
  content: "\e606";
}
.accordion-plus-left .ac-toggle::before,
.accordion-plus-left .ac-toggle::after {
  left: 0;
}
[class*="accordion-plus-"] .ac-toggle:not(.active):after {
  transform: rotate(0deg);
}
[class*="accordion-plus-"] .ac-toggle.active:after {
  top: 40%;
  transform: rotate(90deg);
}

/*===============================================================================
Owl Carousel Style Start
==================================================================================*/

.owl-outer-20 .owl-stage-outer {
  padding: 20px;
  margin: -20px;
}
.owl-carousel .owl-nav button span {
  display: block;
  margin-top: -3px;
}
.owl-carousel.nav-top-right .owl-nav {
  position: absolute;
  right: 0;
  top: -70px;
}
.owl-carousel.nav-top-right .owl-nav button {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  border-radius: 5px;
  background-color: var(--theme-light-color);
  color: var(--theme-dark-color);
  margin-left: 5px;
}
.owl-carousel.nav-between-in .owl-nav button.owl-prev {
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.owl-nav .disabled {
  background-color: var(--theme-secondary-opacity-color) !important;
  opacity: 0.8 !important;
  cursor: default !important;
}
.owl-carousel.nav-between-in .owl-nav button.owl-next {
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.owl-carousel.nav-between-in .owl-nav button {
  width: 26px;
  height: 26px;
  font-size: 20px;
  line-height: 26px;
  border-radius: 50px;
  background-color: var(--theme-dark-opacity-color);
  opacity: 0.8 !important;
  color: var(--theme-white-color);
  margin-left: 5px;
}
.owl-carousel.nav-top-right .owl-nav button:hover {
  background-color: var(--theme-primary-color);
  color: var(--theme-dark-color);
}
.owl-carousel button.owl-dot.active {
  width: 15px;
  height: 15px;
  background-color: var(--theme-primary-color) !important;
  border-radius: 50%;
  border: 5px solid #e0e2e3;
}
.owl-carousel button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #a5b4a2;
  border: 5px solid #edeaea;
}
.testimonial-simple blockquote {
  font-size: 16px;
  color: #fff;
  line-height: 34px;
  padding: 30px 0;
}
/*===============================================================================
Page Banner Style Start
==================================================================================*/
.banner-title {
  font-size: 30px;
  font-weight: 500;
}
.banner-tagline {
  display: inline-block;
  margin-bottom: 10px;
}
/*===============================================================================
Search Banner Style Start
==================================================================================*/

.banner-search {
  width: 100%;
  padding-top: 250px;
  padding-bottom: 270px;
}
/*===============================================================================
Map Element Style Start
==================================================================================*/

.homepage-map #map {
  width: 100%;
  height: 750px;
}
.gm-style img {
  width: 100%;
}
.infobox-wrapper {
  background: #fff;
  width: 300px !important;
  margin-bottom: 85px;
  margin-left: -48px;
}
.infobox-wrapper > img {
  position: absolute !important;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 22px;
  height: 22px;
}
.infobox-wrapper .img_area {
  position: relative;
}
.infobox-wrapper .sale_amount {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  font-size: 16px;
  color: #fff;
  font-family: var(--theme-highlight-font);
}
.infobox-wrapper:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 42.5%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}
#map-banner {
  position: relative;
  width: 100%;
}
#map-banner.visible {
  overflow: visible;
}
.homepage-map #map {
  width: 100%;
  height: 710px;
}
.marker-style {
  width: 20px;
  height: 20px;
  margin-left: -10px !important;
  margin-top: -50px !important;
}
.cluster > div {
  font-size: 12px !important;
  font-family: var(--theme-general-font) !important;
  line-height: 44px !important;
}
#find-location {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -moz-transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#find-location.open {
  -moz-transform: translate(-50%, 50px);
  -webkit-transform: translate(-50%, 50px);
  -ms-transform: translate(-50%, 50px);
  -o-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
  z-index: 9999;
}
.form-up-btn {
  font-family: var(--theme-general-font) !important;
  font-weight: 500;
  padding: 0 30px;
  line-height: 50px;
  cursor: pointer;
}
.form-up-btn span {
  padding-left: 15px;
}
#find-location.open .form-up-btn span i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*Home page 6 map*/

.search-box-map #find-location {
  width: 320px;
  bottom: 50%;
  left: 10%;
  position: absolute;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -ms-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  padding: 30px;
}
.price_range {
  padding-bottom: 30px;
}
.search-box-map .property_filter_input .price-filter,
.search-fixed-right .property_filter_input .price-filter {
  height: 50px;
  margin-right: 5px;
}
/*Home page 9 map*/

#map-banner.half-wide-map {
  display: flex;
}
.half-wide-map #map {
  width: 65%;
  float: left;
}
.search-fixed-right {
  float: right;
  width: 35%;
}
.search-fixed-right #find-location {
  position: static;
  transform: none;
}
.single_property_detail #map {
  height: 270px;
}

/*===============================================================================
Single Property Page Style Start
==================================================================================*/
.view-category button {
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--theme-general-color);
  background-color: transparent;
}
.view-category button.current {
  color: var(--theme-primary-color);
}
.woocommerce-ordering-pages {
  line-height: 40px;
}
.woo-filter-bar .bootstrap-select > .dropdown-toggle {
  border: none;
}
.woocommerce-ordering {
  display: flex;
}
.woocommerce-ordering select:not(:last-child) {
  margin-right: 10px;
}
.woocommerce-ordering select {
  background-color: var(--theme-light-color);
  font-size: 14px;
  border: 0;
  padding-right: 45px;
  padding-left: 20px;
  border-radius: 23px;
  line-height: 45px;
}

.property-overview .listing-price {
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  color: var(--theme-primary-color);
  display: flex;
  flex-direction: column;
  font-family: var(--theme-highlight-font);
}
.property-overview .listing-price small {
  font-size: 14px;
  color: var(--theme-general-color);
  font-weight: 400;
}
.property-overview .listing-title {
  margin-bottom: 0;
}

/*===============================================================================
Compare Page Style Start
==================================================================================*/

.clip-item .fa-times {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  opacity: 0;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  line-height: 16px;
  font-size: 10px;
}
.clip-item:hover .fa-times {
  opacity: 1;
}
.compare-list-properties {
  overflow-x: auto;
}
.compare-list-properties tr:nth-child(2n) {
  background: #f5f5f5;
}
.compare-list-properties td:first-child {
  text-align: left;
  width: 200px;
  padding-left: 25px;
}
.compare-list-properties td {
  padding: 15px;
  text-align: center;
  position: relative;
}
.compare-list-properties .available::before,
.compare-list-properties .not-available::before {
  content: "\f00c";
  color: #2ab160;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
}
.compare-list-properties .not-available::before {
  content: "\f00d";
  color: #d43e3e;
}
/*===============================================================================
Deshboard Style Start
==================================================================================*/
.nav-light .navbar-nav .nav-link {
  color: var(--text-light-color);
}
.dashboard-nav .db-dropdown-menu li .nav-link {
  padding: 10px 20px;
}
.dashboard-nav .db-dropdown-menu li:last-child .nav-link {
  padding-bottom: 20px;
}
.dashboard-nav .navbar-nav .nav-link {
  font-size: 13px;
  padding: 10px 20px;
  border-left: 3px solid;
  border-color: transparent;
  position: relative;
}
.dashboard-nav .navbar-nav .nav-link:hover {
  color: #fff;
}
.dashboard-nav .navbar-nav > .nav-item > .nav-link:hover {
  border-left: 3px solid;
  border-color: var(--theme-primary-color);
  background: var(--theme-extra-color);
}
.dashboard-nav .navbar-nav .nav-item.active > .nav-link {
  color: #fff;
}
.dashboard-nav .navbar-nav > .nav-item.active > .nav-link {
  border-left: 3px solid;
  border-color: var(--theme-primary-color);
  background: var(--theme-extra-color);
}
.dashboard-nav .db-dropdown-menu > li > .nav-link {
  border-left: 3px solid;
  border-color: var(--theme-primary-color);
  background: var(--theme-extra-color);
}
.dashboard-nav .db-dropdown-menu {
  display: none;
}
.dashboard-nav .navbar-nav .db-dropdown .nav-link.dropdown-toggle:after {
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 10px;
  top: 50%;
  right: 20px;
  display: block;
  border: none;
}
.user-option img {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  margin-right: 10px;
  /* border: solid 2px var(--theme-primary-color); */
}
.ball::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  left: 15px;
  top: 35px;
  opacity: 0.3;
}
.msg-history,
.active-chat-list {
  height: 100vh;
  overflow-y: scroll;
}
.msg-history li,
.active-chat-list li {
  display: flex;
  padding: 10px 0;
  align-items: center;
}
.msg-history li {
  align-items: flex-start;
  width: 75%;
}
.msg-history li .avata {
  flex-shrink: 0;
}
.active-chat-list li .chat-time {
  font-size: 13px;
}
.active-chat-list li.new-message .chat-time,
.active-chat-list li.new-message .chat-info {
  font-weight: 600;
  color: var(--theme-dark-color);
}
.active-chat-list li {
  min-width: 100%;
  line-height: 20px;
  cursor: pointer;
}
.tv-div {
  min-height: 50vh;
  max-height: 80vh;
}
.opa9 {
  opacity: 0.9 !important;
}

/* The container to hold the element and tooltip */
.ctooltip-container {
  position: relative;
  z-index: 100;
}

/* The tooltip itself */
.ctooltip,
i .ctooltip {
  font-family: var(--theme-hiperlink-font) !important;
  visibility: hidden;
  position: absolute;
  top: 30px; /* Position it just below the container */
  /* left: 45%; */
  transform: translateX(-45%); /* Center the tooltip horizontally */
  background-color: var(--theme-secondary-color);
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 1;
  padding: 2px 15px 2px 15px;
  font-size: 12px;
  font-weight: 400;
}

i .ctooltip {
  top: 25px;
  padding: 4px 15px 4px 15px;
  min-height: 22px;
}

/* Show the tooltip when hovering over the container */
.ctooltip-container:hover .ctooltip {
  visibility: visible;
  opacity: 1;
}

/* Optional: Add a small arrow pointing to the container */
.ctooltip::after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 45%;
  display: block;
  background: inherit;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  transform-origin: center;
  border-color: inherit;
  clip: rect(0, 9px, 9px, 0);
}
.tooltip > .tooltip-inner {
  background-color: rgba(0, 0, 0, 0.8) !important;
  font-size: 13px !important;
}
.tooltip .tooltip-arrow,
.tooltip-arrow::before {
  border-bottom-color: rgba(0, 0, 0, 0.8) !important;
}
.cur-pointer {
  cursor: pointer;
}
.cur-default {
  cursor: default !important;
}
:focus-visible {
  outline: none !important;
}
.hrl {
  height: 0 !important;
  border-top: solid 1px;
}
.msg-history li .avata,
.active-chat-list li .avata {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
.active-chat-list li img {
  width: 50px;
  height: 50px;
}
.active-chat-list li .user-status {
  position: absolute;
  top: 32px;
  left: 35px;
}
.use-on-chat .chat-body {
  width: 100%;
}

.active-chat-list li .user-status i {
  border: 2px solid #fff;
  border-radius: 100%;
  font-size: 11px;
}
.active-chat-list li .un-read {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--theme-primary-color);
  text-align: center;
  line-height: 19px;
  margin-left: auto;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
}
.chatbox-head img {
  width: 70px;
  height: 70px;
}
.msg-history li.msg-replayer {
  flex-direction: row-reverse;
  margin-left: auto;
}
.msg-history li.msg-replayer .avata {
  margin-right: 0;
  margin-left: 10px;
}
.msg-history li.msg-replayer .chat-info {
  text-align: right;
}
.msg-history li .avata img {
  width: 40px;
  height: 40px;
}
.chatbox-head .user-status {
  position: absolute;
  top: 50px;
  left: 50px;
}
.chatbox-head .user-status i {
  border: 2px solid #fff;
  border-radius: 100%;
  font-size: 12px;
}
.chat-write-box button {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.chat-write-box input {
  padding-right: 105px !important;
}
.chat-write-box textarea {
  resize: none;
  padding-right: 115px;
}
.items-list tr {
  border-bottom: 10px solid #ececec;
  background-color: #fff;
}
.items-list.bg-transparent tr {
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}
.items-list.bg-transparent tr .bo-b-0 {
  border-bottom: none !important;
}
.items-list tr td,
.items-list tr th {
  padding: 20px;
  font-weight: 400;
}
.items-list td img {
  max-width: 120px;
  height: auto;
  width: 100%;
  float: left;
  margin-right: 15px;
  max-height: 93px;
  object-fit: contain;
}
.media-upload li.col {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
}
.media-upload li img {
  width: 100px;
  max-height: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.media-upload a {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  display: block;
  background: var(--theme-danger-color);
  padding: 0px 6px 1px 6px;
  font-size: 11px;
  border-radius: 3px;
}
.fileupload_label {
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 30px 0;
  text-align: center;
  background: var(--theme-light-color);
  width: 300px;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fileupload_label:hover {
  background: rgba(144, 201, 35, 0.05);
  border-color: rgba(144, 201, 35, 0.7);
}
.wrap-custom-file {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  text-align: center;
}
.wrap-custom-file input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}
.wrap-custom-file label {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--theme-light-color);
  background-size: cover;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.wrap-custom-file label span {
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  bottom: 20px;
  color: #484848;
  font-size: 14px;
  line-height: 2.2;
  height: 40px;
  line-height: 41px;
  left: 20px;
  position: absolute;
  width: 120px;
}
.compare-chart-classic .table tr th {
  background-color: var(--theme-light-color);
}
.compare-chart-classic .table tr th,
.compare-chart-classic .table tr td {
  border-color: var(--theme-gray-color);
}
.dashboard-nav-area {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.notice-warning button {
  height: 20px;
  font-size: 14px;
}
.notice-warning {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*===============================================================================
Footer Style Start
==================================================================================*/

.media-footer-dark .widget-title,
.media-footer-dark .footer-widget a {
  color: var(--theme-white-color);
}
.media-footer-dark .footer-widget a:hover {
  color: var(--theme-primary-color);
}
.copyright-border .container {
  border-top: 1px solid #eeeeee;
  position: relative;
}
/*===============================================================================
Social Media Style Start
==================================================================================*/
.social-box-rounded li {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  text-align: center;
  line-height: 36px;
}
.social-box-rounded li a {
  color: var(--theme-secondary-color);
  font-size: 15px;
  display: block;
}
.social-box-gray li {
  background-color: var(--theme-gray-color);
}
.social-media {
  display: flex;
  gap: 5px;
}
.social-media a {
  font-size: 12px;
  color: var(--theme-general-color);
}
.br-r-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.br-l-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.br-100 {
  border-radius: 100%;
}
.w-500px {
  width: 500px !important;
}
.w-450px {
  width: 450px !important;
}
.w-400px {
  width: 400px !important;
}
.w-300px {
  width: 300px !important;
}
.w-350px {
  width: 350px !important;
}
.min-w-30px {
  min-width: 30px !important;
}
.w-16px {
  width: 16px !important;
}
.w-30px {
  width: 30px !important;
}
.w-34px {
  width: 34px !important;
}
.w-21px {
  width: 21px !important;
}
.w-24px {
  width: 24px !important;
}
.w-40px {
  width: 40px !important;
}
.w-50px {
  width: 50px !important;
}
.min-w-60px {
  min-width: 60px !important;
}
.w-60px {
  width: 60px !important;
}
.w-70px {
  width: 70px !important;
}
.w-80px {
  width: 80px !important;
}
.w-90px {
  width: 90px !important;
}
.w-100px {
  width: 100px !important;
}
.w-120px {
  width: 120px !important;
}
.w-125px {
  width: 125px !important;
}
.w-130px {
  width: 130px !important;
}
.w-140px {
  width: 140px !important;
}
.w-170px {
  width: 170px !important;
}
.w-180px {
  width: 180px !important;
}
.w-150px {
  width: 150px !important;
}
.w-200px {
  width: 200px !important;
}
.w-220px {
  width: 220px !important;
}
.min-w-250px {
  min-width: 250px !important;
}
.max-w-400px {
  max-width: 500px !important;
}
.max-w-500px {
  max-width: 500px !important;
}
.max-w-600px {
  max-width: 650px !important;
}
.max-w-650px {
  max-width: 650px !important;
}
.max-w-800px {
  max-width: 800px !important;
}
.w-250px {
  width: 250px !important;
}
.w-800px {
  width: 800px !important;
}
.h-16px {
  height: 16px !important;
}
.h-30px {
  height: 30px !important;
}
.h-34px {
  height: 34px !important;
}
.h-40px {
  height: 40px !important;
}
.h-50px {
  height: 50px !important;
}
.h-60px {
  height: 60px !important;
}
.h-80px {
  height: 80px !important;
}
.h-100 {
  height: 100% !important;
}
.z-10 {
  z-index: 10;
}
.d-inlinegrid {
  display: inline-grid !important;
}
.tbl-grid thead th {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.tbl-grid tbody tr td h5 {
  color: var(--theme-primary-color) !important;
  font-size: 14px;
  font-weight: 500;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.tbl-grid tbody tr > * {
  font-weight: 400;
  font-size: 14px;
}
.tbl-grid tbody tr td h5,
.tbl-grid tbody tr td div,
.tbl-grid tbody tr td.d-table span {
  padding-top: 6px;
  padding-bottom: 6px;
}
.tbl-grid tbody tr td div .py-0 div {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.tbl-grid tbody tr td,
.tbl-grid tbody tr td div > * {
  line-height: 20px;
  word-break: break-all;
}
.tbl-grid th:last-child,
.tbl-grid td:last-child {
  text-align: center;
}
.tbl-grid tbody i {
  color: var(--theme-primary-color);
}
.tbl-grid.row-alt-bg > tbody tr:nth-child(even) {
  background-color: var(--theme-li-hover-bg-color) !important;
}
.tbl-grid tr.td-valign-top td {
  vertical-align: top !important;
}
.tbl-grid.td-p10 tr td {
  padding: 10px !important;
}
.grid-search .div-search > div {
  margin-top: 0.5rem !important;
}
.grid-search .err {
  font-size: 13px !important;
  margin: 10px 0 0 0;
  color: var(--theme-validation-err) !important;
}
.grid-search .form-control,
.grid-search .form-select {
  line-height: 34px !important;
  height: 34px;
  padding: 0.375rem 0.8rem;
}
.grid-search label,
.grid-search .form-control,
.quick-search .form-control,
.grid-search .form-select,
.quick-search .form-select,
.grid-search .react_select_ctrl,
.quick-search .react_select_ctrl,
.quick-search .react_select_ctrl.ddlborder,
.grid-search .form-control::placeholder {
  font-size: 13px !important;
  font-weight: normal !important;
}
.grid-search label {
  font-size: 14px !important;
}
.grid-action > * {
  margin-right: 1rem;
}
.grid-action i:before {
  font-size: 16px;
}
.grid-search-action {
  max-width: 100%;
}
.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--theme-white-color);
  border-radius: 50%;
  font-size: 20px;
  min-width: 34px !important;
}
.grid-search-action .btn {
  /* filter: brightness(110%); */
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.25rem !important;
  padding: 0 16px;
  line-height: 34px !important;
  font-size: 13px;
}
.grid-search-action .btn .fa {
  position: relative;
  top: 2px;
  left: 0;
  margin-right: 5px;
}
.grid-search-action .btn .fa:before {
  font-size: 16px;
}
.grid-search-action .btn:not(:last-child) {
  margin-right: 1rem;
}
.grid-search .input-group-text {
  padding: 0.375rem 0.7rem !important;
}
.div-ps select {
  display: inline;
}
.gr-action-menu {
  /* right: 30px !important; */
  right: 0px !important;
  /* top: 35px; */
  border: none !important;
}
.gr-action-menu li a {
  color: var(--theme-general-color) !important;
}
.gr-action-menu li a:hover i {
  color: var(--theme-primary-color) !important;
}
.gr-head-p12 th {
  padding: 12px !important;
}
.gr-head-bt {
  border-top: 1px solid #ececec;
}
.hierarchical-row {
  transition: all 0.3s ease-out;
  overflow: hidden;
  height: auto;
}
.gr-row-hover:hover,
.gr-row-hover:focus {
  background-color: var(--theme-li-hover-bg-color) !important;
  transition: all 0.3s ease-out;
}
/* .row, */
.gr-row-hover {
  transition: all 0.3s ease-out;
}
.subrow {
  transition: all 0.3s ease-out;
}
.gr-link {
  cursor: pointer;
}
.gr-icon {
  padding-right: 8px;
  font-size: 18px;
}
.gr-txt-14-b {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-text-general-color);
}
.upload-icon {
  color: var(--theme-primary-color);
}
.upload-icon:before {
  font-size: 30px;
}

.nav-page-lnk .page-lnk {
  padding: 5px 0;
}

.hovertxt-decnone:hover,
.hovertxt-decnone:hover span {
  text-decoration: none !important;
}

.hovertxt-dec:hover,
.hovertxt-dec:hover span {
  text-decoration: underline !important;
}

.imgs-ol-container {
  display: flex;
  align-items: center;
}

.imgs-ol-container .div-img {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.imgs-ol-container .div-img .img,
.imgs-ol-container .div-img.img-34 .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--theme-white-color);
  margin-left: -25px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.imgs-ol-container .div-img.img-34 {
  margin-left: -10px !important;
}

.imgs-ol-container .div-img:first-child .img,
.imgs-ol-container .div-img.img-34 .img {
  margin-left: 0 !important;
}
.imgs-ol-container .tooltip-t40 {
  top: 40px !important;
}

.imgs-ol-container .tooltip {
  visibility: hidden;
  background-color: var(--theme-secondary-opacity-color);
  color: var(--theme-white-color);
  font: var(--theme-general-font);
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.imgs-ol-container .div-img:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.imgs-ol-container .more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--theme-primary-color);
  color: var(--theme-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  border: 2px solid white;
  margin-left: -25px;
}

/*modal*/
.modal {
  z-index: 10001 !important;
}
@keyframes modalZoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal.fade .modal-dialog {
  animation: modalZoomIn 0.5s ease-out;
  /* transition: modalZoomIn 0.5s ease-out; */
}

.modal-content {
  border: none !important;
}

.modal-header {
  padding: 0.5rem !important;
  border-bottom: solid 1px var(--theme-primary-color);
  background-color: var(--theme-primary-color);
}
.modal-title.h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--theme-white-color);
  font-family: var(--theme-general-font);
}
.modal-footer {
  padding: 0.5rem !important;
  border-top: solid 1px var(--theme-primary-color);
}

.modal-dialog .modal-content {
  border-radius: 8px !important;
}

.modal-dialog .modal-body {
  padding: 1.5rem 1rem !important;
  font-size: 14px !important;
  font-weight: 400;
  min-height: 90px !important;
}
.modal-dialog .modal-body.p-0 {
  padding: 0 0 !important;
}

.modal-backdrop {
  z-index: 10000 !important;
  transition: none !important;
}
.modal-backdrop {
  z-index: 10001 !important;
}

/*modal*/

/*profile-card*/
.profile-card {
  position: relative;
  margin-top: -60px;
}
.profile-card-widget .bg-bb {
  border-bottom: solid 2px var(--theme-footer-color);
}
.profile-card .profile-img {
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  border: solid 3px var(--theme-white-color);
}
.profile-card .div-action {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100px;
  left: 100px;
  width: 100%;
}
.profile-card .btn-rt {
  font-size: 12px;
  font-weight: normal;
  float: right;
  line-height: 26px;
  padding: 0 20px;
}
.profile-card .title {
  margin-top: -10px;
}
.profile-card .down-line::before {
  height: 2px;
}
.profile-card .info {
  font-size: 13px;
  font-weight: 400;
}
.profile-card .info .row {
  padding: 3px 0;
}
/*profile-card*/

/*dashboard count*/
.dashboard-stats .success {
  border-left: solid 4px var(--toastify-color-success);
}
.dashboard-stats .success i {
  color: var(--toastify-color-success);
}
.dashboard-stats .error {
  border-left: solid 4px var(--toastify-color-error);
}
.dashboard-stats .error i {
  color: var(--toastify-color-error);
}
.dashboard-stats .warning {
  border-left: solid 4px var(--toastify-color-warning);
}
.dashboard-stats .warning i {
  color: var(--toastify-color-warning);
}
.dashboard-stats .info {
  border-left: solid 4px var(--toastify-color-info);
}
.dashboard-stats .info i {
  color: var(--toastify-color-info);
}
.dashboard-stats i::before {
  font-size: 35px;
}
.dashboard-stats .count {
  font-size: 18px;
  font-weight: 600;
}
.dashboard-stats .title {
  font-size: 14px;
  font-weight: 500;
}
.initials-pic {
  border-radius: 50%;
  background-color: var(--theme-primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.ddlip {
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--theme-white-color);
}
.gr-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 1rem 1rem 0rem 1rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 80px;
  height: 100% !important;
  /* min-width: 320px; */
  /* max-width: 450px; */
  /* margin: 1.5rem auto; */
  /* overflow: hidden; */
}
.gr-card-create {
  color: var(--theme-primary-color);
  font-size: 15px;
  font-weight: 500;
  min-height: 153px;
}
.gr-card-create i {
  font-size: 45px;
}
.gr-card-bo {
  border: dashed 1px #71b862;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--theme-li-hover-bg-color) !important;
  /* transition: all 0.5s ease; */
}
.gr-card .img-col {
  height: 100% !important;
}
.gr-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
/* Styles for the three dots menu */
.gr-menu-dots {
  position: absolute;
  right: 0.5rem;
  top: 0.8rem;
  z-index: 10;
}
.gr-menu-dots .i {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  color: #6c757d;
  font-size: 0.8rem;
  border: none;
}
.gr-menu-dots .i:hover,
.gr-menu-dots .i:focus {
  background: #f0f4fa;
  color: #222;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styles for the bottom-right action icons (View, Edit, Delete) */
.gr-action-icons {
  position: absolute;
  right: 1rem;
  bottom: 10px;
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.gr-action-icons .i {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background: transparent;
  color: #6c757d;
  transition: background 0.15s, color 0.15s;
  border: 1px solid var(--light-border-color);
}
.gr-action-icons .i:hover {
  color: var(--theme-primary-color);
}

@media (max-width: 576px) {
  .menu-dots {
    right: 0.5rem;
    top: 0.5rem;
  }
  .skills-and-actions {
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .profile-actions .btn {
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
  }
  .profile-name {
    font-size: 0.85rem;
  }
  .profile-meta {
    font-size: 0.7rem;
  }
  .skills .badge {
    font-size: 0.65rem;
  }
  .gr-action-icons {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .gr-action-icons .i {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }
  .gr-card-create {
    min-height: 100px;
    font-size: 14px;
  }
  .gr-card-create i {
    font-size: 40px;
  }
}

/*dashboard count*/

/*Toast*/
.Toastify {
  position: absolute;
  z-index: 1000000;
}
/* Optional: If you want to customize the toast appearance further */
.Toastify__toast {
  color: var(theme-general-color) !important; /* Toast text color */
  border-radius: 5px !important;
  font-family: var(--theme-general-font) !important;
  opacity: 0.9;
  min-height: 60px !important;
}
.Toastify__toast--success {
  color: var(theme-general-color) !important; /* Toast text color */
  /* border-left: solid 5px var(--theme-primary-color) !important; */
}
.Toastify__toast--error {
  color: var(theme-white-color) !important;
  /* border-left: solid 5px var(--theme-validation-err) !important; */
}
.Toastify__close-button > svg {
  height: 12px !important;
  width: 12px !important;
}
.Toastify__toast-body {
  font-size: 14px;
  font-family: var(--theme-general-font);
}
.Toastify__toast-body div {
  line-height: 20px;
}
.Toastify__close-button {
  color: var(theme-general-color) !important;
  line-height: 14px;
}

.Toastify__progress-bar--wrp,
.Toastify__progress-bar {
  border-bottom-left-radius: 0 !important;
}
/*Toast*/

.form-check-input:checked {
  background-color: var(--theme-primary-color) !important;
  border-color: var(--theme-primary-color) !important;
}
.form-check-input:focus {
  border-color: var(--theme-primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(113, 184, 98, 0.25);
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*date picker*/
.dt-ctrl {
  flex-wrap: nowrap !important;
}
.dt-ctrl input {
  cursor: pointer !important;
}
.dt-ctrl .rdt {
  width: 100% !important;
}
.dt-ctrl .rdtPicker {
  z-index: 10 !important;
}
.rdtPicker td,
.rdtPicker th {
  height: 22px !important;
  padding: 3px 3px !important;
  font-size: 13px !important;
}
.rdtCounter .rdtCount {
  height: 22px !important;
  font-size: 13px !important;
}
.rdtSwitch,
.rdtPicker .dow,
.rdtTimeToggle {
  font-weight: 500;
}
.rdtSwitch,
.rdtTimeToggle {
  cursor: pointer !important;
}
.rdtPicker td:hover,
.rdtCounter .rdtBtn:hover,
.rdtPicker thead tr:first-of-type th:hover {
  background-color: #f6f8fb !important;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: var(--theme-primary-color) !important;
  color: var(--theme-white-color) !important;
  border-radius: 5px;
}
.rdtPicker td.rdtToday:before {
  border-bottom: 7px solid var(--theme-primary-color) !important;
}
.rdtOpen .rdtPicker {
  width: 100%;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
  border: solid 1px var(--light-border-color);
}
/*date picker*/

/*badges*/
.gr-badge-pill {
  padding: 0.3rem 0.65rem;
  min-width: 93px;
  position: relative;
  text-align: left;
}
.gr-badge-pill:not(.ctooltip-container) {
  border-radius: 15px !important;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
}
.gr-badge-pill::after {
  display: inline-block;
  position: absolute;
  right: 0.5rem;
  top: 2px;
}
.gr-badge-pill-suc {
  background-color: #eefbec;
  color: rgb(117, 204, 104) !important;
  border: solid 1px currentColor;
}
.gr-badge-pill-suc::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 24 24' fill='none' stroke='rgb(117,204,104)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.gr-badge-pill-warning {
  background-color: #fcf2e8;
  color: rgb(231, 139, 47) !important;
  border: solid 1px currentColor;
}
.gr-badge-pill-warning::after {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 24 24' fill='none' stroke='rgb(231,139,47)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}
.gr-badge-pill-info {
  background-color: #f1faff;
  color: rgb(44, 154, 255) !important;
  border: solid 1px currentColor;
}
.gr-badge-pill-info::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' width='16px' height='16px' fill='none' stroke='rgb(44, 154, 255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpath d='M 24 3 C 12.413858 3 3 12.413866 3 24 C 3 35.586134 12.413858 45 24 45 C 35.586142 45 45 35.586134 45 24 C 45 12.413866 35.586142 3 24 3 z M 24 5 C 34.505263 5 43 13.494744 43 24 C 43 34.505256 34.505263 43 24 43 C 13.494737 43 5 34.505256 5 24 C 5 13.494744 13.494737 5 24 5 z M 24 12.185547 C 23.159 12.185547 22.474609 12.863313 22.474609 13.695312 C 22.474609 14.535312 23.159 15.220703 24 15.220703 C 24.85 15.220703 25.541016 14.535312 25.541016 13.695312 C 25.541016 12.863312 24.85 12.185547 24 12.185547 z M 24 17.935547 C 23.305 17.935547 22.818359 18.454312 22.818359 19.195312 L 22.818359 33.757812 C 22.818359 34.498812 23.304 35.017578 24 35.017578 C 24.696 35.017578 25.181641 34.498813 25.181641 33.757812 L 25.181641 19.193359 C 25.181641 18.452359 24.695 17.935547 24 17.935547 z'/%3E%3C/svg%3E");
}
.gr-badge-pill-error {
  background-color: #fff2f1;
  color: rgb(241, 76, 65) !important;
  border: solid 1px currentColor;
}
.gr-badge-pill.nocnt::after {
  content: none !important;
}
.gr-badge-pill-error::after {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 50 50' fill='none' stroke='rgb(241, 76, 65)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpath d='M 25 2 C 12.309534 2 2 12.309534 2 25 C 2 37.690466 12.309534 48 25 48 C 37.690466 48 48 37.690466 48 25 C 48 12.309534 37.690466 2 25 2 z M 25 4 C 36.609534 4 46 13.390466 46 25 C 46 36.609534 36.609534 46 25 46 C 13.390466 46 4 36.609534 4 25 C 4 13.390466 13.390466 4 25 4 z M 32.990234 15.986328 A 1.0001 1.0001 0 0 0 32.292969 16.292969 L 25 23.585938 L 17.707031 16.292969 A 1.0001 1.0001 0 0 0 16.990234 15.990234 A 1.0001 1.0001 0 0 0 16.292969 17.707031 L 23.585938 25 L 16.292969 32.292969 A 1.0001 1.0001 0 1 0 17.707031 33.707031 L 25 26.414062 L 32.292969 33.707031 A 1.0001 1.0001 0 1 0 33.707031 32.292969 L 26.414062 25 L 33.707031 17.707031 A 1.0001 1.0001 0 0 0 32.990234 15.986328 z'/%3E%3C/svg%3E");
}
/*badges*/

/*async select*/
.css-hlgwow {
  height: 42px !important;
  display: flex !important;
}
@keyframes square-spinner {
  25% {
    transform: rotateX(180deg) rotateY(0);
  }
  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: rotateX(0) rotateY(180deg);
  }
  100% {
    transform: rotateX(0) rotateY(0);
  }
}

.square-spinner {
  background-color: var(--theme-primary-color);
  width: 1rem;
  height: 1rem;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: square-spinner;
}
.rpv-thumbnail__item--single,
.rpv-thumbnail__item--dual-cover {
  padding: 0.1rem !important;
}
.rpv-thumbnail__items--selected .rpv-thumbnail__item,
.rpv-thumbnail__item--single:hover,
.rpv-thumbnail__item--dual-cover:hover,
.rpv-thumbnail__items--dual:hover .rpv-thumbnail__item,
.rpv-thumbnail__items--dual-cover:hover .rpv-thumbnail__item {
  background-color: transparent !important;
  border: solid 2px var(--theme-primary-color) !important;
}
/* [aria-controls="rpv-core__modal-body-properties"], */
[aria-describedby="rpv-core__tooltip-body-open"],
/* [aria-describedby="rpv-core__tooltip-body-get-file"], */
/* [aria-describedby="rpv-core__tooltip-body-print"], */
[aria-describedby="rpv-core__tooltip-body-default-layout-sidebar-tab-1"],
[aria-describedby="rpv-core__tooltip-body-default-layout-sidebar-tab-2"],
[aria-describedby="rpv-core__tooltip-body-theme-switch"] {
  display: none !important;
}
/* .rpv-default-layout__sidebar {
  width: 19% !important;
} */
/* .rpv-toolbar__item svg,
.rpv-default-layout__sidebar-headers svg {
  width: 15px !important;
  height: 15px !important;
} */
.rpv-default-layout__sidebar-headers,
.rpv-default-layout__toolbar {
  background-color: transparent !important;
  font-size: 12px !important;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1) !important;
}
.rpv-default-layout__container {
  /* font-size: 14px !important; */
}
.rpv-core__inner-pages {
  padding: 20px 0 20px 0 !important;
}
.rpv-default-layout__container {
  border: 1px solid var(--rpv-default-layout__toolbar-border-bottom-color) !important;
}

@media (min-width: 768px) {
  .rpv-default-layout__sidebar-content--opened {
    width: 14rem !important;
  }
}

@media (min-width: 1024px) {
  .rpv-default-layout__sidebar-content--opened {
    width: 18rem !important;
  }
}

.modal-fullview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* Transparent background */
  display: flex; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

/* Show Modal */
.modal-fullview.show {
  display: flex;
}

/* Header */
.modal-fullview .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.9); /* Slightly darker header */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Modal Content */
.modal-fullview .content {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  width: 100%;
  height: calc(100% - 40px);
  margin-top: 40px;
  color: white;
  text-align: center;
}

/* Navigation Buttons */
.modal-fullview .content .nav-btn,
.nav-btn.m-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: none !important;
  color: white;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.modal-fullview .content .nav-btn:disabled,
.modal-fullview .content .nav-btn:disabled:hover,
.nav-btn.m-arrow:disabled,
.nav-btn.m-arrow:disabled:hover {
  cursor: default;
  background: rgba(0, 0, 0, 0.6) !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.modal-fullview .content .nav-btn.left,
.nav-btn.m-arrow.left {
  left: 10px;
}

.modal-fullview .content .nav-btn.right,
.nav-btn.m-arrow.right {
  right: 10px;
}

.modal-fullview .content .nav-btn:hover,
.nav-btn.m-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Viewer Area */
.modal-fullview .viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===============================================================================
Responsive Style Start
==================================================================================*/

@media screen and (max-width: 350px) {
  .collpase-widget {
    min-width: 320px;
    width: 320px;
  }
}
@media screen and (max-width: 991px) {
  .user-menu .nav-item .dropdown-menu a {
    color: var(--theme-white-color) !important;
  }
  .user-menu .nav-item .dropdown-menu li:hover,
  .user-menu .nav-item .dropdown-menu li.active,
  .user-menu .nav-item .dropdown-menu li:active,
  .user-menu .nav-item .dropdown-menu li:focus,
  .user-menu .nav-item .dropdown-menu li:focus-visible {
    background-color: transparent !important;
    color: var(--theme-primary-color) !important;
  }
  .user-menu .nav-item .dropdown-menu .dropdown-item i:before {
    font-size: 13px !important;
  }
  .cwn {
    left: calc(100% - 240px) !important;
  }
}

@media screen and (max-width: 374.9px) {
  .cwn {
    left: calc(100% - 240px) !important;
  }
}

@media screen and (max-width: 767px) {
  .div-paging {
    margin-top: 20px;
    justify-content: left;
    display: flex;
  }
  .div-ps,
  .div-pinfo {
    margin-top: 15px;
    justify-content: left;
    display: flex;
  }
  .form-action .form-error {
    text-align: right;
    margin: 0 0 10px 0;
  }
  .div-agdetails-img {
    width: 100% !important;
    text-align: center;
  }
  .div-agdetails-img img {
    width: 120px !important;
  }
}
@media screen and (max-width: 600px) {
  .user-info-nav-item.publiclayout .user-option {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .grid-search-action .btn {
    width: 100% !important;
    margin: 5px 0;
  }
  .grid-search-action .h-0 {
    height: 0 !important;
  }
}

@media screen and (max-width: 700px) {
  .user-info-ddmenu::before {
    display: none !important;
  }
  .user-navbar .navbar-nav li:nth-last-child(2) {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 700px) and (max-width: 1023.98px) {
  .user-info-ddmenu.publiclayout {
    margin-top: 8px !important;
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 991.98px) {
  .user-navbar .navbar-nav {
    /* border-top: 1px solid #ddd; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .user-info-nav-item {
    border-left: none !important;
  }
  .user-info-ddmenu {
    margin-top: 4px !important;
  }
  .user-navbar {
    height: 0 !important;
  }
  .user-navbar .navbar-nav li:nth-last-child(2) {
    margin-right: 0 !important;
  }
  .user-navbar .navbar-nav > li {
    position: absolute;
    top: 10px;
  }
  .user-navbar .navbar-nav > li:nth-child(2) {
    right: 50px;
  }
  .user-navbar .navbar-nav > li:nth-child(1) {
    right: 110px;
  }
  .user-navbar .navbar-nav > li.condition:nth-child(1) {
    right: 10px;
  }
  .user-info-name {
    display: none;
  }
  .user-info-nav-item.publiclayout {
    margin-top: 13px;
  }
  .tbl-grid tbody tr td,
  .tbl-grid tbody tr td div > * {
    line-height: 15px;
  }
  .grid-action > * {
    margin: 0.6rem 0.5rem;
    display: flex;
  }
  .grid-action > a {
    display: flex;
  }
  .grid-action i:before {
    font-size: 15px;
  }
  .tbl-grid thead th {
    font-weight: 500;
    font-size: 12px;
  }
  .tbl-grid tbody tr > *,
  .tbl-grid tbody tr td h5 {
    font-weight: 400;
    font-size: 12px;
  }
  .nav-on-top {
    position: relative !important;
  }
}

@media screen and (min-width: 991px) {
  .div-page-title {
    margin-top: 60.8px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .div-paging {
    margin-top: 20px;
    justify-content: center;
    display: flex;
  }
  .div-ps {
    justify-content: right;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
@media screen and (min-width: 1320px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 767px) {
  .agent-list-view,
  .property-list-1,
  .property-list-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .agent-list-view > div,
  .property-list-1 .property_text,
  .property-list-1 .thumbnail-img,
  .property-list-2 .property_text,
  .property-list-2 .thumbnail-img {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .nav-leftpush-overlay .navbar-expand-lg .left-filter-fixed.navbar-slide-push {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 50px 40px;
    display: block !important;
    opacity: 1 !important;
    position: static !important;
  }
  .div-agdetails-img {
    width: 150px !important;
  }
  .div-agdetails-img img {
    width: 140px !important;
  }
}
@media screen and (min-width: 576px) {
  .position-sm-absolute {
    position: absolute !important;
  }
}
@media screen and (max-width: 991px) {
  .apartments-plan-info {
    padding: 50px;
  }
  .md-bg-secondary {
    background-color: var(--theme-secondary-color) !important;
  }
  .md-bg-dark {
    background-color: var(--theme-dark-color) !important;
  }
  .navbar-nav > li.dropdown > a.nav-link::after,
  .navbar-nav > li.dropdown .dropdown-toggle::after {
    right: 20px;
  }
  .navbar-expand-lg .navbar-nav > li.dropdown > a.nav-link::after {
    right: 20px;
  }
  .bootstrap-select .dropdown-menu.inner {
    background-color: #fff;
  }

  .banner-search {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .sm-position-static {
    position: static !important;
  }
  .sm-position-relative {
    position: relative !important;
  }
  .woocommerce-ordering .dropdown-toggle::after {
    position: relative;
    right: auto;
    top: auto;
  }
  .widget_contact .media img {
    width: 70px;
    height: 70px;
  }
  .navbar-nav.user-option {
    display: block;
  }
  .user-option li:first-child {
    float: left;
    line-height: 40px;
  }
  .user-option li:last-child {
    float: right;
  }
  .sm-mw-100 {
    max-width: 100% !important;
    width: auto !important;
  }
  .overflow-x-scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .overflow-x-scroll table {
    width: 1024px !important;
  }
  .owl-carousel.nav-top-right .owl-nav {
    display: none;
  }
}
@media screen and (min-width: 991px) and (max-width: 1024px) {
  .overflow-x-scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .overflow-x-scroll table {
    width: 1200px !important;
  }
}
@media screen and (max-width: 767px) {
  #page_wrapper,
  .dashboard-body {
    height: auto !important;
  }
  .bg-sm-secondary {
    background-color: var(--theme-secondary-color);
  }
  .aditional-features {
    top: 91%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 13px;
  }
  .overflow-x-scroll::-webkit-scrollbar {
    height: 3px;
  }
  .list-three-fold-width li {
    width: 100%;
  }
  .xs-text-start {
    text-align: left !important;
  }
  .xs-h-auto {
    height: auto !important;
  }
  .collaps-dashboard {
    line-height: 45px;
    cursor: pointer;
    font-weight: 500;
  }
  .dashboard-nav-area {
    height: auto;
  }
  .dashboard-nav {
    display: none;
  }
  .dashboard-nav-area.bg-secondary {
    background: #fff !important;
  }
  .navbar-nav li {
    color: var(--text-light-dark-color) !important;
  }
  .dashboard-nav-area a.navbar-brand {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: 250px;
  }
  .user-option.navbar-nav {
    border-top: 0 !important;
  }
  .xs-mw-100 {
    max-width: 100% !important;
  }
  .property-search-form.on-slider {
    margin-top: 40px;
    z-index: 99;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 419px) {
  .list-half-width > * {
    width: 100%;
  }
  .property-grid-4 .location {
    display: none;
  }
}

.imgloader {
  width: 30px !important;
  height: 30px !important;
  border: 2px solid var(--theme-primary-color);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.imgloader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid;
  border-color: var(--theme-primary-color) transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.login-wrapper {
  min-height: calc(100vh - 101px);
  /* display: flex;
  flex-wrap: wrap; */
}
.login-wrapper .left-panel {
  background-color: var(--theme-white-color) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.login-wrapper .left-panel h1 {
  font-size: 3rem;
  font-weight: bold;
}
.form-section {
  max-width: 400px;
  margin: auto;
  padding: 2rem;
  width: 100%;
}
.so-or-line {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
}
.so-or-line::before,
.so-or-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--control-border-color);
}
.so-or-line::before {
  left: 0;
}
.so-or-line::after {
  right: 0;
}
.so-or-line span {
  padding: 0 1rem;
  position: relative;
  z-index: 1000;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  border: 1px solid var(--light-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
}
.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.social-icons .social-btn img {
  width: 30px !important;
}
.social-btn:hover,
.social-btn-full:hover,
.gr-action-icons .i:hover,
.gr-card-bo:hover {
  border-color: #71b862;
  background-color: rgba(113, 184, 98, 0.1) !important;
  transition: all 0.5s ease;
}
.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  /* max-width: 320px; */
}

.social-btn-full {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--theme-white-color);
  color: inherit;
  width: 100%;
  justify-content: center;
  border: solid 1px var(--light-border-color);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.social-btn-full.lin {
  padding: 6px 20px;
}

.social-btn-full img {
  width: 26px;
  height: 26px;
}

.social-btn-full:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--theme-primary-color);
  margin-right: 1rem;
}

.feature-item i {
  color: var(--theme-primary-color);
}
.feature-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.aw-mobile-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aw-m-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 1rem 1rem;
  position: relative;
  min-height: 80px;
  height: 100% !important;
}
.aw-m-card .gr-link {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.aw-m-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aw-m-card i.gr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
}
.aw-m-title {
  color: var(--theme-primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.aw-m-actions {
  display: flex;
  align-items: center;
}

.aw-m-detail {
  margin-top: 2px;
}

.aw-m-actions .btn {
  padding: 0 8px !important;
  line-height: 20px !important;
}

.dashboard-panel:has(.aw-mobile-grid) {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  overflow: visible !important;
}
