/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;
    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Custom media query */
@media (max-width: 768px) {
    .col-md-3, .col-md-9 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.rounded {
    border-radius: 8px !important;
}

.icon-box-item {
    z-index: 3;
}

    .icon-box-item .block {
        padding: 35px 27px;
        box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.05);
        border-radius: 15px;
    }

    .icon-box-item .icon {
        display: inline-block;
        height: 90px;
        width: 90px;
        line-height: 90px;
        font-size: 32px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: center;
        color: #fff;
        background-color: #51B56D;
    }

.icon-lg {
    height: unset !important;
    width: unset !important;
    line-height: 1 !important;
}

    .icon-lg i {
        font-size: 40px;
    }



.font-title {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}

.font-dash-label {
    color: #51B56D !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-family: "Rubik", sans-serif;
    text-decoration: underline;
}

.td-text {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    color: #303030;
    text-align: right;
    float: right;
    height: 55px;
    line-height: 55px;
}

.td-text-item {
    font-family: "Rubik", sans-serif;
    color: #303030;
    text-align: center;
}

.td-text-item-left {
    font-family: "Rubik", sans-serif;
    color: #303030;
    text-align: left;
    float: left;
    height: 55px;
    line-height: 55px;
}


.btn-send {
    background: #51B56D;
    color: #fff;
    border-color: #51B56D;
}

.btn-send:hover {
    background: #358d4d;
    border-color: #027e25;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__height {
    height: 100vh;
}

.f14 {
    font-size: 14px !important;
}

.t1 {
    top: 1px !important;
}

.rotated {
    writing-mode: vertical-lr;
    transform: scale(-1, -1);
    margin-top: 5px;
    font-size: medium;
    font-family: Rubik, sans-serif;
}

.scrollbar {
    overflow-y: scroll;
}

