@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("loader.css");

:root {
    --primary: #00614d;
    /* --primary: #5bc2ad; */
    --secondary: #ff8400;
    --grey: #888888;
    --grey-dark: #666;
    /* --light: #f1fffc; */
    --light: #e1ecee;
    --light1: #f4f7f7;
    --black: #252525;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-selection {
    background: var(--primary);
    color: #fff;
}

html {
    /* font-family: 'Rubik', sans-serif !important; */
    font-family: "Noto Sans", sans-serif;
}

body {
    /* font-family: 'Rubik', sans-serif !important; */
    overflow-x: hidden;
    color: var(--black);
    font-size: 16px !important;
    font-family: "Noto Sans", sans-serif;
}

p,
button {
    /* font-family: 'Rubik', sans-serif !important; */
    font-family: "Noto Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: #252525;
    font-weight: 600;
    /* font-family: 'Rubik', sans-serif !important; */
    font-family: "Noto Sans", sans-serif;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Noto Sans", sans-serif;
}

a {
    text-decoration: none;
    font-family: "Noto Sans", sans-serif;
}

.full-img {
    width: 100%;
    /* border-radius: 5px; */
}

.container {
    width: 100%;
    max-width: 1400px;
}

.bg-grey {
    background-color: var(--light1);
}

.header-fixed {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    animation: headerSlideDown 0.95s ease forwards;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -100px;
    }

    100% {
        margin-top: 0;
    }
}

.top-header {
    padding: 5px 0;
    background-color: #f2f2f2;
}

.top-menu {
    text-align: right;
}

.top-menu li {
    display: inline;
    margin-left: 10px;
}

.top-menu li:first-child {
    color: var(--primary) !important;
    font-weight: 400 !important;
}

.top-menu li a {
    color: var(--black);
}

.post-property-now-link {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.post-property-now-link.active {
    color: var(--secondary) !important;
}

.btm-header {
    position: relative;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 85px;
}

.logo img {
    width: 100%;
    /* max-width: 200px; */
    max-width: 170px;
}

.menu {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 85px;
}

.menu li {
    margin: 10px 5px;
    display: inline;
}

.menu li a {
    color: var(--black);
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.4s;
}

.menu li a.active {
    color: var(--secondary);
}

.menu li a:hover {
    color: var(--secondary);
}

.signin-link,
.post-property-link {
    font-weight: 400 !important;
    padding: 8px 15px !important;
    transition: all 0.4s;
    border-radius: 4px;
    border: solid 1px var(--primary);
}

.signin-link {
    color: var(--primary);
}

.signin-link:hover {
    background: var(--primary);
    color: #fff !important;
}

.post-property-link {
    border: solid 1px var(--primary);
    background-color: var(--primary);
    color: #fff !important;
    position: relative;
}

.post-property-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.p-free-text {
    font-weight: 400;
    position: absolute;
    right: 5px;
    top: -20px;
    padding: 3px 7px;
    font-size: 14px;
    overflow: hidden;
    /* position: relative;
    height: 20px;
    width: 50px;
    display: inline-block;
    text-align: center; */
}

.p-free-text::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 250%;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.5) 32%,
        rgba(255, 255, 255, 0.5) 65%,
        rgba(255, 255, 255, 0.15449929971988796) 100%
    );
    left: 0;
    top: -10px;
    animation: rotate 2s linear infinite;
    z-index: 1;
    transform: rotate(40deg);
}

@keyframes rotate {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.main-banner {
    width: 100%;
    position: relative;
    /* min-height: 340px; */
    min-height: 360px;

    /* min-height: 600px; */
}

.main-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background: url("../images/main-banner.jpg") repeat-x;
    background-size: cover;
    animation: scroll-anim 150s linear infinite;
}

@keyframes scroll-anim {
    100% {
        background-position: -100% 0;
    }
}

.banner-img {
    width: 100%;
    max-width: 340px;
    opacity: 0.9;
}

.main-banner h1 {
    font-size: 32px;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    /* font-weight: 400; */
    font-weight: 800;
    /*color: #fff;*/
}

.main-banner h1 span {
    /* font-size: 16px; */
    /* display: block; */
    /* font-weight: 400; */
    color: var(--secondary);
    /* padding-top: 10px; */
}

