/* ======================
   MAIN STYLES
   ====================== */
   :root {
    --novo-blue: #162f7f;
    --novo-orange: #b46822;
    --secondary-orange: #d37a26;
    --light: #f8f8f6;
    --accent: #91a3ab;
    --dark: #1b2220;
    --light-contrast: #b5b5b5;
    --light-gray: #9a9a9a;
    --gray: #333333;

    --main-font: "Lato", sans-serif;
}

/* ======================
   CSS RESET
   ====================== */
   html, body, div, span, applet, object, iframe,
   h1, h2, h3, h4, h5, h6, p, blockquote, pre,
   a, abbr, acronym, address, big, cite, code,
   del, dfn, em, img, ins, kbd, q, s, samp,
   small, strike, strong, sub, sup, tt, var,
   b, u, i, center,
   dl, dt, dd, ol, ul, li,
   fieldset, form, label, legend,
   table, caption, tbody, tfoot, thead, tr, th, td,
   article, aside, canvas, details, embed,
   figure, figcaption, footer, header, hgroup,
   menu, nav, output, ruby, section, summary,
   time, mark, audio, video {
       margin: 0;
       padding: 0;
       border: 0;
       font-size: 100%;
       font: inherit;
       font-family: var(--main-font);
       vertical-align: baseline;
   }   

body {background-color: var(--light) !important;}
/* main {margin-bottom: 120px;} */
p {color: var(--dark);}



/* ======================
   NAVBAR
   ====================== */
/* nav {background-color: var(--novo-blue);} */
.nav-brand {display: inline-table; color: white; text-decoration: none;}
.nav-link, .nav-brand, .nav-user {color: white !important;}
.nav-link i, .nav-user img, .nav-brand img {margin-right: 5px;}
.nav-brand span {font-family: 'Lato';}
.nav-user:hover {color: var(--secondary-orange) !important;}
.nav-link:hover i::before {
    animation: rotate 0.5s;
    animation-iteration-count: 1;
}
.nav-link.spin:hover i::before {
    animation: spin 0.5s !important;
}
.nav-brand:hover img {
    /* animation: shake 0.2s;
    animation-iteration-count: 1; */
    cursor: default;
}
.nav-brand:hover span {font-weight: bold;}
@keyframes rotate {
    0% { transform: rotateY(-1deg); }
    10% { transform: rotateY(-36deg); }
    20% { transform: rotateY(-72deg); }
    30% { transform: rotateY(-108deg); }
    40% { transform: rotateY(-144deg); }
    50% { transform: rotateY(-180deg); }
    60% { transform: rotateY(-216deg); }
    70% { transform: rotateY(-252deg); }
    80% { transform: rotateY(-288deg); }
    90% { transform: rotateY(-334deg); }
    100% { transform: rotateY(-360deg); }
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(2deg); }
    50% { transform: translate(-1px, 0px) rotate(-2deg); }
    100% { transform: translate(1px, -1px) rotate(-2deg); }
}
@keyframes spin {
    0% { transform: rotate(-15deg); }
    10% { transform: rotate(-30deg); }
    20% { transform: rotate(-45deg); }
    30% { transform: rotate(-60deg); }
    40% { transform: rotate(-75deg); }
    50% { transform: rotate(-90deg); }
    60% { transform: rotate(-105deg); }
    70% { transform: rotate(-120deg); }
    80% { transform: rotate(-135deg); }
    90% { transform: rotate(-150deg); }
    100% { transform: rotate(-165deg); }
}
nav .dropdown-menu {background-color: var(--light) !important;}
nav .dropdown-menu a {font-weight: bold;}
nav .dropdown-item:focus, nav .dropdown-item:hover{
    position: relative;
}
nav .dropdown-item:focus::before, nav .dropdown-item:hover::before{
    content: "";
    width: 4px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--secondary-orange);
}
@media (min-width: 768px) {
    .vh-big {height: 100vh !important;}
    .main-container {position: relative;}
    nav {height: 100vh;}
    nav, nav hr {width: 230px !important;}
    nav ul {width:100%;} 
    nav hr {color: var(--light); margin: 0;}
    .nav-brand {margin: 2.5rem 0;}
    /* .nav li { border-left: 8px solid var(--novo-orange); position: relative; width: 100%;} */
    .nav li {position: relative; width: 100%;}
    .nav-user {padding: 0 2.25rem 0 1rem;}
    .nav-brand {padding: 0 1rem;}
    .nav li {padding: 0 0 0 1rem;}
    .nav-link:hover {font-weight: bold;}
    .nav li:hover:after{
        width: 100%; 
        border-right: 3px solid white;
        border-top: 3px solid white;
        border-bottom: 3px solid white;
    }
    .nav li:hover {
        border: none;
        padding-left: 1.5rem;
    }
    .nav li:after { 
        content: "";
        height: 100%; 
        left: 0; 
        top: 0; 
        width: 0px;  
        position: absolute; 
        transition: all 0.3s ease 0s; 
        -webkit-transition: all 0.3s ease 0s; 
        z-index: -1;
        /* background: var(--novo-orange); */
        border-top-right-radius: 26px;
        border-bottom-right-radius: 26px;
      }
}
@media (max-width: 767px) {
    .vh-sm {height: 100%; position: relative;}
    nav {height: 85px !important; width:100%;}
    .nav-link:hover {color: var(--secondary-orange) !important;}
    .nav-cont {margin: 0 .75rem;}
    .main-container {height: 100vh;}
    .nav-brand {max-width: 200px;}
}


