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

.select__toggle {
  display: flex;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.3125rem;
  cursor: pointer;
  align-items: center;
  width: 100%;
  color: #333;
  padding: 0.375rem 0.75rem;
  user-select: none;
  font-size: 1rem;
  justify-content: space-between;
}
.select__toggle:after {
  content: '';
  padding: 10px;
  background: url(/img/open_filter.svg) no-repeat center;
  transition: 0.3s;
  margin-left: 15px;
}

.select__toggle:focus {
  outline: none;
}

.select__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  border-radius: 0.3125rem;
  z-index: 2;
}

.select_show .select__dropdown {
  display: block;
}

.select_show .select__backdrop {
  display: block;
}

.select__options {
	background: #fff;
	z-index: 1;
	width: max-content;
	min-width: 100%;
	filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.1));
}

.select__option {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 10px;
    border-bottom: 1px solid #F2F2F2;
    transition: 0.3s;
}

.select__option::before {
  content: '';
  padding: 15px;
  background: url(/img/galka_filter.svg) no-repeat center;
  opacity: 0;
  transition: 0.3s;
  margin-right: 10px;
}

.select__option_selected::before {
  opacity: 1;
}

.select__option:hover {
  background-color: #f5f5f5;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}