.main-search {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    /* z-index: 99999; */
}

.s-menu {
    text-align: left;
    margin-top: 15px;
    width: 100%;
    /*background-color: rgba(255, 255, 255, 0.2);*/
     background-color: rgba(0, 0, 0, 0.6); 
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.s-menu li {
    margin: 10px 5px;
    display: inline;
}

.s-menu li a {
    padding: 7px 15px;
    transition: all ease-in-out 300ms;
    display: inline-block;
    border: solid 0px #ccc;
    border-radius: 4px;
    /* color: var(--black); */
    color: #fff;
}

.s-menu li a:hover {
    color: var(--secondary);
}

.s-menu li a.active {
    background: var(--secondary);
    color: #fff;
}

.search-content {
    width: 100%;
    min-height: 150px;
    background: rgba(255, 255, 255, 1);
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    border-radius: 0 0 10px 10px;
    position: absolute;
}

.input-search {
    width: 100%;
    padding: 10px 10px;
    border: solid 1px var(--light);
    border-radius: 5px;
    outline: none;
    transition: all 0.4s;
}

.input-search:focus {
    border: solid 1px var(--black);
}

.input-search-btn {
    width: 100%;
    padding: 10px 10px;
    border: solid 1px #e8e8e8;
    background: var(--primary);
    border-radius: 5px;
    outline: none;
    transition: all 0.4s;
    color: #fff;
}

.input-search-btn:hover {
    background: var(--secondary);
}

.p-search-list {
    text-align: left;
    padding-top: 20px;
}

.p-search-list li {
    display: inline;
    margin: 2px;
    color: var(--grey);
    font-size: 16px;
}

.p-search-list li a {
    padding: 5px 8px;
    background-color: var(--light);
    color: var(--grey);
    border-radius: 3px;
    transition: all 0.4s;
    font-weight: 300;
}

.p-search-list li a:hover {
    background-color: var(--primary);
    color: #fff;
}

.inner-sec {
    padding: 50px 0;
}

.title span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}

.title h1 {
    /* font-size: 22px; */
    font-size: 20px;
    margin-top: 5px;
}

.property-list {
    background: #fff;
    border: solid 1px var(--light);
    margin-bottom: 30px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transition: all 0.4s;
    border-radius: 10px 10px 10px 10px;
    /* padding: 5px; */
    overflow: hidden;
    /* position: relative; */
}

.property-list:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 10px;
}

/* .slick-slide {
    margin: 0 2px;
} */

.property-img {
    width: 99%;
    height: 250px;
    /* position: relative; */
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.property-list-gallery .property-img {
    width: 100%;
    height: 300px;
    border-radius: 10px 10px 10px 10px !important;
    overflow: hidden;
}

.property-list-gallery .property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px !important;
    cursor: pointer;
}

.property-list-gallery .property-list {
    border: none;
    box-shadow: none;
}

/* .property-img-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
    top: 0;
    left: 0;
} */

.property-img-cont-txt {
    /* margin-top: 15px;
    margin-right: 15px; */
    position: absolute;
    text-align: right;
    top: 30px;
    right: 25px;
}

.property-img-cont-txt span {
    padding: 5px 10px;
    border-radius: 3px;
}

.for-sale {
    background-color: #1abe6c;
    color: #fff;
    font-size: 16px;
}

.for-rent {
    background-color: #e42727;
    color: #fff;
    font-size: 16px;
}

.property-cont {
    /* min-height: 155px; */
    /* padding: 15px 15px 25px 15px; */
    padding: 15px 15px 10px 15px;
    min-height: 130px;
}

.property-cont h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.property-cont h1:last-child {
    color: var(--black);
}

.property-cont h2 {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    position: relative;
    padding-left: 20px;
}

.property-cont h2 i {
    position: absolute;
    left: 0;
    top: 3px;
}

.link-btn {
    padding: 10px 30px;
    border-radius: 4px;
    background-color: var(--primary);
    color: #fff;
    transition: all 0.4s;
    outline: none;
    border: none;
}

.link-btn:hover {
    background-color: var(--secondary);
    color: #fff;
}

.link-btn-sm {
    padding: 6px 15px;
    color: var(--primary);
    /* background-color: #fff; */
    border: solid 1px var(--primary);
    border-radius: 4px;
    transition: all 0.4s;
}

