/* Estilo base del select personalizado */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: ;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 230px;
  font-size: 16px;
  cursor: pointer;
}

/* Estilo del icono desplegable (flecha) */
.custom-select::after {
  content: '\25BC'; /* Código Unicode de una flecha hacia abajo */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Cambio de estilo al seleccionar una opción */
.custom-select:focus {
  border-color: #007BFF;
  outline: none;
}

/* Estilo de las opciones desplegadas */
.custom-select option {
  background: #fff;
  color: #333;
}

/* Estilo al pasar el cursor sobre una opción */
.custom-select option:hover {
  background: #007BFF;
  color: #fff;
}

.modal {
  display: none; /* Ocultar el modal de forma predeterminada */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #888;
  float: right;
  font-size: 24px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

<style>
	
	*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.carrousel{
    width: 100%;
	align-items: center;
    top: 50%;
    left: 50%;
}

.conteCarrousel{
    width: 100%;
    height: 350px;
    overflow: hidden;
	margin: 0 auto;
}

.itemCarrousel{
    position: relative;
    width: 100%;
    height: 100%;
}

.itemCarrouselTarjeta{
    width: 100%;
    height: 100%;
}

.itemCarrouselArrows{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px; 
	color: #888; 
}

.itemCarrouselArrows  i:hover {
    cursor: pointer;
}

#itemCarrousel-1{
    background-color: rgb(226, 50, 50);
}

#itemCarrousel-2{
    background-color: rgb(50, 200, 226);
}

#itemCarrousel-3{
    background-color: rgb(200, 226, 50);
}

.conteCarrouselController{
    width: 100%;
    display: flex;
    justify-content: center;
	gap: 10px;
    font-size: 14px;
	font-color: black;
}

.conteCarrouselController > a{
    text-decoration: none;
    font-size: 2em;
    color: grey;
	/* Quita los bordes alrededor de los círculos */
  border: none;
  /* Quita los bordes alrededor de los círculos cuando están activos */
  outline: none;
}

.itemCarrouselArrows > a > i{
    pointer-events: none;
}