/* font-family: 'Khula', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --themeGray: #707070;
    --blue: #0073E1;
    --red: #eb2321;
    --black: #000000;
    --white: #FFFFFF;
    --darkGray: #515151;
    --gray70: #707070;
    --lightGray: #f6f6f6;
    --lightGray2: #C5C5C5;
    --EEEEEE: #EEEEEE;
    --E6E6E6: #E6E6E6;
    --inputBorder: #B3BDC7;
    --placeholder: #92989F;
    --rgbaBlack: rgb(0 0 0 / 50%);
    --transparent: transparent;
    --cyan: #17a2b8;
}

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

body {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Poppins', sans-serif;
    /* background-image: url(../images/banner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    background-attachment: fixed;
    background-color: var(--white); */
}

body.fixed {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

body.body-bg-none {
    background-image: none;
}

/*=======================================================================
1. START COMMON STYLES
=======================================================================*/
.page-top-space {
    padding-top: 130px;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 100px;
    overflow-x: hidden;
}

.scroll-sec {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    padding-top: 80px;
    margin-top: -80px;
}

.sec-title {
    position: relative;
    color: var(--themeGray);
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.sec-title-medium {
    position: relative;
    color: var(--black);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.owl-carousel {
    padding: 0 30px;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 26px !important;
    font-size: 14px !important;
    color: var(--white) !important;
    background-color: var(--themeGray) !important;
    border-radius: 50%;
    opacity: 0.8;
}

.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: 0;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    opacity: 1;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.owl-carousel .owl-nav button.owl-prev::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.owl-carousel .owl-nav button.owl-next::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/*=======================================================================
1. END COMMON STYLES
=======================================================================*/

/*=======================================================================
2. START HEADER STYLES
=======================================================================*/
.main-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 30px;
    background-color: var(--white);
    background-color: var(--white);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 1024;
}

.main-navigation .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.main-navigation .logo {
    max-width: 140px;
}

.main-navigation .nav-pills .nav-item {
    margin: 0 20px;
}

.main-navigation .nav-pills .nav-item:first-child {
    margin-left: 0;
}

.main-navigation .nav-pills .nav-item:last-child {
    margin-right: 0;
}

.main-navigation .nav-pills .nav-link {
    padding: 0 5px;
    border-radius: 0;
    border-bottom: 4px solid var(--transparent);
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    font-weight: 600;
    color: var(--themeGray);
    text-transform: uppercase;
}

.main-navigation .nav-pills .nav-link.active,
.main-navigation .nav-pills .show>.nav-link {
    color: var(--themeGray);
    background-color: var(--transparent);
    border-color: var(--themeGray);
}

.main-navigation .nav-pills .menu-icon {
    max-width: 40px;
}

.main-navigation .menu-toggle-btn .menu-icon {
    max-width: 25px;
    transition: 0.3s;
}

.main-navigation.active .menu-toggle-btn .menu-icon {
    transform: rotate(90deg);
}

.main-navigation .nav-pills .dropdown .nav-link[aria-expanded="true"] .menu-icon {
    transform: rotate(90deg);
}

.main-navigation .nav-pills .dropdown .dropdown-menu {
    border-radius: 0;
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.2);
    /* margin-top: 0; */
    right: -30px;
}

.main-navigation .nav-pills .dropdown .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--themeGray);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--lightGray);
}

.main-navigation .nav-pills .dropdown .dropdown-item:last-child {
    border-bottom: 0;
}

.main-navigation .nav-pills .dropdown .dropdown-item:focus,
.main-navigation .nav-pills .dropdown .dropdown-item:active {
    background-color: var(--white);
}

.main-navigation .booknow-btn {
    width: auto;
    min-height: auto;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 1rem;
    margin-top: 10px;
}

.menu-backdrop {
    display: none;
}

.main-navigation .navigation {
    position: fixed;
    top: 0;
    right: -350px;
    background-color: var(--white);
    width: 350px;
    height: 100vh;
    display: block;
    padding-top: 60px;
    transition: 0.3s;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 10%);
    z-index: 1024;
}

.main-navigation .navigation.active {
    right: 0;
}

.main-navigation .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    /* z-index: 1025; */
}

.main-navigation .navigation.active .menu-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 350px);
    height: 100%;
    transition: 0.35s;
    background-color: rgba(0, 0, 0, 0.3);
}

.main-navigation .navigation .nav-item {
    margin: 0;
    border-bottom: 1px solid var(--EEEEEE);
}

.main-navigation .navigation .nav-item:first-child {
    /* border-top: 1px solid var(--EEEEEE); */
}

.main-navigation .navigation .nav-link {
    padding: 0 15px;
}

.main-navigation .right-menu .nav-item {
    margin: 0 5px;
}

