.c-select {
  // should it be applied elsewhere
  min-width: 150px;

  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  vertical-align: middle;
  background: #eee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Slightly modified style from Bootstrap.
This must be included because library users may have incompatible version of Bootstrap
or no Bootstrap at all.
*/

.dropdown-select-menu {
  position: absolute;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 1rem;
  color: #4d4d4d;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  overflow: hidden;
}

.dropdown-select-header {
  cursor: default;
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.open {
  // Show the menu
  > .dropdown-select-menu {
    display: block;
  }

  // Remove the outline when :focus is triggered
  > a {
    outline: 0;
  }
}

.dropdown-select-item {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #4d4d4d;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
}

.dropdown-select-item-group .dropdown-select-item {
    padding-left: 35px;
}

.dropdown-select-item--active {
  color: #4d4d4d;
  background-color: #f5f5f5;
}

.dropdown-select-item:focus, .dropdown-select-item:hover {
  color: #404040;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-select-search {
  width: 100%;
  padding-left: 10px;
}


.dropdown-select-toggle.c-select {
  text-decoration: none;

  &:after {
    display: none;
  }
}

.dropdown-select-item.disabled, .dropdown-select-item.disabled:focus, .dropdown-select-item.disabled:hover {
  color: #b3b3b3;
  cursor: not-allowed;
}

.dropdown-select-item {
  &:hover:not(.no-hover-effect) {
  }
}

.no-hover-effect {
  color: black;
  background: transparent;
}
