﻿
* {
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
    color: #666;
}
body {
    font-size: 14px;
}

h1 {
    font-size: 20px;
    text-align: center;
    padding: 0;
    font-weight: bold;
    margin-bottom:5px;
}
h2 {
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 10px;
}

p{
    text-align: justify;
    line-height: 20px;
    margin-bottom:10px;
}
label {
    font-weight: bold;
}

/* 800 x 1035 - 25 pixel footer */

/* Listing Flyer */
.flyer-main{
    display:flex;
    flex-direction:row;
    position: relative;
}


.flyer-photo {
    width: 550px;
    height: 375px;
    object-fit: cover;
}

.price {
    background-color: #679F16;
    position: absolute;
    right: 250px;
    top: 5px;
    color: white;
    font-weight: bold;
    font-size: 26px;
    padding: 0px 15px;
}
.sold {
    background-color: #555;
    position: absolute;
    right: 250px;
    top: 50px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 0px 10px;
}
.flyer-overview {
    padding: 0 5px;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 375px;
    background-color: #f1f1f1;
}

.flyer-overview img {
    border: 1px solid #c1c1c1;
    margin: 10px 0;
}

.flyer-overview div {
    text-align: center;
    max-height: 70px;
    overflow: hidden;
}

.overview-header {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Times New Roman';
    font-style: italic;
}

.flyer-body {
    margin-top: 20px;
    box-sizing: border-box;
    width: 100%;
    max-height: 550px;
    height: 550px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.flyer-text {
    box-sizing: border-box;
    width: 550px;
    padding: 0 20px;
    overflow: hidden;
}

.flyer-features {
    box-sizing: border-box;
    width: 250px;
    overflow: hidden;
    padding: 0 30px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature {
    font-size: 11px;
    line-height: 14px;
    padding: 5px 0;
}

.directions{
    font-size: 12px;
}

/* Details */
.map {
    width: 100%;   
    margin-bottom:20px;
}

.details{
    margin: 20px 30px 0 30px;
    display: flex;
    flex-direction: column;
}

/* Listing Photos */
.photos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top:20px;
}
    .photos img {
        margin: 2px;
        width: 320px;
        height: 240px;
        object-fit: cover;
    }