.select {
  width: 50%;
  font-size: 18px;
  font-style: italic;
  cursor: pointer;
  user-select: none;
}
.selected {
  display: flex;
  justify-content: space-between;
  border: 2px solid #00ffe1;
  border-radius: 25px;
  height: 50px;
  margin-bottom: 10px;
}
.selected__inner {
  display: flex;
  margin-left: 20px;
  align-items: center;
  width: 80%;
}
.selected__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.arrowDown {
  width: 25px;
  height: 25px;
}
.option {
  border: 2px solid #00ffe1;
  border-radius: 25px;
  position: absolute;
  background-color: white;
  z-index: 10;
  width: 350px;
}
.option__item {
  height: 50px;
  padding: 20px 30px;
}
.box__shadow {
  box-shadow: 0 0 15px rgb(0, 60, 255);
  transition: 0.4s;
}
@media screen and (max-width: 500px) {
  .select {
    font-size: 16px;
    width: 60%;
  }
  .selected {
    height: 40px;
  }
  .option {
    width: 200px;
  }
  .option__item {
    height: 40px;
    padding: 15px 20px;
  }
  .arrowDown {
    width: 20px;
    height: 20px;
  }
  .selected__arrow {
    margin-right: 8px;
  }
  .selected__inner {
    margin-left: 13px;
  }
}
@media screen and (max-width: 340px) {
}
.select {
  width: 70%;
}