.link-btn-sm:hover {
    background-color: var(--primary) !important;
    color: #fff;
}

.h-block {
    width: 100%;
    text-align: center;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    background-color: #fff;
    border: solid 1px var(--light1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-bottom: solid 4px var(--primary);
}

.h-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e1ecee5c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.h-icon img {
    width: 100%;
    max-width: 60px;
    opacity: 0.6;
}

.h-block h1 {
    font-size: 18px;
    margin-top: 30px;
}

.tc-block {
    width: 100%;
    height: 350px;
    position: relative;
    margin-bottom: 30px;
}

.tc-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-cont {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(193, 95, 86, 0) 80%
    );
    color: #fff;
}

.tc-cont-inner {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 15px;
}

.tc-cont-inner h1 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.tc-cont-inner h1 span {
    font-size: 14px;
    display: block;
    font-weight: 300;
    padding-top: 5px;
}

.explore-btn {
    border: solid 1px #fff;
    color: #fff;
}

.explore-btn:hover {
    background: var(--secondary);
    color: #fff;
    border: solid 1px var(--secondary);
}

footer {
    padding: 40px 0 10px 0;
    /* background-color: var(--light1); */
    border-top: solid 1px #e8e8e8;
    /* background-color: #fcfcfc; */
}

footer h4 {
    font-size: 22px;
}

.f-links {
    margin-top: 10px;
}

.f-links li {
    margin-bottom: 5px;
    font-weight: 400;
}

.f-links li a {
    color: var(--grey);
    transition: all 0.4s;
    font-weight: 400;
}

.f-links li a:hover {
    color: var(--secondary);
}

.btm-footer {
    padding-top: 10px;
    border-top: solid 1px #e8e8e8;
    margin-top: 20px;
    color: var(--grey);
    font-weight: 400;
}

.f-social li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    color: var(--grey);
    font-weight: 400;
}

.f-social li a {
    font-size: 24px;
    color: var(--grey);
    transition: all 0.4s;
}

.f-social li a:hover {
    color: var(--secondary);
}

/*--- Register Page css ----*/
.reg-sec {
    width: 100%;
    height: 100%;
    /* background: url(../images/register-bg2.jpg) no-repeat center;
    background-size: cover; */
    background-color: var(--light);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
}

.reg-logo {
    width: 100%;
    max-width: 220px;
    margin-top: 2vh;
}

