.modal {
    --bs-modal-inner-border-radius: calc(0.75rem - 3px) !important;
    --bs-modal-border-radius: 0.75rem !important;
}
:root {
    --head-color: #5c7677;
    --head-color-link: #fd5f54;
    --font-size-medium: 16px !important;
    --font-weight: 500;
    --main-bg-color: #5c7677;
    --main-color: #fd5f54;
    --main-dark-blue: rgb(71, 84, 103);
}
.btn-main,.btn-main:hover {
    background: #fd5f54;
    box-shadow: 0 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    color: #ffffff;
}
.btn-outline-main,.btn-outline-main:hover {
    background: #fff;
    border: 1px solid #febfbb;
    box-shadow: 0 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    color: #fd5f54;
}
.btn-main-dark-blue,.btn-main-dark-blue:hover {
    background: var(--main-dark-blue);
    box-shadow: 0 19px 17px -6px rgb(53, 60, 71);
    border-radius: 8px;
    color: #ffffff;
}
.btn-outline-main-dark-blue,.btn-outline-main-dark-blue:hover {
    background: #fff;
    border: 1px solid rgba(71, 84, 103, 0.88);
    box-shadow: 0 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    color: var(--main-dark-blue);
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--head-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loader {
    border: 5px solid rgb(255, 255, 255);
    border-radius: 50%;
    border-top: 4px solid var(--head-color-link);
    /* Change the color to your preference */
    width: 50px;
    height: 50px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #fd5f54 !important;
    --bs-btn-border-color: #fd5f54 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #da5048 !important;
    --bs-btn-hover-border-color: #da5048 !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #fd5f54 !important;
    --bs-btn-active-border-color: #da5048 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #fd5f54 !important;
    --bs-btn-disabled-border-color: #fd5f54 !important;
}

.text-main {
    color: #fd5f54 !important;
}

.text-main:hover {
    color: #a73c35 !important;
}

.btn-outline-primary {
    --bs-btn-color: #fd5f54;
    --bs-btn-border-color: #fd5f54;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #fd5f54;
    --bs-btn-hover-border-color: #fd5f54;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #fd5f54;
    --bs-btn-active-border-color: #fd5f54;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fd5f54;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fd5f54;
    --bs-gradient: none;
}

.cursor-pointer {
    cursor: pointer;
}

.tooltip, .tooltip-inner {
    z-index: 1055 !important; /* Adjust the value as needed */
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

/*  */
*:not(i) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "dana" !important;
}

i {
    font-family: FontAwesome;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f2f6f6;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #7a9d9f;
}

/* ******start navbar-custome****** */
#navbar-custome {
    background: #fff !important;
    direction: rtl;
}

#navbar-custome .navbar-brand img {
    width: 5em;
    height: 4em;
}

#navbar-custome .nav-item {
    margin-right: 1em;
}

#navbar-custome .nav-link {
    font-family: "dana";
    font-weight: 400;
    font-size: 1rem;
    color: #3d4f50;
}

#navbar-custome .nav-link:hover:not(.active) {
    /* border-bottom: 4px solid #FD5F54; */
    animation: border_bottom .4s linear forwards;
    /*padding-bottom: 8px;*/
}

@keyframes border_bottom {
    0% {
        border-bottom: 1px solid transparent;
    }

    100% {
        border-bottom: 1px solid #000000;
    }
}

#navbar-custome .nav-link.active {
    color: #fd5f54;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #fd5f54;
}

.img_dropdown_menu {
    width: 7px;
    height: 7px;
}

.dropdown-toggle::after {
    vertical-align: middle;
}

.flex-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.inline-flex-center {
    display: inline !important;
    justify-content: center !important;
    align-items: center !important;
}

.nav-btn {
    display: flex;
}

.personalBox {
    border-radius: 5px;
}

.img_arrow_read_more {
    width: 1rem;
    transform: rotate(90deg);
}

.parent_section_read_more span {
    font-size: .9rem !important;
}

.span_title_blog_cards_in_home_page {
    font-weight: 800;
    font-size: 1.2rem !important;
    color: #3d4f50;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    background: #fff;
    text-align: right;
}


.btn-login-home,
.btn-login-home:hover {
    background: #f2f6f6;
    border: 1px solid #febfbb;
    box-shadow: 0px 21px 17px -9px rgba(56, 56, 56, 0.25);
    border-radius: 8px;
    font-weight: var(--font-weight);
    font-size: 1.1rem;
    color: #fd5f54;
    padding: 0.2em 1em;
}

.btn-signin .btn,
.btn-signin .btn:hover,
.btn-signin .btn:focus,
.btn-signin .btn:active {
    background: #f2f6f6;
    border: 1px solid #febfbb;
    box-shadow: 0px 21px 17px -9px rgba(56, 56, 56, 0.25);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #fd5f54;
}

.btn-signin .dropdown-menu {
    text-align: right !important;
    background: #ffdfdd;
    box-shadow: 0px 21px 17px -9px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border-color: transparent;
}

.btn-signin .dropdown-item {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    color: #fd5f54;
    display: flex;
    align-items: center !important;
}

.btn-signin .dropdown-item:active {
    background-color: var(--bs-dropdown-link-hover-bg);
}

.btn-login-responsive {
    display: none;
    background: transparent;
}

.search-box,
.search-box-responsive {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin-left: 1em;
}

.search-box-responsive {
    display: none;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    outline: none;
    border-radius: 25px;
    text-align: right;
    direction: rtl;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    padding-right: 40px;
    color: #3d4f50;
}

.input-search::placeholder {
    color: #3d4f50;
    font-size: 18px;
    font-weight: 100;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    /* color:#ffffff ; */
    background-color: transparent;
    pointer-events: painted;
}

.btn-search:focus ~ .input-search {
    width: 300px;
    background-color: #f2f6f6;
    border: 1px solid #febfbb;
    box-shadow: 0px 21px 17px -9px rgba(56, 56, 56, 0.25);
    border-radius: 8px;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.input-search:focus {
    width: 300px;
    border-radius: 0px;
    background-color: #f2f6f6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.btn-search:focus {
    border: none;
    box-shadow: none;
}

/* ******start  banner****** */
.direction {
    direction: rtl;
}

.banner img {
    width: 100%;
}

.banner-property {
    text-align: center;
}

.banner-property img {
    width: 24em;
    margin-top: -5em;
}

.banner-txt {
    font-weight: 900;
    font-size: 1.75rem;
    margin-right: 0;
    margin-left: 0;
    margin: 3em auto 1em;
}

/*.banner-property-row {*/
/*    flex-direction: column-reverse;*/
/*}*/
/*.btn-property-filter {*/
/*    display: none;*/
/*}*/

.banner-txt span {
    color: #fd5f54;
}

/* ******start property search****** */
.property-search {
    background: rgba(242, 246, 246, 0.5);
    border: 1px solid #5c7677;
    border-radius: 16px;
    padding: 1em;
    width: 90%;
    margin: 5em auto;
}

.property-search-titr {
    font-weight: 700;
    font-size: 1.25rem;
    color: #3d4f50;
    text-align: center;
}

.property-search-titr2 {
    font-weight: 500;
    font-size: 1rem;
    color: #3d4f50;
    text-align: center;
    line-height: 3rem;
}

.property-search .nav-link {
    background: #f2f6f6;
    border: 1px solid #febfbb;
    box-shadow: 0px 21px 17px -9px rgba(56, 56, 56, 0.25);
    border-radius: 8px 8px 0px 0px;
    color: #fd5f54;
    font-weight: 600;
    font-size: 1.1rem;
}

.property-search .nav-link.active {
    background: #fd5f54;
}

.FilterMelk_Active {
    background-color: #fd5f54 !important;
    color: white !important;
}

.pills-content {
    display: flex;
}

.pills-home-input {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #fd7f7695;
    border-radius: 8px;
    padding: 0.5em;
    width: 88%;
}

.pills-home-pc {
    display: flex;
}

.pills-home-responsive {
    display: none;
}

.btn-list-map {
    text-align: center;
    display: none;
    margin-top: 1em;
}

.btn-map,
.btn-map:hover {
    background: #fd5f54;
    box-shadow: 0px 7.30769px 6.53846px -2.30769px rgba(190, 71, 63, 0.47);
    border-radius: 3.07692px;
    color: #ffffff;
    font-weight: 600;
    font-size: 9.32361px;
}

.btn-list {
    color: #fd5f54;
    font-weight: 600;
    font-size: 9.32361px;
    box-shadow: 0px 7.30769px 6.53846px -2.30769px rgba(190, 71, 63, 0.47);
    border-radius: 3.07692px;
}

.btn-toggle-props {
    color: #fd5f54;
    border: 1px solid #fd5f54;
    font-weight: 600;
    font-size: 9.32361px;
    box-shadow: 0px 7.30769px 6.53846px -2.30769px rgba(190, 71, 63, 0.47);
    border-radius: 3.07692px;
}

.btn-toggle-props.active:hover {
    color: white !important;
    font-weight: 600 !important;
    border: none !important;
}

.btn-toggle-props.active {
    border: 0;
    color: white;
    background: #fd5f54;
}

.btn-toggle-props:hover {
    color: #fd5f54 !important;
    border: 1px solid #fd5f54 !important;
}

.pills-content input,
.pills-content select {
    border-bottom: none;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    background: #f5f5f5;
}

.docs {
    display: block !important;
}

.pills-content select:not([name='room_quantity']) {
    border-left: 1px solid #fd5f54;
}

.pills-content input:not(:last-child) {
    border-left: 1px solid #fd5f54;
}

.section_filter {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    border-radius: 12px;
    padding: .75rem;
    margin-top: 2rem;
}

.pills-content input:focus,
.pills-content select:focus {
    box-shadow: none;
}

.btn-property-search,
.btn-property-search:hover {
    background: #fd5f54 !important;
    box-shadow: none !important;
    border-radius: 8px;
    /* margin: 0 0.5em; */
}

.btn-property-location,
.btn-property-location:hover {
    background: #5c7677;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    /* margin: 0 0.5em; */
}

.btn-property-location.is-active {
    background: #fd5f54 !important;
}

.btn-property-filter,
.btn-property-filter:hover {
    background: #f2f6f6;
    border: 2px solid #fd5f54;
    box-shadow: 0px 21px 17px -9px rgba(56, 56, 56, 0.25);
    border-radius: 8px;
}

#filterModal {
    margin-top: -6.3rem;
}

