

#select-2.custom-select-wrapper ,#select-3.custom-select-wrapper {
    width: 190px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 127px;
    height: 24px;
  }
  .custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 12px;
    font-weight: 300;
    height: 24px;
    line-height: 60px;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid var(--orage-color);
    border-radius: 30px;
    z-index: 2

  }
  .custom-options {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    right: 0;
    border: 1px solid var(--orage-color);
    border-radius: 0 0 10px 10px;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 15px;
    z-index: 1;
  }
  .custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .custom-option {
    position: relative;
    display: block;
    padding: 0 22px 0 22px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    cursor: pointer;
    transition: all 0.5s;
  }
  .custom-option:hover {
    cursor: pointer;
    color: var(--orage-color);
  }
  /* .custom-option.selected {
    color: #ffffff;
    background-color: #305c91;
  } */
  
  .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(--orage-color);
  }
  .arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: var(--orage-color);
  }
  .open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
  }
  .open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
  }
  