.reg-container {
    width: 100%;
    min-height: 600px;
    border-radius: 10px;
    margin-top: 5vh;
    background: #fff;
    display: flex;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.reg-left-cont {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    padding: 30px;
    position: relative;
    border-radius: 10px 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.reg-left-cont h1 {
    margin-bottom: 40px;
    text-align: center;
    display: block;
    width: 100%;
}

.reg-left-cont h2 {
    font-size: 20px;
    text-align: left;
    font-weight: 600;
}

.reg-left-cont p {
    margin-top: 20px;
    text-align: left;
}

.reg-right-cont {
    width: 100%;
    height: 100%;
    /* padding: 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reg-right-cont h1 {
    color: var(--secondary);
    font-size: 30px;
}

.reg-right-cont p {
    font-size: 16px;
    margin-top: 2px;
}

.reg-form {
    width: 100%;
    /* min-height: 300px; */
    border: solid 0px #ccc;
    margin: 7px auto 20px auto;
    padding: 10px;
}

.reg-form a {
    color: var(--secondary);
}

.form-floating {
    margin-bottom: 25px;
}

.reg-form .form-control {
    border: solid 1px #ccc;
    transition: all 0.4s;
}

.reg-form .form-control:focus {
    box-shadow: none;
    border: solid 1px var(--secondary);
}

.form-control:focus {
    box-shadow: none !important;
}

.form-control {
    font-size: 16px;
}

.btn-submit {
    padding: 5px 25px;
    outline: none;
    border: solid 1px var(--primary);
    color: #fff;
    background: var(--primary);
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.4s;
    box-shadow: 0 1px 5px 1px rgba(0, 97, 77, 0.5);
}

.btn-submit:hover {
    border: solid 1px var(--secondary);
    background: var(--secondary);
    box-shadow: 0 1px 5px 1px rgba(255, 132, 0, 0.5);
}

.password-btn {
    position: relative;
    width: 100%;
}

.password-btn span {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    cursor: pointer;
}

.password-btn span i {
    color: #ccc;
}

.icon-color i {
    color: #1abe6c !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.65) translateY(-0.5rem) translateX(0.15rem);
}

/*--- End Register Page css ----*/

/*==== Inner page css =====*/

.inner-banner {
    width: 100%;
    position: relative;
    padding: 20px 0;
    background-color: var(--light);
}

.inner-banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner h1 {
    font-size: 26px;
}

.sidebar {
    width: 100%;
    padding: 20px;
    min-height: 400px;
    border-radius: 10px;
    background-color: #fff;
    border: solid 1px var(--light);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 20px;
}

.sidebar h4 {
    font-size: 20px;
    font-weight: 400;
    display: inline;
    border-bottom: solid 1px var(--primary);
}

.sidebar .form-group {
    margin-bottom: 15px;
}

.sidebar .nice-select {
    color: var(--grey-dark);
}

.sidebar .form-select {
    color: var(--grey-dark);
}

.search-button-filter {
    /* padding: 5px 20px; */
    border-radius: 4px;
    background-color: var(--secondary);
    color: #fff;
    transition: all 0.4s;
    outline: none;
    border: none;
    width: 100%;
    height: 41px;
    margin-top: 5px;
}

.search-button-filter:hover {
    background-color: var(--primary);
}

.filter-list {
    margin-top: 20px;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list li a {
    color: var(--grey-dark);
    font-size: 16px;
    transition: all 0.3s;
}

.filter-list li a:hover {
    color: var(--secondary);
}

.property-list-row .property-img {
    height: 280px !important;
}

.property-list-row .property-cont h1 {
    font-size: 16px;
}

.form-bg {
    width: 100%;
    padding: 20px 40px 100px 40px;
    /* background-color: #fff; */
    background-color: var(--light1);
    border-radius: 10px;
    border: solid 1px var(--light);
    position: relative;
}

.form-bg label {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 5px;
    color: #555;
}

.form-bg .form-select {
    height: 42px !important;
    border: 1px solid #e8e8e8;
    border-radius: 5px !important;
}

.form-bg .form-control {
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    height: 42px !important;
    font-size: 16px;
}

.form-bg textarea {
    height: inherit;
    min-height: 120px;
    width: 100%;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    padding: 10px;
}

.form-bg textarea:focus {
    border: 1px solid #b7b7b7;
}

.form-bg .form-control:focus {
    border: 1px solid #b7b7b7;
    box-shadow: none;
}

.form-cont label {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 5px;
    color: #555;
}

.form-cont .form-select {
    height: 42px !important;
    border: 1px solid #e8e8e8;
    border-radius: 5px !important;
}

.form-cont .form-control {
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    height: 42px !important;
    font-size: 16px;
}

.form-cont .form-control:focus {
    border: 1px solid #b7b7b7;
    box-shadow: none;
}

/* #sale {
    opacity: 0;
    visibility: hidden;
} */

.show-form {
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.5s;
}

/*=== Check Box ====*/

.switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 52px;
}

.switch input {
    display: none;
}

.check-slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
}

.check-slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 18px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 18px;
}

input:checked + .check-slider {
    background-color: #66bb6a;
}

input:checked + .check-slider:before {
    transform: translateX(26px);
}

.check-slider.round {
    border-radius: 34px;
}

.check-slider.round:before {
    border-radius: 50%;
}

/*=== End Check Box====*/

/*=== Radio Buttons ====*/

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.f16 {
    font-size: 16px;
}

/*=== End Radio Buttons ===*/

.post-box {
    width: 100%;
    min-height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--light);
    /* background-color: var(--light1); */
    background-color: #fff;
    flex-direction: column;
    border-radius: 4px;
    transition: all 0.4s;
    padding: 10px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.post-box img {
    width: 100%;
    max-width: 70px;
    margin-bottom: 20px;
    opacity: 0.5;
    transition: all 0.4s;
}

.post-box h2 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 400;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.4s;
}

.post-box:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
}

.post-box:hover h2 {
    color: var(--secondary);
}