.main-navigation .right-menu .nav-link {
    font-size: 14;
}

/*=======================================================================
2. END HEADER STYLES
=======================================================================*/



/*=======================================================================
3. START HOME PAGE STYLES
=======================================================================*/
/*======================================
3.1 START HOME BANNER STYLES
======================================*/
.home-banner {
    position: relative;
    width: 100%;
    min-height: calc(100vh + 80px);
    color: var(--themeGray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 150;
    overflow: hidden;
}

.home-banner .contnt {
    position: relative;
    max-width: 930px;
    margin-top: 10vh;
}

.home-banner .contnt h2 {
    position: relative;
    font-size: 60px;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 30px;
}

.home-banner .contnt h2 img {
    position: absolute;
    top: -50px;
    right: 0;
    max-width: 150px;
    pointer-events: none;
}

.home-banner .contnt p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}

.home-banner .contnt .btn {
    width: 300px;
}

.home-banner .dron-img {
    position: absolute;
    top: 60%;
    max-width: 250px;
    right: -112px;
    transform: translateY(-50%) rotate(-40deg);
    pointer-events: none;
    z-index: -1;
}

/*======================================
3.1 END HOME BANNER STYLES
======================================*/

/*======================================
3.2 START FAQ SECTION STYLES
======================================*/
.faq-section {
    position: relative;
    overflow: hidden;

}

.faq-section .title {
    margin-bottom: 20px;
}

.faq-item {
    position: relative;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--themeGray);
    border-radius: 25px;
    margin-top: 25px;
}

.faq-item h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--themeGray);
}

.faq-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--themeGray);
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.faq-section .dron-img.left {
    position: absolute;
    top: 55%;
    left: -20px;
    max-width: 250px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
}

.faq-section .dron-img.right {
    position: absolute;
    top: 75%;
    right: -60px;
    max-width: 250px;
    transform: translateY(-50%) rotate(-40deg);
    pointer-events: none;
    z-index: -1;
}

/*======================================
3.2 END FAQ SECTION STYLES
======================================*/

/*======================================
3.3 START CONTACT US SECTION STYLES
======================================*/

/*======================================
3.3 END CONTACT US SECTION STYLES
======================================*/
/*==================================
 3. END HOME BANNER SECTION
==================================*/

/*==================================
 4. START FOOTER SECTION
==================================*/
.footer {
    position: relative;
    padding: 20px 0 20px 0;
    background-color: var(--E6E6E6);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.0);
}

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    
}

.footer .col-left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.footer .col-right {
    flex: 1;
}

.footer .col-left a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: var(--themeGray);
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer .col-left a::after {
    content: "|";
    display: inline-block;
    margin: 0 15px;
    color: var(--themeGray) !important;
}

.footer .col-left a:last-child::after {
    display: none;
}

.footer .col-left a:hover {
    color: var(--red);
}

.footer .social-icon {
    display: inline-block;
    color: var(--themeGray);
    font-size: 25px;
    margin-bottom: 0;
}

.footer .social-icon:nth-child(2) {
    margin: 0 5px;
}

.newsletter-form {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.footer .bottom-links {
    text-align: right;
}

.footer .bottom-links a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--themeGray);
}

.footer p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: var(--themeGray);
    margin-bottom: 3px;
    text-align: left;
}

.footer .bottom-links a span {
    display: inline-block;
    color: var(--themeGray);
    margin: 0 7.5px;
}

.footer .bottom-links a:hover {
    color: var(--blue);
}


.newsletter-form p {
    font-size: 18px;
    color: var(--themeGray);
    font-weight: 500;
}

.newsletter-form .input-group .form-control {
    margin-right: 12px;
    border-radius: 8px !important;
}

.newsletter-form .input-group .btn {
    margin-left: 0;
    border-radius: 8px !important;
}

/*==================================
 4. END FOOTER SECTION
==================================*/

/*==================================
 5. START CONTACT US PAGE
==================================*/

.contact-us {
    position: relative;
    overflow-x: hidden;
}

.contact-form {
    max-width: 500px;
}

.contact-form .g-recaptcha>div {
    margin: 0 auto;
}

.contact-us .dron-img {
    position: absolute;
    top: 60%;
    max-width: 250px;
    right: -112px;
    transform: translateY(-50%) rotate(-40deg);
    pointer-events: none;
    z-index: -1;
}

.theme-form {
    position: relative;
    /* max-width: 375px; */
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    border: 1px solid var(--themeGray);
    border-radius: 17px;
    background-color: var(--white);
    margin-top: 5vh;
}

/* .contact-form .g-recaptcha {
  max-width: 90%;
  margin: 0 auto;
} */
.theme-form .dron-img {
    position: absolute;
    top: -5vw;
    left: -11vw;
    max-width: 11vw;
    transform: none;
}