/* ======================
   FOOTER
   ====================== */
footer {
    background-color: var(--light-contrast);
    /* width: 100%; */
    height: 120px;
    position: sticky;
    bottom: 0;
}
footer ul {
    display: flex;
}
footer ul li {list-style: none;}
footer ul li a {
    width: 60px;
    height: 60px;
    background-color: white;
    text-align: center;
    line-height: 80px;
    font-size: 35px;
    margin: 0 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    z-index: 1;
}
footer ul li a .icon {
    position: relative;
    padding: .5rem;
    color: var(--novo-blue);
    transition: .5s;
    z-index: 3;
}
footer ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}
footer ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}
footer ul li a:hover:before {top: 0;}
footer ul li:nth-child(1) a:before{background: #3b5999;}
footer ul li:nth-child(2) a:before{background: #55acee;}
footer ul li:nth-child(3) a:before {background: #0077b5;}
footer ul li:nth-child(4) a:before {background: #ff0000;}


/* ======================
   DASHBOARD
   ====================== */
 .dashboard, main {
    background-color: #f4f4f4;
 }
.dashboard-header {
    height: 380px;
    padding-top: 80px;
    padding-bottom: 45px;
    background: var(--dark);
    background: linear-gradient(
        -10deg,
        var(--novo-blue) 0,
        var(--novo-blue) 25%,
        var(--novo-orange)
    );
    overflow: hidden;
    position: absolute;
}
.dashboard h4 {color: var(--novo-blue);}
.dashboard th {color: var(--secondary-orange);}
/* .dashboard {margin-top: 350px !important;} */
.dashboard {margin-top: 1.5rem !important;}
.dashboard .card-header,
.dashboard .card-body,
.dashboard .card-footer,
.dashboard .card {
    background-color: #ffffff;
    border: none;
    display: inline-block;
    position: relative;
    width: 100%;
}
.dashboard .card {
    border-radius: 4px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 1.5rem;
    /* box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%); */
}
.card-header .card-category {
    margin-bottom: 5px;
    font-weight: 400 !important;
}
.card-chart .card-header .card-title {
    margin-top: 10px;
    margin-bottom: 0;
}
.card-category {
    font-size: 1em;
}
.card h4 {font-weight: 400 !important;}
.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.dashboard .card-body {
    padding: 15px 15px 10px;
}
.card-category, .category {
    color: var(--gray);
}
.card-footer .stats {
    color: var(--gray);
}
.card-chart .card-body {
    height: 190px;
    padding: 0;
}
.card .card-footer .datum {font-size: 12px; color: var(--gray);}
#rental-unit-table a {color: var(--novo-blue) !important;}
#rental-unit-table a:hover {color: var(--novo-orange) !important;}
#rental-unit-table th {
    color: #504945;
    font-weight: 600;
    font-size: 14px;
    vertical-align: bottom;
}




.text-primary {
    color: rgba(24,47,127, 1) !important;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700 !important;
    line-height: 1.2;
}
.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}


/* ======================
   LOGIN PAGE
   ====================== */
.login {
    min-height: 100vh;
}
.bg-logo {
    /* background-image: url(https://rentreasonableness.novoco.com/static/images/logos/novo_Co_color_regMark.png); */
    background-image: url("../images/NovoRentLogo_color.fa57b476f97d.png");
    position: absolute;
    top: 15px;
    right: 25px;
    width: 14rem;
    background-size: cover;
    height: 2.5rem;
}
.login-heading {
    font-weight: 300;
    color: #212529;
}
.bg-image {
    background-image: url("../images/NovoRent_LoginImage.e0da8a1e8bc9.jpg");
    background-size: cover;
}
#btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    display: block;
    width: 100%;
}
.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}
.form-label-group > input {
    padding: .75rem 1.5rem;
    height: auto;
    border-radius: 2rem;
}
.form-label-group input:not(:placeholder-shown)~label {
    padding-top: calc(.75rem / 3);
    padding-bottom: calc(.75rem / 3);
    font-size: 12px;
    color: #777;
}
.form-label-group input:not(:placeholder-shown) {
    padding-top: calc(.75rem + .75rem * (2 / 3));
    padding-bottom: calc(.75rem / 3);
}
.form-label-group>input, .form-label-group>label {
    padding: .75rem 1.5rem;
    height: auto;
}
.form-group {
    margin-bottom: 1rem;
}
.form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: all .1s ease-in-out;
}


