
.c-dropdown {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
}

.c-dropdown__list {
  margin: 5px 0 0 0;
  padding: 6px 0;
  list-style: none;
  position: absolute;
  top: 125%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 3px;
  background: #fff;
  -webkit-transition: opacity 0.25s linear, top 0.25s linear;
  transition: opacity 0.25s linear, top 0.25s linear;
  box-shadow: 0 0 0.05rem 0.01rem rgba(0,0,0,.15);
}
.c-dropdown.is-open .c-dropdown__list {
  min-height: auto;
  max-height: 2rem;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.c-dropdown__item {
  padding: 6px 12px;
  font-size: 0.14rem;
  line-height: 20px;
  cursor: pointer;
  color: #434a54;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.c-dropdown__item:hover {
  /* background-color: #e6e9ed; */
  background: #0051A0;
  color: #fff;
}

/**
 * Component: Button
 * --------------------------------------------------
 */


.c-button {
    width: 100%;
   /*min-width: 200px;*/
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  overflow: visible;
  font: inherit;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c-button:hover,
.c-button:focus {
  outline: none;
  text-decoration: none;
}
.c-button:not(:disabled) {
  cursor: pointer;
}

/**
 * Component: Button
 * Modifier: Dropdown
 * --------------------------------------------------
 */
.c-button--dropdown {
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  /* background-color: #967adc; */
  color: #6d6d6d;
  font-size:0.14rem;
  width: 100%;  
  background: #f4f4f4;
  height: 0.4rem;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.c-button--dropdown:after {
  content: "";
  position: absolute;
  width: 0;
  top:55%;
  transform: translateY(-50%);
  right: 0.12rem;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #000;
}