#filterModal .btn-close {
    background: #f2f6f6;
    border: 0.380556px solid #fd5f54;
    box-shadow: 0px 7.99167px 6.46944px -3.425px rgb(56 56 56 / 25%);
    border-radius: 3.04444px;
    color: #fd5f54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    font-weight: bold;
}
.image-preview-js{
    min-width: 200px !important;
}
.form-label:has(img, i),label:has(img, i) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.form-filter {
    border: 2px solid #fd7f7695;
    border-radius: 8px 8px 8px 8px;
    padding: 1em;
}

.select2-selection__placeholder {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.select2 .selection, .select2-selection {
    max-width: 100% !important;
}

.form-filter input,
.form-filter select,
.form-filter .select2-selection {
    background: #f5f5f5;
    border: 0.761111px solid #fd7f76 !important;
    border-radius: 3.04444px !important;
    direction: rtl !important;
    width: 100%;
}

.form-filter .select2-search__field {
    padding-right: 2.25rem !important;
}

.form-filter .select2-container {
    width: 100% !important;
}

.splide__pagination {
    background: #000;
    width: fit-content;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: auto !important;
    border-radius: 5px;
    padding: 0.35rem;
}


.form-filter select,
.pills-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f5f5f5 url("../img/icon/dd.svg");
    background-size: 10px;
    background-position: 20px;
    background-repeat: no-repeat;
}

.pills-map {
    display: flex;
    margin-top: 1em;
}

.pills-map-show {
    border: 4px solid #fd5f54;
    filter: drop-shadow(0px 7px 7px rgba(190, 71, 63, 0.35));
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    width: 70%;
}

.pills-map-result {
    background: #ffffff;
    border: 4px solid #7a9d9f;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    width: 30%;
}

.pills-map-result-scroll {
    height: 18em;
    overflow-y: scroll;
}

.pills-map-result-titr {
    background: #7a9d9f;
    padding: 0.5em 0;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5em;
}

.pills-map-result-box {
    background: #cad8d9;
    border-radius: 8px;
    padding: 0.5em;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
    width: 100% !important;
}

.weight {
    font-weight: 800;
}

.selected-property {
    border: solid darkred 3px;
    border-radius: 5px;
    background-color: #ababab;
}

.pills-map-result-box-comment {
    width: fit-content;
}

.pills-map-result-contract-type {
    background: #ffffff;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.7rem;
    color: #0c1010;
    padding: 0.8em;
    text-align: center;
    width: 100%;
}

.pills-map-result-details-row {

    display: flex;
    justify-content: space-between;
    padding: 0.5em 0.5em 0 1em;
}

.pills-map-result-details-col {
    display: flex;
    flex-direction: column;
}

.pills-map-result-details {
    display: flex;
    width: fit-content;
}

.pills-map-result-details-1 {
    font-weight: 400;
    font-size: 12px;
    color: #0c1010;
}

.pills-map-result-details:has(.product-address-div) {
    width: 100%;
}

.leaflet-popup-content .pills-map-result-box-img img {
    height: 100px !important;
}

.leaflet-popup-content .pills-map-result-box-img {
    padding: 0.25rem !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .pills-map-result-details-2 {
        font-weight: 600 !important;
        font-size: 10px !important;
        text-wrap: pretty !important;
        white-space: wrap !important;
        overflow: auto !important;
    }

}

.pills-map-result-details-2 {
    font-weight: 700;
    font-size: 11px;
    color: #0c1010;
    text-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.15rem;
    padding: 5px 0 !important;
}

.pills-map-result-box-img {
    border-radius: 8px;
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    height: max-content;
    max-height: 100%;
}

.product-agent-name {
    display: flex;
    text-wrap: wrap !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
}

.pills-map-result-box-img a {
    display: flex;
    justify-content: end;
    height: fit-content;
    width: fit-content;
    max-width: 100%;
}

#show_custom_popup_body .pills-map-result-box-img img {
    max-width: 60% !important;
}

.pills-map-result-box-img img {

    /*object-fit: contain !important;*/
    max-width: 90% !important;
    max-height: 100% !important;
    margin: 0.25rem 0 0.5rem 0 !important;
    border-radius: 12px;
    width: auto;
    height: 150px !important;
}

.pills-map-result-box .agent-detail-div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block !important;
}

.pills-map-result-box .product-address-div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block !important;
    max-width: 87%;
}

.leaflet-popup-content p {
    margin: 4px 0 !important;
}

.product-slider-img {
    width: calc(100%);
    height: 50%;
    border-radius: 8px;
}

.product-slider-img img {
    width: 500px;
    height: 160px;

}

.pills-map-result-box-price {
    background: #ffffff;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.6rem;
    color: #0c1010;
    padding: 0.9em;
    text-align: center !important;
    margin-top: 1em;
}

/* ****** start slider-item ****** */
/*#newest-properties {*/
/*    width: 90%;*/
/*    margin: 3em auto;*/
/*}*/

.splide__list {
    margin: 1em auto !important;
}

.splide__arrow {
    /* background: #fd5f54 !important;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47) !important; */
    border-radius: 100% !important;
    border: 1px solid #3e38387c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#properties .splide__arrows--rtl .splide__arrow--next,
#blog .splide__arrows--rtl .splide__arrow--next {
    left: -2.5rem !important;
}

#properties .splide__arrows--rtl .splide__arrow--prev,
#blog .splide__arrows--rtl .splide__arrow--prev {
    right: -2.5rem !important;
}

button.splide__arrow.splide__arrow--prev {
    transform: rotate(-90deg);
    right: -3rem;
}

button.splide__arrow.splide__arrow--next {
    transform: rotate(90deg);
    left: -3rem;
}

#properties .splide__track,
#blog .splide__track {
    width: 100%;
    margin: 0 auto;
}

.slider {
    display: flex;
}

.slider-titr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn_newest_products_see_all {
    background: #fd5f54;
    padding: .5rem .75rem;
    border-radius: 12px;
    color: #fff !important;

}

.slider-titr span {
    font-weight: 600;
    font-size: 1.3rem;
    color: #3d4f50;
}


.slider-titr a,
.slider-titr a:hover {
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    color: #1a1a1a;
}

.slick-custom-arrow {
    background: #fd5f54;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    display: inline-block;
    position: absolute;
    z-index: 10;
    padding: 0.5em;
    cursor: pointer;
}


.slick-custom-arrow-right {
    right: 0;
    top: 50%;
}

.slick-custom-arrow-left {
    left: 0;
    top: 50%;
}

.slider-item {
    /*width: 290px;*/
    /* display: flex;
    flex-direction: column; */
    background: #0000;
    /* box-shadow: 0px 12px 10px -2px rgba(0, 0, 0, 0.25); */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    margin: 0 0.3em;
    border-radius: 12px;
    margin-top: 2rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/minus-small-svgrepo-com.svg);

}

