.custom-select {
   position: relative;
 }
 
 .custom-select select {
   display: none;
 }
 
 .select-selected {
   width: 100%;
   outline: none !important;
   box-shadow: none !important;
   border: none !important;
   display: block;
   box-sizing: border-box;
   text-transform: none;
   line-height: 120%;
   letter-spacing: -0.54px;
   font-size: 1.125rem;
   padding: 29px 20px 19px 0;
   color: rgba(34, 43, 46, 0.3);;
 }
 
 .select-selected:after {
   position: absolute;
   content: "";
   top: 36px;
   right: 10px;
   width: 0;
   height: 0;
   border: 6px solid transparent;
   border-color: #BDC0C1 transparent transparent transparent;
 }

 
 .select-selected.select-arrow-active:after {
   border-color: transparent transparent #BDC0C1 transparent;
   top: 32px;
 }
 
 .select-items div,.select-selected {
   cursor: pointer;
 }

 .select-selected.select-chosen{
   color: #222B2E;
 }
 
 .select-items {
   position: absolute;
   background: #fff;
   border-top: none;
   position: absolute;
   bottom: 10px;
   transform: none;
   width: 100%;
   top: 100%;
   left: 0;
   right: 0;
   z-index: 99;
   max-height: 360px;
   overflow-y: scroll;
   height: 1000px;
 }

 .select-items::-webkit-scrollbar {
  width: 6px;
  background: #E9EAEA;
}

 .select-items::-webkit-scrollbar-thumb {
  background-color: var(--kmnd-body-background-accent);
  border-radius: 2px;
  width: 6px;
}

 .select-items div{
   background: #fff;
   font-size: 1rem;
   padding: 20px;
   border-top: solid 1px rgba(34, 43, 46, 0.1);
   letter-spacing: -0.48px;
   border-left: solid 1px rgba(34, 43, 46, 0.1);
   border-right: solid 1px rgba(34, 43, 46, 0.1);
 }

 .select-items div:first-of-type{
   border-top: none;
 }

 .select-items div:not(:last-of-type){
   margin-right: 0;
}

.select-items div:last-of-type{
   border-bottom: solid 1px rgba(34, 43, 46, 0.1);
}
 
 .select-hide {
   display: none;
 }
 
 .select-items div:hover, .same-as-selected {
   color: #0989FF;
 }

 @media only screen and (max-width: 576px){
   .select-selected{
      font-size: 1rem;
   }
 }