:root {
  --kolorCzcionkiWyrozniony05: rgba(30, 145, 139, 0.5);
}

.select-box {
  position: relative;
  display: block;
  /* margin: 0 auto; */
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  color: #60666d;
  z-index:101;
  width: 305px;
  top: 20px;
  left:30px;
  /* box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1); */
}

.select-box__current {
  position: relative;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}

.select-box__current:focus {
  outline: none;
  border: 1px solid var(--kolorCzcionkiWyrozniony05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px var(--kolorCzcionkiWyrozniony05);
}

.select-box__current:focus + .select-box__list {
  box-sizing: border-box;
  opacity: 1;
  animation-name: none;
  outline: none;
  border: 1px solid var(--kolorCzcionkiWyrozniony05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px var(--kolorCzcionkiWyrozniony05);
}
.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.select-box__value {
  display: flex;
}
.select-box__input {
  display: none;
}
.select-box__input:checked + .select-box__input-text {
  display: block;
}
.select-box__input-text {
  font-family: "Oxygen", sans-serif;
  font-size: 18px;
  color: #60666d;
  display: none;
  width: 100%;
  margin: 0;
  padding: 15px;
  background-color: #fff;
}
.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  animation-name: HideList;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
}
.select-box__option {
  display: block;
  padding: 5px;
  background-color: #fff;
}
.select-box__option:hover, .select-box__option:focus {
  color: #546c84;
  background-color: #fbfbfb;
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}