.post-box:hover img {
    opacity: 0.8;
}

.row-sec {
    padding: 15px;
    border: solid 1px var(--light);
    margin-top: 10px;
    margin-bottom: 50px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    background-color: #fff;
}

.row-sec h5 {
    font-weight: 400;
    color: #1abe6c;
    font-size: 17px;
    font-weight: 600;
}

/* #property_details, #property_extra_details {
    display: none;
} */

.show-row-sec {
    display: block !important;
}

.hide-row-sec {
    display: none;
}

.removed-class {
    display: none;
}

.ck-file-dialog-button {
    display: none !important;
}

.ck-content {
    min-height: 150px;
}

.progress-bar {
    font-size: 16px !important;
}

.form-control[type="file"] {
    height: inherit !important;
}

.progress-main {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 25px 10px 20px;
    /* background-color: rgba(255, 255, 255, 1); */
    /* background-color: var(--primary); */
    /* box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px; */
    z-index: 100;
    /* border-top: solid 1px #f0f0f0; */
    /* color: #fff; */
}

.form-select {
    font-size: 16px;
}

.dashboard-bg {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border: solid 1px var(--light);
    position: relative;
    min-height: 400px;
}

.profile-img {
    width: 100%;
    text-align: center;
}

.profile-img img {
    width: 100%;
    max-width: 160px;
    margin: auto;
}

.profile-img li {
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
}

.profile-list {
    margin-top: 40px;
}

.profile-list li {
    border-bottom: solid 1px #f0f0f0;
}

.profile-list li a {
    color: var(--black);
    padding: 10px;
    display: block;
    transition: all 0.4s;
}

.profile-list li a:hover {
    padding-left: 15px;
    color: var(--secondary);
}

.tooltip-inner {
    font-size: 16px;
}

.view-links {
    text-align: right;
}

.view-links li {
    display: inline;
    margin-right: 10px;
}

/* .ck-editor__editable {
    padding-left: 30px !important;
    padding-right: 30px !important;
  } */

.ck-editor__editable ul li {
    list-style-type: disc !important;
}

.ck-editor__editable ol li {
    list-style-type: auto !important;
}

.gal-images {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 15px 0px 15px;
    box-shadow: 0 0 5px #d5d5d5;
    transition: all 0.3s;
}

.gal-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: solid 1px #ccc;
    margin-bottom: 4px;
}

.edit-img {
    width: 100%;
    max-width: 200px;
    object-fit: cover;
}

.am-list {
    /* text-align: center; */
    margin-bottom: 10px;
}

.am-list li {
    display: inline;
    /* text-align: center; */
    font-size: 16px;
}

/* 
.am-list li img {} */

.am-list li:nth-child(3) {
    display: block;
    margin-top: 10px;
}

.fur-list li {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 30px;
    color: #666 !important;
    font-weight: 400;
}

.pending-popover {
    /* --bs-popover-max-width: 200px; */
    --bs-popover-border-color: var(--light);
    --bs-popover-header-bg: var(--bs-warning);
    --bs-popover-header-color: var(--bs-white);
    /* --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem; */
}

.approved-popover {
    --bs-popover-border-color: var(--light);
    --bs-popover-header-bg: var(--bs-success);
    --bs-popover-header-color: var(--bs-white);
}

.rejected-popover {
    --bs-popover-border-color: var(--light);
    --bs-popover-header-bg: var(--bs-danger);
    --bs-popover-header-color: var(--bs-white);
}

.text-red {
    color: red;
}

.preload {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    padding: 50px;
    text-align: center;
    padding-top: 100px;
}

/*==== Property Details css =====*/

.p-main-block {
    width: 100%;
    background-color: #fff;
    /* min-height: 300px; */
    padding: 20px;
    border-radius: 10px;
    /* margin-top: 45px; */
    border: solid 1px var(--light);
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.p-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

.p-price {
    font-weight: 600;
    font-size: 20px;
    color: var(--secondary);
}

.p-main-block h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 20px;
}

/* .p-main-block li {
    font-size: 17px;
} */

.p-main-block li span {
    display: block;
    color: var(--grey);
}

.tab-wrapper {
    display: block;
    width: 100%;
}

