@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2"),
    url("../fonts/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.woff2") format("woff2"),
    url("../fonts/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-display: block;
}

/* common css start */

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

:root {
  --bs-font-sans-serif: "Poppins", "Helvetica", "Arial", sans-serif;
}

body {
  /* font-family: "Poppins" !important; */
  /* font-family: "Poppins", "Helvetica", "Arial", sans-serif !important;  */
  font-family: var(--bs-font-sans-serif) !important;
  margin: 0 !important;
  padding: 0;
}

a {
  text-decoration: none;
}

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

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

p {
  color: #4b5563;
  font-size: 16px;
}

.para {
  font-size: 18px;
  line-height: 26px;
  max-width: 50%;
}

.para2 {
  max-width: 50%;
  color: #777777;
}

.p-18 {
  font-size: 18px;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  color: #1f2937;
  max-width: 50%;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
}

.heading-width {
  max-width: 50%;
}

.title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #1f2937;
}

.font-20 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.font-18 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
}

.section-padding {
  padding-bottom: 100px;
}

.border-radius-20 {
  border-radius: 20px;
}

/* common css end */

/* header css */
.header .navbar-brand,
.footer .footer-logo {
  max-width: 217px;
}

.header .navbar {
  border-bottom: 1px solid #e9eaeb;
}

.header .navbar-nav {
  gap: 32px;
  margin-right: 40px;
}

.header .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  padding: 0;
}

.header .navbar-nav .nav-link.active {
  color: #45aa37;
}

.signin-btn,
.header-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 12px;
}

.signin-btn {
  color: #006aff;
  background-color: transparent;
  border: 1px solid #006aff;
}

.header-btn {
  color: #fff;
  border: 1px solid transparent;
  background-color: #45aa37;
}

.header .bell-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background-color: #e9eaeb;
}

.header .bell-btn i {
  color: #1f2937;
  font-size: 20px;
}

.header .user {
  width: 56px;
  height: 56px;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  border-radius: 100%;
  text-transform: uppercase;
  background-color: #13b213;
}

.signInModal .modal-body .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.signInModal .modal-body .back-btn {
  background-color: transparent;
  border: none;
  font-size: 24px;
}

.signInModal .modal-body .modal-title,
.createAccount h3 {
  font-size: 28px;
  color: #1f2937;
  font-weight: 600;
}

.signInForm .input-bx {
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
}

.signInForm label {
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
}

.signInForm .form-control {
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  color: #1f2937;
}

.signInForm .form-control::placeholder {
  color: #9ca3af;
}

.signInForm .select2-container--default .select2-selection--single,
.signInForm .select2-container--default .select2-selection--multiple {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.signInForm .select2-container .select2-selection--multiple {
  min-height: auto;
}

.signInForm .select2-selection__rendered .select2-search__field {
  margin: 0 !important;
  height: auto;
}

.signInForm .select2-container {
  padding: 4px 0;
  width: 100% !important;
}

.signInForm .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
}

.top_filters.signInForm .select2-selection__placeholder {
  color: #1f2937 !important;
  font-size: 16px !important;
}

.top_filters.signInForm .select2-selection__arrow {
  display: none;
}

.signInForm .input-bx textarea.form-control {
  padding: 0;
  min-height: 114px;
  resize: none;
}

.signInForm .showPssswordBtn {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 22px;
}

.signInForm .ftPassword {
  font-size: 14px;
  color: #006aff;
  font-weight: 600;
  text-decoration: underline;
}

.signInForm .divider {
  font-size: 14px;
  color: #4b5563;
}

.signInForm .divider::before,
.signInForm .divider::after {
  content: "";
  flex: 1;
  border-top: 0.5px solid #d1d4e0;
  margin: 0 10px;
}

.signInForm .with-list li a {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #f2f2f2;
}

.signInForm .selectRole input[type="radio"],
.signInForm .selectType input[type="radio"],
.listing-btn input[type="radio"] {
  display: none;
}

.signInForm .selectRole label {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #d1d5db;
  background-color: transparent;
  padding: 14px 26px;
  transition: all ease-in-out 0.4s;
}

.signInForm .selectType {
  width: 50%;
  height: 110px;
  text-align: center;
}

