#file-icon {
  .menubtn{
    width: 90px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
  }
  /*.menubtn {
      color: #008;
      width:100px;
      height:100px;
  }*/
  button:active{
      background:#ccc;
  }
  .menus{
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
  }
  /*.menus{
      display: flex;
      flex-wrap: wrap;
  }*/
  .item {
    width: 90px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
  }
  .icon {
    font-size: 48px;
  }
  .label {
    font-size: 14px;
    word-break: break-all;
  }
  .item.selected {
    background: #cce5ff;
    border: 2px solid #339af0;
    border-radius: 6px;
  }
    

  .autob{
      background: #dc2;
      
  }
  .stop{
      /*background: #d20;*/
      position:absolute;
      bottom: 0px;
      right: 0px;
      z-index:100;
  }
  .submenus {
      z-index:10;
      position: absolute;
      width:100%;
      left:0;
      top:0;
  }
  .submenus div {
      font-size: 18px;
      border: 1px solid black;
      background: linear-gradient(#fff, #ddd);
      padding: 5px;
  }
  .submenus div:active {
      background:#ccc;
  }
  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .modal-dialog {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .modal-dialog.splash {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}