.elementos {
  display: flex;
  box-sizing: border-box;
}

.elementos div {
  justify-content: space-between;
}

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

input[type="number"] {
  -moz-appearance: textfield;
}

@media all and (max-width: 1000px) {
  .elementos {
    display: flex;
    flex-direction: column;
  }

  .elementos div {
    width: 100%;
  }
}

.tiempoReporte {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 12%;
  grid-auto-rows: minmax(70px, auto);
}

.info-producto-logo {
  width: 20%;
  height: auto;
  margin: 5px auto;
  padding: 10px;
}

.info-producto-box {
  /* width: 360px;
  margin: 7% auto; */

  display: block;
  min-height: 90px;
  width: 60%;
  height: 38vw;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 10vh auto;
}

.info-producto-box-body {
  background-color: #3c8dbc;
  padding: 20px;
  border-top: 0;
  color: #666;
  height: 100%;
  border-radius: 2%;
}

.info-producto-box-msg {
  margin: 0;
  text-align: center;
  padding: 0 20px 5px 20px;
  /* color: red; */
  color: #fff;
  font-size: 45px;
}

.info-producto {
  margin: 0 auto;
  /* background-color: #3c8dbc; */
  /* background-color: rgb(248, 180, 52); */
  background-color: #d4d4d4;
  height: 70%;
  border-radius: 2%;
}

.info-producto-nombre {
  text-align: center;
  /* font-size: 250%; */
  font-size: 2.5vw;
  font-weight: 600;
}

.info-producto-precio {
  text-align: center;
  /* font-size: 280%; */
  font-size: 3.2vw;
  font-weight: 600;
}

.abajo {
  background-color: purple;
  bottom: 7%;
}

.red {
  color: rgb(189, 9, 9);
  font-size: 50px;
}

@media (max-width: 980px) {
  .info-producto-box {
    width: 98%;
    margin-top: 70px;
    height: 100vw;
  }

  .info-producto-logo {
    width: 30%;
  }

  .info-producto-box-msg {
    font-size: 28px;
  }

  .info-producto-nombre {
    font-size: 25px;
  }

  .info-producto-precio {
    font-size: 20px;
  }

  .info-producto-box-body {
    padding: 0%;
  }
  .info-producto {
    height: 80%;
  }
}