.signInForm .selectType label {
  width: 100%;
  height: 100%;
  color: #1f2937;
  font-size: 16px;
  font-weight: 400;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.signInForm .selectRole input[type="radio"]:checked+label,
.signInForm .selectType input[type="radio"]:checked+label {
  border-color: #006aff;
  color: #006aff;
}

.signInForm .selectType label img {
  width: 40px;
}

.signInForm .selectType label .img2,
.signInForm .selectType input[type="radio"]:checked+label .img1 {
  display: none;
}

.signInForm .selectType input[type="radio"]:checked+label .img2 {
  display: block;
}

/* header css end */

/* footer css */

.footer {
  background: url(../img/footer-bg.png), #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 100px;
  border-top: 1px solid #e9eaeb;
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  line-height: 24px;
}

.footer .ftText {
  font-size: 16px;
  line-height: 26px;
}

footer .ft-list li:not(:last-child) {
  padding-bottom: 10px;
}

footer .ft-list li a {
  font-size: 16px;
  color: #4b5563;
  font-weight: 400;
}

.footer .copy-right {
  border-top: 1px solid #e9eaeb;
}

.footer .copy-right p,
.footer .copy-right p a {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
}

.footer .social-icons li a {
  font-size: 18px;
  color: #4b5563;
}

.footer .social-icons li a img {
  width: 18px;
  height: 18px;
}

/* footer css end */

/* Create Account css */
.create-account-section {
  padding: 80px 0;
}

.createAccount {
  max-width: 924px;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.signInForm .form-check .form-check-input {
  box-shadow: none;
  width: 18px;
  height: 18px;
  border-color: #006aff;
  border-radius: 5px;
  padding: 0;
}

.signInForm .form-check .form-check-label {
  font-size: 14px;
  color: #4b5563;
  font-weight: 400;
}

.signInForm .form-check .form-check-label a {
  color: #006aff;
  text-decoration: underline;
}

.company-logo {
  gap: 20px;
  border-radius: 12px;
}

.company-logo .uploadBx {
  border-radius: 12px;
  width: 168px;
  height: 168px;
  overflow: hidden;
}

.company-logo.profile-card p {
  max-width: 75%;
}

/* Create Account css end */

/* home page css start  */
.banner-section {
  background: url(../img/hero-section-bg.png), #fff;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 75%;
  min-height: 798px;
  padding-top: 186px;
}

.banner-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.banner-section .nav-tabs {
  border: none;
}

.banner-section .nav-tabs .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: #1f2937;
  border: none;
  border-radius: 0;
  position: relative;
  margin-bottom: 0;
  padding: 15px 20px;
}

.banner-section .nav-tabs .nav-link.active {
  color: #45aa37;
}

.banner-section .nav-tabs .nav-link.active::after {
  content: "";
  height: 2px;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #45aa37;
}

.search-form {
  max-width: 840px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #bcbfc3;
  background-color: #ffffff;
}

.search-btn {
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 30px;
  color: #fff;
  border: 1px solid transparent;
  background-color: #006aff;
}

.search-form .magnifyingBtn {
  background-color: transparent;
  border: none;
  font-size: 20px;
}

.search-form .form-control {
  border: none;
  border-radius: 0;
  outline: none;
  color: #1f2937;
  box-shadow: none;
}

.search-form .form-control::placeholder {
  color: #838891;
}

.search-form .downIcon {
  font-size: 24px;
  color: #1f2937;
}

.search-form .zipcode::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #bcbfc3;
}

.search-form .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  border-radius: 0;
  text-align: start;
}

.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #aaa !important;
}

.select2-search--dropdown .select2-search__field {
  border-radius: 4px;
  outline: none;
}

.filter_options_list {
  gap: 0 29px;
}

.filter_options_list li {
  width: calc(25% - 29px);
}

.filter_options {
  margin-bottom: 20px;
}

.filter_options .filter_btn {
  color: #1f2937;
  font-weight: 500;
  border: 1px solid #d1d5db;
  padding: 17px 20px;
  border-radius: 10px;
  background-color: transparent;
  width: 100%;
}

.filter_options.filter_options_add .filter_btn {
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
}

