/* Main */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 2px;
    resize: none;
}

html, body {
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #751525;
}

h1 {
    font-size: 36px;
    line-height: 1;
}

h3 {
    font-size: 26px;
    line-height: 1;
}

h5 {
    font-size: 18px;
    line-height: 1;
}

h6 {
    font-size: 18px;
    line-height: 1;
}

div, p {
    border-radius: 10px;
    margin: 1px;
}

hr {
    border: 3px solid #8f8383;
    border-radius: 3px;
}

.round-xlarge, img, .menuColor, #submit, .pure-group, input, textarea, select {
    border-radius: 10px
}

.round {
    border-radius: 2px
}

.center {
    text-align: center;
}

.right {
    float: right;
}

.header {
    background-color: rgba(189,189,189,0.9);
    border: 1px solid #095413;
    border-style: solid;
    width: 99%;
    margin: 2px;
    text-align: center;
    overflow: auto;
}

.mainGrid {
    border: 1px solid #095413;
    border-style: solid;
    width: 99%;
    height: 76vh;
    margin: 2px;
}

.leftColumn, .rightColumn {
    background-color: rgba(189,189,189,0.9);
    border: 1px solid #095413;
    border-style: solid;
    margin: 2px;
    width: 98.3%;
    overflow: auto;
}

.leftColumn {
    height: 20%;
}

.rightColumn {
    height: calc(80% - 4px);
}

.footer {
    background-color: rgba(189,189,189,0.9);
    border: 1px solid #095413;
    border-style: outset;
    width: 99%;
    height: 9vh;
    margin: 2px;
    text-align: center;
}
.footerColumn {
    float: none;
    /*text-align:center;*/
    width: 100%;
}
.footerimage {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none;
}
#charstext {
    font-size: 12px;
}
@media only screen and (min-width: 650px) {
    .header {
        /*height: 9vh;*/
        /*font-size: initial;*/
    }

    .hidden {
        display: block;
    }

    .mainGrid {
        height: 80vh;
    }

    .leftColumn, .rightColumn {
        height: calc(100% - 5px);
    }

    .leftColumn {
        float: left;
        width: 300px;
    }

    .rightColumn {
        float: right;
        width: calc(98% - 300px);
    }

    .contactLeft, .contactRight {
        width: 47%;
    }

    .footer {
        height: 5vh;
    }
    .footerColumn {
        float: left;
        width: 33%;
    }
}

@media only screen and (min-width: 950px) {
    .hidden2 {
        display: block;
    }
}
/*Scrollbar*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c2c9d2;
}
/* Colors */
.menuColor {
    margin: 4px;
    color: #333 !important;
    background-color: #918787 !important
}

    .menuColor:hover {
        color: #333 !important;
        background-color: #8c7474 !important
    }

.menuColor-clicked {
    color: #333 !important;
    background-color: #8c7474 !important
}

.light-grey, .hover-light-grey:hover, .light-gray, .hover-light-gray:hover {
    color: #000 !important;
    background-color: #f1f1f1 !important
}

.text-light-grey, .hover-text-light-grey:hover, .text-light-gray, .hover-text-light-gray:hover {
    color: #f1f1f1 !important
}

.teal, .hover-teal:hover {
    color: #fff !important;
    background-color: #009688 !important
}

/* Background */
.bg {
    background-image: url('../Images/background.jpg');
    height: 95%;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-size: cover;
}

/* Bars */
.container:after, .container:before {
    content: "";
    display: table;
    clear: both;
    padding: 0.01em 16px;
}


/*Table*/
.tb {
    border-spacing: 0;
    border-collapse: separate;
    border: solid black 1px;
    border-radius: 6px;
    -moz-border-radius: 6px;
}

    .tb td {
        border-color: black;
        border-style: solid;
        border-width: 1px;
        /*font-family: Arial, sans-serif;*/
        font-size: 16px;
        overflow: hidden;
        padding: 10px 5px;
        word-break: normal;
    }

    .tb th {
        border-color: black;
        border-style: solid;
        border-width: 1px;
        /*font-family: Arial, sans-serif;*/
        font-size: 16px;
        font-weight: normal;
        overflow: hidden;
        padding: 10px 5px;
        word-break: normal;
    }

    .tb .tb_headerrow {
        position: -webkit-sticky;
        position: sticky;
        text-align: left;
        top: -1px;
        vertical-align: top;
        will-change: transform;
        background-color: #918787;
    }

    .tb .tb_row {
        text-align: left;
        vertical-align: top
    }

@media screen and (max-width: 767px) {
    .tb {
        width: auto !important;
    }

        .tb col {
            width: auto !important;
        }

    .tb-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Shadow */
hr, .header, .mainGrid, .footer, .menuColor, .menuColor-clicked, img, .tb {
    box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.5);
}
