form {
  height: 100vh;
}

.bg-roxo {
  background-color: rgb(124, 95, 160);
}

.bg-beige {
  background-color: beige;
}

.input-range::-webkit-slider-thumb {
    background-color: rgb(124, 95, 160);
  }

.editar--pressionado {
  opacity: 0.7;
}

.mostrar-lista-btn {
  position: fixed;
  bottom: 3%;
  right: 3%;
}

.mostrar-lista-btn i {
  font-size: 40px;
  position: relative;
}

.mostrar-lista-btn span {
  position: absolute;
  z-index: 10;
  font-weight: 800;
  color: purple;
  font-size: 32px;
  top: 40%;
  left: 40%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alert {
  position: fixed;
  top: 30px;
  right: 10vw;
  z-index: 9999;
  width: 80vw;
}

@media screen and (min-width: 992px) {
  form {
    height: auto;
  }
} 