@charset "utf-8";
/* CSS styles for index.php */

.page_section {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 100px;
}

.property_box {
    width: 1024px;
    height: 200px;
    border-bottom: 1px solid #888888;
    position: relative;
    float: left;
    margin-left: calc(50% - 527px);
    padding: 30px;
}

.property_image {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 300px;
}
.property_image img {
    border: 1px solid black;
}

.property_status_price{
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding-left: 10px;
    text-align: left;
    width: calc(100% - 9px);
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0.7);
}

.property_address {
    position: absolute;
    width: 720px;
    height: 20px;
    color: #DD372C;
    font-size: 20px;
    top: 20px;
    right: 20px;
    text-align: left;
}

.property_detail {
    position: absolute;
    width: 500px;
    top: 50px;
    left: 344px;
    text-align: left;
    font-size: 16px;
}

.property_id {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 200px;
    font-size: 16px;
    text-align: left;
}

.property_button {
    font-size: 18px;
    width: 150px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #DD372C;
    border-radius: 5px;
    position: absolute;
    bottom: 40px;
    right: 70px;
    color: #DD372C;
}

.property_button:hover {
    color: black;
    border: 1px solid black;
}

.property_admin_buttons {
    width: 20px;
    height: 100px;
    position: absolute;
    left: 5px;
    top: 20px;
}

.property_admin_buttons img {
    margin-bottom: 5px;
}

/*******************************************************************************
 * FORM STYLES
 ******************************************************************************/
#property_form_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: rgba(0,0,0,0.7);
}

#property_form {
    position: absolute;
    width: 1024px;
    min-height: 300px;
    background-color: #C1C1C1;
    top: -30px;
    left: calc(50% - 512px);
    border-radius: 5px;
    padding: 20px 10px 20px 20px;
    z-index: 9999;
}

#property_form_title {
    position: relative;
    float: left;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 40px;
    font-size: 30px;
    color: #DD372C;
    font-weight: bold;
}

.form_field {
    position: relative;
    float: left;
}

.form_field input {
    width: calc(100% - 30px);
}

.form_field select {
    width: calc(100% - 10px);
    height: 30px;
}

.form_field textarea {
    width: calc(100% - 20px);
    height: 200px;
}

.form_spacer {
    width: 100%;
    height: 20px;
    position: relative;
    float: left;
}

/*******************************************************************************
 * DELETE MESSAGE
 ******************************************************************************/
#property_delete_box {
    width: 1024px;
    position: relative;
    float: left;
    margin-left: calc(50% - 512px);
    border: 2px solid red;
    color: red;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}