﻿/* site.css */
/*body {
    font-family: sans-serif;
    font-size: 14px;
    margin: 0;
}

label {
    font-weight: bold;
    display: block;
}

input[type=text], input[type=password], textarea {
    width: 150px;
}
*/

.headshot {
    max-width: 50px;
    border: 1px solid #222;
    padding: 3px;
}

.menu {
    font-size: 12px;
}

.required {
    color:red;
}

    .menu li {
        list-style-type: none;
    }

        .menu li.active {
            font-weight: bold;
        }

#sidebar {
    background: #2a2c36;
    color: #eee;
    position: fixed;
    height: 100%;
    width: 250px;
    overflow: hidden;
    left: 0;
    margin: 0;
    -moz-transition: left ease .25s;
    -o-transition: left ease .25s;
    -webkit-transition: left ease .25s;
    transition: left ease .25s;
}


    #sidebar.hide-sidebar {
        left: -250px;
        -moz-transition: left ease .25s;
        -o-transition: left ease .25s;
        -webkit-transition: left ease .25s;
        transition: left ease .25s;
    }

#wrapper {
    margin: 0 0 0 250px;
    -moz-transition: margin-left ease .25s;
    -o-transition: margin-left ease .25s;
    -webkit-transition: margin-left ease .25s;
    transition: margin-left ease .25s;
}

    #wrapper.hide-sidebar {
        margin-left: 0;
        -moz-transition: margin-left ease .25s;
        -o-transition: margin-left ease .25s;
        -webkit-transition: margin-left ease .25s;
        transition: margin-left ease .25s;
    }

#map {
    width: 100%;
    height: 600px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 400px;
}

@media screen and (max-width: 1024px) {
    .is-hidden-mobile {
        display: none !important;
    }
}

#sidebarToggle i:before {
    content: "\f104";
}

@media screen and (max-width: 1024px) {
    #sidebarToggle i:before {
        content: "\f105";
    }
}

#sidebarToggle i.fa-angle-right:before {
    content: "\f105";
}

#sidebarToggle i.fa-angle-left:before {
    content: "\f104";
}

@media screen and (max-width: 1024px) {
    #sidebar {
        left: -250px;
    }
    #wrapper {
        margin-left: 0;
    }
    #wrapper.show-sidebar {
        margin-left: 250px;
    }

    #sidebar.show-sidebar {
        left: 0;
    }
}