.fullscreenArrow {
    cursor: pointer;
    top: 50%;
    color:black;
    background-color: lightgray;
    padding: 15px 6px;
    z-index: 99;
    position: fixed;
    transform: translateY(-50%);
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.highlightBlock {
    background-color: green;
    height: 35px;
    color: white;
}

.force-overflow {
    min-height: 450px;
}

.flatDetailBack {
    font-size: small;
    padding: 5px 10px;
    margin-right: 5px;
}

#DIV_leftArea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#DIV_leftArea::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

#DIV_leftArea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

.ItemsoldIcon {
    position: absolute;
    left: 10px;
    top: 10px;
}

.CompassRightBottom {
    position: absolute;
    right: 20px;
    padding: 5px;
    background-color: #d3d3d3b5;
    border-radius: 10px;
    bottom: 40px;
}

.Arch360RightBottom {
    position: absolute;
    right: 20px;
    bottom: 10px;
}
/*=============== LAYOUT ===============*/
.container {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    z-index: var(--z-fixed);
    transition: .4s;
}

.imgFlatList {
    object-fit: cover;
    width: 100%;
    max-height: 250px;
    border-bottom-color: #80808026;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__img {
    width: 32px;
    border-radius: 50%;
}

.nav__logo {
    color: var(--title-color);
    font-weight: 600;
}


.DivMovementControlsFull {
    position: absolute;
    padding: 10px;
    background-color: #d3d3d380;
    border-radius: 10px;
    bottom: 70px;
    left: 62%;
    transform: translateX(-50%);
}


.loadingFullScreen {
}

.languageSelect {
    width: 70px;
    height: 36px;
    font-size: small;
    float: right;
    margin-top: 5px;
    font-weight: bold;
    background-color: #e6e6e6;
    margin-left: 5px;
}

.resultCountText {
    color: #040404;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    margin-top: 10px;
}

.spinner {
    margin: 20px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        z-index: 999;
        background-color: black;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}



.facilityXX {
    cursor: pointer;
filter: drop-shadow(0 0 10px white) drop-shadow(0 0 8px #ffffff);
    transition: filter 0.25s ease;
}

.mobileFilter {
    display: none;
}

.rightListItem {
    width: calc(33% - 10px);
}

.leftListItem {
    width: calc(50% - 10px);
}

.tableCompareTd {
    text-align: center;
    min-width: 100px;
}

.nav__menu_header {
    display: none;
}


@media screen and (max-width: 768px) and (min-width: 500px) {

    .rightListItem {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 499px) {

    .rightListItem {
        width: calc(100% - 10px);
    }
}

    @media screen and (max-width: 900px) {
        .nav__menu {
            position: fixed;
            bottom: 0;
            left: 0;
            background-color: var(--container-color);
            box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
            width: 100%;
            height: 4rem;
            padding: 0 1rem;
            display: grid !important;
            z-index: 999999;
            align-content: center;
            border-radius: 1.25rem 1.25rem 0 0;
            transition: .4s;
        }

        .CompassRightBottom {
            position: absolute;
            right: 20px;
            padding: 5px;
            background-color: #d3d3d3b5;
            border-radius: 10px;
            bottom: 75px;
        }

        .fullscreenArrow
        {
            display:none;
        }

        .Arch360RightBottom {
            display: none;
        }

        .mobileFilter {
            display: block !important;
        }

        .checkboxInfoDetail {
            cursor: pointer;
            position: absolute;
            right: 20px;
            bottom: 90px;
            width: 55px;
        }

        .DivMovementControlsFull {
            position: absolute;
            padding: 15px;
            background-color: #d3d3d380;
            border-radius: 10px;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav__item {
            width: 100%;
        }

        .pl-1 {
            padding-left: 5px;
        }

        .flatDetailModalMobile {
            padding-bottom: 64px;
        }

        .nav__item:not(:last-child) {
            border-right-style: solid;
            border-right-color: lightgray;
            border-right-width: 1px;
        }

        .dropdown-menu-rooms {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .dropdown-menu-floors {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .dropdown-menu-propertytype {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .dropdown-menu-section {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .dropdown-menu-bath {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .dropdown-menu-balcony {
            display: block !important;
            position: relative !important;
            transform: none !important;
        }

        .mobileFilterHtmlContainerLeft {
            display: none;
        }

        .filterSliderContainer {
            display: block !important;
        }

        .filterSliderContainer {
            display: block !important;
        }

        .divLeftFilterArea {
            display: none;
            padding-bottom: 70px;
            z-index: 99;
            background-color: white;
        }

        .leftAreaHeaderArea {
            display: none;
        }

       

        .leftListItem {
            width: calc(100% - 10px);
        }

        .mobileModal {
            padding-bottom: 64px;
        }

        .nav__menu_header {
            position: fixed;
            top: 10px;
            left: 0;
            background-color: transparent;
            width: 100%;
            height: 4rem;
            padding: 0 1rem;
            display: grid;
            align-content: center;
            transition: .4s;
        }

        .overlay-button
        {
            margin-top:75px;
            margin-left:15px;
        }

        .rightControllerTabs {
            display: none;
        }
    }

    .nav__list,
    .nav__link {
        display: flex;
    }

    .nav__link {
        flex-direction: column;
        align-items: center;
        row-gap: 4px;
        color: #222b2a;
        font-weight: 600;
    }

    .nav__list {
        justify-content: space-around;
    }

    .nav__name {
        font-size: var(--tiny-font-size);
        /* display: none;*/ /* Minimalist design, hidden labels */
    }

    .nav__icon {
        font-size: 1.5rem;
    }

    /*Active link*/
    .active-link {
        position: relative;
        color: #0d6efd;
        transition: .3s;
    }

    /* Minimalist design, active link */
    /* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

    /* Change background header */
    .scroll-header {
        box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    }

    /*=============== MEDIA QUERIES ===============*/
    /* For small devices */
    /* Remove if you choose, the minimalist design */
    @media screen and (max-width: 320px) {
        .nav__name {
            display: none;
        }
    }

    /* For medium devices */
    @media screen and (min-width: 576px) {
        .nav__list {
            justify-content: center;
            column-gap: 3rem;
        }
    }

    @media screen and (min-width: 767px) {
        body {
            margin: 0;
        }

        .section {
            padding: 7rem 0 2rem;
        }

        .nav {
            height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
        }

        .nav__img {
            display: none;
        }

        .nav__icon {
            /*display: none;*/
        }

        .nav__name {
            font-size: var(--normal-font-size);
            /* display: block; */ /* Minimalist design, visible labels */
        }

        .nav__link:hover {
            color: var(--first-color);
        }

        /* First design, remove if you choose the minimalist design */
        .active-link::before {
            content: '';
            position: absolute;
            bottom: -.75rem;
            width: 4px;
            height: 4px;
            background-color: var(--first-color);
            border-radius: 50%;
        }

        /* Minimalist design */
        /* .active-link::before{
      bottom: -.75rem;
  } */
    }

    /* For large devices */
    @media screen and (min-width: 1024px) {
        .container {
            margin-left: auto;
            margin-right: auto;
        }
    }
