  .select-btn-checkbox-left-panel {
    display: inline-flex;
    /* height: 32px; */
    align-items: center;
    /* justify-content: space-between; */
    /* padding: 0 16px; */
    border-radius: 8px;
    cursor: pointer;
    /* background-color: #fff; */
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
  }
  .select-btn-checkbox-left-panel .btn-text-checkbox-left-panel {
    font-size: 14px;
    font-weight: 400;
    color: #333;
  }
  .select-btn-checkbox-left-panel .arrow-dwn {
    display: flex;
    height: 22px;
    width: 22px;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    background: var(--iq-primary-hover3);
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  .select-btn-checkbox-left-panel.open .arrow-dwn {
    transform: rotate(-180deg);
  }
  /* .list-items-checkbox-left-panel {
    position: absolute;
    margin-top: 15px;
    border-radius: 1em;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    opacity: 0;
  } */
  .list-items-checkbox-left-panel {
    position: absolute;
    margin-top: 15px;
    /* border-radius: 1em; */
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    width: 100%;
    left: 0;
    -webkit-transition: all 1200ms ease-out;
    transition-duration: 1200ms;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition-property: all;
    -moz-transition: all 1200ms ease-out;
    -o-transition: all 1200ms ease-out;
    -ms-transition: all 1200ms ease-out;
    transition: all 1200ms ease-out;
    transition-duration: 1200ms;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition-property: all;
}
  .select-btn-checkbox-left-panel.open ~ .list-items-checkbox-left-panel {
    display: block;
  }
  
  /* Always show the scrollbar of the dropdown */
  .select-btn-checkbox-left-panel.open ~ .list-items-checkbox-left-panel::-webkit-scrollbar {
    width: 8px;
    height: 0;
  }
  .select-btn-checkbox-left-panel.open ~ .list-items-checkbox-left-panel::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }
  .select-btn-checkbox-left-panel.open ~ .list-items-checkbox-left-panel::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .list-items-checkbox-left-panel .item-checkbox-left-panel {
    display: flex;
    align-items: center;
    list-style: none;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 8px;
  }
  .list-items-checkbox-left-panel .item-checkbox-left-panel:hover {
    background-color: #e7edfe;
  }
  .item-checkbox-left-panel .item-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
  }
  .item-checkbox-left-panel .checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    min-width: 16px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
  }
  .item-checkbox-left-panel.checkbox-left-panel-checked .checkbox {
    background-color: var(--iq-primary-hover3);
    border-color: var(--iq-primary-hover3);
  }
  .checkbox .check-icon {
    color: #fff;
    font-size: 11px;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
  }
  .item-checkbox-left-panel.checkbox-left-panel-checked .check-icon {
    transform: scale(1);
  }

  .in-custom-checkbox-nav-top-menu {
    padding: 0 1em;
    text-align: center;
    border-radius: 1em;
    font-size: 14px;
    color: var(--iq-primary-hover3);
    border: 2px solid;
    cursor: pointer;
  }
  .in-custom-checkbox-nav-top-menu:hover {
    color: #fff;
    background-color: var(--iq-primary-hover3);
    border-color: var(--iq-primary-hover3);
  }
  .dropdown-menu.show.menu-level-filter {   
      border: none;
      border-radius: 1em;
      margin-top: 1em;
      box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
  }
  .dropdown-menu.show.menu-level-filter h4.dropdown-item{    
      font-size: 1em;
      font-weight: 500;
      color: #14152D !important;
  }
  .dropdown-menu.show.menu-level-filter a.dropdown-item{    
      font-size: 1em;
      color: #14152D !important;
      cursor: pointer;
  }
  .dropdown-menu.show.menu-level-filter .dropdown-item.active, 
  .dropdown-menu.show.menu-level-filter .dropdown-item:active {
    color: var(--iq-primary-hover3);
    text-decoration: none;
    background-color: transparent;
  }
  .dropdown-menu.show.menu-level-filter .dropdown-item.btn-text-checkbox-left-panel {
    font-size: 0.75em;
    font-style: italic;
    font-weight: 500;
    text-align: center;
  }