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

/*--- common css ---*/

:root {
    --primary-color: #132d4c;
    --accent-color: #c41626;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

span {
    display: inline-block;
}

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

image,
video {
    width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

.common-btn {
    font-size: 18px;
    color: var(--black-color);
    padding: 6px 25px;
    border-radius: 30px;
    transition: 0.5s all;
    background: var(--dark-sky);
}

.common-btn:hover {
    color: var(--white-color);
}

section {
    padding: 30px 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.desktop {
    display: none !important;
}

.mobile {
    display: block !important;
}

/* =========== */

.hero_general_setion.banner {
    background-image: url(../images/main_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero_general_setion.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff71;
}

.hero_general_setion {
    height: calc(100vh - 258px);
}

.hero_general_setion .banner_body {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.banner_logo_box {
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner_logo_box img,
.end_layer_box img {
    width: 100%;
    max-width: 160px;
    max-height: 85px;
}

.banner_logo_box::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    height: 530px;
    width: 110%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.center_box .img_box img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.end_layer_box {
    opacity: 0;
    visibility: hidden;
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.end_layer_box::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    height: 530px;
    width: 110%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.main_login .login_section {
    min-height: 100vh;
    display: flex;
}

.main_login .login_section .left_section {
    background-image: url(../images/login_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_login .login_section .left_section,
.main_login .login_section .right_section {
    width: calc(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    flex-direction: column;
}

.login_section .right_section {
    background-image: url(../images/bg-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_login .login_section .left_section .center_content h1 {
    color: #ffffff;
    font-weight: 900;
    font-size: 55px;
    -webkit-text-stroke: 2px #b72837;
    text-stroke: 2px #b72837;
    margin-bottom: 10px;
}

.main_login .login_section .left_section .custom_search {
    display: flex;
}

.main_login .login_section .left_section .custom_search input {
    border: 2px solid #224b7d;
    outline: none;
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
    padding: 5px 15px;
}

.main_login .login_section .left_section .custom_search .btn_search {
    color: #fff;
    background-color: #224b7d;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    padding: 5px 25px;
    margin-left: -15px;
}

.login_section .right_section .lgo_box img {
    width: 100%;
    max-width: 400px;
}

.login_section .right_section .text_box {
    margin-bottom: 30px;
}

.login_section .right_section .text_box h3 {
    color: #fff;
    margin-bottom: 0px;
}

.login_section .right_section .text_box h6 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}

.login_section .right_section .btn_box {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.login_section .right_section .btn_box .btn_common {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #b72837;
    padding: 5px 25px;
    border-radius: 6px;
    min-height: 40px;
    border: 1px solid #fff;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------- header css ----------- */

.mainHeader .mobile_header {
    display: none;
}

header.mainHeader {
    background-color: #343434;
}

.mainHeader .header_part {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    align-items: center;
    position: relative;
}

.mainHeader .header_part::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background: #224b7d;
    top: 0px;
    left: -40px;
    transform: skew(-40deg);
}

.mainHeader .header_part .left_logo a img {
    width: 100%;
    max-width: 180px;
    position: relative;
    z-index: 55;
}

.mainHeader .header_part .right_menu {
    display: flex;
    align-items: baseline;
    gap: 40px;
}

.mainHeader .icon_box ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mainHeader .icon_box ul li a {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.mainHeader .icon_box ul li a i {
    font-size: 24px;
    color: #343434;
}

.mobile_icons .icon_box ul {
    background-color: var(--accent-color);
    overflow-y: auto;
    scrollbar-width: none;
    padding: 10px 0px 10px 10px;
}

.mobile_icons .icon_box ul li a i {
    color: var(--accent-color);
}

.mainHeader .toggle_icon a i {
    color: #fff;
    font-size: 25px;
}

.toggle_menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 330px;
    background-color: #ffffffeb;
    z-index: 999;
    border-radius: 20px 0px 0px 20px;
    padding: 20px 0;
    transition: 0.5s all;
    overflow-y: auto;
    scrollbar-width: thin;
}

.toggle_menu.show {
    right: 0;
}

.toggle_menu .user_img {
    text-align: center;
}

.toggle_menu .user_img img {
    width: 100%;
    max-width: 90px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.toggle_menu .user_img p {
    font-size: 20px;
    margin: 10px 0;
}

.toggle_menu .user_img p span {
    color: #b72837;
}

.toggle_menu ul li {
    text-align: center;
    margin-bottom: 2px;
}

.toggle_menu ul li a.active,
.toggle_menu ul li a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.toggle_menu ul li a {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
}

.toggle_menu ul li a.back_btn {
    position: relative;
}

.toggle_menu ul li a.back_btn i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
}

.toggle_menu ul li button {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
}

.toggle_menu ul li button.bg_gray {
    color: #fff !important;
    background-color: #606060 !important;
}

.toggle_menu ul li a.bg_gray {
    color: #fff !important;
    background-color: #606060 !important;
}

.toggle_menu .close_icon {
    display: block;
    position: fixed;
    top: 40px;
    right: -100%;
    max-width: 20px;
    width: 100%;
    text-align: center;
    z-index: 222;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.toggle_menu .close_icon a i {
    color: var(--accent-color);
    font-size: 26px;
}

.toggle_menu .close_icon.show {
    opacity: 1;
    visibility: visible;
    right: 15px;
    top: 10px;
}

/* .toggle_menu .btn_box .btn_sitting, */
.btn_logout,
.btn_save {
    color: #fff !important;
    font-size: 18px;
    width: 100%;
    box-shadow: none;
    outline: none;
    padding: 8px 20px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

/* .toggle_menu .btn_box .btn_sitting{
    background-color: var(--accent-color);
} */

.btn_logout {
    background-color: #ff3131;
}

.btn_save {
    color: #fff !important;
    background-color: #606060 !important;
}

.save_discard_btn.show {
    display: flex;
}

.save_discard_btn {
    display: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.save_discard_btn .btn_logout {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 16px;
}

.save_discard_btn .btn_save {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 16px;
}

/* ----------- header css end ----------- */

/* ----------- footer css start ----------- */

.footer_sticky {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: var(--primary-color);
    padding: 30px 20px 50px;
}

.footer_sticky .footer_box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.footer_sticky .footer_box .custom_search {
    display: flex;
}

.footer_sticky .footer_box h4 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

.footer_sticky .footer_box .custom_search input {
    border: 1px solid #fff;
    outline: none;
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
    padding: 5px 15px;
}

.footer_sticky .footer_box .custom_search .btn_search {
    color: #fff;
    background-color: #606060;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    padding: 5px 25px;
    margin-left: -15px;
}

.footer_sticky .footer_box .custom_search .btn_search:hover {
    background-color: #2e2d2d;
}

/* ----------- footer css end ----------- */

.my_profile_drop,
.edit_logo_drop,
.add_logo_drop,
.add_link_drop,
.add_profile_drop,
.add_background_drop,
.add_real_estate_drop,
.add_search_text_drop,
.video_url_generate,
.color_theme_drop,
.accent_select_drop,
.primary_select_drop,
.agent_center_drop,
.access_buyers_drop,
.buyers_portal,
.seller_portal,
.property_review,
.analytics_reports {
    display: none;
}

.my_profile_drop.show,
.edit_logo_drop.show,
.add_logo_drop.show,
.add_link_drop.show,
.add_profile_drop.show,
.video_url_generate.show,
.color_theme_drop.show,
.accent_select_drop.show,
.primary_select_drop.show,
.agent_center_drop.show,
.access_buyers_drop.show,
.buyers_portal.show,
.seller_portal.show,
.property_review.show,
.add_background_drop.show,
.add_real_estate_drop.show,
.add_search_text_drop.show,
.analytics_reports.show {
    display: block;
}

.add_logo_drop li img,
.add_link_drop li img,
.add_profile_drop li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add_link_drop li input {
    width: 100%;
    padding: 2px 5px;
    border: 1px solid #000;
}

/* ---------- From css ----------- */

.login_section .right_section {
    overflow-y: auto;
}

.fill_form_box {
    margin-top: 20px;
    max-width: 450px;
    width: 100%;
    text-align: start;
}

.fill_form_box .box-box {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 10px;
}

.fill_form_box .box-box .form-group {
    width: calc(50%);
}

.fill_form_box .box-box label {
    color: #fff;
    margin-bottom: 5px;
}

.fill_form_box .box-box input,
.fill_form_box .box-box select {
    width: 100%;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    border: 2px solid #224b7d;
    font-size: 16px;
    background-color: #001b438f;
    -webkit-text-fill-color: #fff !important;
    color: #fff;
}

.fill_form_box .box-box input:-webkit-autofill,
.fill_form_box .box-box input:-webkit-autofill:hover,
.fill_form_box .box-box input:-webkit-autofill:focus,
.fill_form_box .box-box textarea:-webkit-autofill,
.fill_form_box .box-box select:-webkit-autofill {
    background-color: #001b438f !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.fill_form_box .box-box input::placeholder {
    font-size: 13px;
}

.new_user_profile {
    padding: 30px 0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.new_user_profile .user_img img {
    width: 100%;
    max-width: 90px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.new_user_profile .user_img p {
    margin-top: 10px;
}

.new_user_profile .user_img p span {
    color: #b72837;
}

.new_user_profile ul li a {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 5px 0;
    transition: 0.3s all;
}

.add_link_drop .img_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.add_link_drop .img_link .img_link_box {
    width: calc(33.33%);
    position: relative;
}

.add_link_drop li img {
    border: 1px solid #000;
}

/* ------- video modal css --------- */

.videoModal .modal-content {
    border-radius: 10px;
}

.videoModal .modal-body {
    padding: 10px;
    border: none;
}

.videoModal .modal-body .top_video_box iframe {
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
}

.video_list .video_box a {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #fff;
    transition: 0.3s all;
    border-radius: 5px;
    margin-bottom: 5px;
}

.video_list .video_box a:hover {
    background-color: var(--accent-color);
}

.video_list .video_box a:hover p {
    color: #fff;
}

/* .video_list .video_box a:not(:last-child) {
    margin-bottom: 5px;
} */

.video_list .video_box a .img_box img {
    width: 100%;
    max-width: 70px;
    border-radius: 8px;
}

.video_list .video_box a p {
    font-size: 15px;
    color: #343434;
    margin-left: 20px;
}

.video_url_generate li .video_url_input,
.add_search_text_drop li input {
    width: 100%;
    text-align: center;
    padding: 2px 5px;
    border: 1px solid #000;
}

/* ------- video modal css --------- */

.colorWheel {
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 0 auto 30px;
}

.color_theme_drop .theme-switch {
    display: flex;
    align-items: center;
    font-family: sans-serif;
    font-size: 14px;
    padding: 10px 10px;
}

.color_theme_drop .theme-switch input {
    display: none;
}

.color_theme_drop .slider {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.color_theme_drop .slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.color_theme_drop input:checked + .slider {
    background-color: #555;
}

.color_theme_drop input:checked + .slider::before {
    transform: translateX(20px);
}

.color_theme_drop .label-text {
    color: #343434;
}

.color_theme_drop .switch_mode {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.accent_select_drop .box-color,
.primary_select_drop .box-color {
    width: 70px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin-right: 5px;
}

.accent_select_drop li:nth-child(2),
.primary_select_drop li:nth-child(2) {
    display: flex;
}

/* ============== */

.buyers_portal .text_top,
.seller_portal .text_top,
.property_review .text_top {
    text-align: center;
    padding: 10px 0;
    margin: 0 10px;
    border-top: 1px solid #000;
}

.buyers_portal .text_top p,
.seller_portal .text_top p,
.property_review .text_top P {
    font-size: 18px;
    color: #343434;
}

.top_filter_box .toggle-container {
    display: flex;
    position: relative;
    align-items: center;
    width: calc(50%);
    border: 1px solid #000;
    padding: 5px;
}

.top_filter_box .filters_list {
    width: calc(50%);
}

.top_filter_box .filters_list select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #000;
    outline: none;
    border-radius: 0;
    text-align: center;
}

.top_filter_box .toggle-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 30px;
    border-radius: 20px;
    background-color: #ccc;
    cursor: pointer;
    padding: 5px;
    position: relative;
    transition: background 0.3s;
}

.top_filter_box .toggle-switch .icon {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    z-index: 1;
    color: #333;
}

.top_filter_box .toggle-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: left 0.3s;
    z-index: 1;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.top_filter_box .toggle-text {
    font-size: 16px;
    color: #343434;
    margin-left: 15px;
}

.top_filter_box #viewToggle:checked + .toggle-switch::after {
    left: 33px;
}

.portal_filters {
    position: relative;
}

.portal_filters .top_filter_box {
    display: flex;
    align-items: center;
}

#mapView .map_box iframe {
    width: 100%;
    height: calc(100vh - 280px);
}

#propertyView,
#mapView {
    position: relative;
}

.top_fix_search {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

.top_fix_search .fixed_search {
    position: relative;
}

.fixed_search input {
    width: 100%;
    padding: 8px 30px 8px 15px;
    border: 1px solid #000;
    box-shadow: none;
    outline: none;
    border-radius: 30px;
}

.fixed_search .search_icon {
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 42px;
    width: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.fixed_search .search_icon i {
    color: #fff;
}

.property_box {
    padding: 50px 10px 40px;
    height: calc(100vh - 270px);
    overflow-y: auto;
}

.property_box .listing_title h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.property_box .listing_title .box_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.property_box .listing_title .box_flex .category_filter ul {
    display: none;
}

.property_box .listing_title .box_flex .category_filter ul li a {
    color: #2a2a33;
    font-size: 16px;
    font-weight: 400;
}

.property_box .listing_title .box_flex .category_filter ul li a:hover {
    background-color: rgb(242, 250, 255) !important;
}

.property_box .listing_title .box_flex .category_filter ul.open {
    display: block;
    position: absolute;
    z-index: 999;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 12px 0px;
    padding: 10px;
    right: 20px;
    width: 100%;
    max-width: 210px;
    border-radius: 5px;
}

.property_box .listing_title .box_flex .category_filter a {
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.wish_list .HeartIcon__fill {
    fill: rgba(0, 0, 0, 0.5);
}

.wish_list .HeartIcon__outline {
    fill: rgb(255, 255, 255);
}

.card_box {
    position: relative;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px 0px;
    margin-bottom: 15px;
}

.card_box a.link {
    width: 100%;
}

.card_box .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.card_box .tag_box {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    font-size: 11px;
    font-weight: 500;
    background-color: #006aff;
    color: #fff;
    border-radius: 15px;
    padding: 1px 10px;
}

.card_box .wish_list {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.card_box .wish_list svg {
    width: 25px;
    height: 25px;
}

.card_box .owl-dots {
    background-color: rgba(42, 42, 51, 0.6);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 4px;
    border-radius: 30px;
    line-height: 0.5;
    padding-bottom: 4px;
    padding-top: 1px;
}

.card_box .owl-dots .owl-dot.active span {
    opacity: 1;
    height: 7px;
    width: 7px;
}

.card_box .owl-dots .owl-dot span {
    display: inline-block;
    height: 6px;
    width: 6px;
    background-color: rgb(255, 255, 255);
    margin: 0px 4px;
    opacity: 0.6;
    border-radius: 50%;
}

.card_box .owl-nav .owl-prev,
.card_box .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.card_box .owl-nav .owl-prev {
    left: 10px;
}

.card_box .owl-nav .owl-next {
    right: 10px;
}

.card_box .owl-nav .owl-prev i,
.card_box .owl-nav .owl-next i {
    color: #fff;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.card_box:hover .owl-nav .owl-prev i,
.card_box:hover .owl-nav .owl-next i {
    opacity: 1;
    visibility: visible;
}

.card_box .slider_text {
    padding: 8px;
}

.card_box .slider_text h5 {
    color: #212529;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 700;
}

.card_box .slider_text p {
    color: #343434;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card_box .slider_text .our_prices {
    justify-self: center;
    display: flex;
    gap: 6px;
    width: -webkit-fill-available;
}

.card_box .slider_text .price_box {
    display: flex;
    flex: 1 1 50%;
    flex-direction: column;
    border: 1px solid #d1d1d5;
    border-radius: 4px;
    padding: 5px;
}

.card_box .slider_text .price_box h6 {
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.card_box .slider_text .price_box span {
    font-size: 14px;
    color: #596b82;
}

.portal_filters .back_box {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 55;
}

.portal_filters .back_box .back_btn {
    color: #fff !important;
    background-color: #606060 !important;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
    text-align: center;
    position: relative;
}

.portal_filters .back_box .back_btn i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
}

/* ========== */

.property_review .tabs_container {
    display: flex;
    justify-content: space-around;
}

.property_review .tabs_container button {
    flex: 1 1 50%;
    font-size: 16px;
    background: none;
    cursor: pointer;
    color: #fff;
    background-color: #606060 !important;
    border-radius: 0;
    border: 1px solid #000;
    box-shadow: none;
}

.property_review .tabs_container button.active {
    background: var(--accent-color) !important;
    padding: 5px 10px;
    border-radius: 0px;
}

.property_review .property-list {
    border-top: 1px solid #ccc;
    display: none;
}

.property_review .property a {
    padding: 10px;
    border: 1px solid #d1d1d5;
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #212429;
}

.property_review .property.active a {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.property_review .sub-options {
    display: none;
    background: var(--accent-color);
    text-align: center;
    display: none;
}

.property_review .sub-options div {
    padding: 1px;
}

.property_review .sub-options div a {
    background-color: #fff !important;
    color: #212529 !important;
}

.property_review .city-select .city_drop a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #212429;
    font-size: 18px;
}

.property_review .city-select .city_drop a i {
    margin-left: 5px;
    font-size: 20px;
    transition: 0.3s all;
}

.property_review .city-select .city_drop a i.rotate {
    transform: rotate(90deg);
}

.property_review {
    padding-bottom: 40px;
    height: calc(100vh - 180px);
    overflow-y: auto;
}

.analytics_reports .top_fix_search {
    position: unset !important;
}

/* property */
/* ------------------ */

.hero_general_setion.webDesk {
    height: calc(100vh - 258px);
}

.desktop_propery {
    display: flex;
}

.desktop_propery .property_box {
    padding: 20px 10px 20px;
    height: calc(100vh - 259px);
}

.desktop_propery .mapView,
.desktop_propery .property_box {
    width: calc(50%);
}

.desktop_propery .mapView .map_box .map_show {
    width: 100%;
    height: calc(100vh - 259px);
}

.top_fix_search .fixed_search {
    position: relative;
}

.desktop_propery .mapView .top_fix_search {
    position: unset;
}

.desktop_propery .crad_flex_box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.desktop_propery .crad_flex_box .card_box {
    width: calc(50% - 5px);
}

.hero_general_setion.webDesk .top_filter_box {
    display: none;
}

.custom-marker {
    background-color: #6c47ff;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.card_box.mapCard {
    width: 300px;
    margin-bottom: 0;
}

.gm-style .gm-style-iw-c {
    padding: 0 !important;
}

button.gm-ui-hover-effect {
    display: none !important;
}

.gm-style-iw-ch {
    padding: 0 !important;
}

.gm-style .gm-style-iw-d {
    overflow: visible !important;
}

.styledGalleryImages .img_box img {
    height: 100%;
    width: 100%;
}

.cluster {
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hero_general_setion.webDesk .top_filter_box {
        display: flex;
    }

    .desktop_propery .mapView,
    .desktop_propery .property_box {
        width: calc(100%);
    }

    .desktop_propery .mapView {
        display: none;
    }

    .desktop_propery .property_box {
        height: calc(100vh - 300px);
    }
}

@media (max-width: 575px) {
    .desktop_propery .crad_flex_box .card_box {
        width: calc(100%);
    }
}

.custom-marker {
    width: 40px;
    height: 40px;
    background-color: #ff5a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ----- property details popup css start ----- */

.listing_details .modal-dialog {
    margin: 0 auto;
    overflow-y: auto;
    max-width: 1248px;
    background-color: #fff;
}

.listing_details .modal-content {
    border-radius: 0;
    border: none;
    height: 100vh;
    overflow-y: auto;
}

.listing_details .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
}

.listing_details .modal-header .back_btn a {
    color: #000;
}

.listing_details .modal-header .back_btn a i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.listing_details .modal-header .logo_box img {
    width: 100%;
    max-width: 140px;
}

.listing_details .modal-header ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.listing_details .modal-header ul li a {
    color: #000;
}

.styledGalleryImages {
    position: relative;
}

.styledGalleryImages .btn_seeall {
    color: #2a2a33;
    border: 1px solid rgb(167, 166, 171);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 55;
}

.styledGalleryImages .btn_seeall svg {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.styledGalleryImages .image_gallery {
    display: grid;
    grid-template-rows: repeat(2, 200px);
    gap: 4px;
}

.image_gallery.desktopHide {
    display: none;
}

.styledGalleryImages .img_box:hover {
    filter: brightness(70%);
    transition: filter 0.1s ease-in;
}

.styledGalleryImages .img_box:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.styledGalleryImages .img_box:nth-child(1) img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.styledGalleryImages .img_box:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.styledGalleryImages .img_box:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.styledGalleryImages .img_box:nth-child(3) img {
    border-top-right-radius: 15px;
}

.styledGalleryImages .img_box:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.styledGalleryImages .img_box:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.styledGalleryImages .img_box:nth-child(5) img {
    border-bottom-right-radius: 15px;
}

.styledGalleryImages .swiper-slide .img_box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.styledGalleryImages .swiper-pagination {
    color: rgb(255, 255, 255) !important;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1px 8px;
    margin: 0px 2px 2px 0px;
    font-size: 13px;
    bottom: 0px;
    right: 0px !important;
    width: fit-content;
    font-weight: 700;
    left: auto;
}

.styledGalleryImages .swiper-button-next {
    right: 0 !important;
}

.styledGalleryImages .swiper-button-prev {
    left: 0 !important;
}

.styledGalleryImages .swiper-button-next,
.styledGalleryImages .swiper-button-prev {
    font-size: 22px;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0px;
    padding: 16px 6px;
}

.styledGalleryImages .swiper-button-next:after,
.styledGalleryImages .swiper-button-prev:after {
    font-size: 14px;
}

.details_text_section {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 46px;
    margin-top: 24px;
}

.left_content_Sec .propertie_name {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.left_content_Sec .propertie_name .tag_div {
    font-size: 12px;
    color: #001751;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    padding: 2px 4px;
    background-color: rgb(224, 242, 255);
}

.left_content_Sec .propertie_name h1 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 8px;
}

.left_content_Sec .propertie_name h1 svg {
    width: 28px;
    stroke: #128a29;
    fill: #128a29;
    margin-bottom: 5px;
    margin-left: 5px;
}

.left_content_Sec .propertie_name h2 {
    color: #2a2a33;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.left_content_Sec .propertie_name a.visit_site {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #006aff;
}

.left_content_Sec .propertie_name a.visit_site svg {
    height: 16px;
    width: 16px;
    stroke: #006aff;
    fill: #006aff;
}

.left_content_Sec .offer_box {
    background-color: #e0f2ff;
    padding: 16px;
    border-radius: 11px;
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 16px 0;
}

.left_content_Sec .offer_box .svg_box svg {
    width: 21px;
    height: 21px;
}

.left_content_Sec .offer_box .text p {
    font-size: 16px;
    margin-right: 8px;
}

.left_content_Sec .offer_box .text p span {
    font-weight: 700;
}

.left_content_Sec .aminity_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.left_content_Sec .aminity_box .box_box {
    background: #f6f6fa;
    border-radius: 4px;
    min-width: 50px;
    width: 100%;
    padding: 12px;
}

.left_content_Sec .aminity_box .box_box svg {
    height: 22px;
    width: 22px;
    margin-right: 10px;
}

.left_content_Sec .aminity_box .box_box span {
    font-size: 16px;
    color: #2a2a33;
}

.right_sticky_box .request_box .btn {
    width: 100%;
    padding: 10px 20px;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    min-height: 44px;
}

.right_sticky_box .request_box {
    padding: 20px;
    margin-top: 24px;
    border: 1px solid #d1d1d5;
    border-radius: 11px;
    position: sticky;
    top: 80px;
}

.right_sticky_box .request_box .btn.btn_blue {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
    margin-bottom: 10px;
}

.right_sticky_box .request_box .btn.btn_blue_border {
    border-color: #006aff;
    color: #006aff;
}

.right_sticky_box .request_box .text_flex {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 24px;
}

.right_sticky_box .request_box .text_flex .svgbox {
    background-color: #f0e3ff;
    border-radius: 50%;
    height: fit-content;
    padding: 4px;
    margin-right: 8px;
    width: fit-content;
}

.right_sticky_box .request_box .text_flex .svgbox svg {
    width: 24px;
    height: 24px;
}

.right_sticky_box .request_box .text_flex h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2a2a33;
}

.right_sticky_box .request_box .text_flex p {
    font-size: 14px;
    font-weight: 400;
    color: #596b82;
}

.features_policies {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d1d1d5;
}

.features_policies .title h2 {
    font-size: 24px;
    color: #2a2a33;
    margin-bottom: 16px;
    font-weight: 700;
}

.features_policies .feacture_box h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
    padding: 8px 0px 8px 8px;
    background: #f6f6fa;
    width: 100%;
}

.features_policies .feacture_box .amenites_flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.features_policies .feacture_box .amenites_flex .com_box {
    margin-bottom: 15px;
}

.features_policies .feacture_box .amenites_flex .com_box h6 {
    font-size: 16px;
    color: #2a2a33;
    margin-bottom: 5px;
    font-weight: 700;
}

.features_policies .feacture_box .amenites_flex .com_box ul {
    list-style: disc;
    padding-left: 30px;
}

.features_policies .feacture_box .amenites_flex .com_box ul li p {
    font-size: 16px;
    color: #2a2a33;
}

.nearby_are {
    padding-bottom: 30px;
    border-bottom: 1px solid #d1d1d5;
    margin-bottom: 20px;
}

.nearby_are .title {
    margin-top: 30px;
}

.nearby_are .title h2 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0px 0px 16px;
}

.nearby_are .title h5 {
    padding-top: 8px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.nearby_are .title p {
    color: #2a2a33;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0px;
}

.nearby_are .map_box iframe {
    width: 100%;
    min-height: 238px;
    border-radius: 4px;
}

.request_tour .title h2 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0px 0px 16px;
}

.request_tour .box_box {
    margin-bottom: 10px;
}

.request_tour .box_box label {
    color: #2a2a33;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.request_tour .box_box input,
.request_tour .box_box textarea {
    width: 100%;
    margin: 0px;
    padding: 9px 16px;
    background-color: #f6f6fa;
    border: 1px solid #d1d1d5;
    border-radius: 4px !important;
    box-shadow: none;
    resize: none;
    outline: none;
}

.request_tour .box_box input:focus,
.request_tour .box_box textarea:focus,
.request_tour .box_box input:hover,
.request_tour .box_box textarea:hover {
    border-color: #006aff;
}

.request_tour .box_box input:focus-visible,
.request_tour .box_box textarea:focus-visible {
    box-shadow: rgb(166, 229, 255) 0px 0px 2px 3px,
        rgb(0, 106, 255) 0px 0px 2px 4px;
}

.request_tour .send_btn .btn_blue {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
    width: 100%;
    padding: 10px 20px;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    min-height: 44px;
    margin-top: 15px;
}

.contact_person {
    margin-top: 20px;
}

.contact_person h6 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
}

.contact_person p {
    color: #2a2a33;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
}

.contact_person p svg {
    width: 16px;
    stroke: #055e16;
    fill: #055e16;
}

.contact_person a {
    font-size: 14px;
    color: #2a2a33;
    font-weight: 400;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .details_text_section {
        grid-template-columns: 1fr;
    }

    .right_sticky_box {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
    }

    .right_sticky_box .request_box {
        box-shadow: rgba(0, 0, 0, 0.13) 0px -7px 10px -3px;
        border: none;
        border-radius: 0;
        position: unset;
    }

    .right_sticky_box .request_box .text_flex {
        display: none;
    }

    .right_sticky_box .request_box {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-direction: row-reverse;
        padding: 15px;
    }

    .right_sticky_box .request_box .btn {
        width: fit-content;
        margin: 0 !important;
    }

    .styledGalleryImages .img_box:nth-child(1) {
        grid-column: 4 / 2;
        grid-row: 1 / 3;
    }

    .styledGalleryImages .img_box:nth-child(2) {
        grid-column: 4 / 4;
        grid-row: 2 / 3;
    }

    .styledGalleryImages .img_box.mobileHide {
        display: none;
    }
}

@media (max-width: 767px) {
    .left_content_Sec .aminity_box {
        grid-template-columns: repeat(2, 1fr);
    }

    .image_gallery.desktopHide {
        display: block;
    }

    .image_gallery.desktopShow {
        display: none;
    }

    .details_text_section {
        padding: 0 16px;
    }

    .listing_details .modal-body {
        padding: 0px 0 16px;
    }

    .styledGalleryImages .img_box:nth-child(1) img,
    .styledGalleryImages .img_box:nth-child(5) img,
    .styledGalleryImages .img_box:nth-child(3) img {
        border-radius: 0 !important;
    }

    .left_content_Sec .propertie_name h1 {
        font-size: 24px;
    }

    .left_content_Sec .propertie_name h2 {
        font-size: 16px;
    }

    .left_content_Sec .propertie_name h1 svg {
        width: 22px;
    }

    .styledGalleryImages .btn_seeall {
        display: none;
    }
}

@media (max-width: 575px) {
    .features_policies .feacture_box .amenites_flex {
        grid-template-columns: 1fr;
    }

    .left_content_Sec .aminity_box {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ----- property details popup css end ----- */
