/*
===================================
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;
    font-size: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
    border-color: #4d4d4f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #5a5a5a;
    overflow-x: hidden;
    height: 100%;
}

a {
    color: #00569d;
}

p {
    padding: 10px 0;
    font-size: 1rem;
}

h1 {
    font-size: 2.1rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

iframe:not(.diakrit) {
    height: 450px;
    max-height: calc(100vw/1.77);
    border: none;
    width: 100% !important;
}

iframe {
    /* max-height: calc(100vw/1.77); */
    border: none;
    width: 100% !important;
}

.hidden {
    display: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*
===================================
CUSTOM SCROLLBAR - CHROME
===================================
*/

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/*
================================================
ANCHOR OFFSET FOR TO TRIGGER NAV SECTION UPDATES
================================================
*/

:target:before {
    content: "";
    display: block;
    height: 80px;
    margin: -80px 0 0;
}

.main-column {
    line-height: 1.8;
    font-size: 15px;
    box-sizing: border-box;
    padding: 125px 25px 0;
    width: 100%;
    max-width: 800px;
    margin: auto;
    /* THIS MARGIN BOTTOM IS IMPORTANT - without it, if there's a short section at the bottom of the document, it's section header will not reach high enough on the window
  to trigger the nav-active class (the class that highlights the nav items on scroll/dependant on page section on the screen) for that element - see main.js lines 26-42
  at time of writing this */
    margin-bottom: 70vh;
}


/* 
========================================
    LINE HEIGHTS
========================================
 */

.main-column h1,
.main-column h2,
.main-column h3,
.main-column h4,
.main-column h5,
.main-column h6 {
    line-height: 1.25;
    margin-bottom: 12px;
}

.property-list-item,
.comparable-sale {
    line-height: 1.5;
}


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

.main-column ul,
.main-column ol {
    margin-left: 30px;
}

.logo__classic {
    display: block;
}

.logo__reverse {
    display: none;
}

header {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-lock {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
}

.header-inner {
    margin: 0;
    padding: 10px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background: white;
    z-index: 200;
    box-shadow: 0px 0px 9px rgba(33, 33, 33);
    position: relative;
    transition: all 200ms ease-in-out
}

.mbl-logo {
    height: 100%;
    width: auto;
    flex: 0 1 100px;
    object-fit: contain;
}

.nav-list-container {
    margin: 0;
}

.dsk-logo {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    display: none;
}

.ebook-title {
    margin: 5px 10px;
    padding: 0 5px 15px 5px;
    font-size: 24px;
}

.mbl-title {
    padding: 15px 6px;
    margin: 0 0 15px;
    font-size: 32px;
    border-bottom: 1px solid;
    border-color: #4d4d4f !important;
}

.dsk-title {
    display: none;
}

.nav-list li {
    height: 100%;
}

.sidebar {
    width: 250px;
    background: white;
    color: #4d4d4f;
    position: absolute;
    top: 0;
    height: calc(100vh - 100px);
    left: -260px;
    overflow-y: auto;
    transition: all 200ms ease-in-out;
    /* transition: left 400ms ease; */
    margin-top: 0;
    box-shadow: 2px 0 5px #6c6c6f;
}

.sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}

.sidebar.nav-visible {
    left: 0px;
    transition: left 400ms ease;
}

.sidebar-item {
    display: flex;
}

.nav-list a {
    list-style: none;
    background: white;
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #4d4d4f;
    padding: 15px 10px 15px 15px;
    transition: all ease 300ms;
}

.nav-list a:hover {
    background: #4d4d4f;
    color: white;
    transition: ease 300ms;
    padding-left: 30px;
}

li.nav-active a {
    border-left: 10px solid #4d4d4f;
    padding-left: 30px;
    transition: all 300ms ease;
}

.sidebar-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    padding: 13px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: 200ms all;
    flex: 0 0 50px;
}

