select{
   height: 40px;
   background-color: white;
   border: 1px solid lightgrey;
   border-radius: 2px;
}

select::-webkit-scrollbar{
   background-color: lightgrey;
   width: 5px;
   height: 5px;
   border-top-right-radius: 5px;
   border-bottom-right-radius: 5px;
}

select::-webkit-scrollbar-thumb{
   background-color: grey;
   border-radius: 5px;
}

select[class="selectOpcoes"]{
   -webkit-appearance: none;  /* Remove estilo padrão do Chrome */
   -moz-appearance: none; /* Remove estilo padrão do FireFox */
   appearance: none; /* Remove estilo padrão do FireFox*/

   cursor: pointer;
   width: 30px;
   height: 30px;
   text-align: center;
   text-align-last: center;
   text-align: -webkit-center;
   margin: 0px;
   padding: 0px;
   border: none;
   border-radius: 50%;
   background-color: transparent;
   background-image: url('../imagens/more.svg');
   background-repeat: no-repeat;
   background-position: center;
   background-size: 70%;
}

select[class="selectOpcoes"]:focus{
   box-shadow: 0 0 0 0;
   outline: 0;
}

select[class="selectOpcoes"]:hover{
   background-color: lightgray;
}