.fs{
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    background-color: #121212;
    color: white;
    font-family: Roboto;
    font-size: 13px;
}
.fs_storage_bar_parent{
    width: 100%;
    height: 20px;
    background-color: black;
}
.fs_storage_bar{
    width: 0%;
    height: 20px;
    background-color: green;
    position: absolute;
    top: 0;
    color: white;
    font-family: Roboto;
    font-size: 13px;
    overflow: visible;
    white-space: nowrap;
}
.fs_footer{
    display: flex;
    flex-flow: row;
    /* background-color: #121212;  */
    background-color: #2980b9;
    width: calc(100% - 1px);
    height: 28px;
}
.fs_area{
    display: flex;
    background-color: #121212;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.fs_dropdown {
    position: absolute;
    background-color: violet;
    display: none;
    flex-flow: column nowrap;
    z-index: 6;
    height: 75px;
    width: 100px;
}
.fs_dropdown_button{
    display: flex;
    background-color: black;
    color: white;
    border: gray solid 1px;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.fs_dropdown_button:hover{
    background-color: gray;
}
.fs_dropdown_button:disabled{
    background-color: rgb(62, 62, 62);
}
