.itc-select {
  position: relative;
  width: fit-content;
}

.itc-select__toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--lucky-gray);
  font-size: 14px;
  line-height: 18px;
  font-style: normal;
  background-color: var(--white-smoke);
  font-weight: 400;
  border: none;
  border-radius: 6px;
  height: 42px;
  gap: 10px;
  min-width: 200px;
  font-family: inherit;
  transition: all 0.3s;
  text-align: left;
}

.itc-select__toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  width: 100%;
}

.itc-select__toggle::after {
content: '';
display: block;
min-width: 18px;
max-width: 18px;
min-height: 18px;
max-height: 18px;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.79289 6.04289C4.18342 5.65237 4.81658 5.65237 5.20711 6.04289L9 9.83579L12.7929 6.04289C13.1834 5.65237 13.8166 5.65237 14.2071 6.04289C14.5976 6.43342 14.5976 7.06658 14.2071 7.45711L9.70711 11.9571C9.31658 12.3476 8.68342 12.3476 8.29289 11.9571L3.79289 7.45711C3.40237 7.06658 3.40237 6.43342 3.79289 6.04289Z' fill='%23404040'/%3e%3c/svg%3e");
background-size: cover;
background-position: center;
transition: all 0.3s;
}

.itc-select__toggle:focus {
outline: none;
}

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

.itc-select__dropdown {
display: none;
position: absolute;
top: calc(100% + 8px);
padding: 4px;
max-height: 134px;
overflow-y: auto;
border: 1px solid var(--white-smoke);
background-color: var(--white);
border-radius: 8px;
right: 0;
left: 0;
z-index: 2;
}

.itc-select_show .itc-select__dropdown {
display: block;
}

.itc-select_show .itc-select__backdrop {
display: block;
}

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

.itc-select__option {
padding: 12px;
font-family: inherit;
font-size: 14px;
line-height: 18px;
font-weight: 400;
}

.itc-select__option_selected {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--white-smoke);
gap: 10px;
border-radius: 6px;
}

.itc-select__option_selected::after {
content: '';
display: block;
min-width: 16px;
max-width: 16px;
min-height: 16px;
max-height: 16px;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0405 3.9594C14.431 4.34992 14.431 4.98309 14.0405 5.37361L7.37381 12.0403C6.98329 12.4308 6.35013 12.4308 5.9596 12.0403L2.62627 8.70694C2.23574 8.31642 2.23574 7.68325 2.62627 7.29273C3.01679 6.90221 3.64996 6.90221 4.04048 7.29273L6.66671 9.91896L12.6263 3.9594C13.0168 3.56887 13.65 3.56887 14.0405 3.9594Z' fill='%2310A7DE'/%3e%3c/svg%3e");
background-size: cover;
background-position: center;
}

.itc-select__option:hover {
background-color: var(--white-smoke);
cursor: pointer;
transition: 0.2s background-color ease-in-out;
}
