@charset "UTF-8";
/* CSS Document */

#MainPropPhotoSection {
    height: 50vh;
    overflow: hidden;
    position: relative;
}
.MainPropPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.PropContentSection {
    display: flex;
}
    .LinksColumn {
        width: 300px;
        padding: 3em 1.5em 3em 0;
    }
        .MapThumb {
            border: 1px solid #c2c2c2;
        }
    .TextColumn {
        padding: 3em 0 3em 1.5em;

    }
        .MoreInfoLink {
            display: inline-block;
            border: 1px solid #c2c2c2;
            padding: 1em;
        }
        .SoldBanner {
            position: absolute;
            width: 300px;
            text-align: center;
            right: 80px;
            top: 80px;
            background-color: rgba(255,255,255,0.5);
            font-size: 2.5rem;
            color: red;
            font-weight: bold;
            transform: translate(50%, -50%) rotate(45deg);
        }
/* *********************************************** MEDIUM */
@media only screen and (max-width: 850px) {
}

/* *********************************************** SMALL */
@media only screen and (max-width: 500px) {
    #MapSection {
        
    }
        #MapList {
            flex-basis: 100%;
        }
        #MapArea {
            display: none;
        }
}				
