
/*# sourceMappingURL=custom.min.css.map */
.multi-select-dropdown {
      position: relative;
      display: inline-block;
      width: 100%;
}

.dropdown-btn {
      padding: 10px;
      border: 1px solid #ccc;
      width: 100%;
      text-align: left;
      background: #fff;
      cursor: pointer;
}

.dropdown-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      border: 1px solid #ccc;
      max-height: 200px;
      overflow-y: auto;
      background: white;
      display: none;
      z-index: 99;
}

.dropdown-list label {
      display: block;
      padding: 8px 12px;
      cursor: pointer;
}

.dropdown-list input[type="checkbox"] {
      margin-right: 8px;
}

.dropdown-list label:hover {
      background: #f0f0f0;
}