.accordion-button::after {
    background-image: url(../img/icons8-plus.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dropdown-menu.text-md-end.show {
    border-radius: 18px;
    margin-top: 1.75rem;
}


.filter-search-tabs {
    margin-bottom: 1rem;
}

.btn_filter {
    border: 1px solid #fd5f54 !important;
    color: #1a1a1a7d;
    cursor: pointer;
}

.btn_filter:hover {
    color: #1a1a1a7d;
}

.slider-img img {
    width: 90%;
    height: 12em;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.slider-txt {
    padding: 1em 1em 0.5em 1em;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex: 1;
}

.contract-type-price {
    font-size: 0.75rem;
}

.minTitle {
    font-size: 1rem;
    font-weight: bold;
    line-height: 21px;
}

.section_address_product_card span {
    font-size: .9rem;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.section_info_product_card {
    background: #EDEFF5;
    width: fit-content;
    border-radius: 15px;
    padding: .25rem .5rem;
}

.section_info_product_card span {
    font-size: .75rem;
}

.price_info_product_card .price_product {
    color: #17111E;
    font-size: 1.1rem;
    font-weight: 700;
}

.text_price {
    color: #8F95AB;
    font-size: 1rem;
    font-weight: 500;
}

.heart_select_product {
    border-radius: 50%;
    border: 1px solid #8f9bb355;
    padding: .25rem;
}

.section_price_wish_product {
    padding-top: 1rem;
    border-top: 1px solid #00000028;
}


.slider-title {
    /*old style*/
    display: flex;
    justify-content: space-between;
    /*//new style*/
    font-weight: var(--font-weight);
    font-size: 15px;
    color: var(--head-color);
    margin: 0.4rem 0;

    /*old style */
    /*font-weight: 700;*/
    /*font-size: 1.25rem;*/
    /*color: #3D4F50;*/
}

.slider-details {
    display: flex;
    justify-content: space-between;
}

.slider-details-col {
    display: flex;
    flex-direction: column;
}

.slider-details-row {
    display: flex;
    align-items: center;
    max-width: 100% !important;
}

.slider-details-row-1 {
    font-weight: 400;
    font-size: 0.75rem;
    color: #0c1010;
}

.product-card-action:hover {
    scale: 1.10 !important;
}

.product-provider-details {
    text-wrap: pretty !important;
    white-space: normal !important;
}

.slider-details-row-2 {
    font-weight: 700;
    font-size: 11px;
    color: #0c1010;
    text-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.15rem;
}

/* start quick Property search */
.qps-txt {
    font-weight: 900;
    font-size: 1.75rem;
    color: #3d4f50;
}

@media only screen and (max-width: 500px) {
    .qps-txt {
        font-size: 1.25rem !important;
    }

    .qps-comment {
        font-size: 1rem !important;
    }

    .advantage-txt {
        font-size: 1.25rem !important;
    }

    .advantage-txt2 {
        font-size: 1rem !important;
    }
}

.qps-txt span {
    color: #fd5f54;
}

.qps-comment {
    font-weight: 500;
    font-size: 1.25rem;
    color: #1f2728;
}

.btn-qps,
.btn-qps:hover {
    background: #fd5f54;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    width: fit-content;
}

/* newest-blog */
#newest-blog {
    /*width: 90%;*/
    margin: 0em auto;
}

.slider-txt-blog {
    height: 8.5em;
    overflow: hidden;
}

.splide__track .splide__list {
    margin: 1em auto !important;
}

.slider-title-blog {
    font-weight: 800;
    font-size: 1rem;
    color: #3d4f50;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    background: #fff;
    text-align: right;
    margin-bottom: 1rem;
}

.a_read_more {
    color: #799d9f;
}

.acc_item_homepage {
    border-radius: 15px !important;
    border: 1px solid #e1dadac6;
    box-shadow: none !important;
}

.acc_button {
    border-radius: 15px !important;
    color: #000 !important;
    text-align: right;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none !important;
}

#navbar-custome .nav-item {
    margin-top: 0.75rem !important;
}

a.dropdown-item.my-2 {
    text-align: right;
}

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

.accordion-button:not(.collapsed) {
    background: #ffffff;
}

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1000;
    text-align: center;
    padding-top: 20%;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add any additional styling as per your design */
.modal-dialog {
    /* position: absolute; */
    top: 0rem;
    right: 0vw;
    /* background-color: #f8fafa; */
}

.h_iframe-aparat_embed_frame {
    position: relative;
}

.h_iframe-aparat_embed_frame .ratio {
    display: block;
    width: 100%;
    height: auto;
}

.h_iframe-aparat_embed_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    right: 0;
    margin: auto;
    border-radius: 13px;
}

.custom-marker {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.frequently-questions-title {
    font-weight: 600;
    font-size: 1.5rem !important;
    color: #3D4F50;
}

.packages-title {
    font-weight: 600;
    font-size: 1.5rem !important;
    color: #3D4F50;
    margin-bottom: 2rem;
}

.slider-body-blog {
    font-weight: 500;
    font-size: 14px;
    color: #3d4f50;
    text-align: justify;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background: #fff;

}

/* advantage */
#advantage {
    margin: 1em auto;
}

.advantage-txt {
    font-weight: 900;
    font-size: 1.75rem;
    color: #3d4f50;
}

.advantage-txt span {
    color: #fd5f54;
}

.advantage1 {
    padding-right: 10%;
}

.advantage2 {
    padding-right: 20%;
}

.advantage3 {
    padding-right: 30%;
}

.advantage-txt2 {
    font-weight: 500;
    font-size: 1.25rem;
    color: #1f2728;
    padding-right: 25%;
}

/* footer */
.footer {
    padding: 2em;
    background: #3d4f50;
    color: #ffffff;
}

.parent_section_family_banner {
    background: hsl(0, 0%, 96%);
}

.rent_home_section {
    background: #f4f1f1;
    padding: 1.5rem 0;
}

.img_new_sale img {
    border-radius: 15px;
    opacity: .8;
    transition: .2s;
}

.arrow_new_sale_next {
    left: -3rem !important;
}

.arrow_new_sale_prev {
    right: -3rem !important;
}

.info_new_sale h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.info_new_sale p {
    font-size: 1rem;
    font-weight: 500;
}

.parent_section_card_new_sale:hover img {
    opacity: 1;
    transition: .2s;
}


.parent_section_img_new_sale {
    position: relative;
}

.parent_section_img_new_sale span {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background-color: rgb(71, 84, 103);
    color: #fff;
    padding: .25rem .5rem;
    border-radius: 20px;
    font-size: 13px;
}

.footer-title {
    font-weight: 800;
    font-size: 1rem;
    border-bottom: 2px solid #ffffff;
    padding-left: 1em;
    padding-bottom: 0.5em;
}

.address-title {
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-col {
    font-weight: 600;
    font-size: 1rem;
}

.contact-title {
    display: flex;
    align-items: center;
}

.contact-title svg {
    width: 1.5em;
}

/* .news-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} */

.news-col a {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1em;
}

.social-network-link {
    display: flex;
    align-items: end;
    gap: 18px;
}

.social-network-link a img {
    width: 1.5rem;
    height: 1.5rem;
}


.quick_search p {
    color: red;
    position: relative;
    width: fit-content;
    text-align: center;
}

.quick_search {
    display: flex;
    align-items: center;
}

.agents_special_span {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    text-align: center;
    width: 30%;
}


.agents_special_span::after {
    position: absolute;
    left: -1.5rem;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #fe5f55 50.52%, rgba(255, 255, 255, 0.00) 100%);

}

.agents_special_span::before {
    position: absolute;
    right: -1.5rem;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #fe5f55 50.52%, rgba(255, 255, 255, 0.00) 100%);

}

.info_paragraph_dirbaaz {
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a80;
}

.quick_search p::after {
    position: absolute;
    left: -3rem;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #fe5f55 50.52%, rgba(255, 255, 255, 0.00) 100%);
}

.quick_search p::before {
    position: absolute;
    right: -3rem;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #fe5f55 50.52%, rgba(255, 255, 255, 0.00) 100%);
}


.social-network {
    background: #5c7677;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    color: #e4ebec;
    padding: .5rem 1rem;
}

.section_parent_header {
    background: hsl(0, 0%, 96%);
}

.parent_section_video {
    background: hsl(0, 0%, 96%);
}

.parent_section_faq {
    background: hsl(0, 0%, 96%);
}

.social-network p {
    font-size: 1rem;

}

.social-network a {
    text-decoration: none;
}

.btn-signin.menu-mobile {
    display: none;
}

.btn-notification-responsive {
    display: none;
}

.nav-btn .btn-signin.menu-desc {
    display: inherit;
}

@media (max-width: 1280px) {
    .nav-btn .btn-signin.menu-desc {
        display: none;
    }

    .btn-signin {
        display: none;
    }

    .btn-signin.menu-mobile {
        display: inherit;
    }
}

/* @media (max-width: 1280px) {
} */

/* ******responsive mode****** */
@media (max-width: 992px) {
    .banner-property-row {
        flex-direction: column-reverse;
    }

    #quick-property-search-responsive {
        display: block !important;
    }


    /* ****navbar**** */
    #navbar-custome .nav-link.active {
        border-bottom: none;
    }

    /* .banner-txt {
      font-weight: 900;
      font-size: 18px;
    } */
    /* .nav-btn .btn-signin.menu-desc {
        display: none;
    } */
    /* .btn-signin.menu-mobile {
        display: inherit;
    } */
    .btn-login-responsive {
        display: block;
    }

    .btn-login-home {
        display: none;
    }

    /* .btn-signin {
        display: none;
    } */
    .btn-notification-responsive {
        display: block;
    }

    .btn-notification {
        display: none;
    }

    .leaflet-pm-tollbar.leaflet-pm-icon-fullscreen.leaflet_custom_event.leaflet-control {
        display: none !important;
    }

    .pills-map-show {
        width: 100%;
        border-radius: 6px 6px 6px 6px !important;
    }


    .advantage-txt2 {
        padding-right: 2%;
    }

    .btn-property-filter svg,
    .btn-property-search svg {
        width: 1em;
    }

    .pills-home-input {
        width: 100%;
    }

    .btn-property-search,
    .btn-property-search:hover {
        margin: 0;
    }

    .banner-property,
    .banner-property img {
        width: 100%;
    }
}