.tabs {
    width: 100%;
    border-bottom: solid 1px #e8e8e8;
    padding-bottom: 7px;
}

.tabs li {
    display: inline;
}

.tab-link {
    list-style: none;
    padding: 10px 20px;
    color: #555 !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all ease 0.5s;
    border-bottom: solid 1px rgba(255, 255, 255, 0);
}

.tab-link.active {
    color: #333;
    border-color: #333;
}

.tab-link.active {
    color: var(--primary) !important;
    border-color: var(--primary);
}

.content-wrapper {
    padding: 15px;
}

.tab-content {
    display: none;
    /* color: #666;
    font-size: 16px; */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

/*==== Gallery Slider =====*/
.gallery_img {
    width: 100%;
    /* height: 600px; */
    height: 300px;
    object-fit: cover;
    /* padding: 0 5px 0 5px; */
    cursor: pointer;
}

.gallery_img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.slider-gal .slick-prev:before,
.slider-vertical .slick-next:before {
    display: none;
}

.slider-thumb div {
    /* height: 90px; */
    height: 60px;
    cursor: pointer;
    display: none;
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
    opacity: 0.6;
}

.slider-thumb .slick-slide.slick-current img {
    opacity: 1;
}

/*==== End Property Details css =====*/

.list-detail li {
    font-size: 16px !important;
    color: #666 !important;
}

.list-detail li img {
    width: 28px;
}

.pr-details li span {
    display: inline !important;
}

.f-16 {
    font-size: 16px;
}

.f-14 {
    font-size: 16px;
    font-weight: 600;
}

.round-img {
    border-radius: 100%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

#loadingMessage {
    display: none;
}

/* .mh-180 {
    min-height: 185px;
} */

.terms-content {
    margin-bottom: 3rem;
}

.terms-content h4,
.terms-content h5 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-content p,
.terms-content li {
    color: #666;
    line-height: 24px;
    font-size: 16px;
}

.terms-content a {
    color: var(--secondary);
}

.terms-content li {
    margin-bottom: 6px;
}

.make-offer {
    cursor: pointer;
}

#show-offer {
    display: none;
}

.show-offer {
    display: block !important;
}

/* .my-properties.sorting_asc {
    display: none !important;
} */

.ud-logo-img {
    width: 100%;
    max-width: 200px;
}

.ud-content h2 {
    font-weight: 300;
    color: #fff;
}

.ud-content p {
    color: #fff;
    padding-top: 10px;
    font-weight: 300;
}

.ud-content .link-btn-sm {
    color: #f9ba7c;
    border-color: #f9ba7c;
}

.ud-content .link-btn-sm:hover {
    color: #fff;
    background: #f9ba7c !important;
}

.full-img-ud {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.ud-inner-cont h3 {
    margin-bottom: 25px;
    font-weight: 400;
}

.ud-inner-cont h4 {
    margin-bottom: 20px;
    font-weight: 300;
}

.ud-inner-cont h4 small {
    font-size: 15px;
}

.about-property h5 {
    color: #444;
    font-size: 18px;
    font-weight: 600;
}

.about-property ul {
    padding-left: 20px;
    margin-top: 15px;
}

.about-property li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.about-property li::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    content: "";
}

#login_modal {
    z-index: 999999;
}

.ck-editor__editable_inline {
    padding: 0 30px !important;
}

.hidden {
    display: none;
}

.brd-top {
    border-top: solid 1px #f0f0f0;
}

#tabs .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
#tabs .show {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.ad-search {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px #d5d5d5;
    border-radius: 10px;
    padding: 20px;
    min-height: 100px;
    /* margin-bottom: 20px; */
    /* display: none; */
}

.ad-search-show {
    display: block;
}

.filter {
    cursor: pointer;
}

.ad-search .form-select {
    height: 42px !important;
    border: solid 1px #e8e8e8 !important;
}

.ad-search .form-select.show {
    border: solid 1px #b7b7b7 !important;
}

.ad-search label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #666;
}

.img-count {
    position: absolute;
    left: 10px;
    bottom: 110px;
    padding: 3px 10px;
    background: #333;
    color: #fff;
    border-radius: 0px 0 0px 5px;
    font-size: 14px;
}