.sidebar-button span {
    background-color: #4d4d4f;
    height: 3px;
    display: block;
    border-radius: 2px;
}

.nav-bottom {
    margin: 10px 4%;
    padding-top: 20px;
    width: 92%;
    border-top: 2px solid white;
    color: #4d4d4f;
    text-decoration: none;
    font-size: 16px;
}

.nav-bottom p {
    font-size: 0.9em;
    overflow-wrap: break-word;
    padding: 0;
}

.nav-bottom a {
    color: #4d4d4f;
    text-decoration: none;
}

.pdf-download-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    display: block;
    padding: 12px;
    margin: 10px;
    border-top: 1px solid #4d4d4f;
    border-bottom: 1px solid #4d4d4f;
    text-align: center;
    text-decoration: none;
    transition: 250ms linear;
}

.pdf-download-link a:visited {
    color: inherit;
}

.social-media-icons {
    padding: 10px 0;
}

.social-icon {
    font-size: 3em;
    display: inline-block;
    margin: auto;
}

.feature-photo,
.map-frame img {
    width: 100%;
    margin-bottom: 12px;
    object-fit: contain;
}

.ebook-page {
    margin-bottom: 120px;
}

.ebook-page:nth-last-child(1) {
    margin-bottom: 80px;
}

.ebook-page:nth-child(1) {
    margin-top: 100px;
}