.package-item ul {
    height: 110px;
    overflow: auto;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    margin-top: var(--bs-dropdown-spacer);
    right: 0 !important;
}

.dropdown-menu {
    z-index: 1000;
    width: fit-content;
}

.a_product_img img {
    width: 100% !important;
}


.img_products_card {
    width: 100% !important;
    border-radius: 8px 8px 0 0 !important;
}

.slider-img-products {
    display: block !important;
    top: 0 !important;
}

.nav-btn .dropdown.menu-desc {
    width: 11rem;
}


.nav-pills .nav-link {
    cursor: pointer;
    color: #fd5f54;
}

form#form-filter {
    position: relative;
    margin-top: 3rem;
}

.AreaMap {
    flex: 1;
    height: auto;
    border: 4px solid var(--Primary_500);
    filter: drop-shadow(0px 7px 7px rgba(190, 71, 63, 0.35));
    border-radius: 16px;
    position: relative;
    left: 4px;
}

#mapid {
    width: 100%;
    height: 100%;
}

#mapid {
    display: block;
    right: 1px;
}

.leaflet-container {
    overflow: hidden;
}

.ArrowRight {
    position: absolute;
    right: 60px;
    top: 55%;
    transform: translateY(-50%);
    background-color: var(--Primary_500);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47);
    cursor: pointer;
    z-index: 10;
}

.LeftArrow {
    position: absolute;
    left: 35px;
    bottom: 18%;
    transform: translateY(-50%);
    z-index: 10;
}

.ArrowLeft {
    position: absolute;
    left: 60px;
    top: 55%;
    transform: translateY(-50%);
    background-color: var(--Primary_500);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0px 19px 17px -6px rgba(190, 71, 63, 0.47);
    cursor: pointer;
    z-index: 10;
}

.span_city_homes_new {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: #0b0b0be8;
    color: #fff;
    padding: .25rem .5rem;
    border-radius: 1rem;
    font-size: .9rem;
}

.slider-item {
    /*height: 34rem;*/
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.slider-item-2 {
    height: 21rem !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.show-sm-div {
    display: none;
}

@media screen and (max-width: 768px) {

    .show-lg-div {
        display: none;
    }

    .show-sm-div {
        display: block;
    }

    .slide-content {
        margin: 0 10px;
    }

    .serach_building_dirbaaz_site_feature {
        flex-direction: column-reverse;
    }


    .search_btn_responsive_mobile {
        width: 100% !important;
    }

    .menu-spacer {
        width: -webkit-fill-available !important;
    }

    #navbar-custome .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #navbar-custome .navbar-brand img {
        width: 3.5rem;
        height: 3rem;
    }

    .dropdown-notification {
        margin-left: 0 !important;
        position: relative;
        top: 7px;
    }

    .agent-search-list-filter {
        display: flow !important;
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width: 991px) {
    .search_btn_responsive_mobile {
        width: 100%;
    }

    .menu-spacer {
        width: -webkit-fill-available !important;
    }

    #navbar-custome .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media screen and (min-width: 960px) {

    .slide-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 1900px) {
    .slide-content {
        margin: 0 10px;
    }
}

.WrapperRightSection {
    background-color: var();
    background: var(--Secondary_100);
    box-shadow: 0px 12px 10px -2px rgba(0, 0, 0, 0.25);
}

.Slider_RightSec {
    width: 300px;
    margin-right: 24px;
}


.slide-content {
    overflow: hidden;
}

.slider {
    position: relative;
}


#gmap_canvas {
    height: 345px;
    width: 100%;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 408px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 345px;
    width: 100%;
}

.property-search .nav-link:hover {
    cursor: pointer;
}

.pills-home-pc select#usage_type {
    border-left: unset !important;
}

.pills-home-pc select#product_type {
    border-left: unset !important;
}

.pills-home-pc input#room_quantity {
    border-left: unset !important;
}

.pills-home-pc input#mls_address {
    width: 177%;
}

.news-col a:hover {
    font-weight: 600;
}

select {
    color: #6c757d !important;
}

.property-details-svg {
    width: 18px;
    height: 18px;
}

.monitor {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.text-beside-monitor {
    font-size: .8rem !important;
    margin: .12rem !important;
}

@media (max-width: 1000px) {
    .pills-home-responsive {
        display: block;
    }

    .pills-home-pc {
        display: none;
    }

    h1.property-search-titr {
        font-size: 1.25rem;
    }

    .property-search-titr2 {
        font-size: 1rem;
    }

    .property-search .nav-link {
        font-weight: 600;
        font-size: 1rem;
    }

    .text-beside-monitor {
        font-size: .8rem !important;
    }

    input#mls_code_responsive {
        font-size: 1em;
    }

    .btn-list-map {
        display: block;
    }

    .pills-map-result {
        display: none;
    }

    .pills-map-show {
        width: 100%;
    }
}

/* package */
#package {
    margin: 2em auto;
    direction: rtl;
}

.package-item {
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 12px;
    padding: 1em;
    margin-bottom: 1em;
    transition: .4s all;
}

.package-item:hover {
    transform: scale(1.09);
    transition: .4s all;
}

.titr-package {
    font-size: 1rem;
    color: #1a1a1a;
    text-align: center;
    /* padding-right: 1em; */
    font-weight: 750;
}
.price-package {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    text-align: right;
}

.package-item ul {
    padding-right: 1em;
    font-weight: 500;
    font-size: 1rem;
    height: 7em;
    color: #3d4f50;
    /* overflow-y: scroll; */
}

.package-item ul li {
    list-style-type: disclosure-closed;
    font-size: .8rem;
    margin-top: 0.25rem;
}

.btn-package,
.btn-package:hover {
    color: #fd5f54;
    font-weight: 600;
    font-size: 1.1rem;
    background: #f2f6f6;
    border: 1px solid #febfbb;
    border-radius: 8px;
    width: 100%;
}

.package-item {
    margin-bottom: 1.5rem;
}

.splide__arrow:disabled {
    transform: scale(0.90);
    opacity: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none; /* optional: disables interaction when hidden */
}

.splide__arrow {
    background: transparent !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

a.weblog {
    text-decoration: unset;
    color: black;
}

.title_what_does_dirbaaz {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.subtitle_what_does_dirbaaz {
    text-align: right;
    font-size: .9rem;
    font-weight: 400;
    color: #1a1a1a98;
}

.description_dirbaaz {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.btn_sabt_dirbaaz {
    width: fit-content !important;
    background: #799d9f;
    border: none !important;
    font-size: 14px !important;
    transition: .4s all;
}

.btn_sabt_dirbaaz:hover {
    width: fit-content !important;
    background: #799d9f;
    border: none !important;
    transform: translateY(-5px);
    transition: .4s all;
}


.next,
.prev {
    background: #fd5f54 !important;
}

.next {
    transform: rotate(180deg);
}

textarea {
    resize: none;
}

.border-2 {
    border: solid 2px #fd5f54;
    border-radius: 5px;
}

.loading {
    z-index: 9999;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.6), rgba(0, 0, 0, 0.6));

    background: -webkit-radial-gradient(rgba(20, 20, 20, 0.6),
    rgba(0, 0, 0, 0.6));
}

.swal2-container {
    z-index: 10000 !important;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    border-left: 1px solid #587173;
    height: 100%;
    align-content: center;
    padding-left: 5px;
    color: #587173;
}


#hide-show-map.btn-outline-secondary:hover,
#hide-show-map.btn-outline-secondary {
    color: grey !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.select2-selection, .select2-container .selection {
    width: 100% !important;
}

button.paginate-btn.btn {
    background-color: #dbe1dd;
}

button.paginate-btn.btn:nth-child(1) {
    background-color: #fd5f54 !important;
}

button.paginate-btn.btn:nth-last-child(1) {
    background-color: #fd5f54 !important;
}

a.btn.btn-request {
    background: #fd5f54;
    border: 1px solid #febfbb;
    box-shadow: 0px 21px 17px -9px rgb(56 56 56 / 25%);
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    margin-left: 1em;
}

ul.dropdown-menu.show {
    margin-left: 1rem;
}

.search-box-responsive {
    display: inline-block;
}

.search-box {
    display: none;
}

.navbar-brand {
    margin: 0 auto;
}

.form-control {
    border: 2px solid #fd7f76;
    border-radius: 8px;
}

input.form-control[readonly] {
    background-color: #cccc;
}

#navbar-custome a.nav-link {
    display: initial !important;
    text-wrap: nowrap !important;
}

