
/* Category Container structure */
.hide {
    display: none;
  }
  
  .show {
    display: block;
  }
  
  .category_container {
    padding: 5px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  
  .category_list {
    list-style: none;
    margin-left: 4px;
    padding-left: 4px;
  }
  
  .category_list > li {
    padding-left: 0.5em;
    /*text-indent: -1em;*/
  }
  
  .category_list > li:before {
    padding-right: 3px;
  }
  
  .modal-item {
    padding: 5px;
  }
  
  .modal-item-end {
    height: 100%;
    width: 50px;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  
  .modal-item-start {
    height: 100%;
    width: 50px;
    border-radius: 0;
  }
  
  .category_item {
    height: 40px;
    font-size: smaller;
    cursor: pointer;
    width: 100%;
    border: 1px solid rgb(128, 128, 128);
    margin: 2px;
    border-radius: 10px;
  }
  
  
  .category_itemsm {
    height: 20px;
    font-size: smaller;
    cursor: pointer;
    width: 100%;
    border: 0.5px solid rgb(128, 128, 128);
    margin: 1px;
    border-radius: 5px;
  }
  
  
  .category_item_active {
    border: 1px solid rgb(126, 159, 250);
    background-color: rgb(182, 203, 248);
  }
  
  .category_item_selected {
    border: 2px solid rgb(89, 131, 247);
    background-color: rgb(126, 164, 245);
  }
  