body{
    background-color: #4E4E4E;
    color: white;
}

a{
    text-decoration:none;
    color: white;
}

.button-no-style{
    border: none;
    background: none;
    color: white;
    position: relative;
}

.table-condensed{
  font-size: 12px;
}

.menu-img{
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    width: 150px;
    height: auto;
}

.threshold-group{
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    border: solid;
}


/*
    ==SIDEBAR
 */
.sidebar-layout {
    position: fixed;
    flex-grow: 0;
    flex-shrink: 0;
    overflow-y: scroll;
    z-index: 2;
    right: 0;

    width: 100%; /* # */
    transform: translateX(100%);

    transition: transform 0.25s;

    -ms-overflow-style: none; /* IE and Edge */

    pointer-events: auto;

    bottom: 0;
    top: 34.3px;

    background-color: #4E4E4E;
    color: white;
}

.sidebar-layout::-webkit-scrollbar {
    display: none;
}

.sidebar--shown {
    transform: translateX(0%);
}