.select {
  position: relative;
  width: 100%;
}

.select__toggle {
  display: flex;
  background-color: transparent;
  cursor: pointer;
  align-items: center;
  width: 100%;
  user-select: none;
  justify-content: space-between;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6D7078;
}

.select__toggle::after {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 2px;
  background-size: cover;
  background-image: url('../image/down.svg');
}

.select__toggle:focus {
  outline: none;
}

.select_show .select__toggle::after {
  transform: rotate(180deg);
}

.select__dropdown {
  display: none;
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  max-height: 10rem;
  overflow-y: auto;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  padding: 16px;
  width: max-content;
}

.select_show .select__dropdown {
  display: block;
}

.select_show .select__backdrop {
  display: block;
}

.select__options {
  margin: 0;
  padding: 0;
  list-style: none;
}

.select__option {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #272727;
}
.select__option:last-child {
  margin-top: 10px;
}
.select__option_selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*
.select__option_selected::after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  color: #0277bd;
  background-size: cover;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100" class="svg-inline--fa fa-check fa-w-16" data-icon="check" data-prefix="fas" aria-hidden="true"%3E%3Cpath d="M33.964 85.547l-32.5-32.251a4.935 4.935 0 010-7.017l7.071-7.017a5.027 5.027 0 017.071 0L37.5 60.987l46.894-46.534a5.028 5.028 0 017.07 0l7.072 7.017a4.935 4.935 0 010 7.017l-57.5 57.06a5.027 5.027 0 01-7.072 0z" fill="%230277bd"/%3E%3C/svg%3E');
}
*/
/*
.select__option:hover {
  background-color: #f5f5f5;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}
*/
.select__option:hover {
  color: #535353;
  cursor: pointer;
}