.filter_options.filter_options_add .filter_btn i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.filter_options .slide_content {
  display: none;
  border: 1px solid #d1d5db;
  border-top: 0;
  padding: 0 20px 20px;
  border-radius: 0 0 10px 10px;
}

.filter_options.filter_options_add .slide_content {
  display: block;
}

.filter_options .slide_content a:not(:last-child) {
  padding-bottom: 18px;
}

.filter_options .slide_content a {
  display: block;
  color: #006aff;
  text-decoration: underline;
}

/* home page css end  */

/* Property Single css */
.ofc-list li a {
  padding: 4px 14px;
  border-radius: 50px;
  background-color: #edeeef;
}

.ofc-list li a.active {
  background-color: #45aa37;
}

.ofc-list li a span {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.ofc-list li a.active span {
  color: #fff;
}

.row-border-bottom {
  border-bottom: solid 1px #e4e4e4;
}

.features-list li img {
  width: 28px;
  height: 28px;
}

.ft-share li a,
.blog-content .agent-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #d1d5db;
}

.ft-share li a img {
  width: 22px;
}

.overview_list .icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.overview_list .icon img {
  width: 26px;
}

.view-more-btn {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  padding-bottom: 6px;
  border-bottom: 2px solid #1f2937;
}

.map-iframe {
  height: 500px;
}

.propertyPlayBtn {
  background-color: #fff;
  border-radius: 100%;
  border: none;
  width: 60px;
  height: 60px;
  color: #45aa37;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.listed-card {
  border-radius: 15px;
  border: 1px solid #e4e4e4;
  padding: 30px 24px 24px;
}

.cityplex-bx {
  border-bottom: 1px solid #e4e4e4;
}

.cityplex-bx img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-fit: cover;
}

.agent-list .agent-img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-fit: cover;
}

.agent-btn {
  font-size: 16px;
  font-weight: 500;
  color: #006aff;
  padding: 12px 36px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid #006aff;
}

.agent-btn.active {
  color: #fff;
  border: none;
  background-color: #006aff;
}

.agent-btn i {
  font-size: 18px;
}

.auction-top {
  background-color: #1f2937;
  padding: 14px 0;
  margin-top: 20px;
}

.view_gallery_section {
  padding-top: 20px;
}

.view_gallery {
  gap: 12px;
}

.view_gallery .view_gallery_img {
  flex: 0 0 auto;
  width: 240px;
  height: 465px;
  transition: width 0.4s ease;
}

.view_gallery .view_gallery_img.active {
  width: 620px;
}