.section-title {
    font-weight: normal;
    color: #65656a;
    font-size: 2.2em;
    margin: 20px 0px !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.section-subtitle {
    margin-bottom: 12px;
    font-size: 1.2em;
}

section li {
    margin-left: 14px;
}

.property-info-top {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-info-top p {
    padding: 0;
}

.property-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #29292b;
    border-bottom: 1px solid #29292b;
    margin-bottom: 15px;
}

.property-headline h3 {
    margin: 0;
}

.property-rooms {
    font-size: 0.9em;
    white-space: nowrap;
    padding-top: 5px;
}

.property-rooms i {
    display: inline;
}


/* .property-rooms img {
  display: none;
} */

.property-rooms span {
    padding-left: 20px;
}

.property-rooms span:nth-child(1) {
    /* helps with section alignment on mobile */
    padding-left: 0;
}

.property-address {
    font-size: 1.4rem;
    padding-left: 10px;
}

.property-room-num {
    font-size: 1.5em;
    font-weight: bold;
}

.property-description,
.property-features {
    margin-bottom: 10px;
}

.property-description {
    padding-right: 20px;
}

.property-features ul {
    padding-left: 10px;
}


/*
===================================
GALLERY STYLES
===================================
*/

.gallery-container {
    max-width: 100%;
    box-shadow: 0px 0px 5px #9a9898;
}

.gallery-img-container {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    position: relative;
    text-align: center;
    background: #f5f5f5;
    height: 400px;
    max-height: 80%;
    object-fit: contain;
}

.gallery-img-container img {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}

.gallery-controls {
    background: #c6c6c6;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.gallery-arrow:hover {
    background: #f5f5f5;
    color: #989a9a;
}

.gallery-arrow {
    padding: 0px 10px;
    margin: 0;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
}

.gallery-dots-container {
    padding: 5px 10px;
    font-size: 1.2em;
    color: #9a9898;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.gallery-dots-container span,
.gallery-arrow {
    transition: all 300ms linear;
}

.gallery-dots-container span {
    cursor: pointer;
}

.gallery-dots-container span:hover {
    color: #fff;
}

.gallery-dots-container span.active-dot {
    color: white;
}

.gallery-fullscreen-icon {
    /*styles also controlled in gallery.js - if changing opacity or font-size also change gallery.js lines 134-141*/
    font-size: 2.5em;
    text-shadow: 0px 0px 8px #000;
    color: white;
    opacity: 0.6;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: all 150ms linear;
}

.gallery-modal-window {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: white;
}


/*
    FOLLOWING RULE FOR PDF CONVERSION
    */

.gallery-table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse;
}

.gallery-table tr td {
    width: 50%;
    padding: 10px;
}

.gallery-table tr td div {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-table tr td div img {
    width: 100%;
    object-fit: cover;
}

.modal-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 11;
    opacity: 1;
    margin: auto;
    background: white;
    height: 100%;
}

.modal-controls {
    padding: 0;
    margin: 0;
    font-size: 1.5em;
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 13;
}

.modal-controls span {
    line-height: 45px;
    color: #3b3b38;
    background: #c6c6c6;
    display: inline-block;
    cursor: pointer;
    padding: 11px;
    opacity: 0.8;
    text-align: center;
    width: 70px;
    height: 70px;
    transition: all 200ms linear;
}

.modal-controls span:hover {
    color: #f5f5f5;
    background: #3b3b38;
}

.modal-dots-container {
    margin: auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    font-size: 1.5em;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -45%;
    z-index: 12;
}

.modal-dots-container span {
    color: #c6c6c6;
    cursor: pointer;
    transition: all 200ms linear;
    font-size: 2rem;
    text-shadow: 0px 0px 5px rgba(33, 33, 33, 0.5);
}

.modal-dots-container span:hover {
    color: #3b3b38;
}

.modal-dots-container span.active-dot {
    color: white;
}

.modal-img-container img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.agents-container {
    display: flex;
    flex-direction: column;
}

.property-agent {
    box-sizing: border-box;
    padding: 10px;
}

.agent-details {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: center;
}

.agent-details-text {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-photo-container {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

.agent-photo {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    object-fit: cover;
}

.agent-name {
    text-transform: uppercase;
    font-size: 1.3em;
    padding: 0;
}

.agent-title {
    font-weight: 700;
}

.agent-phone,
.agent-email {
    display: block;
    text-align: left;
}

.table {
    border-collapse: collapse;
    width: 100%;
    color: #5a5a5a;
}

.table th {
    font-size: 0.85em;
    padding: 5px 10px;
    border-bottom: 1px solid #5a5a5a;
}

.table td {
    padding: 5px;
    border-bottom: 1px solid #5a5a5a;
}


/*
==============================
COMPARABLE SALES
==============================
*/

.comparable-sale-disclaimer {
    padding: 30px 10px;
    font-size: 0.8rem;
    opacity: 0.75;
}

.sales-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 12px;
}

.comparable-sale {
    background: #fbfbfb;
    padding: 5px;
    box-shadow: 0px 0px 5px #6b6b6b;
    border-radius: 5px;
    color: #555;
}

.comparable-sale p {
    font-size: 14px;
}

.comparable-sale p {
    margin: 3px 0;
    padding: 0;
}

.comparable-sale-photo {
    width: 100%;
    overflow: hidden;
    height: calc(100vw * 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-bottom: 5px;
}

.comparable-sale-photo img {
    margin: auto;
    display: block;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
}

.comparable-sale-details {
    padding: 3px;
}

.comparable-sale-address {
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 8px !important;
    margin: 8px 0 !important;
    border-bottom: 2px solid rgba(77, 77, 79, 0.8);
}

.comparable-sale-price {
    color: #333;
    display: block;
    font-size: 1.3em;
    text-align: right;
    margin-top: 18px !important;
}


/*
================================================
    THUMBNAIL GALLERY STYLES
================================================
*/

.swiper-pagination {
    font-size: 14px;
    text-align: center;
    right: 0;
    bottom: 0;
    left: auto;
    padding: 6px;
    background: rgba(85, 85, 85, 0.8);
    color: white;
    width: 70px;
    border-top-left-radius: 7px;
}

.swiper-pagination:hover {
    cursor: default;
}

.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.swiper-slide {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.swiper-slide img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.TN-gallery-top {
    width: 100%;
}

.TN-gallery-thumbs {
    max-height: 160px;
    box-sizing: border-box;
    padding: 10px 0;
}

.TN-gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.65;
}

.TN-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.TN-gallery-thumbs img:hover {
    cursor: pointer;
}

.TN-gallery-thumbs .swiper-wrapper,
.TN-gallery-thumbs .swiper-slide {
    height: 160px;
}

.TN-gallery-thumbs img {
    max-height: 100%;
    max-width: unset;
}

.transparent {
    opacity: 0;
}

.transparent-transition {
    transition: 160ms ease-out;
}

.TN-gallery-top.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    z-index: 100;
    background: #fbfbfb;
}

.TN-gallery-top.fullscreen .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.TN-gallery-top.fullscreen .swiper-wrapper .swiper-slide img {
    height: auto;
    width: auto;
    max-height: 90% !important;
    max-width: 90%;
    box-shadow: 0px 0px 10px #353546;
}

.TN-gallery-arrow {
    text-shadow: 0px 0px 2px black;
    transition: 200ms linear;
    bottom: 50%;
    margin-bottom: -20px;
}

.TN-gallery-arrow:after {
    font-size: 40px;
    font-weight: bold;
}

.TN-gallery-arrow:focus {
    outline: none;
}

.swiper-button-prev {
    padding: 30px 30px 30px 10px;
}

.swiper-button-next {
    padding: 30px 10px 30px 30px;
}

.TN-gallery-exit-icon {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 40px;
    font-weight: bold;
    z-index: 101;
    color: white;
    display: none;
    cursor: pointer;
    text-shadow: 0px 0px 2px black;
    transition: 200ms linear;
}

.TN-gallery-arrow:hover,
.TN-gallery-exit-icon:hover {
    text-shadow: 0px 0px 6px black;
}

.TN-gallery-top.fullscreen .TN-gallery-exit-icon {
    display: block;
}

.TN-fullscreen-button {
    position: absolute;
    font-size: 18px;
    text-align: center;
    right: 50%;
    margin-right: -75px;
    bottom: 0;
    padding: 6px 12px;
    background: rgba(77, 77, 79, 0.8);
    color: white;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    z-index: 101;
    transition: 100ms linear;
    text-transform: uppercase;
    width: 150px;
}

.TN-fullscreen-button:hover {
    cursor: pointer;
    padding: 16px 12px 16px 12px;
    background: rgba(77, 77, 79, 1);
}

.TN-gallery-top.fullscreen .TN-fullscreen-button {
    display: none;
}

.TN-gallery-top.fullscreen .swiper-wrapper,
.TN-gallery-top.fullscreen .swiper-slide {
    height: inherit;
}

@media only screen and (max-width: 800px) {
    .swiper-slide {
        height: calc(0.5625 * 100vw);
        /* 450px/800px (desktop size) = 0.5625 (ratio of gallery top window) */
    }
}


/*
============================
UPCOMING INSPECTIONS
============================
*/

.inspection-container {
    padding: 20px;
    box-shadow: 0px 0px 5px #a0a0a0;
    border-radius: 5px;
    overflow: hidden;
}

.inspection {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5px;
    border-bottom: 2px solid;
}


/* .inspection:nth-last-child(1) {
    border-bottom: none;
} */

.inspection .time {
    font-weight: bold;
}


/*
=========================================
PROPERTY DETAILS - RESIDENTIAL/COMMERCIAL
=========================================
*/

.feature-img-container-rescom {
    position: relative;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-img-container-rescom img {
    width: 100%;
    object-fit: cover;
}

.feature-img-overlay-rescom {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #ebebeb;
    color: #5a5a61;
    padding: 25px 20px;
}

.overlay-container-inner-rescom {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.property-address-rescom {
    padding: 8px 0;
    border-bottom: 1px solid rgba(155, 155, 155, 0.4);
}

.property-headline-rescom {}

.property-price-rescom {
    padding-left: 25px;
    font-size: 22px;
}

.property-rooms-rescom {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #ebebeb;
    color: #5a5a61;
}

.property-rooms-rescom span {
    display: block;
    width: auto;
    text-align: center;
    flex: 1 1 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 15px;
    margin: 13px 0;
    font-size: 18px;
    font-weight: 700;
    border-right: 2px solid #9b9b9b;
}

.comm-property-rooms {
    display: block;
    padding: 0 15px;
}

.property-features-rescom .comm-property-rooms .comm-room-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #ebebeb;
    color: #5a5a61;
    border-bottom: 1px solid rgba(155, 155, 155, 0.4);
}

.property-features-rescom .comm-property-rooms:last-child .comm-room-wrapper {
    border: none !important;
}

.comm-room {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid rgb(155, 155, 155);
    padding: 0 8px;
    margin: 15px 0;
}

.comm-room div {
    text-align: center;
    width: 100%;
}

.comm-room div:first-child {
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
}

.comm-room div:last-child {
    font-size: 1.3em;
    font-weight: 300;
}

.property-rooms-rescom span:last-child,
.comm-room-wrapper .comm-room:last-child {
    border: none;
}

.features-list-rescom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    list-style: none;
    padding: 35px 5px;
    margin: 0 !important;
    border-bottom: 1px solid #4d4d4f;
}

.features-list-rescom li {
    padding: 0px 25px;
    margin: 0;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    line-height: 18px;
    background: #4d4d4f;
    color: white;
    border: 3px solid #4b4b4d;
}

.property-description-rescom {
    padding: 15px 25px;
}


/*
=================================================
STAFF LIST - CARDS
=================================================
*/

._cards-agent-container {
    padding: 15px;
    /* background: #ebebeb; */
    box-shadow: 0px 0px 5px #a0a0a0;
    border-radius: 5px;
    margin-bottom: 20px;
}

._cards-agent-top-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    align-items: center;
}

._cards-agent-photo {
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 25px;
}

._cards-agent-photo img {
    object-fit: cover;
    width: 200px;
    height: 200px;
}

._cards-agent-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    width: 100%;
}