p.contact-title a {
    color: white;
    text-decoration: unset;
}

button.btn.paginate-btn.bg-primary.active.get_paginate {
    background: #5c7677 !important;
    box-shadow: 0px 11.0529px 9.88942px -3.49038px rgba(61, 79, 80, 0.4) !important;
    border-radius: 4.65385px !important;
    color: #ffffff !important;
    padding: 9px 14px !important;
}

button.btn.paginate-btn.bg-secoundry.active.get_paginate {
    padding: 9px 14px !important;
    border-color: transparent !important;
    border-radius: 4.65385px !important;
}

button.paginate-btn.btn:nth-child(1) {
    padding: 9px 14px !important;
    opacity: unset !important;
    color: white !important;
}

button.paginate-btn.btn:nth-last-child(1) {
    opacity: unset !important;
    padding: 9px !important;
    color: white !important;
}

.card-product-tag {
    border-radius: 1rem;
    margin-right: 0.5rem;
    padding: 2px 4px 2px 4px;
    margin-top: -2rem;
    position: absolute;
    display: block;
    color: white;
}

/** Agent_search_list *!*/
#sidebar-agent-search {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 12px;
    border: 1px solid #0000001c;
    padding: 0.5em;
    direction: rtl;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 25px !important;
}

.sidebar-agent-search-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #3d4f50;
    text-align: right;
}

#sidebar-agent-search select,
#sidebar-agent-search input {
    border: 1px solid #00000033;
    border-radius: 8px;
}


.form-control:focus {
    box-shadow: none !important;
    background: #f5f5f5;
    border: 1px solid #fd7f76;
    border-radius: 12px;
    outline: none !important;
}

.select2-selection__choice {
    text-wrap-mode: wrap !important;
}

.form-control input:focus {
    outline: none !important;
}

#start-search:active {
    border: 1px solid #fd5f54 !important;
    color: #fd5f54 !important;
}

#clear-fields:active {
    background: #fd5f54 !important;
    color: #fff !important;
}


#sidebar-agent-search select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f5f5f5 url(../img/icon/dd.svg);
    background-size: 10px;
    background-position: 20px;
    background-repeat: no-repeat;
}

#sidebar-agent-search .btn {
    width: 49%;
}

.agent-search-list-filter {
    direction: rtl;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-search-list-filter select {
    border: 1px solid #0000001c;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f5f5f5 url(../img/icon/dd.svg);
    background-size: 10px;
    background-position: 20px;
    background-repeat: no-repeat;
    min-width: 195px;
    height: 42px;
    margin-left: 1rem;
}

.agent-search-list-filter select:focus-visible {
    border: none !important;
    outline: none !important;
}

.h1-title-page {
    background: #dcd6d6;
    padding: 2rem 0;
    margin-top: 2rem;
    border-radius: 12px;
}

.agent-search-list-filter-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3d4f50;
    padding-bottom: 0rem !important;
}

.agent-search-list-filter svg {
    width: 6em;
}

.agent-search-list-filter span {
    font-weight: 400;
    font-size: 1rem;
    color: #3d4f50;
}

.agent-search-map {
    border: 2px solid #fd5f54;
    filter: drop-shadow(0px 7px 7px rgba(190, 71, 63, 0.35));
    border-radius: 16px;
    height: 408px;
    margin-bottom: 1em;
}

.leaflet-popup-content {
    margin: 14px !important;
}

.agent-search-list {
    background: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 12px;
    border: 1px solid #00000021;
}

.agent-search-list-header {
    background: transparent !important;
    border-bottom: 1px solid #95b1b2;
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    padding: 0.5em;
}

div#form-data {
    position: sticky;
    top: 1rem;
}

@media (max-width: 768px) {
    div#form-data {
        position: relative;
        top: unset;
        margin-bottom: 1rem;
    }
}

.agent-search-list-header img {
    border: 1px solid #be473f;
    border-radius: 50%;
    width: 5.5rem !important;
    height: 5.5rem !important;
}

.agent-search-list-header-txt1 {
    font-weight: 600;
    font-size: 1rem;
    color: #3d4f50;
    text-wrap: wrap;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.agent-search-list-header-txt2 {
    font-weight: 700;
    font-size: 1rem;
    color: #0c1010;
}

.agent-search-list-body {
    display: flex;
    justify-content: space-between;
    padding: 1em;
}

.agent-search-list-body-txt1 {
    font-weight: 400;
    font-size: 1rem;
    color: #0c1010;
}

.agent-search-list-body-txt2 {
    font-weight: 700;
    font-size: 1rem;
    color: #0c1010;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: right !important;
    border-radius: 12px;
}


.img_package_item {
    width: 100%;
}

.img_package_item img {
    border-radius: 12px;
    height: 15rem;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.dirbaaz_typographi {
    width: 13rem;
}

.section_img_house_icon_product_card_contract {
    background: #FFDDDB;
    padding: .25rem .5rem;
    width: fit-content;
    border-radius: 15px;
}

.section_img_house_icon_product_card_contract span {
    color: #DD3F34;
}

/*//notification*/
/* CSS used here will be applied after bootstrap.css */

.dropdown-notification {
    display: inline-block;
    padding: 15px;
    color: #fd5f54 !important;
}

.img_arrow_read_more_blog_top {
    width: 1rem;
    transform: rotate(90deg);
}

#dLabel i {
    position: relative;
    top: 9px;
}

@media (max-width: 768px) {
    #dLabel i {
        top: 0 !important;
    }
}

a#dLabel:hover {
    color: #5c7677;
}

.glyphicon-bell {
    font-size: 1.5rem;
}

.notifications {
    min-width: 450px;
}

.notifications-wrapper {
    overflow: auto;
    max-height: 250px;
    padding-left: 10px;
}

.notification-item .read-notification {
    width: fit-content;
    padding-left: 0;
    align-content: center;
    cursor: pointer;
}

.notification-item .row {
    flex-wrap: nowrap !important;
}

.menu-title {
    color: #ff7788;
    font-size: 0.8rem;
    display: inline-block;
}

.glyphicon-circle-arrow-right {
    margin-left: 10px;
}

.notification-heading,
.notification-footer {
    padding: 2px 10px;
}

.notification-heading {
    display: flex;
}

.dropdown-menu.divider {
    margin: 5px 0;
}

.item-title {
    font-size: 0.8rem;
    color: #000;
}

.notifications a.content {
    text-decoration: none;
    background: #ccc;
}

.notification-item {
    padding: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 4px;
    text-align: start;
    text-wrap-mode: wrap;
}

.notify ul.dropdown-menu.show {
    margin-left: 1rem;
    left: 100% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-30%, 0) !important;
}

@media (min-width: 600px) {
    .notifications-wrapper {
        width: max-content !important;
        max-width: 450px !important;
    }
}

@media (max-width: 599px) {
    .notifications-wrapper {
        width: 300px !important;
        padding-left: 14px !important;
    }
}

@media (max-width: 992px) {
    .notifications {
        min-width: 155px;
    }

    .notify ul.dropdown-menu.show {
        margin-left: 1rem;
        left: 100% !important;
        right: auto !important;
        text-align: center !important;
        transform: translate(-30%, 0) !important;
    }
}

@media (max-width: 425px) {

    .notify ul.dropdown-menu.show {
        transform: translate(-40%, 0) !important;
    }
}

@media (max-width: 1200px) {
    .back-link .back-link-title {
        display: none;
    }
}

