/* bottom-lists css */
.bl-wrapper{
    display: flex;
    position: fixed;
    background-color: #fff;
    bottom: 0px;
    left:0px;
    width: 100vw;
    height: 200px;
  }
  
  .bl-container{
    position: relative;
    width: 100%;
    border-top: 3px solid #666;
    border-bottom: 3px solid #666;
    border-left: 3px solid #666;
  }
  
  .bl-frame{
    display: flex;
    align-items: center;
    background-color: #777;
    color: #fff;
    height: 32px;
    padding-left: 16px;
  }
  
  .bl-title{
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .bottom-lists-main{
    height: calc(100% - 64px);
  }
  
  .add-btn{
    margin: 0px;
    font-weight: bold;
    font-size: 18px;
  }
  