.selecciona_tu_moneda {
  display: flex;
  position: fixed;
  z-index: 103;
  top: 115px;
  right: 10px;
  padding: 10px 4px 10px 0px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.8s;
  justify-content: center;
  align-items: center;
}
.boton_moneda {
  width: 90px;
  height: 60px;
  border-radius: 15px;
  background-color: #ffffff;
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
}
.selecciona_tu_moneda .boton_moneda .bandera {
  width: 39.9px;
  border-radius: 2px;
  height: 25.7px;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
}
.selecciona_tu_moneda label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #f0f0f0;
}
.selecciona_tu_moneda .seleccionador {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 0 30px 0px 10px;
  border-radius: 10px 0px 0px 10px;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
}
.selecciona_tu_moneda.abierto .seleccionador {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  width: 250px;
}
.selecciona_tu_moneda .flecha {
  width: 18px;
  height: 18px;
  margin: auto 4px;
  transition: 0.4s;
}
.selecciona_tu_moneda .flecha.rotar {
  transform: rotate(180deg);
}
.selecciona_tu_moneda .opcion {
  margin: 0px 0px 7px 8px;
  text-align: start;
  color: #000000;
  transition: 0.8s;
  font-size: 15px;
  font-weight: 500;
}
.selecciona_tu_moneda .opcion.oculto {
  display: none;
}
#conversor_moneda {
  background: #ffffff;
  border: none;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  padding: 2px;
  color: #000000;
  cursor: pointer;
  font-size: 15px;
  width: 100%;
}
#conversor_moneda:focus {
  outline: none;
}
option {
  cursor: pointer;
}
@media (max-width: 650px) {
  .selecciona_tu_moneda {
    top: 93px;
  }
  .boton_moneda {
    width: 80px;
    height: 50px;
  }
  .selecciona_tu_moneda .seleccionador {
    height: 35px;
  }
}