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