﻿/* ===GLOBAL=== */
body {
    overflow-y: scroll;
}

input, textarea {
    font-size: 14px;
}

textarea {
    display: block;
    background-color: #FFF;
}

/* ===PAGE CONTAINERS=== */
#outer-wrap {
    position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -2.550em;
}

.content-container {
    position: relative;
    height: 100%;
    width: 1200px;
    min-height: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .content-container:before {
        display: table;
        content: "";
        line-height: 0;
    }

    .content-container:after {
        display: table;
        content: "";
        line-height: 0;
        clear: both;
    }

/* ===BUTTON=== */
.btn {
    display: inline;
    vertical-align: middle;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 25px;
    margin: 0;
}

    .btn:focus {
        outline: 5px -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:active {
        outline: 0;
    }

.btn-disabled {
    cursor: default;
}

    .btn-disabled:focus {
        outline: none;
        outline-offset: 0px;
    }

    .btn-disabled:active {
        outline: 0;
    }

/* ===CONTACT FORM=== */
.contact-form {
    margin-bottom: 10px;
    font-size: 16px;
}

    .contact-form input[type=text],
    .contact-form input[type=email],
    .contact-form textarea {
        resize: none;
        width: 100%;
        padding: 5px;
        margin: 2px 0px;
        border: 1px solid #ccc;
    }

    .contact-form textarea {
        padding-left: 5px;
    }

    .contact-form input[type="submit"] {
        margin-top: 10px;
    }

/* ===ERROR/SUCCESS MESSAGE=== */
.error-message {
    font-size: 12px !important;
    color: #FFF !important;
    background-color: #ED5A5A;
    padding: 7px 5px;
    /*margin-top: 2px;*/
    margin-bottom: 5px;
}

.errorMsg {
    min-height: 50px;
    width: 100%;
    background-color: #d9534f;
    border: 1px solid #801e1c;
    color: #FFF;
    padding: 15px;
}

.successMsg {
    min-height: 50px;
    width: 100%;
    /* background-color: grey; */
    /* background-color: #000; */
    border: 1px solid lightgrey;
    /* color: #FFF; */
    padding: 15px;
    margin-top: 10px;
}

/* ===CLEARFIX=== */
.clear {
    clear: both;
}

    .clear:after {
        content: "";
        display: table;
        clear: both;
    }

/* ===JAVASCRIPT CLASS=== */
.expand {
    height: auto !important;
    display: block !important;
}

.collapse {
    height: auto !important;
    display: none;
}

/* ===MEDIA QUERIES=== */
@media only screen and (max-width: 1220px) {
    .content-container {
        width: 100%;
    }
}