/* ======================
   ABOUT US PAGE
   ====================== */
.about-us-container header.masthead:before {
    content: "";
    position: absolute;
    background-color: #1c375e;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.about-us-container .masthead {
    background: url('https://rentreasonableness.novoco.com/static/images/apartments/pic2.jpg') no-repeat bottom center;
    padding-top:12rem;
    padding-bottom:12rem;
    position: relative;
}
.features-icons .features-icons-item .features-icons-icon i {
    font-size: 4.5rem;
}
.features-icons {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.why-rent-img {
    background-image: url("https://rentreasonableness.novoco.com/static/images/apartments/pic6.jpg");
}
.take-advantage-img {
    background-image: url('https://rentreasonableness.novoco.com/static/images/apartments/pic16.jpg');
}
.novogradac-will-img {
    background-image: url("https://rentreasonableness.novoco.com/static/images/apartments/pic12.jpg");
}
.have-questions-img {
    background: url('https://rentreasonableness.novoco.com/static/images/apartments/pic26.jpg') no-repeat center center;
}
.showcase .showcase-text {
    padding: 3rem;
}
@media (min-width: 768px) {
    .showcase .showcase-text {
        padding: 7rem;
    }
}
.showcase .showcase-img {
    min-height: 30rem;
    background-size: cover;
}
.call-to-action {
    position: relative;
    background-color: #343a40;
    background-size: cover;
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.call-to-action:before {
    content: "";
    position: absolute;
    background-color: #1c375e;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}


/* ======================
    PRICING PAGE
   ====================== */
.card-deck .card {
    min-width: 220px;
}
.box-shadow {
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 5%);
}
.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.required-field {
    font-weight: bold;
    color: var(--secondary-orange);
}

.similarity-score {
    border: none;
    color: black;
    padding: 5px 7px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    border-radius: 5px;
}

.green {
    background-color: #6cca1f; /* Strong green for scores > 0.9 */
    color: white;
}

.light-green {
    background-color: #93ca65; /* Light green for scores between 0.8 and 0.9 */
}

.yellow {
    background-color: #cfcf3b; /* Yellow for scores between 0.7 and 0.8 */
}

.red {
    background-color: rgb(157, 0, 6); /* Red for scores < 0.7 */
    color: white;
}


/* ======================
    REGISTER PAGE
   ====================== */

.user-register-container {
    background-color: var(--novo-blue);
    height: 100%;
}
.user-register-container form {
    background-color: var(--light);
}
.user-register-container h1 {
    color: var(--novo-blue);
}
.user-register-container label {
    font-size: 12px;
}
.user-register-container button {
    background-color: var(--novo-blue);
}
.user-register-container span {
    font-size: 12px;
}



/* =========================
    CREATE RENTAL FORM PAGE
   ========================= */
.form-page {
    background: linear-gradient( 176deg, lightslategray 0, lightslategray 60%, var(--novo-orange) );
}
.form-page .page-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    min-height: 100vh;
    padding: min(1rem,5vh) min(1rem,5vw);
}
.form-page .form-container {
    background: var(--light);
    border-radius: .25rem;
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.5);
    float: none;
    height: auto;
    margin-bottom: 15vh;
    padding: 2.5rem 1.5rem;
    max-width: 100%;
    /* min-width: 30rem; */
    text-align: center;
}
@media (max-width: 780px) {
    .form-page .form-container {min-width: 95%;}
}
.form-page .form-container h2 {
    color: var(--novo-blue);
}
/* Progress bar */
.form-page .progress_bar {
    display: flex;
    margin: 1.5rem -1.75rem;
    justify-content: center;
    user-select: none;

}
.form-page .progress_bar .step {
    text-align: center;
    width: 80px;
    position: relative;
}
.form-page .progress_bar .step p {
    font-weight: 500;
    font-size: 16px;
    color: var(--novo-blue);
    margin-bottom: 8px;
}
.form-page .step .bullet {
    height: 26px;
    width: 26px;
    border: 2px solid var(--novo-blue);
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: var(--novo-blue);
}
.progress_bar .step .bullet:before,
.progress_bar .step .bullet:after {
    position: absolute;
    content: '';
    bottom: 10px;
    right: -52px;
    height: 2px;
    width: 46px;
    background: var(--novo-blue);
    color: var(--novo-blue);
}
@media (max-width: 500px) {
    .progress_bar .step .bullet:before,
    .progress_bar .step .bullet:after {
        width: 30px;
        right: -36px;
    }
    .form-page .progress_bar .step {
        width: 64px;
    }
    .form-page .progress_bar .step p {
        font-size: 14px;
    }
}