/*==================================
 5. END CONTACT US PAGE
==================================*/

/*==================================
 6. START BOOKING PAGE
==================================*/
.booking-form {
    max-width: 1200px;
    margin-bottom: 80px;
}

.booking-form .form-control,
.booking-form .form-select {
    text-align: center;
}

.booking-form .form-select::selected {
    color: var(--placeholder);
}

.tooltip-btn {
    padding: 0;
    color: var(--themeGray);
}

.address-input {
    position: relative;
}

.address-input::before {
    /* content: "\f3e8"; */
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--placeholder);
}

.address-input input {
    padding-left: 2rem;
}

.booking-form .form-check {
    padding-left: 0 !important;
    display: flex;
    align-items: center;
}

.booking-form .form-check .form-check-label {
    padding-left: 10px;
    line-height: 25px;
}

.radio-img {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 15px;
    margin-top: 8px;
    overflow: hidden;
}

.radio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radio-img .ovelay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.radio-img .ovelay h5 {
    font-size: 15px;
    color: #FFF;
    text-shadow: 0 0 2px rgb(0 0 0 / 50%);
}

/*==================================
 6. END BOOKING PAGE
==================================*/

/*==================================
 7. START OUR WORK & DETAILS PAGE
==================================*/
.our-work-sec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px !important;
}

.ourwork-card {
    position: relative;
    display: block;
    width: 100%;
}

.ourwork-card .img-view {
    position: relative;
    width: 100%;
    height: 17.025vw;
    margin-bottom: 25px;
}

.ourwork-card .img-view img,
.ourwork-card .img-view video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-view .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
}

.ourwork-card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ourwork-card h5 {
    font-size: 0.9vw;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
    text-shadow: 0 0 2px rgb(0 0 0 / 50%);
}

.ourwork-card p {
    font-size: 18px;
    font-weight: 300;
    color: var(--themeGray);
}

.ourwork-card .bottom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
}


/* START OUR WORK DETAILS PAGE */
.owd-sec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0 !important;
    padding-top: 36px !important;
}

.owd-sec .banner-sec {
    position: relative;
    width: 100%;
    height: 30vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5vw;
    color: var(--white);
    z-index: 15;
}

.owd-sec .banner-sec::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.banner-sec .content {
    /* max-width: 500px; */
}

.banner-sec h1 {
    font-size: 2.75vw;
    font-weight: 600;
}

.banner-sec .active-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
}

.descripton-sec .col-left,
.descripton-sec .col-right {
    padding-top: 50px;
    padding-bottom: 50px;
}

.descripton-sec .col-right {
    padding-left: 50px;
}

.descripton-sec .title {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray70);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.descripton-sec .title2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--gray70);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.descripton-sec p {
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    color: var(--gray70);
    margin-bottom: 0;
}

.description-sec-property {
    text-align: center;
}

.descripton-sec .col-right p {
    line-height: normal;
}

.owd-img-view {
    position: relative;
    width: 100%;
    height: 32vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.owd-slider .owl-nav {
    display: block !important;
}

.owd-slider .owl-nav .owl-prev,
.owd-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF !important;
    font-size: 100px !important;
    text-shadow: 0 0 5px rgb(0 0 0 / 50%);
}

.owd-slider .owl-nav .owl-prev.disabled,
.owd-slider .owl-nav .owl-next.disabled {
    opacity: 0;
}

.owd-slider .owl-nav .owl-prev {
    left: 50px;
}

.owd-slider .owl-nav .owl-next {
    right: 50px;
}

.map-wrapp {
    width: 100%;
    height: 100%;
}

.location-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding: 100px 20px;
    background-color: var(--E6E6E6);
    min-height: 500px;
}

.location-content {
    position: relative;
    padding-left: 5vw;
}

.location-content h5 {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray70);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.location-content h6 {
    font-size: 30px;
    font-weight: 400;
    color: var(--gray70);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.location-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray70);
}

.location-content .contact-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray70);
    text-transform: uppercase;
    margin-top: 40px;
}

.contact-person-row {
    display: inline-flex;
    align-items: center;
}

.contact-person-row .img-view {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.contact-person-row .img-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-row .content {
    flex: 1;
    padding-left: 20px;
    text-align: left;
}

.contact-person-row h4,
.contact-person-row h4 a {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray70);
}

.contact-person-row h5,
.contact-person-row h5 a {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray70);
}

/* END OUR WORK DETAILS PAGE */
.address-sec {
    position: relative;
    /* background-color: var(--E6E6E6);
  box-shadow: 0 -5px 10px rgb(0 0 0 / 20%); */
}

.address-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.address-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 0;
}


/*==================================
 7. END OUR WORK & DETAILS PAGE
==================================*/

.error {
    font-size: 12px;
    color: red;
    display: block;
}

