.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  font-family: "NimbusSans-Regular", sans-serif;
  letter-spacing: -0.12px;
  line-height: 18px;
  color: #181819;
  outline: none;
  width: 100%;
  font-size: 12px;
  outline: none;
  appearance: none;
  background-color: #f9f9f9;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.custom-select__trigger span {
  text-transform: capitalize;
}
.custom-options {
  position: absolute;
  max-height: 400px;
  overflow-y: scroll;
  display: block;
  top: 35px;
  text-transform: capitalize;
  left: 0;
  right: 0;
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0px 10px 20px #00000021;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  overflow-y: scroll;
}

.custom-option {
  position: relative;
  display: block;
  padding: 15px 20px;
  color: #3b3b3b;
  cursor: pointer;
  transition: all 0.3s;
}

.custom-option:hover {
  cursor: pointer;
  background-color: #5d6f76;
  border-radius: 0 !important;
  color: #ffffff;
}

.custom-option.selected {
  color: #ffffff;
  background-color: var(--color-01);
}

.arrow {
  position: relative;
  height: 15px;
  width: 15px;
}

/* .arrow::before,
 .arrow::after {
     content: "";
     position: absolute;
     bottom: 0px;
     width: 0.15rem;
     height: 100%;
     transition: all 0.5s;
 } */

.arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: var(--color-01);
}

.arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: var(--color-01);
}

.open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}

.open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}

.control {
  margin: 25px 0 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.control .bttn {
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  color: #fff;
  box-shadow: 0px 10px 10px #0000001a;
}

.control input {
  padding: 15px 0;
  border-radius: 25px;
  width: 90px;
  text-align: center;
}

.control .bttn img {
  width: 16px;
  height: 16px;
  filter: brightness(100);
}

.control .bttn-left {
  background: #727577;
}

.control .bttn-right {
  background: #007cb0;
  color: #fff;
}

.input-area input {
  padding: 15px;
  margin: 15px 0;
  border-radius: 30px;
  border: 1px solid #e6e6e6;
  width: 50%;
}

.selecotr-item {
  position: relative;
  flex-basis: calc(70% / 3);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selector-item_radio {
  appearance: none;
  display: none;
}

.selector-item_label {
  position: relative;
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 17px;
  font-family: "Taz-SemiBold";
  color: #585858;
  border: 1.5px solid #007cb0;
  transition: all 0.3s;
  cursor: pointer;
}

.selector-item_radio:checked + .selector-item_label {
  background-color: var(--color-01);
  color: #fff;
  box-shadow: 0px 10px 10px #0000001a;
}
.selector-item_radio:checked + .selector-item_label img {
  /* filter: invert(26%) sepia(80%) saturate(2699%) hue-rotate(179deg) brightness(152%) contrast(701%); */
  filter: brightness(10);
}
