body{
    overflow: visible;
}

.tk-listing-details-wrap p, .tk-listing-details-wrap span, .tk-listing-details-wrap .tk-listing-price{
    font-family: 'Montserrat';
    font-size: 18px;
    color: #204a72;
}

.container.main-content{
    max-width: 100vw;
    margin: 0;
    padding: 0 8%;
}

.tk-listing-hero-details-wrap{
    display: flex;
    padding-top: 100px;
}

.tk-listing-hero-wrap{
    flex: 1 1 40%;
}

.tk-listing-hero-image{
    box-shadow: 0 10px 35px -15px black;
}

.tk-listing-details-wrap{
    flex: 1 1 60%;
    padding: 3%;
}

.tk-listing-title{
    font-size: 45px;
    color: #214b72;
    line-height: 50px;
    text-align: left;
    font-weight: 500;
}

.price-sqft{
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ec5031;
}

.price-sqft>div{
    margin-right: 30px;
}

.tk-listing-quick-details{
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ec5031;
}

.tk-listing-quick-details>div{
    margin-right: 30px;
}

.location-meta{
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ec5031;
}

.location-meta>div{
    margin-right: 30px;
}

.description-meta{
    padding: 25px 0;
    border-bottom: 1px solid #ec5031;
}

.tk-listing-photos-contact{
    display: flex;
    justify-content: space-around;
}

.tk-listing-gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    width: 70%;
}

.tk-listing-gallery-image{
    object-fit: cover;
    aspect-ratio: 1.5;
    margin-bottom: 0;
    transform: translateY(0px);
    transition: .2s;
    box-shadow: none;
}

.tk-listing-gallery-image:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 35px -15px black;
    transition: .2s;
}

.tk-listing-contact{
    width: 30%;
}

.listing-contact{
    position: sticky;
    height: fit-content;
    top: 180px;
    padding: 30px;
    background-color: #204A72;
    width: 30%;
    margin-left: 50px;
}

#gform_fields_4{
    row-gap: 0 !important;
}

.listing-contact h2, .listing-contact label, .listing-contact legend, .listing-contact span{
    color: white !important;
}

.form-message{
    padding-bottom: 40px;
    display: block;
    width: 80%;
}

#gform_submit_button_4{
    background-color: #EC5031;
}




/*Lightbox CSS*/
.tk-listing-gallery-image {
    cursor: pointer;
}

.tk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.9);
}

.tk-lightbox.is-open {
    display: flex;
}

.tk-lightbox-stage {
    max-width: 90vw;
    max-height: 90vh;
}

.tk-lightbox-stage img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.tk-lightbox-close,
.tk-lightbox-prev,
.tk-lightbox-next {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255,255,255,.15);
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    padding: 12px 18px;
}

.tk-lightbox-close {
    top: 24px;
    right: 24px;
}

.tk-lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.tk-lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

body.tk-lightbox-open {
    overflow: hidden;
}