.booking-back-class-sub {
    background: gray;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.booking-back-class-sub i {
    color: white;
}

.booking-back-class-main {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.booking-back-class-main h6 {
    margin-bottom: 0;
}

.gallary-sec .img-wrap {
    position: relative;
    height: 100%;
    display: block;
    margin-bottom: 25px;
}

.gallary-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightgallery .img-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 2vw;
    color: #f9f9f9;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    user-select: none;
}

.lightgallery .img-wrap:hover .overlay {
    opacity: 1;
    transform: scale(1);
}


/* Documement button => property detail page */
.document-sec .btn-gray-outline {
    position: relative;
    color: var(--themeGray);
    border-color: var(--themeGray);
    background-color: var(--white);
    border-radius: 25px;
    width: auto;
    min-width: 150px;
    height: 40px;
    min-height: 40px;
    line-height: 26px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    overflow: hidden;
}

/* Round link section => Property detail page */
.round_link iframe {
    height: 700px;
    width: 100%;
}

#panorama-360-view {
    width: 100%;
    height: 600px;
}

.op-0 {
    opacity: 0;
}

#bookingDatepicker .ui-datepicker-inline {
    width: 100% !important;
    background-color: var(--themeGray);
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    height: 100%;
    width: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#timeavailability {
    position: relative;
    max-height: 248px;
    border: 1px solid lightgrey;
    overflow: auto;
}

#timeavailability table {
    position: relative;
    border-width: 0 !important;
    margin-bottom: 0;
}

#timeavailability table thead {
    position: sticky;
    top: 0;
}

.cc-card-input {
    padding-top: 10px;
    text-align: center;
}

.cc-card-input .InputElement {
    text-align: center;
}

table,
th,
td {
    border: 1px solid lightgray;
    border-collapse: collapse;
}

table>thead>tr {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

table.dataTable thead th,
table.dataTable thead td {
    border-bottom: 1px solid lightgray;
}

table.dataTable.no-footer {
    border: none !important;
}

table .btn {
    width: auto;
    min-width: auto;
    height: auto;
    min-height: auto;
}

table tr th:last-child,
table tr td:last-child {
    width: 150px;
}

.red {
    color: #D0011B;
    font-size: 1.15em;
}

.green {
    color: #4CAF50;
    font-size: 1.15em;
}

.blue {
    color: #1e449b;
    font-size: 1.15em;
}

.font-weight-bold {
    font-weight: 500;
}

.floor-plan-slider {
    padding: 0 30px;
}

.floor-plan-slider .owl-nav {
    display: block !important;
}


/*=============================================
        DATA TABLE STYLE
=============================================*/

.data-table .dataTable {
    width: 100% !important;
}

.data-table .dataTable tbody tr td:first-child {
    text-align: center;
}

.data-table .dataTable td,
.data-table .dataTable tr {
    white-space: nowrap;
    text-align: left;
}

.data-table .dataTable .btn {
    min-width: auto;
    min-height: auto;
    line-height: inherit;
}

.data-table .dataTables_wrapper .dataTables_filter input {
    margin-left: 0;
    border-radius: 0.3rem;
    margin-bottom: 20px;
}

.data-table .dataTables_wrapper .dataTables_length {
    margin-top: 12px;
}

.data-table .dataTables_wrapper .dataTables_length select {
    border-radius: 0.3rem;
    border-color: #b3bdc7;
}

.info-view {
    position: relative;
    padding: 10px;
    border: 1px solid #dee2e6;
    min-height: 100%;
}

.info-view label {
    color: gray;
    padding-top: 0;
    padding-bottom: 5px;
}

.info-view p:last-child {
    margin-bottom: 0;
}

.br-title {
    position: relative;
    color: var(--themeGray);
    border-bottom: 2px solid var(--themeGray);
    margin-top: 30px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.br-title .left {
    flex: 1;
}

.br-title .right {
    margin-left: 10px;
    text-align: right;
}

.br-title h5 {
    margin-bottom: 0;
}

.br-title .btn {
    min-height: auto;
    text-transform: capitalize;
    font-weight: 400;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
    margin-bottom: 0 !important;
}

.info-view img {
    width: 100%;
    height: 8vw;
    /* height: 120px; */
    object-fit: cover;
}

.info-view img.floor-plan-img {
    height: 17vw;
}

.info-view video {
    width: 100%;
    height: 10vw;
    /* height: 220px; */
    object-fit: cover;
}

.input-comment {
    font-size: 80% !important;
    color: var(--cyan) !important;
    /* font-weight: 500 !important; */
    margin-bottom: 10px;
}

.address-content h6,
.address-content h6 a {
    color: var(--gray70) !important;
}


.contact-person-brokerage {
    padding-bottom: 2rem;

}

