
  .c-dropdown {
    width: auto;
    position: relative;
  }
  
  .c-dropdown-header {
    display: flex;
    justify-content: start;
    border-radius: 20px;  
    padding: 7px 10px;
  }

  .c-dropdown.disabled .c-dropdown-header {
    background: #FFFEFE;
    border: 0.5px solid rgba(172, 172, 172, 0.14);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.08);
    pointer-events: none;
  }
  
  .c-dropdown.open .c-dropdown-header {
    border-radius: 10px 10px 0px 0px;
  }

  .c-dropdown.open .c-dropdown-header .wk-icon {
    background-color: #fff !important;
  }
  
  .c-dropdown-selected {
    cursor: default;
  }
  
  .c-dropdown.open .c-dropdown-selected {
    color: #fff;
  }
  
  .c-dropdown-arrow {
    margin-left: auto;
    padding-left: 3rem;
    position: relative;
    cursor: pointer;
  }
  
  .c-dropdown-arrow:after {
    position: absolute;
    content: "";
    top: 0px;
    right: 15px;
    width: 0.7em;
    height: 0.7em;
    border: 1px solid;
    border-width: 0px 2px 2px 0;
    transform: translateY(-50%) rotate(44deg);
  }

  .c-dropdown-close {
    position: absolute;
    right: 46px;
    top: 7.4px;
    font-style: normal;
    font-size: 16px;
    color: #999;
    font-family: monospace;
  }

  .c-dropdown-close:hover {
    color: #d0021b;
  }

  .c-dropdown.open .c-dropdown-arrow:after {
    transform: translateY(-50%) rotate(224deg);
    top: 4px;
    border-color: #fff;
  }

  
  .c-dropdown-expanded-area {
    height: 0;
    overflow: hidden;
    display: none;
  }
  
  .c-dropdown.open .c-dropdown-expanded-area {
    background: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.04);
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #eee;
    height: auto;
    overflow: auto;
    width: 100%;
    position: absolute;
    z-index: 10;
    min-height: 3rem;
    max-height: 25rem;
    display: block;
  }
  
  .c-dropdown-option {
    padding: 8px 10px;
    cursor: pointer;
    color: #5E5E5E;
    display: block;
    margin: 0;
  }
  
  .c-dropdown-option input {
    min-height: 15px;
    min-width: 15px;
    vertical-align: middle;
  }
  
  .c-dropdown-option:hover {
    background: #eee;
  }

  .c-dropdown-option.active {
    background: #ebebeb;
  }

  .c-dropdown-no-items {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    color: #7c7c7c;
  }

  .c-dropdown-option-name {
    vertical-align: middle;
  }