._cards-agent-details a {
    overflow-wrap: break-word;
}

._cards-agent-details .name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

._cards-agent-details .title {
    font-size: 18px;
    padding: 3px 0 6px 0;
    margin-bottom: 6px;
    border-bottom: 4px solid rgba(77, 77, 79, 0.8);
    text-transform: uppercase;
}

._cards-agent-details .phone,
._cards-agent-details .email {
    font-size: 16px;
}

._cards-agent-bottom-section {
    padding: 15px 0;
    margin: 15px 0 0 0;
    border-top: 3px solid #ddd;
}


/*
=================================
PROPERTY LIST SECTION
=================================
*/

.property-list-item {
    margin: 20px 0;
    background: #fbfbfb;
    padding: 5px;
    box-shadow: 0px 0px 6px #6b6b6b;
    border-radius: 5px;
}

.property-list-item-top {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: auto;
}

.property-list-photo {
    flex-grow: 0;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    border-radius: 3px;
    max-height: 500px;
}

.property-list-photo img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

.property-list-details {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    padding: 20px;
    padding-bottom: 40px;
    text-align: left;
}

.property-list-details p {
    padding: 2px 0;
}

.property-list-details .address {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 2px solid rgba(77, 77, 79, 0.8);
}

.property-list-details .price {
    display: block;
}