.progress_bar .step.filling .bullet:before,
.progress_bar .step.filling .bullet:after {
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}

@keyframes animate {
    100%{
      transform: scaleX(1);
    }
}

.progress_bar .step:last-child .bullet:before,
.progress_bar .step:last-child .bullet:after {
    display: none;
}
.progress_bar .step .check {
    position: absolute;
    left: 50%;
    top: 78%;
    font-size: 16px;
    transform: translate(-50%, -50%);
    display: none;
}
.progress_bar .step.filled .check {
    display: block;
    color: #fff;
}
.progress_bar .step.active .bullet {
    background-color: lightgray;
}
.progress_bar .step.filled p {
    color: var(--novo-orange) !important;
}
.progress_bar .step.filled .bullet {
    color: var(--novo-orange) !important;
    background: var(--novo-orange) !important;
}
.progress_bar .step.filled .bullet {
    border-color: var(--novo-orange) !important;
}
.progress_bar .step.filled .bullet:before,
.progress_bar .step.filled .bullet:after {
    background: var(--novo-orange) !important;
}


/* Form fields */
.form-page .form-field {
    margin-bottom: 1rem;
    text-align: left;
}
.form-page .form-field label {
    font-size: 14px;
    color: #282828;
    font-weight: 500;
    margin-bottom: .25rem !important;
}
.form-page .form-label-only {
    text-align: end;
    margin-left: -7rem;
}
.form-page .form-label-only label {
    font-size: 14px;
    color: #282828;
    font-weight: 500;
    margin-bottom: .25rem;
}
.form-page .form-field input,
.form-page .form-field select {
    border-radius: 3px;
}
.form-page .form-field input[type=checkbox] {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: .5rem;
    line-height: 2rem;
}
.form-page .form-switch {
    text-align: end;
}
.form-page .form-switch input {
    height: 25px;
    width: 50px;
    margin-bottom: 22px;
}
.form-page .form-check-input:checked {
    background-color: var(--novo-blue);
    border-color: var(--novo-blue);
}
.form-page .form-check label {
    line-height: 2.2;
}
.form-page .other-util,
.form-page .other-util .form-switch {
    text-align: left !important;
}
.form-page .other-util .form-switch input {
    margin-bottom: 0;
    height: 1em;
    width: 2em;
}
.form-page .other-util .form-switch label {
    font-size: 14px;
    color: #282828;
    font-weight: 400;
}
.form-page .other-util .form-field.other-util-lbl {
    margin-bottom: 0;
}
.btns {
    display: flex;
}
.form-page .btns button,
.form-page .btns a {
    width: 100%;
    border: none;
    background: var(--novo-orange);
    margin-top: .5rem;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.5s ease;
    padding: .5rem;
    text-decoration: none;
}
.form-page button:hover,
.form-page a:hover {
    background-color: var(--secondary-orange);
}
.btns a {
    margin-right: 5px;
}
.form-page .clear-btn {
    margin-top: 1.5rem;
}
.form-page .clear-btn a.clear {
    color: var(--novo-orange);
    background-color: var(--light);
    text-decoration: none;
}
.form-page .clear-btn a.clear:hover {
    background-color: var(--light);
    text-decoration: underline;
}
.form-page .card-header {
    font-size: 17px;
    color: #282828;
    font-weight: 700;
}
.form-page .card-header a.edit-btn {
    background-color: var(--novo-orange);
    color: white;
    border-radius: 3px;
}
.form-page .card-header a.edit-btn:hover {
    background-color: var(--secondary-orange);
}
.form-page .card-body li {
    font-size: 15px;
    color: #282828;
}
.form-page .card-body li span {
    font-weight: 700;
}
.form-page .card {
    border-radius: 3px;
    border: none;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
.form-page h3 {
    color: var(--novo-blue);
    font-size: 21px;
    margin-bottom: 0 !important;
}
.form-page h4 {
    color: #282828;
    font-size: 18px;
}
.form-page .invite-list {
    margin: 2.5rem 0 0 0;
    padding: 0;
}
.form-page th {
    color: #282828;
    font-weight: 700;
    padding-bottom: .25rem;
}
.form-page td {
    font-size: 13px;
    color: #282828;
    font-weight: 500;
    padding: 10px 15px;
    /* padding-bottom: .25rem;
    padding-left: 15px;
    padding-right: 15px; */
}
.form-page td button {
    background-color: var(--novo-orange);
    border-radius: 3px;
    border: none;
    color: white;
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}
.form-page .align-right {text-align: right;}
.form-page table {
    width: 100%
}
.form-page .table-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
}
.form-page .email-cell {
    margin-right: 1.5rem;
}
.form-page .btn-cell {
    padding-top: .25rem;
}
.form-page .card-table {
    padding: 0;
}
@media (max-width: 550px) {
    .form-page .table-item {
        display: block;
    }
}

