* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;

    color: rgb(70,70,70);

    margin: 0px;
    padding: 0px;
}
body {
    font-size: 12px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
a {
    text-decoration: none;
    color: inherit;
}
div {
    display: block;
    color: inherit;
}
span {
    display: inline-block;
}
input {
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
}
#logo {
    height: 24px;
    margin: 8px;
    padding: 0px;
    border: 0px;
}
#body-head-container {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: black;
    box-shadow: 0px 1px 3px rgb(63, 63, 63);
}
.header-logo {
    vertical-align: middle;
    color: white;
}
.header-menu {
    position: relative;
    font-size: 4px;
}
.menu-items {
    position: absolute;
    display: none;
    font-size: 16px;
    color: white;
    margin: 4px;
    padding: 4px;
    background: black;
}
.menu-item {
    font-size: 16px;
}
.menu-line {
    border: 0px;
    height: 2px;
    border-radius: 1px;
    background: rgb(180, 180, 180);
}
#body-main-container, #body-side-container {
    z-index: -2;
}
@media (max-width: 800px) {
    #body-main-container {
        position: fixed;
        padding: 8px;
        background-color: rgb(128,180,255);
        color: white;
        overflow: auto;
    }
    #body-side-container {
        position: fixed;
        padding: 8px;
        font-size: 16px;
        background-color: white;
        border-top: 1px solid black;
        box-shadow: 0px -2px 5px rgb(127, 127, 127);
    }
}
@media (min-width: 801px) {
    #body-main-container {
        position: fixed;
        padding: 8px;
        background-color: rgb(128,180,255);
        color: white;
        overflow: auto;
    }
    #body-side-container {
        position: fixed;
        padding: 8px;
        font-size: 16px;
        background-color: white;
        border-left: 1px solid black;
        box-shadow: -2px 0px 5px rgb(127, 127, 127);
    }
}