.blog-cont {
    border: solid 1px #e8e8e8;
    border-radius: 10px;
    transition: all 0.4s;
    margin-bottom: 20px;
}

.blog-img {
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 270px;
    /* object-fit: cover; */
    border-radius: 10px 10px 0 0;
    transition: all 0.8s;
}

.blog-cont:hover .blog-img img {
    transform: scale(1.1);
}

.blog-cont:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-inner-cont {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    min-height: 235px;
}

.blog-inner-cont h1 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-inner-cont p {
    font-size: 18px;
}

.blog-inner-cont a {
    color: var(--black);
}

.blog-link {
    margin-top: 15px;
}

.blog-link a {
    color: var(--primary);
    transition: all 0.4s;
}

.blog-link a:hover {
    padding-left: 5px;
}

.blog-view-all-btn {
    padding: 8px 15px;
    border: solid 1px var(--primary);
    color: var(--primary);
    border-radius: 4px;
    transition: all 0.4s;
}

.blog-view-all-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.blog-details p {
    color: var(--grey-dark);
    font-size: 17px;
}

.blog-details h1 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.blog-details h4,
.blog-details h3,
.blog-details h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #444444;
}

.blog-recent-post {
    padding: 20px;
    border: solid 1px #e8e8e8;
    border-radius: 10px;
    background-color: #fff;
}

.blog-recent-post ul {
    margin-top: 20px;
}

.blog-recent-post ul li {
    border-bottom: solid 1px #f0f0f0;
}

.blog-recent-post ul li:last-child {
    border-bottom: none;
}

.blog-recent-post ul li a {
    padding: 8px 10px;
    transition: all 0.4s;
    color: var(--black);
    display: block;
}

.blog-recent-post ul li a:hover {
    color: var(--primary);
    padding-left: 15px;
}

.list2 {
    margin-top: 10px;
    margin-bottom: 25px;
}

.list2 li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.list2 li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
}

.c-list {
    margin-top: 20px;
    padding: 5px 15px;
}

.c-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.c-list li i {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 20px;
    color: var(--primary);
}

.google-button {
    transition: all 0.4s;
}

.google-button:hover {
    transform: translateY(-3px);
}

.text-view {
    font-size: 14px;
    color: #777777;
}

.text-view small {
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}

.form-bg input::placeholder {
    color: #b5b5b5;
}

.map iframe{
  width: 100% !important;
}

.rera_sec {
    position: absolute;
    z-index: 99;
    top: 25px;
    right: 20px;
    
}

.rera_sec span {
    padding: 5px 10px;
    font-size: 14px !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* background-color: var(--secondary) !important;
    color: #000 !important; */
    /* background-color: #fff !important;
    color: #000 !important; */
}

.rera_sec span i {
    font-size: 16px;
}

.youtube_iframe iframe {
    width: 100% !important;
}

.signup-content {
    width: 100%;
    padding: 5px;
    /* background-color: #f5f5f5; */
    /* border: solid 1px #d5d5d5;
    border-radius: 10px; */
}

.signup-content p {
    font-size: 14px;
    color: #333;
}

.signup-content p a {
    color: var(--primary);
}

.login-content {
    padding: 10px;
    border: solid 1px #ccc;
    background: #f3f3f3;
    border-radius: 5px;
}

.singup-close {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 100;
}

.featured-list {
    width: 100%;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 5px #d5d5d5;
    border-radius: 10px;
}

.featured-list .property-img {
    border-radius: 0;
    width: 100%;
    height: 400px;
}

.featured-list .property-img img {
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.featured-item .slick-slide {
    margin: 0 10px !important; /* Adjust the gap as needed */
  }

.featured-item {
    margin: 0 -10px; /* Same as the margin you gave to .slick-slide */
  }

.featured-item .slick-dots {
    left: 0;
    bottom: -10px;
}

.featured-item .slick-dots li button {
    background: #999;
}

.featured-item .slick-dots li button:before {
    display: none;
}

.featured-item .slick-dots li {
    margin: 0;
}

.featured-item .slick-prev {
    left: 25px;
    opacity: 1;
    top: 40%;
}

.featured-item .slick-next {
    right: 25px;
    opacity: 1;
    top: 40%;
}

.featured-item .slick-prev:before, .featured-item .slick-next:before {
    font-size: 30px;
}