.show-more-button {
    text-align: center;
    margin-top: 5px;
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    color: #555;
}

.show-more-button span {
    padding: 6px 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.show-more-button span i {
    font-size: 0.8em;
    transition: 100ms linear;
}

.show-more-button span:hover {
    cursor: pointer;
}

.show-more-button.shown span i {
    transform: rotateZ(90deg);
}

.property-list-item-dropdown {
    display: none;
    padding: 15px;
    margin: 25px 10px 10px 10px;
    border-top: 2px solid #ccc;
}

.property-list-item-dropdown p {
    padding: 8px 0;
}


/*
=========================================================
    HOMEPREZZO SUBURB REPORT
=========================================================
*/

.suburb-report {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    box-shadow: 0px 0px 5px #ababab;
    padding: 5px;
    border-radius: 3px;
}

.report-thumbnail {
    width: 600px;
}

.report-thumbnail img {
    height: auto;
    width: 100%;
    display: block;
    border-radius: 3px;
}

.report-text {
    width: auto;
    /* min-width: 200px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.report-text a {
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}

.report-text a:hover {
    text-decoration: underline;
}


/*
=========================================================
MEDIA RULES
=========================================================
*/

@media only screen and (min-width: 550px) {
    .sales-container {
        grid-template-columns: 1fr 1fr;
    }
    .comparable-sale-photo {
        height: calc(100vw * 0.35);
    }
    .comparable-sale-disclaimer {
        padding: 30px;
    }
    .features-list-rescom {
        grid-template-columns: 1fr 1fr;
    }
    .feature-img-overlay-rescom {
        position: absolute;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
        color: white;
    }
    .property-address-rescom {
        text-shadow: 0px 0px 8px #000;
        padding: 8px 0;
        border-bottom: 1px solid white;
    }
    .property-headline-rescom {
        text-shadow: 0px 0px 4px #000;
    }
    .property-price-rescom {
        text-shadow: 0px 0px 4px #000;
        padding-left: 25px;
        font-size: 22px;
    }
    .overlay-container-inner-rescom {
        flex-direction: row;
    }
    .property-rooms-rescom span {
        font-size: 22px;
    }
    .property-list-item-top {
        height: 250px;
        flex-direction: row;
    }
    .property-list-photo,
    .property-list-details {
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 600px) {
    .suburb-report {
        flex-direction: row;
    }
    .inspection {
        flex-direction: row;
    }
}

@media only screen and (min-width: 800px) {
    .section-title {
        font-size: 2.7em;
    }
     :target:before {
        content: "";
        display: block;
        height: 20px;
        margin: -20px 0 0;
    }
    .property-features {
        width: 40%;
    }
    .property-description {
        width: 60%;
    }
    .property-details {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .property-info-top {
        flex-direction: row;
        align-items: baseline;
    }
    .agent-details {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: unset;
    }
    .agent-details-text {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .agent-photo-container {
        margin: 0;
    }
    .sales-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .comparable-sale-photo {
        height: 160px;
    }
    .features-list-rescom {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 35px 25px;
    }
    ._cards-agent-top-section {
        flex-direction: row;
        text-align: left;
    }
    ._cards-agent-details {
        margin: 0 20px;
        padding: 0 20px;
        width: auto;
    }
    ._cards-agent-photo {
        margin: 0;
    }
    .property-list-details {
        padding: 20px 50px;
    }
    .inspection-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }
}

@media only screen and (min-width: 1200px) {
    .sidebar-inner {
        padding-top: 0;
    }
    .mbl-title {
        display: none;
    }
    .dsk-title {
        display: block;
    }
    .sidebar {
        left: 0;
        top: 0;
        height: 100vh !important;
    }
    .sidebar-button {
        display: none;
    }
    .main-column {
        margin-left: 350px;
        margin-right: 50px;
    }
    .header-inner {
        display: none;
    }
    .dsk-logo {
        display: block;
    }
}

@media only screen and (min-width: 1450px) {
    .main-column {
        margin-left: 500px;
    }
    .modal-dots-container {
        width: 60%;
        margin-left: -30%;
    }
}


/*
=============================
  THEME SPECIFIC PDF STYLES
=============================
*/

#toc ul li {
    border-left: 3px solid #4d4d4f;
}

.hContacts a {
    color: #00467f;
}

html {
    height: auto;
}

.logo__reverse {
    display: none;
}