.view_gallery .view_gallery_img .img {
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

.view_gallery .view_gallery_img .viewallphotos_btn {
  background-color: #1f2937;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  padding: 12px 14px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: none;
  white-space: nowrap;
}

.view_gallery .view_gallery_img.active .viewallphotos_btn {
  display: block;
}

/* Property Single css end */

/* agent profile css */
.profile-section {
  padding: 65px 0 60px;
  background: linear-gradient(0deg, #ffffff 60%, #f6f6f6 40%);
}

.profile-row {
  border-radius: 24px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.profile-row .agent-img {
  border-radius: 10px;
  max-width: 330px;
}

.profile-row .txt {
  font-size: 15px;
}

.about-me {
  height: 100%;
  border-radius: 24px;
  background-color: #f6f6f6;
}

.about-me .about-text {
  font-size: 15px;
}

.buildings-list li {
  color: #4b5563;
  padding: 5px 14px;
  border-radius: 50px;
  background-color: #e5e6e7;
}

.experience-list li:nth-child(1) {
  max-width: 160px;
  width: 100%;
}

.experience-list li h6,
.listings_card .features-list li span {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
}

.contactMeForm .input-group label {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.contactMeForm .input-group label span {
  font-weight: 400;
  color: #4b5563;
}

.contactMeForm .input-group .form-control,
.contactMeForm .input-group select {
  width: 100%;
  color: #1f2937;
  padding: 13px 20px;
  border-radius: 12px !important;
  box-shadow: none;
  background-color: #fff;
  border: solid 1px #d1d5db;
}

.contactMeForm .form-control::placeholder {
  color: #9ca3af;
}

.contactMeForm .input-group textarea.form-control {
  min-height: 100px;
  resize: none;
}

.contactMeForm .sendEmailBtn {
  background-color: #45aa37;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 14px 20px;
  border: none;
}

.team-card {
  padding: 40px;
  border-radius: 24px;
  background-color: #f6f6f6;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
}

.team-card .view-pro-btn {
  background-color: #006aff;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 34px;
  border: none;
}

.team-card .cl-btn {
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
}

.team-card .cl-btn i {
  color: #006aff;
}

.listings_tab,
.listing-btns {
  width: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.listings_tab .nav-link,
.listing-btn label {
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
  border-radius: 50px;
  margin-bottom: 0;
  padding: 9px 28px;
  white-space: nowrap;
  border: 1px solid #d1d5db;
  background-color: transparent;
}

.listings_tab .nav-link.active,
.listing-btn input[type="radio"]:checked+label {
  color: #fff;
  background-color: #45aa37;
  border-color: transparent;
}

.listings_card {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.listings_card .listings-view-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.listings_card .ofc-list,
.search_result .ofc-list {
  position: absolute;
  top: 16px;
  left: 16px;
}

.listings_card .auctionDate {
  background-color: #1f2937;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.search_result .property-card .ofc-list {
  flex-wrap: wrap;
}

.add-favourite {
  color: #1f2937;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #fff;
}

.add-favourite img {
  width: 18px;
}

.listings_card .locImg {
  width: 16px;
}

.listings_card .features-list li img {
  width: 20px;
  height: 20px;
}

.listings_card .view-detail {
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #006aff;
  font-size: 16px;
  color: #006aff;
  font-weight: 600;
  padding: 14px 30px;
  display: inline-block;
}

.listings_card .view-detail.active {
  color: #fff;
  background-color: #006aff;
}

/* agent profile css end */

/* Sale page css */
.top_filters {
  background-color: #f6f6f6;
  padding: 20px 40px;
}

.top_filters,
.result-bar {
  gap: 12px;
}

.search-bx,
.select-bx2,
.select-bx,
.size-bx,
.all-filter-btn {
  border: 1px solid #d1d5db;
  background-color: #fff;
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
}

.select-bx2 {
  min-width: 210px;
}

.search-bx {
  max-width: 320px;
  width: 100%;
}

.select-bx {
  max-width: 210px;
  width: 100%;
}

.size-bx {
  max-width: 210px;
  width: 100%;
}

.search-bx .icon {
  background-color: transparent;
  border: none;
}

.search-bx .form-control,
.select-bx .form-select,
.size-bx .form-select,
.select-bx2 .select2-selection {
  background-color: transparent;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  color: #1f2937;
}

.search-bx .form-control::placeholder {
  color: #1f2937;
}

.all-filter-btn {
  padding: 10px 26px;
  white-space: nowrap;
}

.clear-btn {
  background-color: #45aa37;
  border-radius: 8px;
  padding: 10px 32px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  border: none;
  white-space: nowrap;
}

.sale-banner {
  /* background: url(../img/hero-section-bg.png), #fff; */
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
}

.sale-banner.lease-banner {
  height: 150px;
}

.sale-banner.lease-banner .search-form {
  max-width: 503px;
}

/* Sale page css end */

/* search result css start */

.search_result .property_listings {
  padding: 33px 40px;
}

.search_result .property_listings .property-card {
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 12%);
  border-radius: 20px;
  padding: 16px;
}

.search_result .property_listings .property-card h5.card-title {
  font-size: 22px;
  color: #1f2937;
  width: 92%;
}

.facility_typebox h6,
.facility_box span {
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
}

.bookmark_icon,
.facility_typebox h5 {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
}

.price_area h5 {
  color: #45aa37;
  font-size: 18px;
  font-weight: 700;
}

.price_area h6 {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
}

.result_btns button,
.result_btns a {
  font-size: 16px;
  font-weight: 600;
  color: #006aff;
  border: 1px solid #006aff;
  padding: 12px 23px;
  border-radius: 12px;
  background-color: transparent;
}

.result_btns button.fill_btn,
.result_btns a.fill_btn {
  background-color: #006aff;
  color: #fff;
}

.tag-sale,
.tag-office {
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  padding: 4px 10px;
}

.tag-office {
  color: #1f2937;
  background-color: #fff;
}

.tag-sale {
  color: #fff;
  background-color: #45aa37;
}

.tag_btn {
  top: 16px;
  left: 16px;
}

.bookmark_icon {
  background-color: #f6f6f6;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  padding-bottom: 0px;
}

.bookmark_icon i {
  line-height: 0;
}

.search_result h3 {
  font-size: 26px;
  font-weight: 600;
  color: #1f2937;
}

.property-card .property-img {
  border-radius: 20px;
  object-fit: cover;
  min-height: 350px;
}

.map-iframe-active {
  height: 495px;
}

.map-iframe-active iframe {
  height: 100%;
  width: 100%;
}

.filter_modal .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 299;
  box-shadow: none;
}

.filter_modal .modal-body {
  padding: 40px;
}

.filter_modal .listings_tab .nav-link {
  padding: 9px 24px;
}

.filter_modal .type-text {
  border-bottom: 1px solid #d1d5db;
}

.filter_modal .type-heading {
  font-weight: 500;
  color: #1f2937;
}

.select-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-radius: 5px;
  box-shadow: none;
  border-color: #006aff;
  padding: 0;
}

.select-check .form-check-label {
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.filter_modal .accordion,
.filter_modal .accordion .accordion-item,
.filter_modal .accordion .accordion-item:last-of-type,
.filter_modal .accordion .accordion-item:first-of-type,
.filter_modal .accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
  border: 0px !important;
  border-radius: 0px !important;
}

.filter_modal .accordion .accordion-button {
  width: fit-content;
  background-color: transparent;
  box-shadow: none;
  padding: 0 0 0 20px;
}

.filter_modal .accordion .accordion-body {
  padding: 0 0 0 30px;
}

.filter_modal .filter-select-bx .form-select,
.filter_modal .filter-select-bx .form-control {
  box-shadow: none;
  font-size: 15px;
  color: #1f2937;
  font-weight: 400;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 18px;
}

.filter_modal .filter-select-bx .form-control::placeholder {
  color: #838891;
}

.filter_modal .time-period-btn,
.filter_modal .custom-btn {
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  background-color: transparent;
  padding: 7px 10px;
  width: 100%;
}

.filter_modal .time-period-btn {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}

.filter_modal .custom-btn {
  border-radius: 0 8px 8px 0;
  border-left: 0;
}

.filter_modal .time-period-btn.active,
.filter_modal .custom-btn.active {
  background-color: #006aff;
  color: #fff;
  border-color: #006aff;
}

.filter_modal .result_btns button,
.signInModal .result_btns button,
.signInModal .result_btns a {
  border-color: #45aa37;
  color: #45aa37;
}

.filter_modal .result_btns button.fill_btn,
.signInModal .result_btns button.fill_btn,
.signInModal .result_btns a.fill_btn {
  background-color: #45aa37;
  color: #fff;
}

.filter_modal .rent-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
}

.filter_modal .rent-toggle input[type="radio"] {
  display: none;
}

.filter_modal .rent-toggle label {
  padding: 10px 12px;
  background-color: transparent;
  border: 1px solid #d1d5db;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #1f2937;
  transition: all 0.2s ease;
}

.filter_modal .rent-toggle label:nth-of-type(1) {
  border-top-left-radius: 8px;
  border-right: 0;
  border-bottom: 0;
}

.filter_modal .rent-toggle label:nth-of-type(2) {
  border-top-right-radius: 8px;
  border-bottom: 0;
}

.filter_modal .rent-toggle label:nth-of-type(3) {
  border-bottom-left-radius: 8px;
  border-right: 0;
}

.filter_modal .rent-toggle label:nth-of-type(4) {
  border-bottom-right-radius: 8px;
}

/* .filter_modal .rent-toggle input[type="radio"]:checked + label {
  color: white;
  border-color: #006aff;
  background-color: #006aff;
} */

/* search result css end */

/* Subscription Plans css */

.plan-card {
  border-color: #e5e5e5;
  padding: 10px 10px 30px;
  border-radius: 20px;
  height: 100%;
}

.plan-card .card-header {
  padding: 36px 30px;
  border-radius: 16px;
  background-color: #e5f0ff;
}

.plan-card.acitve .card-header {
  background-color: #006aff;
}

.plan-card .card-header p,
.plan-card .card-body h6 {
  color: #1f2937;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}

.plan-card .card-header h6 {
  font-size: 26px;
  color: #1f2937;
  font-weight: 600;
}

.plan-card.acitve .card-header p,
.plan-card.acitve .card-header h6 {
  color: #fff;
}

.plan-card .card-header h6 span {
  font-size: 18px;
}

.plan-card .card-header .img2,
.plan-card.acitve .card-header .img1,
.listing-list li a .img2,
.listing-list li a.active .img1 {
  display: none;
}

.plan-card.acitve .card-header .img2,
.listing-list li a.active .img2 {
  display: block;
}

.plan-card .card-body {
  padding: 24px 20px 0;
}

.plan-card .card-body .txt {
  font-size: 15px;
  color: #1f2937;
}

.plan-card ul li p {
  font-size: 15px;
}

.get_btn {
  background-color: #45aa37;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  color: #fff;
  padding: 15px 44px;
}

/* Subscription Plans css end */

/* About Us css */
.work-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: 15px;
  box-shadow: rgb(0 0 0 / 13%) 0px 0px 0px 2px,
    rgb(8 8 8 / 15%) 0px 4px 6px -1px, rgb(0 0 0 / 0%) 0px 1px 0px inset;
}

.work-card .icon {
  margin: 6px 0 0 6px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background-color: #13b213;
}

.work-card .icon img {
  width: 40px;
}

.work-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.work-card p {
  color: #777777;
}

/* About Us css end */

/* Blog css */
.post-card {
  height: 100%;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.post-card .card-content {
  padding: 30px 10px 10px;
}

.post-card .card-content .get_btn {
  padding: 13px 28px;
}

/* Blog css end */

/* My Listing css */
.left-side {
  width: 280px;
  background-color: #fff;
  padding: 80px 20px 80px 0;
  border-right: 1px solid #e9eaeb;
}

.right-side {
  padding: 80px 0 100px 60px;
  width: calc(100% - 240px);
}

.listing-list li:not(:last-child) {
  padding-bottom: 4px;
}

.listing-list li a {
  gap: 10px;
  font-size: 16px;
  color: #1f2937;
  font-weight: 400;
  padding: 13px 16px;
  border-radius: 10px;
  white-space: nowrap;
  background-color: transparent;
}

.listing-list li a.active {
  color: #fff;
  font-weight: 500;
  background-color: #006aff;
}

.listing-list li a img {
  width: 20px;
}

.listing-search .select-bx,
.listing-search .search-bx,
.listing-search .clear-btn {
  border-radius: 10px;
}

.listing-search .select-bx {
  padding: 2px 0;
  max-width: 183px;
}

.listing-search .search-bx {
  padding: 2px 2px 2px 16px;
}

.listing-search .search-bx .form-control::placeholder {
  color: #9ca3af;
}

.listing-search .clear-btn {
  padding: 8px 20px;
}

.listing-search .clear-btn i {
  font-size: 17px;
  line-height: normal;
}

.listing_table::-webkit-scrollbar {
  display: none;
}

.listing_table table {
  border-radius: 20px;
  /* overflow: hidden; */
  border: 1px solid #e8e9eb;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 0;
}

.listing_table table tr th,
.listing_table table tr td {
  vertical-align: middle;
  font-size: 14px;
  border-bottom: 1px solid #e8e9eb;
}

.listing_table table tr th {
  color: #1f2937;
  font-weight: 500;
  padding: 14px 20px;
  background-color: #ebebeb;
}

.listing_table table tr td {
  color: #4b5563;
  padding: 20px;
}

.listing_table table tr td a {
  color: #006aff;
}

.listing_table table thead tr:first-child th:first-child {
  border-top-left-radius: 20px;
}

.listing_table table thead tr:first-child th:last-child {
  border-top-right-radius: 20px;
}

.listing_table table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.listing_table table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

.listing_table.my-listing table tbody tr td:nth-child(2),
.listing_table.inbox-table table tbody tr td:nth-child(1) {
  color: #1f2937;
  font-weight: 500;
}

.listing_table.inbox-table table thead tr th:nth-child(3),
.listing_table.inbox-table table tbody tr td:nth-child(3) {
  width: 370px;
  max-width: 370px;
}

.listing_table.inbox-table table .ellipsis-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 2.8em;
  font-size: 14px;
  word-break: break-word;
}

.listing_table table .retailImg {
  border-radius: 6px;
  width: 70px;
  height: 54px;
  object-fit: cover;
}

.listing_table table .listed-btn {
  border: 1px solid #d1d5db;
  color: #1f2937;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  white-space: nowrap;
  background-color: transparent;
}

.listing_table table .status-btn {
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  padding: 7px 15px;
}

.listing_table table .status-btn.active {
  color: #5cc184;
  background-color: #e7f6ed;
}

.listing_table table .status-btn.new {
  color: #006aff;
  background-color: #d9e9ff;
}

.listing_table table .status-btn.closed {
  color: #e33629;
  background-color: #fbe1df;
}

.listing_table table .action-btn {
  border: none;
  color: #1f2937;
  font-size: 22px;
  background-color: transparent;
}

.listing_table .dot-icon,
.listing_table .dropdown-menu .dropdown-item {
  color: #1f2937;
}

.pagination-custom .page-item .page-link {
  box-shadow: none;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  color: #150d31;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-custom .page-item.active .page-link {
  color: #fff;
  font-weight: 600;
  background-color: #006aff;
}

.listing-btn
/* My Listing css end */

/* .add new listing css  */
.property-bx label {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  padding-bottom: 8px;
}

.property-bx .form-control,
.property-bx.custom_select2 .select2-selection {
  color: #150d31;
  border-radius: 12px;
  padding: 13px 20px;
  box-shadow: none;
  border: 1px solid #d1d5db;
  height: auto;
}

.property-bx.custom_select2 .select2-selection {
  padding: 12px 20px;
}

.property-bx.custom_select2 .select2-selection .select2-selection__rendered {
  padding: 0 !important;
}

.property-bx.custom_select2 .select2-selection .select2-selection__arrow {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.property-bx.custom_select2 .select2-selection__clear {
  display: none;
}

.property-bx .form-control::placeholder {
  color: #9ca3af;
}

.property-bx textarea.form-control {
  min-height: 160px;
  resize: none;
}

.property-bx textarea.form-control.textarea-h2 {
  min-height: 200px;
}

.addNewListing .select-check .form-check-label {
  color: #150d31;
}

.get_btn.add {
  padding: 13px 34px;
}

.imageSelect,
.imageSelect2 {
  border-radius: 12px;
  border: 1px dashed #d1d5db;
  background-color: #f6f6f6;
}

.imageSelect {
  min-height: 254px;
}

.imageSelect2 {
  min-height: 144px;
}

.imageSelect img,
.imageSelect2 img {
  width: 40px;
}

.imageSelect p {
  font-size: 14px;
}

.imageSelect .get_btn {
  font-size: 15px;
  padding: 11px 25px;
  border-radius: 10px;
}

.upText p,
.profile-card p {
  font-size: 12px;
}

/* .add new listing css end  */

/* My Profile css */
.myProfile .signInForm label {
  font-size: 14px;
  color: #4b5563;
}

.signInForm .verify-btn {
  background-color: transparent;
  border: none;
  color: #45aa37;
  font-size: 14px;
  font-weight: 500;
}

.signInForm .ft-btn {
  color: #006aff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.profile-card {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #d1d5db;
}

.profile-card .upload-photo {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}

.profile-card h4 {
  color: #150d31;
  font-size: 16px;
  font-weight: 500;
}

.profile-card .get_btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
}

.profile-card p {
  max-width: 87%;
}

.myProfile .aboutText {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
}

.myProfile .aboutText p {
  font-size: 15px;
  color: #1f2937;
}

/* My Profile css end */

/* Team Member css */
.member-card {
  height: 100%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.member-card .memberImg {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.member-card .content p {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
}

.member-card .result_btns {
  flex-wrap: wrap;
}

/* Team Member css end */

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.modal_property .form-group .form-check-label {
  padding-left: 8px;
}

.modal_property .form-group .form-check-input {
  /* width: 20px; */
  height: 25px;
  margin-top: 0;
  box-shadow: none;
}

.property-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.property-description.expanded {
  -webkit-line-clamp: unset;
  /* show full content */
}

.building-section {
  margin-top: 40px;
}

.building-section .title {
  font-weight: 600;
  color: #1e1e1e;
  font-size: 1.5rem;
}

.building-section .subtitle {
  font-weight: 400;
  color: #6c757d;
  font-size: 1rem;
}

.building-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.building-table th {
  background-color: #f8f9fa;
  color: #212529;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.building-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dee2e6;
  color: #212529;
  font-size: 15px;
}

.building-table tr:last-child td {
  border-bottom: none;
}

.building-table tr:hover {
  background-color: #f5f7fa;
}

.building-table th:first-child,
.building-table td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.building-table th:last-child,
.building-table td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.contact-link {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* new css  */

.single-pages .list-bx {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 20px;
}

.single-pages .list-bx p {
  color: #4b5563;
}

.single-pages .list-bx h6 {
  color: #1f2937;
}

.text-fav {
  color: #0d6efd;
  /* same as Bootstrap's text-info blue */
  transition: color 0.3s ease;
}

.text-fav:hover {
  color: #0b5ed7;
  /* darker hover shade */
}

.single-pages .listings_card h3 {
  font-size: 26px;
  color: #1f2937;
  font-weight: bold;
}

.single-pages .list_items li:not(:last-child),
.terms-content-sec .list_items li:not(:last-child) {
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
}

.single-pages .btn_outline {
  padding: 10px 12px;
  border: 1px solid #45aa37;
  border-radius: 12px;
  color: #45aa37;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  width: 100%;
  display: block;
}

.single-pages .sendModal .form-check .form-check-input {
  margin-left: -8px;
}

.policy-banner {
  background: url(../img/hero-section-bg.png), #fff;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 75%;
  min-height: 390px;
}

.single-pages .ft-share i {
  font-size: 20px;
  color: #1f2937;
}

.single-pages .ft-share .social_shares {
  border-radius: 5px;
  padding: 0 10px 10px 10px;
  box-shadow: 0px 0px 2px 0px #00000024;
  position: absolute;
  bottom: 60px;
  background-color: #fff;
}

.single-pages .ft-share .social_shares a {
  background: #006aff;
  width: 38px;
  height: 38px;
  margin: 10px 0px 0px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  max-width: unset;
}

.single-pages .ft-share .social_shares i {
  color: #fff;
}

.terms-content-sec {
  padding: 100px 0;
}

.terms-content-sec h3 {
  font-size: 34px;
  font-weight: 500;
  color: #1f2937;
}

.terms-content-sec p {
  color: #444444;
}

.listed-card .recentImg {
  border-radius: 10px;
  width: 110px;
  min-width: 110px;
  height: 110px;
}

.notification-wrapper {
  position: relative;
}

.notification-count {
  position: absolute;
  top: -6px;
  right: -4px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}

.step-wrapper .step {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #d3cdcd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #e4dfdf;
}

.step-wrapper .step.active {
  color: white;
  border-color: transparent;
  background: #45aa37;
}

.step-wrapper .line {
  flex: 1;
  height: 4px;
  background: #e4dfdf;
}

.step-wrapper .line.active {
  background: #45aa37;
}

.skip-btn {
  color: #45aa37;
  border: 1px solid #45aa37;
  border-radius: 12px;
  padding: 11px 30px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
}


/* vishal css  */

.search_result .property_listings .property-card,
.listings_card {
  border: 2px solid transparent !important;
  transition: border 0.3s ease-in-out;
}

.search_result .property_listings .property-card:hover,
.listings_card:hover {
  border-color: #45aa37 !important;
}

.top_filters .select-bx2 .form-select {
  border: none !important;
}

.form-control:focus {
  box-shadow: none !important;
}

.top_filters .select-bx2 .select2-selection__placeholder {
  color: #1f2937 !important;
  font-size: 16px;
  line-height: 34px;
}

.top_filters .select2-selection__rendered .select-bx2 {
    padding-left: 12px !important;
}

.top_filters .select-bx2 .select2-selection__arrow {
  top: 12px !important;
  right: 12px !important;
  width: 13px !important;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") ;
background-repeat: no-repeat;
}

.top_filters .select-bx2 .select2-selection__arrow b {
  display: none !important;
}