.custom-select-wrapper {
    position: absolute;
    user-select: none;
    top: 80%;
    left: 10%;
  }
  .custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    font-size: 20px;
    font-weight: 300;
    color: #666;
    height: 50px;
    line-height: 60px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #aaa;
    border-radius: 4px;
  }
  .custom-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
  }
  .custom-select.open .custom-options {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .custom-option {
    position: relative;
    display: block;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.4s;
  }
  .custom-option:hover {
    cursor: pointer;
    background-color: #f2f2f2;
  }
  .arrow {
    position: relative;
    left: 15px;
    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: #666;
  }
  .arrow:after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #666;
  }
  .custom-select__trigger span {
    margin-right: auto;
  }
  .custom-select.open .arrow:before {
    left: -5px;
    transform: rotate(-45deg);
  }
  .custom-select.open .arrow:after {
    left: 5px;
    transform: rotate(45deg);
  }
  
  
  