


@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');

* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

@font-face {
	font-family: dimbo;
	src: url(Dimbo_Regular.ttf);
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #414042;
}

#contenedor {
	max-width: 1800px;
	left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}


.runaway_header {
	width: 100%;
	height: calc(100vw * .65111111);
	background-image: url(../img/codigosrunaway/header_mobile.png);
	background-size: cover;
	max-width: 450px;
	max-height: 293px;
}

footer {
	padding: 15px;
}

.runaway_footer {
	display: block;
	width: calc(100vw - 30px);
	height: calc((100vw - 30px) * .64444444);
	background-image: url(../img/codigosrunaway/footer_mobile.jpg);
	background-size: cover;
	max-width: 450px;
	max-height: 290px;
}

.contenedor_form {
	padding: 15px;
}

form {
	display: flex;
	flex-direction: column;
}

form button[type=submit] {
	font-size: 0;
	width: 100%;
	height: calc(100vw * .38235294);
	background-image: url(../img/codigosrunaway/boton_enviar_mobile.png);
	background-size: cover;
	max-width: 170px;
	max-height: 65px;
	margin-bottom: 15px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	align-self: flex-end;
}

.form_section {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.form_section input {
	background-color: #58595b;
	border: 1px solid #58595b;
	outline: none;
	color: white;
	padding: 9px;
	font-size: 1em;
	box-shadow: 5px 5px 5px black;
}

.form_section input:focus {
	border: 1px solid #FFF;
}

.label_id {
	font-size: 0;
	width: 100%;
	height: calc(100vw * .31847134);
	background-image: url(../img/codigosrunaway/id_label_mobile.png);
	background-size: cover;
	max-width: 157px;
	max-height: 50px;
	margin-bottom: 8px;
}

.label_codigo {
	font-size: 0;
	width: 100%;
	height: calc(100vw * .2);
	background-image: url(../img/codigosrunaway/codigo_label_mobile.png);
	background-size: cover;
	max-width: 250px;
	max-height: 50px;
	margin-bottom: 8px;
}

.contenedor_imagenes_runaway {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contenedor_pantalla {
	width: 50%;
	display: flex;
}

.contenedor_pantalla_izq {
	justify-content: flex-start;
}

.contenedor_pantalla_der {
	justify-content: flex-end;
}

.contenedor_pantalla img {
	width: 90%;
}

h1 {
	font-size: 30px;
	color: #fff;
  	text-shadow: 4px 4px black;
  	margin-bottom: 20px;
  	font-family: dimbo;
}

h2 {
	font-size: 27px;
	color: #fff;
  	text-shadow: 4px 4px black;
  	margin: 8px 0 12px;
  	font-family: dimbo;
}

.alert {
	padding: 8px;
	font-family: dimbo;
	font-size: 27px;
	box-shadow: 5px 5px 5px black;
	margin-bottom: 22px;
	color: white;
}

.alert-danger {
	background-color: #ed2024;
}

.alert-success {
	background-color: #8ec641;
}


@media screen and (min-width: 360px) {

h1 {
	font-size: 33px;
}

}

@media screen and (min-width: 450px) {

h1 {
	font-size: 37px;
}

.runaway_header {
	width: 100%;
	height: calc(100vw * .25222222);
	background-image: url(../img/codigosrunaway/header_desktop.png);
	background-size: cover;
	max-width: 1800px;
	max-height: 454px;
}

.contenedor_form {
  max-width: 800px;
  margin: auto;
}

.runaway_footer {
	width: calc(100vw - 30px);
	height: calc((100vw - 30px) * .18);
	background-image: url(../img/codigosrunaway/footer_desktop.jpg);
	max-width: 1800px;
	max-height: 324px;
}

}
/*  END 450px*/

@media screen and (min-width: 600px) {

h2 {
  font-size: 48px;
}

h1 {
  font-size: 59px;
}

}


