.select-box {
  display: flex;
  width: 300px;
  flex-direction: column;
  padding-top: 40px;
}

.select-box .options-container {
  background: lightblue;
  color: #202020;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;
}

.selected {
  background: lightblue;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #202020;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("theme/images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: rgb(134, 183, 199);
  border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: rgb(134, 183, 199);
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: rgb(134, 183, 199);
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}
