﻿html,
body,
#viewDiv {
    padding: 0;
    margin: 0;
    height: calc( 100% - 26px );
    width: 100%;
}

#topbar {
    background: #fff;
    padding: 10px;
}
.myHeader {
    background: #212A3A;
    height: 75px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 1;
    min-width: 960px;
}
.action-button {
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #d3d3d3;
    color: #6e6e6e;
    height: 32px;
    width: 32px;
    text-align: center;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

    .action-button:hover,
    .action-button:focus {
        background: #0079c1;
        color: #e4e4e4;
    }

.active {
    background: #0079c1;
    color: #e4e4e4;
}

.structureFilter {
    min-width:300px;
    display: none;
    background-color: white;
    padding: 15px;
}


.form-item-container input[type="email"], .form-item-container input[type="tel"], .form-item-container input[type="password"], .form-item-container input[type="date"], .form-item-container input[type="time"], .form-item-container input[type="number"], select, textarea {
    display: block;
    width: 100%;
    padding: 10px 0px;
    text-indent: 10px;
    font-size: 1em;
    max-width: 700px;
}
.logo {
    /*float: left;*/
    padding: 15px 0 0 15px;
}

#topContainer {
    display: flex; /* establish flex container */
    flex-direction: row; /* default value; can be omitted */
    flex-wrap: nowrap; /* default value; can be omitted */
    justify-content: space-between; /* switched from default (flex-start, see below) */
}

    #topContainer > div {

    }

.menuIcon {
    float:right;
    width: 40px;
    height: 40px;
    padding-top: 15px;
    padding-right: 10px;
    cursor: pointer;
}

.titleText {
    color: white;
    font-family: Arial;
    font-size: 30px;
    font-weight: 600;
    padding-top:20px;
}

#divMenu {
    border: 1px solid black;
    width: 280px;
    height: 180px;
    display: none;
    color: white;
    background-color: #212A3A;
    font-family: Arial;
    font-size: 19px;
    font-weight: 300;
}
    #divMenu div {
        padding: 15px;
        cursor: pointer;
    }
        #divMenu div:hover {
            color: #212A3A;
            background-color: white;
        }

#divComments {
    border: 1px solid black;
    width: 350px;
    /*height: 400px;*/
    display: none;
    color: white;
    background-color: #212A3A;
    font-family: Arial;
    font-size: 19px;
    font-weight: 300;
    padding:15px;
}
#divComments input, textarea {
    padding:5px;
    width:95%;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    /*z-index: 99;*/
    display: none;
    overflow-y: scroll;
}

.modalContainer {
    margin: 0 auto;
    margin-top: 9em;
    position: relative;
    overflow: auto;
    max-height: 100%;

    width: 350px;
    /*height: 400px;*/
    color: white;
    background-color: #212A3A;
    font-family: Arial;
    font-size: 19px;
    font-weight: 300;
    padding: 15px;
}
.modalContainer input, textarea {
    padding: 5px;
    width: 95%;
}
.modalTitle {
    font-size: 24px;
    font-weight: 600;
}

.smallLinkText {
    color: white;
    font-size: 16px;
    font-weight: 200;
}