.dropdown-menu {
    animation: b 6s infinite;
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

.dropdown-notification .badge {
    position: absolute;
    top: 0px;
    right: -8px;
    border-radius: 20%;
    background: #fd5f54;
    color: white;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    -ms-border-radius: 20%;
    -o-border-radius: 20%;
}

.ltr-direction {
    direction: ltr;
    float: left;
    padding-left: 10%;
}

.leaflet-buttons-control-button {
    box-shadow: none !important;
}

.btn-header-sm {
    font-size: 0.75rem !important;
    border-radius: 8px;
}

.client-menu-dropdown {
    margin-right: 4px;
}

.close {
    font-size: 1.75rem !important;
}

.dropdown-menu-title {
    color: #5c7677;
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 17px !important;
    padding: 0.5em;
    margin-right: 0px !important;
}

.show-password-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.show-password-icon img {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.menu-desc .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: unset !important;
    margin-top: var(--bs-dropdown-spacer);
}

.menu-mobile .dropdown-menu[data-bs-popper] {
    left: 0 !important;
    margin-top: var(--bs-dropdown-spacer);
}

.sort-products-select {
    padding-right: 5px !important;
}

.space-x-2 > * + * {
    margin-right: 5px;
}

.product-box-container {
    border-radius: 8px;
}

.detail-tooltip {
    cursor: pointer;
}

.slider-item-shadow {
    box-shadow: 0px 12px 10px -2px rgba(0, 0, 0, 0.25);
    border: unset !important;
    border-radius: 8px;
    height: 100%;
}

.product-card-tour {
    position: absolute;
    bottom: -2px;
    left: 10px;
}

.slider-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -2rem;
}

.product-card-tour img {
    width: 40px !important;
    height: 40px !important;
}

.iframe-input {
    text-align: left;
}

.iframe-input::placeholder {
    text-align: right;
}

.album-img {
    cursor: pointer;
}

.album-container .loading-indicator {
    max-width: 50px !important;
    max-height: 50px !important;
}

.album-container {
    position: relative;
    width: 100%;
    /* height: 100%; */
    border-radius: 12px;
    overflow: hidden;
}

.album-img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.album-img-overlay i {
    cursor: pointer;
    color: #fff;
    font-size: 24px;
}

.accordion-button::after {
    margin-right: auto !important;
    margin-left: unset !important;
}

.product-detail-banner {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.product-detail-album img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.message-text {
    margin-left: 1rem;
}

.message-text p {
    word-break: break-all;
    padding-left: 1rem;
}

.user-profile-dropdown {
    height: 50px;
}

.header-search-box {
    position: relative;
    cursor: pointer;
    background-color: #f0f0f1;
    padding-left: 16px;
    padding-right: 16px;
    height: 44px;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* overflow: hidden; */
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2.17;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.header-search-container {
    padding-left: 16px;
    padding-right: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* overflow: hidden; */
    flex-grow: 1;
    font-size: 0.9rem;
}

.header-search-text {
    font-weight: 400;
    line-height: 2.17;
    align-items: center;
    display: flex;
}

.header-search-icon {
    cursor: pointer;
}

.header-search-icon svg {
    width: 24px;
    height: 24px;
}

.header-search-result {
    position: absolute;
    /* top: 50px; */
    left: 0;
    background: #fff;
    right: 0;
    z-index: 4;
    top: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.header-search-result-items-container {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    position: relative;
    z-index: 10;
}

.header-search-input {
    background: #fff;
    border: unset !important;
    outline: unset !important;
    padding-right: 10px;
    width: 100%;
}


.header-search-result-items li {
    list-style: none;
}

.search-box-container {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1600px) {
    .search-box-container {
        display: none;
    }
}

@media (min-width: 1600px) {
    .mobile-search-btn {
        display: none;
    }
}

.mobile-search-btn {
    margin: 0 20px;
}

.modal-header .btn-close {
    margin: unset !important;
}

.modal-content {
    direction: rtl;
}

.region-city-select + .select2 {
    display: block !important;
}

.select2-container {
    display: block !important;
}

.select2-dropdown {
    z-index: 9999 !important;
}

.search-box-zone {
    max-width: 450px;
    width: 450px;
}

.form-input-group label {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.h-100 {
    height: 100% !important;
}

footer img {
    max-width: 100%;
}

.tooltip {
    font-family: "dana" !important;
    direction: rtl !important;
}

/* ----------------------------------------------------
    CounterUp Area
---------------------------------------------------- */
:root {
    --ltn__primary-color: #000000;
    --ltn__primary-color-2: #041113;
    /* Darken */
    --ltn__primary-color-3: #133236;
    /* Lighten */
    --ltn__secondary-color: #ff5a3c;
    --ltn__secondary-color-2: #cb3421;
    /* Darken */
    --ltn__secondary-color-3: #fb412a;
    /* Lighten */
    --ltn__heading-color: #071c1f;
    --ltn__paragraph-color: #5c727d;
    --ltn__heading-font: "Poppins", sans-serif;
    --ltn__body-font: "Nunito Sans", sans-serif;
    /* Footer ACD2D8 8CB2B2  */
    --ltn__color-1: #8cb2b2;
    --ltn__color-2: #acd2d8;
    --ltn__color-3: #a3bcc0;
    --ltn__color-4: #84a2a6;
    --ltn__color-5: #5c727d;
    /* Gradient Colors */
    --gradient-color-1: linear-gradient(
            90deg,
            rgba(242, 139, 194, 1) 0%,
            rgba(216, 177, 242, 1) 50%
    );
    --gradient-color-2: linear-gradient(
            to top,
            rgba(7, 28, 31, 0) 0%,
            rgba(7, 28, 31, 1) 90%
    );
    --gradient-color-3: linear-gradient(
            to bottom,
            rgba(7, 28, 31, 0) 0%,
            rgba(7, 28, 31, 1) 90%
    );
    --gradient-color-4: linear-gradient(
            to top,
            rgba(242, 246, 247, 0) 0%,
            rgba(242, 246, 247, 1) 90%
    );
    --gradient-color-5: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 70%
    );
    /* Background Colors ( 1, 2, 3, 4, 5 )  */
    --section-bg-1: #f2f6f7;
    /* White */
    --section-bg-2: #171b2a;
    /* Black */
    --section-bg-5: #fff2f0;
    /* White */
    --section-bg-6: #0b2c3d;
    /* Black */
    --section-bg-7: #282b38;
    /* Black */
    /* Border Colors */
    --border-color-1: #e5eaee;
    /* White */
    --border-color-2: #1e2021;
    /* Black */
    --border-color-3: #5c617f;
    /* Black */
    --border-color-4: #eb6954;
    /* Red */
    --border-color-5: #bc3928;
    /* Red */
    --border-color-6: #103034;
    /* Black */
    --border-color-7: #d1dae0;
    /* White */
    --border-color-8: #f6f6f6;
    /* White */
    --border-color-9: #e4ecf2;
    /* White */
    --border-color-10: #ebeeee;
    /* White */
    --border-color-11: #ededed;
    /* White */
    --border-color-12: #e1e6ff;
    /* White */
    --border-color-13: #f1f8ff;
    /* White */
    /* Box Shadow Colors */
    --ltn__box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    --ltn__box-shadow-2: 0 0 4px rgba(0, 0, 0, 0.1);
    /* like border */
    --ltn__box-shadow-3: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    /* like border GGL */
    --ltn__box-shadow-4: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    --ltn__box-shadow-5: 0 8px 16px 0 rgba(93, 93, 93, 0.1);
    --ltn__box-shadow-6: 0 0 25px 2px rgba(93, 93, 93, 0.2);
    --ltn__box-shadow-7: 0 0 10px 0px rgba(93, 93, 93, 0.2);
    /* Common Colors */
    --black: #000000;
    --black-2: #22355b;
    --white: #fff;
    --white-2: #f2f6f7;
    --white-3: #e8edee;
    --white-4: #e6ecf0;
    --white-5: #f0f4f7;
    --white-6: #f1f1f1;
    --white-7: #f7f7f7;
    --white-8: #fafafa;
    --white-9: #f2f7fa;
    --white-10: #ededed;
    --red: #ff0000;
    --red-2: #f34f3f;
    --red-3: #db483b;
    --silver: #c0c0c0;
    --gray: #808080;
    --maroon: #800000;
    --yellow: #ffff00;
    --olive: #808000;
    --lime: #00ff00;
    --green: #77c720;
    --green-2: #008000;
    --aqua: #00ffff;
    --teal: #008080;
    --blue: #0000ff;
    --navy: #000080;
    --fuchsia: #b13bff;
    --purple: #800080;
    --pink: #ffc0cb;
    --nude: #ebc8b2;
    --orange: #ffa500;
    --ratings: #ffb800;
    /* social media colors */
    --facebook: #365493;
    --twitter: #3cf;
    --linkedin: #0077b5;
    --pinterest: #c8232c;
    --dribbble: #ea4c89;
    --behance: #131418;
    --google-plus: #dd4b39;
    --instagram: #e4405f;
    --vk: #3b5998;
    --wechat: #7bb32e;
    --youtube: #cb2027;
    --email: #f89a1e;
}

.ltn__counterup-item {
    margin-bottom: 50px;
    text-align: center;
}

.ltn__counterup-item .counter-icon {
    margin-bottom: 25px;
}

.ltn__counterup-item .counter-icon i {
    font-size: 65px;
    line-height: 1;
    color: var(--ltn__secondary-color);
}

.ltn__counterup-item h1 {
    font-weight: 700;
    font-size: 42px;
}

.ltn__counterup-item h6 {
    color: var(--ltn__color-5);
    font-family: Vazir-Medium-FD;
}

/* counterup-item-2 */
.ltn__counterup-item-2 {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ltn__counterup-item-2 .counter-icon {
    margin-bottom: 0;
    margin-left: 30px;
    text-align: center;
}

.ltn__counterup-item-2 .counter-icon i {
    font-size: 35px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    border: 1px solid;
    border-radius: 5px;
    color: var(--ltn__color-1);
}

.ltn__counterup-item-2 h1,
.ltn__counterup-item-2 h6 {
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
}

.ltn__counterup-item-2 h6 {
    font-size: 20px;
}

/* counterup-item-3 */
.ltn__counterup-item-3 {
    margin-bottom: 50px;
}

.ltn__counterup-item-3 .counter-icon {
    color: var(--ltn__color-1);
}

.ltn__counterup-item-3 h1 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 5px;
}

.ltn__counterup-item-3 .counterUp-icon {
    font-size: 30px;
}

.ltn__counterup-item-3 h6 {
    font-family: Vazir-Medium-FD;
}

@media (max-width: 1199px) {
    .ltn__counterup-item-3 h1 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .ltn__counterup-item h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .ltn__counterup-area .ltn__section-title-2 {
        text-align: center;
    }

    .ltn__counterup-item h1 {
        font-size: 30px;
    }

    .ltn__counterup-item-3 {
        text-align: center;
    }

    .ltn__counterup-item-3 h1 {
        font-size: 56px;
    }
}

.tabulator-cell > a {
    color: var(--bs-gray-700);
}

.tabulator-cell > a:not(.btn):hover {
    color: var(--bs-blue);
}

.form-check {
    padding-right: 1.5em !important;
}

.form-check .form-check-input {
    float: right !important;
    margin-right: -1.5em !important;
}

.preview-tour {
    width: 100%;
}

.preview-tour iframe {
    width: 100% !important;
}

.modal-footer {
    justify-content: flex-start !important;
}

.logo_silver {
    font-size: 10px;
}

@media screen and (max-width: 999px) {
    .row_calss_parent_page {
        flex-direction: column-reverse;
    }

    .agents-filter-spacing {
        margin-top: 1rem;
        justify-content: space-between;
    }

    .agent-search-list-filter-title {
        margin-top: 1rem;
    }

    .slider-titr h2 {
        font-size: 1.25rem;
    }

    .accardion-button {
        padding: 7px !important;
    }
}

@media screen and (max-width: 993px) {
    .map-agent-all-products {
        margin-top: 2rem;
        padding-left: 0 !important;

    }

    .introduction-post {
        padding: 0 .8rem !important;
    }

}

.profile-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.profile-cards .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    height: 350px;
    position: relative;
    color: #2d2d2d;
    background-color: #b2e5e6;
    letter-spacing: 1px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile-cards .card .card-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    width: auto;
    height: 100%;
}

.profile-cards .card .card-description .card-description-title {
    color: black;
    font-size: 18px;
}

.profile-cards .card .card-description .card-description-profession {
    display: block;
    font-size: 16px;
}

.profile-cards .card .card-description .card-description-company {
    display: block;
    font-size: 14px;
    cursor: pointer;
}

.profile-cards .card .card-description .card-description-company:hover {
    text-decoration: underline;
}

.profile-cards .card .card-description .card-description-social {
    position: absolute;
    bottom: 40px;
}

.profile-cards .card .card-description .card-description-social .card-description-social-follow {
    display: block;
    margin-bottom: 8px;
    color: #555572;
    font-size: 14px;
}

.profile-cards .card .card-description .card-description-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-cards .card .card-description .card-description-social ul li {
    list-style-type: none;
}

.profile-cards .card .card-description .card-description-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #121212;
    border-radius: 50%;
    box-shadow: 6px 6px 12px #97c3c4, -6px -6px 12px #cdffff;
    transition: all 0.4s;
}

.profile-cards .card .card-description .card-description-social ul li a:hover {
    color: white;
    transform: translate(0, -7px);
}

.profile-cards .card .card-description .card-description-social ul li a svg {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
}

.profile-cards .card .card-description .card-description-social ul li:nth-child(1) a:hover {
    background-color: #1da1f2;
}

.profile-cards .card .card-description .card-description-social ul li:nth-child(2) a:hover {
    background-color: #3f729b;
}

.profile-cards .card .card-description .card-description-social ul li:nth-child(3) a:hover {
    background-color: #00405d;
}

.profile-cards .card .card-description .card-description-social ul li:nth-child(4) a:hover {
    background-color: #0a66c2;
}

.profile-cards .card .card-image {
    width: 250px;
    height: 100%;
    object-fit: cover;
}

div.stars {
    width: 270px;
    display: inline-block;
}

input.star {
    display: none;
}

label.star {
    display: block !important;
    float: right;
    padding: 5px !important;
    font-size: 20px;
    color: #444;
    transition: all .2s;
}

input.star:checked ~ label.star:before {
    content: '\f005';
    color: #fa5661;
    transition: all .25s;
}

input.star-5:checked ~ label.star:before {
    color: #fa5661;
    text-shadow: 0 0 20px #952;
}

input.star-1:checked ~ label.star:before {
    color: #F62;
}

label.star-hover:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    content: '\f006';
    font-family: FontAwesome, serif;
}

