body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0;
}
#main-container {
    box-sizing: border-box;
    padding: 0 0 100px;
    min-height: calc(100vh - 158px);
}
button {
    padding: 0.3em 0.5em;
    border: solid 1px transparent;
    border-radius: 4px;
    font: inherit;
    color: #ffffff;
    background-color: #378e47;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin: 2px 0;
}
button:active {
    transform: translateY(1px);
    filter: saturate(150%);
}
button:hover {
    color: #378e47;
    border-color: currentColor;
    background-color: white;
}
#switch-button {
    text-align: center;
}
#it-switch {
    background-color: #378e47;
}
#it-switch:hover {
    color: #378e47;
    border-color: currentColor;
    background-color: white;
}
#inventory-tracker-page h1 {
    display: inline-block;
    margin-right: 1vw;
}
#head-wrapper h1 {
    text-align: center;
    color: #353535;
}
#inventory-tracker-page {
    text-align: center;
    display: none;
}
#inventory-tracker-page .search-function {
    position: relative;
    display: inline;
    left: 19vw;
}
#inventory-tracker-page #it-clear-search-button {
    display: none;
}
#inventory-tracker-page #inventory-table {
    width: auto;
    min-width: 50vw;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border-spacing: 0;
}
#inventory-tracker-page #inventory-table td, #inventory-tracker-page #inventory-table th {
    border: 1px solid #CCC;
}
#inventory-tracker-page #inventory-table th {
    background: #DFDFDF;
    font-weight: bold;
}
#inventory-tracker-page #inventory-table td {
    background: #fafafa;
}
#itt-accordion {
    display: block;
}
#itt-accordion h1 {
    text-align: center;
    display: block;
}
#itt-accordion .half {
    width: 75%;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 auto;
    padding: 1em;
}
#itt-accordion .tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: rgb(10, 10, 10);
    overflow: hidden;
}
#itt-accordion .tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
#itt-accordion .tab label {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    color: #ffffff;
    background: #378e47;
    font-weight: bold;
    line-height: 3;
    cursor: pointer;
}
#itt-accordion .tab-content {
    max-height: 0;
    overflow: hidden;
    background: #f3f5f5;
}
#itt-accordion .tab-content p {
    margin: 1em;
}
#itt-accordion .tab input:checked ~ .tab-content {
    min-height: 50vh;
}
#itt-accordion .tab input:checked ~ label {
    background: #3ca34f;
}
#itt-accordion .tab label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}
#itt-accordion .tab input[type=checkbox] + label::after {
    content: "+";
}
#itt-accordion .tab input[type=checkbox]:checked + label::after {
    transform: rotate(315deg);
}
#itt-accordion .tab-content input {
    opacity: 1;
    z-index: 0;
    position: relative;
}
#itt-accordion .tab-content input[type=number] {
    width: 40%;
    height: 50%;
    font-size: 15vh;
    text-align: center;
}
#itt-accordion .number-input {
    text-align: center;
    padding: 1.5vw;
}
#itt-accordion .input-buttons {
    text-align: center;
}
#itt-accordion .tab-content p {
    font-size: 1.25em;
}
.footer-container {
    position: relative;
    bottom: 0;
    left: 0; 
    width: 100%;
    height: 54px;
    line-height: 54px;
    background-color: #353535;
    color: white;
}
.footer-container a {
    color: white;
    align-content: right;
    float: right;
    padding-right: 5px;
}
.footer-container p {
    vertical-align: middle;
    display: inline;
    padding-left: 5px;
}
#glass-login {
    padding: 1em;
}
#it-profile {
    text-align: center;
    padding-bottom: .5em;
    font-weight: bold;
}