/* ======================
   RENTAL DETAIL PAGE
   ====================== */
.page-wrapper {
    margin: auto;
    max-width: 64rem !important;
}
.page-topper {
    background-color: #6C737A;
}
.page-topper h1 {
    font-size: 20px;
    color: white;
    padding: 20px 0;
    font-weight: 400 !important;
    margin-bottom: 0;
}
.page-topper-below {
    background-color: #f3f1ee;
    border-bottom: 1px solid rgb(174, 180, 185);
}
.unit-basic-info {
    display: flex;
    justify-content: space-between;
    margin: 0 .75rem;
}
.page-topper-below p {
    font-size: 14px;
    color: #504945;
    margin-bottom: 0;
    font-weight: 600;
}
.rent-unreasonable {
    color: #9d0006;
    font-weight: 600 !important;
}
.rent-reasonable {
    color: #6cca1f;
    font-weight: 600 !important;
}
.basic-info {
    padding: .25rem 0;
    text-align: end;
}
.comp-btn-cont .comparables-btn {
    background: none;
    padding: .25rem;
    color: white;
    font-size: 13px;
    border-radius: 3px;
    border: none;
    margin-left: 2rem;
    text-decoration: none;
}
.comp-btn-cont .comparables-btn:hover {
    cursor: pointer;
    outline: 1px solid white;
}
.comp-btn-cont {
    align-items: center;
    justify-content: center;
    display: flex;
}
.details-page .card {
    line-height: 1.25;
    border-radius: 4px;
    border: none;
    /* box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%); */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: .75rem;
}
.details-page img {border-radius: 4px;}
.details-page .card .geo-card {
    line-height: 1.5;
}
.details-page .card p {
    color: #504945;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
}
.details-page .card-body p span {
    font-size: 22px;
    font-weight: 300;
}
.details-page .card-body.geo-card p span {
    font-size: 18px;
}
.details-page .card-header {
    background-color: white;
    border: none;
}
.details-page .card-header h4 {
    color: var(--novo-blue);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 0;
}
.details-page .card-body-img {
    display: flex;
    justify-content: center;
}
.details-page .card-category {
    font-size: 12px;
    font-weight: 400 !important;
}
.details-page .card-title {
    color: var(--novo-blue);
}
.details-page .grid {
    margin: 1.5rem auto;
}
.details-page .grid-item {
    width: 50%;
    float: left;
}
.long-item {
    height: 400px !important;
}
.wide-item {
    width: 100% !important;
}
@media (max-width: 1000px) {
    .grid-item {
        min-width: 100% !important;
    }
    .wide-item {
        width: 100% !important;
    }
}
.details-page .amenities-card p {
    font-weight: 300;
}
.details-page .card svg {
    height: 24px;
    width: 24px;
}
.details-page th {
    color: #504945;
    font-weight: 600;
    font-size: 14px;
    vertical-align:bottom;
}
.details-page td {
    color: #504945;
    font-weight: 400;
    font-size: 13px;
    vertical-align: middle;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.details-page .modal td {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.details-page button.orange-btn {
    background-color: var(--novo-orange);
    color: white;
    border-radius: 3px;
    border: none;
    border: 1px solid var(--novo-orange);
}
.details-page button.orange-btn:hover {
    background-color: var(--secondary-orange);
    border: 1px solid var(--secondary-orange);
}
.details-page .form-switch input {
    height: 20px;
    width: 37px;
}
.details-page .form-switch input:hover {
    cursor: pointer;
}
.details-page .form-switch input:checked {
    background-color: var(--novo-orange);
    border-color: var(--novo-orange);
}
.details-page .btn-outline-secondary {
    border-color: var(--novo-orange) !important;
    color: var(--novo-orange) !important;
    border-radius: 3px;
}
.details-page .btn-outline-secondary:hover {
    border-color: var(--secondary-orange) !important;
    background-color: var(--secondary-orange) !important;
    color: white !important;
}

