/*
*******************************
* Created by: Alessandro Bonora 
* 23-03-2024.
*******************************
*/
/* 
    Created on : 23 mar 2024, 13:30:23
    Author     : Alex
*/

select {
  /* Reset Select */
  border: 1px solid #6a6c70;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 2px 4px;
  color: #D9D9D9;
  background-color: #2c2e33;
  background-image: none;
  cursor: pointer;
  min-width: 160px;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.select {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  background-color: #34495e;
  transition: .25s all ease;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
    background-color: #D9D9D9;
    color: #2c2e33;
}

