body {
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
}

div {
  font-family: 'Roboto', sans-serif;
}

p {
  font-size: 90%;
  font-family: 'Roboto', sans-serif;
  color: #565656;
  text-align: justify;
}

p.thick {
  font-weight: 700;
}

.main-title {
  text-align: center;
  margin: auto;
  display: block;
  width: 60%;
}

.scroll-box {
  overflow-y: scroll;
  display: block;
  margin: auto;
  height: calc(60vh);
  padding: 10px;
}

.table {
  width: 60%;
}

.titulo {
  font-size: 3vh;
  font-family: 'Roboto', sans-serif;
  color: black;
  text-align: center;
}

.paso {
  font-size: 150%;
  font-family: 'Roboto', sans-serif;
  color: black;
  text-align: center;
}

.texto-descarga {
  font-size: 120%;
  font-family: 'Roboto', sans-serif;
  color: black;
  text-align: center;
}

.boton-si,
.boton-no {
  display: block;
  margin: auto;
  width: 15vh;
  height: 4.5vh;
  border-radius: 1.5rem;
  padding-left: 1vh;
  padding-right: 1vh;
  padding-top: 1vh;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5vh;
}

.boton-si {
  background-color: #f5a503;
  border: 1px solid #f5a503;
}

.boton-no {
  background-color: #bbb;
  border: 1px solid #bbb;
}

.boton-si:hover,
.boton-no:hover {
  background-color: transparent;
  color: #f5a503;
  text-decoration: none;
}

.boton-no:hover {
  color: #bbb;
}

.boton-enviar {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.imagen {
  margin-left: auto;
  margin-right: auto;
  height: 280px;
  /*border: 1px solid #f5a503;*/
}


/* input, textarea */
input,
textarea,
select {
	border: solid 1px #ccc;
	border-radius: 3px;
	display: inline-block;
	padding: 0.5rem 0.75rem;
	width: 90%;
	font-family: inherit;
	font-size: 1rem;
}

input::placeholder {
	color: #c2c2c2;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	box-shadow: 0 0 0 2pt rgb(49, 132, 253, 0.5);
}

input[disabled],
textarea[disabled] {
	background-color: #f5f5f5;
	box-shadow: none;
	color: #7a7a7a;
	cursor: not-allowed;
}

/* input error */
input.error,
textarea.error,
select.error {
	border-color: #dc3545;
}

input.error:focus,
textarea.error:focus,
select.error:focus {
	box-shadow: 0 0 0 0.25rem rgb(220 53 69 / 25%);
}

/* input success */
input.success,
textarea.success,
select.success {
	border-color: #198754;
}

input.success:focus,
textarea.success:focus {
	box-shadow: 0 0 0 0.25rem rgb(25 135 84 / 25%);
}



/* Si se pone más grande que 1200px */
@media (min-width: 1200px) {
  .scroll-box {

  }
}

/* Si es mayor o igual a 320px */
@media (min-width: 320px) {
  .scroll-box {
    width: calc(50vh);
  }
}

/* Si es mayor o igual a 768px */
@media (min-width: 768px) {
  .scroll-box {
    width: calc(100vh);
  }
}