label.star {
    color: #706b6b;
    font-size: 15px
}

* > label.star {
    width: fit-content !important;
}

@media screen and (max-width: 1280px) {
    .dropdown-menu[data-bs-popper] {
        right: unset !important;
    }

    .menu-mobile .dropdown-menu[data-bs-popper] {
        left: -1rem !important;
    }
}

.g-recaptcha {
    width: 100% !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 1200px) {
    .agent-card.col-md-4 {
        flex: 0 0 auto !important;
        width: 50% !important;
    }

}

@media (max-width: 767px) {
    .agent-card.col-md-4 {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

}

@media (max-width: 512px) {
    .modal-title {
        font-size: 14px;
    }
}

@media (max-width: 384px) {
    .modal-title {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .modal-title {
        font-size: 10px;
    }
}

@media (max-width: 460px) {
    .pmi-geocoder-layout {
        width: 200px !important;
    }
}

@media (max-width: 287px) {
    .pmi-geocoder-layout {
        width: 168px !important;
    }
}

.cropper-view-box {
    outline: 3px solid var(--main-color) !important;
    outline-color: var(--main-color) !important;
}

[name='mobile'] {
    direction: ltr !important;
    text-align: end !important;
}

.toast .toast-message {
    font-size: 12px;
}

.r-tabs-anchor {
    display: flex !important;
    justify-content: space-between !important;
}

.r-tabs-state-active .rs-tab-icon {
    transform: rotate(180deg) !important;
    margin-bottom: 4px !important;
}

@media screen and (min-width: 1201px) {
    .rs-tab-icon {
        display: none !important;
    }
}

@media screen and (max-width: 600px) {
    .r-tabs-anchor {
        font-size: 14px !important;
    }

    .v-tab-content-title, .form-input-group label, .select2-selection {
        font-size: 14px !important;
    }

    .item-upload {
        font-size: 13px !important;
    }
}

.modal-header button[data-dismiss='modal'], .modal-header button[data-bs-dismiss='modal'] {
    background: #fd5f54 !important;
    width: fit-content !important;
    height: fit-content !important;
    padding: 5px 8px !important;
    opacity: 1 !important;
    color: #fff;
    line-height: 20px !important;
    border-radius: 8px !important;
    border: none !important;
}

.modal-header button[data-dismiss='modal']:hover, .modal-header button[data-bs-dismiss='modal']:hover {
    background: transparent !important;
    color: #fd5f54 !important;
    border: none !important;
    box-shadow: none !important;
}

.modal-header button[data-dismiss='modal'] path,
.modal-header button[data-bs-dismiss='modal'] path,
.modal-header button[data-dismiss='modal'] svg,
.modal-header button[data-bs-dismiss='modal'] svg {
    fill: white !important;
    width: fit-content !important;
    height: fit-content !important;
}

.modal-header button[data-dismiss='modal']:hover path,
.modal-header button[data-bs-dismiss='modal']:hover path,
.modal-header button[data-dismiss='modal']:hover svg,
.modal-header button[data-bs-dismiss='modal']:hover svg {
    fill: #fd5f54 !important;

}


#product_documents_section embed {
    max-width: 100% !important;
    object-fit: contain !important;
    height: fit-content !important;
    border: 3px solid #fd5f54 !important;
    border-radius: 12px !important;
}

#product_documents_section embed.is-not-img {
    min-height: 300px !important;
}

