.select {
  position: relative;
  width: 240px;
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.select-title {
  font-size: 20px;
  line-height: 29px;
}

.select-trigger {
  min-width: 240px;
  max-width: 300px;
  width: 100%;
  padding: 20px;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid rgba(0, 10, 23, 0.25);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border 0.3s ease;
}

.select-trigger:hover,
.select-trigger:focus {
  border: 1px solid #0B41CD;
}

.select-trigger span {
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
}

.select-trigger svg {
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 10;
}

.select.open .select-options {
  display: block;
}

.select.open .select-trigger svg {
  transform: rotate(180deg);
}

.select-options .option {
  padding: 24px;
  cursor: pointer;
  font-size: 18px;
  line-height: 21px;
  color: var(--text-color);
  border-bottom: 1px solid var(--primary-color);
}

.select-options .option:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: none;
}

.select-options .option:hover {
  background: #eff6ff;
}