@media (max-width: 768px) {
    #product_documents_section embed.is-not-img {
        min-height: fit-content !important;
    }
}

.delete-doc {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: unset !important;
    bottom: unset !important;
    background: #fd5f54;
    color: white;
    border: none;
    padding-bottom: 2px;
    text-align: center;
}

#product-documents div:has(.delete-doc):not([id]) {
    position: relative !important;
    width: fit-content !important;
}

.modal .modal-header {
    background: #3d4f50 !important;
    color: #ffffff !important;
}


.btn-signin .dropdown-item svg {
    width: 24px !important;
    height: 24px !important;
}

.album-img-overlay {
    background: rgba(0, 0, 0, 0.247);
    width: 100%;
    height: 100%;
    text-align: center !important;
    align-content: center;
}

.communication-ways-div svg {
    margin-left: 0.5rem;
}

.banner-img {
    border-radius: 12px;
}

.contact-title .contact-label {
    font-size: 14px !important;
}

@media (max-width: 1400px) and  (min-width: 992px) {
    .contact-title .contact-label {
        display: none;
    }
}


input[type='tel'] {
    direction: rtl !important;
}

button.add-property, a.add-property {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #5c7677 !important;
    display: inline-flex;
    flex-direction: row;
    gap: 0.25rem;
    justify-content: center;
    align-items:center;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-right: 10px !important;
    margin-left: auto !important;
}


.property-registration .addForm, .property-registration .delete-plus-form {
    width: 50px;
    font-size: 24px;
    padding-bottom: 0;
}

.input-group {
    position: relative;
}

.clear-btn {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 612px) {
    .property-registration-header-btns .agent-btn-container {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .property-registration-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
    }

    .property-registration-header-btns .agent-btn-container {
        display: flex;
        flex-direction: row;
        gap: 5px;
        width: 100%;
    }

    .property-registration-header-btns .agent-btn-container * {
        flex: 1;
    }
}

.select2-selection {
    display: flex !important;
    align-items: center !important;
    justify-content: start !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    float: right !important;
}


@media (min-width: 576px) {
    /*  sm  */
    .w-sm-100 {
        width: 100%;
    }

    .w-sm-75 {
        width: 75%;
    }

    .w-sm-50 {
        width: 50%;
    }

    .w-sm-25 {
        width: 25%;
    }
}

@media (min-width: 768px) {
    /*  md  */
    .w-md-100 {
        width: 100%;
    }

    .w-md-75 {
        width: 75%;
    }

    .w-md-50 {
        width: 50%;
    }

    .w-md-25 {
        width: 25%;
    }
}

@media (min-width: 992px) {
    /*  lg  */
    .w-lg-100 {
        width: 100%;
    }

    .w-lg-75 {
        width: 75%;
    }

    .w-lg-50 {
        width: 50%;
    }

    .w-lg-25 {
        width: 25%;
    }
}

.detail-section-main-color-theme {
    .detail-item {

        background: #5c76771f;
    }

    .detail-item-title {
        background: #fd5f54df;
    }

    .detail-item-value {
        color: #fd5f54;
    }
}

.detail-section {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-radius: 8px;
    background: #b0c4de00;
    padding: 8px 12px;
    justify-content: start;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.detail-item {
    background: #5c76771f;
    padding: 6px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.detail-item-title {
    background: #3d4f50af;
    color: white;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 12px;
}

.detail-item-value {
    /*background: #fd5f54;*/
    padding: 2px 6px;
    border-radius: 12px;
    color: #3d4f50;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    font-weight: 500;
    height: 100%;
    text-align: start;
}

.detail-section-title {
    width: 100%;
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #80808050;
    color: #808080;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.no-scrollbar {
    scrollbar-width: none; /* Firefox */
    scrollbar-color: transparent transparent; /* Transparent scrollbar */
}

.no-scrollbar::-webkit-scrollbar {
    width: 0; /* Chrome, Safari */
    background: transparent;
}

.no-scrollbar-y {
    overflow-y: hidden;
}

.no-scrollbar-x {
    overflow-x: hidden;
}

.dyrbz-note, .dyrbz-note-secondary {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-position: 9px 0px;
    background-repeat: no-repeat;
    border-radius: 23px;
    line-height: 18px;
    overflow: hidden;
    padding: 0 6px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: fit-content;
    color: white;
    margin: 0.5rem 0;
}

.dyrbz-note:not(.dyrbz-note-secondary) {
    background: var(--main-color, #fd5f54);
}

.dyrbz-note-secondary {
    background: var(--bs-secondary, #6c757d);
}

.dyrbz-note:before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIHY3LjEuMCBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIENvcHlyaWdodCAyMDI1IEZvbnRpY29ucywgSW5jLi0tPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0yOTYuNSAyOTEuMUMzMjEgMjY1LjIgMzM2IDIzMC40IDMzNiAxOTIgMzM2IDExMi41IDI3MS41IDQ4IDE5MiA0OFM0OCAxMTIuNSA0OCAxOTJjMCAzOC40IDE1IDczLjIgMzkuNSA5OS4xIDIxLjMgMjIuNCA0NC45IDU0IDUzLjMgOTIuOWwxMDIuNCAwYzguNC0zOSAzMi03MC41IDUzLjMtOTIuOXptMzQuOCAzM0MzMDcuNyAzNDkgMjg4IDM3OS40IDI4OCA0MTMuN2wwIDE4LjNjMCA0NC4yLTM1LjggODAtODAgODBsLTMyIDBjLTQ0LjIgMC04MC0zNS44LTgwLTgwbDAtMTguM0M5NiAzNzkuNCA3Ni4zIDM0OSA1Mi43IDMyNC4xIDIwIDI4OS43IDAgMjQzLjIgMCAxOTIgMCA4NiA4NiAwIDE5MiAwUzM4NCA4NiAzODQgMTkyYzAgNTEuMi0yMCA5Ny43LTUyLjcgMTMyLjF6TTE0NCAxODRjMCAxMy4zLTEwLjcgMjQtMjQgMjRzLTI0LTEwLjctMjQtMjRjMC00OC42IDM5LjQtODggODgtODggMTMuMyAwIDI0IDEwLjcgMjQgMjRzLTEwLjcgMjQtMjQgMjRjLTIyLjEgMC00MCAxNy45LTQwIDQweiIvPjwvc3ZnPg==");
    font-size: 19px;
    padding: 12px 12px;
    color: white;
    vertical-align: middle;
    margin: 4px 0 4px 5px;
}

.copy-share-url {
    color: var(--main-color);
    background-color: white;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.copy-share-url:hover {
    color: var(--main-bg-color);
    transform: scale(1.2);

}

.url-token input {
    color: var(--main-bg-color);
}

.service-card .card {
    border-radius: 12px !important;
}

.service-card .detail-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0.25em;
}

.service-card {
    border-radius: 12px !important;
    overflow: hidden;
}

.modal-body:not(:has(*)) {
    display: none !important;
}

i[btn-insider-loader-uuid]:before {
    display: none;
}

.inline-link {
    color: #fd5f54;
    text-decoration: underline;
}

.app-download-links {
    margin-left: 20px;
}

.app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fd5f54;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.app-link:hover {
    background: #e6443e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(230, 68, 62, 0.3);
}

.app-download-label {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    padding-left: 10px;
}

.btn:has(i), .btn i {
    align-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}
.collapse-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
    padding: 0.25rem;
}
.collapse-content {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* change dynamically if needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-height: 4.5em; /* about 3 lines */
    max-width: 100% !important;
    text-wrap: pretty;
    color: currentColor;
}

/* When checked → expand */
.collapse-toggle:checked ~ .collapse-content {
    -webkit-line-clamp: unset;
    max-height: 1000px; /* big enough to fit content */
}

/* Rotate icon */
.collapse-summary-toggle {
    cursor: pointer;
    transition: transform 0.4s ease;
    font-size: 0.75rem;
    color: currentColor;
}

.collapse-toggle:checked ~ .collapse-summary-toggle {
    transform: rotate(180deg);
}

.logo_silver img
{
    height: 70px !important;
    width: 70px !important;
}