@charset "utf-8";
/* CSS Document */


/*ANIMATION*/
.avion {
  animation: MoveRightPlain 14s infinite;
  animation-timing-function: ease-in-out;
  position: absolute;
  right: -100%;
  transform: translateY(-100px);
}

@keyframes MoveRightPlain {
  0% {
    right: -100%;
	transform: translateY(-100px);
  }
  50% {
    right: 130%;
	transform: translateY(50px);
  }
  100% {
    right: 300%;
	transform: translateY(0);
  }
}

.avion-m {
  animation: MoveRightPlain-m 14s infinite;
  animation-timing-function: ease-in-out;
  position: absolute;
  left: -100%;
  transform: translateY(80px);
}

@keyframes MoveRightPlain-m {
  0% {
    left: -100%;
	transform: translateY(80px);
  }
  50% {
    left: 130%;
	transform: translateY(-50px);
  }
  100% {
    left: 300%;
	transform: translateY(-100px);
  }
}
/*VAIVEN*/
/*Efecto vaivén, jugando con la rotración y la traslación en % (el porcentaje se calcula en base al tamaño del elemento)*/
.mano{
  animation: vaiven 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven{
  15%{
    transform: translateX(-5%) rotate(-10deg);
  }
  30%{
    transform: translateX(5%) rotate(5deg);
  }
  45%{
    transform: translateX(-3%) rotate(-3deg);
  }
  60%{
    transform: translateX(3%) rotate(2deg);
  }
  75%{
    transform: translateX(-5%) rotate(-10deg);
  }  
}
.mano-2{
  animation: vaiven2 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven2{
  15%{
    transform: translateX(-2%) rotate(-5deg);
  }
  30%{
    transform: translateX(3%) rotate(5deg);
  }
  45%{
    transform: translateX(-3%) rotate(-3deg);
  }
  60%{
    transform: translateX(3%) rotate(5deg);
  }
  75%{
    transform: translateX(-2%) rotate(-5deg);
  }  
}
.rayo{
  animation: vaivenRayo 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaivenRayo{
  0%{
    transform: translateX(-5%) rotate(-5deg);
  }
  25%{
    transform: translateX(2%) rotate(2deg);
  }
  50%{
    transform: translateX(-1%) rotate(-1deg);
  }
  75%{
    transform: translateX(1%) rotate(2deg);
  }
  100%{
    transform: translateX(-5%) rotate(-5deg);
  }  
}
.nota1{
  animation: vaiven-nota1 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven-nota1{
  0%{
    transform: translateY(0);
  }
  20%{
    transform: translateY(-5%);
  }
  45%{
    transform: translateY(5%);
  }
  60%{
    transform: translateY(-2%);
  }
  75%{ 
    transform: translateY(0);
  }  
}
.nota1-2{
  animation: vaiven-nota1-2 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven-nota1-2{
  0%{
    transform: translateY(0);
  }
  20%{
    transform: translateY(-5%);
  }
  45%{
    transform: translateY(5%);
  }
  60%{
    transform: translateY(-2%);
  }
  75%{ 
    transform: translateY(0);
  }  
}
.nota2{
  animation: vaiven-nota2 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven-nota2{
  20%{
    transform: translateY(0);
  }
  33%{
    transform: translateY(-5%);
  }
  50%{
    transform: translateY(5%);
  }
  78%{
    transform: translateY(-2%);
  }
  100%{ 
    transform: translateY(0);
  }  
}
.nota2-2{
  animation: vaiven-nota2-2 1s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes vaiven-nota2-2{
  20%{
    transform: translateY(0);
  }
  33%{
    transform: translateY(-5%);
  }
  50%{
    transform: translateY(5%);
  }
  78%{
    transform: translateY(-2%);
  }
  100%{ 
    transform: translateY(0);
  }  
}
/*ANIMATION*/


body{
	background: #f8ab2c;
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	min-height: 100vh;
	font-family: 'Barlow Condensed', sans-serif;
	overflow-x: hidden;
	overflow-y: scroll;

}
.latas-arriba{
	position: relative;
	top: 0;
	left: 0;
	z-index: 2;
}
.latas-abajo{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.latas-arriba-m{
	position: relative;
	top: 0;
	right: 0;
	z-index: 2;
}
.latas-abajo-m{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.latas-abajo-m{
    max-width: 27.78% !important;
    width: 100%;
}
.general {
    width: 100%;
    min-height: 100vh;
    max-width: 100%;
    height: auto;
    display: flex;
    align-content: center;
    margin: auto;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: url(../img/bg-xl.png) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    position: relative;
}
.containerGeneral {
	position: relative;
}
.inicio {
	position: relative;
}
.formulario {
	position: relative;
}
.gracias {
	position: relative;
}
.latas {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: 500px;
	z-index: 1;
}
.avion {
    position: absolute;
    right: -100%;
    top: 10%;
    width: 100%;
    max-width: 240px;
    z-index: 0;
}
.mano {
    position: absolute;
    right: 12%;
    top: 38%;
    width: 100%;
    max-width: 180px;
    z-index: 0;
}
.lentes {
    position: absolute;
    left: 18%;
    top: 21%;
    width: 100%;
    max-width: 120px;
    z-index: 0;
}
.nota1 {
    position: absolute;
    right: 10%;
    top: 8%;
    width: 100%;
    max-width: 40px;
    z-index: 0;
}
#form{
	position: relative;
	width: 100%;
}
.errorParticipar {
    color: #ffffff;
    background: #e44e4e;
    width: auto;
    display: table;
    margin: 5px auto 0px;
    padding: 4px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 3px solid #000;
}
.nota2 {
    position: absolute;
    left: 8%;
    top: 70%;
    width: 100%;
    max-width: 50px;
    z-index: 0;
}
.mano-2 {
    position: absolute;
    left: 12%;
    top: 30%;
    width: 100%;
    max-width: 150px;
    z-index: 0;
}
.lentes-2 {
    position: absolute;
    right: 6%;
    top: 86%;
    width: 100%;
    max-width: 113px;
    z-index: 0;
}
.nota1-2 {
    position: absolute;
    left: 11.3%;
    top: 90%;
    width: 100%;
    max-width: 30px;
    z-index: 0;
}
#enviando {
    max-width: 200px;
    margin: auto;
}
#enviando .txtenviando {
    font-size: 1.2rem;
	text-transform: uppercase;
	margin-right: 10px;
}
.nota2-2 {
    position: absolute;
    left: 8%;
    top: 84%;
    width: 100%;
    max-width: 50px;
    z-index: 0;
}
.sobreimpreso{
	background: rgba(0,0,0,.6);
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: 0;
}
.logo {
    max-width: 460px;
    height: auto;
    margin: 30px auto 0;
    z-index: 3;
}
h1 {
    font-size: 1.8rem;
    line-height: 1em;
    margin: 30px 0 20px;
    font-weight: 700;
    color: #000000;
}
h2 {
    font-size: 1.2rem;
    line-height: 1em;
    margin: 15px 0 30px;
    font-weight: 600;
    color: #000000;
}
button {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}
.rayo {
    position: absolute;
    right: 0.5%;
    top: -21px;
    width: 34px;
    height: auto;
}
.img-fluid {
    width: 100%;
	max-width: 100%;
    height: auto;
}
.lataCodigo{
    position: absolute;
	right: 0;
	top: 0;
	max-width: 360px;
	width: 100%;
}
.centerFecha {
	justify-content: center;
}
.caja-fecha {
    background: url(../img/box-fecha.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 12px 40px 39px 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 440px;
    margin: auto;
    position: relative;
}
.caja-fecha .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}
.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
    background: #fef200;
    color: #000000;
	font-weight: 700;
    font-size: 3rem;
    padding: 0;
    border: 0;
	width: auto;
}
.caja-fecha select {
	padding-right: 22px;
	text-align: right;
    line-height: 1;
    background: url("../img/flechita.svg") no-repeat right;
	background-size: 15px auto;
  	border: none;
  	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.caja-fecha select:hover, .caja-fecha select:focus, .caja-fecha select:active, .caja-fecha select:actived {
    line-height: 1;
    background: url("../img/flechita.svg") no-repeat right;
	border: none;
	outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.caja-fecha select option {
	border: none;
	outline: none;
	/* font-size: 20px; */
	background: #fef200;
	color: #000000;
	text-align: center;
	font-weight: 600;
	font-size: 18px !important;
	-webkit-font-size: 18px !important;
    -moz-font-size: 18px !important;
	-webkit-appearance: none;
    -moz-appearance: none;
}
.caja-fecha input:focus, .caja-fecha textarea:focus, .caja-fecha select:focus{
	 border-color: transparent;
	 outline: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
    }
.form-control:focus {
    color: #000000;
    background-color: #FFF200;
    border-color: none;
    outline: none;
    box-shadow: none;
}
.codigoProducto:focus {
    color: #000000;
    background-color: #FFF200;
    border-color: none;
    outline: none;
    box-shadow: none;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    margin: 50px auto 0;
}
.plegal{
	font-size: 14px;
	line-height: 1;
	text-align: center;
	margin: 0 auto 5px;
}
.plegal a{
	text-decoration: none;
	color: #000000;
	font-weight: bold;
}
.plegal a:hover, .plegal a:focus {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
}
.menoresniunagota{
	width: 270px;
	max-width: 270px;
	height: auto;
	margin: 0 auto 20px;
}
.participar{
	width: 90%;
	max-width: 600px;
	height: auto;
	margin: 40px auto 20px;
}
.form {
    max-width: 800px;
    margin: auto;
}
#gracias{
	width: 100%;
	max-width: 100%;
	position: relative;
}
.gracias {
    width: 90%;
    max-width: 560px;
    height: auto;
    margin: 70px auto 60px;
    display: flex;
    flex-direction: column;
}
.form {
    margin: 40px auto 10px;
	position: relative;
	z-index: 10;
}
.form-control {
    display: flex;
    width: 100%;
    padding: 0 25px 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    color: #000000;
	margin-bottom: 4px;
    background-color: #FFF200;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: none;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-xl.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-xl.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-xl.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-xl.svg") 10 stretch;
	text-transform: uppercase;
}
.codigoProducto {
    display: flex;
    width: 100%;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    background-color: #FFF200;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: none;
    flex-direction: row;
    flex-wrap: nowrap;
	text-transform: uppercase;
}
.form-control::placeholder, .codigoProducto::placeholder{
	color: #E44E4E;
	font-size: 1.2rem;
	font-weight: 600;
}
.seriePack {
    width: 40%;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-xs.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-xs.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-xs.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-xs.svg") 10 stretch;
	margin-bottom: 5px;
}
.previewFoto {
    width: 100%;
    height: auto;
}
.fechaPack {
    width: 57%;
	margin-left: 3%;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-l.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-l.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-l.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-l.svg") 10 stretch;
	margin-bottom: 5px;
}
.lote {
    width: 45%;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-s.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-s.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-s.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-s.svg") 10 stretch;
	margin-bottom: 5px;
}
.horaPack {
    width: 52%;
	margin-left: 3%;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-m.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-m.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-m.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-m.svg") 10 stretch;
	margin-bottom: 5px;
}
.form-check {
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
button, button:hover, button:focus{
	background: none;
	border: none;
	outline: none;
}
.campo-foto {
    padding: 0;
    line-height: 1;
    color: #E44E4E;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: none;
    display: flex;
    width: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 2%;
    align-items: center;
    justify-content: space-between;
	font-size: 1.2rem;
	font-weight: 600;
	border: 13px solid transparent;
	-moz-border-image:url("../img/campo-xl.svg") 10 stretch; /* Old firefox */
	-webkit-border-image:url("../img/campo-xl.svg") 10 stretch; /* Safari */
	-o-border-image:url("../img/campo-xl.svg") 10 stretch; /* Opera */
	border-image:url("../img/campo-xl.svg") 10 stretch;
}
.just-validate-error-label {
    color: #ffffff !important;
    background: #e44e4e;
    line-height: 1em;
    padding: 5px;
    font-size: .85rem;
    height: 68%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
	margin-bottom: 8px;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right calc(1em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.yellow{
	width: 100%;
	background-color: #FFF200;
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
}
label.labelPack {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
.campo-foto label {
    font-weight: 600;
    line-height: 1;
    color: #E44E4E;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}
.campo-foto label img{
    margin-left: 10px;
}
.form-check-label a{
    color: #000000;
}
.form-check .form-check-input {
    margin-left: 10px;
	margin-right: 10px;
	background-color: #FFF200;
	border: 3px solid #000000;
	border-radius: 0;
	width: 20px;
	height: 19px;
	float: revert;
}
.form-check-input:checked[type=checkbox] {
    background-image: url("../img/tick.svg");
}
.form-check-input:focus {
    border-color: #000000;
    outline: 0;
    box-shadow: none;
}
.form-check-label{
	font-size: 1rem;
	font-weight: 600;
	line-height: 19px;
    color: #000000;
}
.asteriscoBases {
    width: 10px;
    height: 10px;
    display: flex;
    margin-right: 5px;
}
.inline {
    display: inline-block;
}
.clip{
	display: flex;
	width: 22px;
	height: 22px;
	margin-right: 10px;
}
.grupoFotoClip{
	display: flex;
}
.enviar{
	display: flex;
	max-width: 250px;
	width: 100%;
	background: none;
	border: none;
	border-radius: 0;
}
.btn-group button{
    background: #e44e4e;
    border-radius: 0;
    border: 3px solid #000000;
    font-size: 1rem;
    padding: 3px 20px;
    font-weight: 600;
    color: #fff200;
}
.contenedorCampo {
   position: relative;
}
.asterisco {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 11px;
}
.contenedorCampo .asterisco2 {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 5px;
    top: 0px;
}
.m20 {
    margin-top: 20px;
}
.flex {
    display: flex;
    justify-content: space-evenly;
}
.flex-center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.flex-elements {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.radio, .checkbox {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
#msjErrorFecha {
    position: relative;
	z-index: 10;
}
.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 0;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    position: relative;
    margin: 0 0 0 15px;
}
.continuar {
	width: 250px;
    max-width: 250px;
	height: auto;
	margin: auto;
	text-align: center;
	display: block;
	cursor: pointer;
	padding: 0;
}
.continuar img{
	width: 250px;
    max-width: 250px;
	height: auto;
	margin: auto;
}
.continuar .btn-hcontinuar {
    display: none;
}
.continuar:hover .btn-continuar, .continuar:focus .btn-continuar {
    display: none;
}
.continuar:hover .btn-hcontinuar, .continuar:focus .btn-hcontinuar {
    display: block;
}

.enviar {
	width: 100%;
    max-width: 250px;
	height: auto;
	margin: auto;
	text-align: center;
	display: block;
	cursor: pointer;
}
.enviar img{
	width: 100%;
    max-width: 250px;
	height: auto;
	margin: auto;
}
.enviar .btn-henviar {
    display: none;
}
.enviar:hover .btn-enviar, .enviar:focus .btn-enviar {
    display: none;
}
.enviar:hover .btn-henviar, .enviar:focus .btn-henviar {
    display: block;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #ffffff;
    pointer-events: auto;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
    outline: 0;
}
.modal{
	background: rgba(0, 0, 0, 0.42);
}
.modal-content{
	background: url(../img/fondo-msj.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
}

.modal-body{
	/* background-color: #dc3545 ; */
	text-align: center;
	font-size: 20px;
	padding: 0;
}
.msjError {
    font-size: 1.2rem;
    margin: 18px 50px 20px 20px;
    line-height: 1em;
}

.modal-content .btn-close {
    position: absolute;
    right: 27px;
    top: 16px;
}
.btn-close {
    box-sizing: content-box;
    width: 0.7em;
    height: 0.7em;
    padding: 0.25em 0.25em;
    color: #000;
    background: url('../img/cerrar.svg') no-repeat;
    border: none;
	outline: none;
    border-radius: 0.375rem;
    opacity: 1;
}
button.btn-close:hover, button.btn-close:focus {
	background: url('../img/cerrar.svg') no-repeat;
    opacity: 0.6;
}
.latas-m{
		display: none;
	}
.avion-m {
		display: none;
	}
.avion {
		display: block;
	}
.volver{
	text-decoration: none;
	color: #e44e4e;
	text-transform: uppercase;
	font-size: 25px;
	margin: 20px 0 0;
	font-weight: bold;
}

.volver:hover{
	color: #fff200;
}
.col-1 {
	padding: 0;
	margin: 0 4px;
}
.separador {
	min-width: 14px;
}
.separador img {
    max-width: 14px;
}

/*---------------------------------*/
.noSee {
	display: none!important;
}
/*---------------------------------*/
@media (max-width: 1600px){
	.latas {
		position: absolute;
		left: -1%;
		top: 0;
		width: 100%;
		max-width: 450px;
		z-index: 1;
	}
	.logo {
		max-width: 400px;
		margin: 20px auto 0;
		z-index: 4;
		position: relative;
	}
	.caja-fecha {
		padding: 15px 24px 43px 30px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 3rem;
	}
	.rayo {
		right: -3%;
		top: -14px;
		width: 34px;
	}
	.lentes {
		left: 11%;
	}
	.mano {
		right: 14%;
		top: 38%;
		max-width: 150px;
	}
	.footer {
		margin: 25px auto 0;
	}
	.menoresniunagota {
		width: 250px;
		max-width: 250px;
		height: auto;
		margin: 0 auto 20px;
	}
}
@media (max-width: 1440px){
	.general {
		background: url("../img/bg-xl.png") no-repeat;
		background-size: cover;
		background-position: center center;
	}
	.latas {
		position: absolute;
		left: -1%;
		top: 0;
		width: 100%;
		max-width: 400px;
		z-index: 1;
	}
	.logo {
		max-width: 380px;
		margin: 30px auto 0;
	}
	.caja-fecha {
		padding: 12px 24px 50px 30px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 2.8rem;
	}
	.lentes {
		left: 11%;
	}
	.mano {
		right: 11%;
		top: 25%;
		max-width: 150px;
	}
	.footer {
		margin: 30px auto 0;
	}
	.lataCodigo {
		max-width: 290px;
		width: 100%;
	}
	.mano-2 {
		left: 7%;
		top: 24%;
		max-width: 130px;
		z-index: 0;
	}
	.form {
		max-width: 600px;
		margin: auto;
	}
	.inline {
		display: flex;
		text-align: left;
		margin: 0 0 0 6px;
	}
	.form-check .form-check-input {
		width: 29px;
		height: 23px;
	}
	.participar {
		width: 90%;
		max-width: 550px;
	}
	.form-check {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
}
@media (max-width: 1380px){
	.general {
		background: url(../img/bg-ml.png) no-repeat;
		background-size: cover;
		background-position: top center;
	}
	.latas {
		max-width: 440px;
	}
	.caja-fecha {
		padding: 15px 24px 43px 30px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 3rem;
	}
	.latas {
		max-width: 440px;
	}
	h1 {
		margin: 20px 0 18px;
	}
	h2 {
		margin: 10px 0 20px;
	}
}
@media (max-width: 1200px){
	.logo {
		max-width: 300px;
		margin: 20px auto 0;
	}
	.general {
		background: url("../img/bg-l.png") no-repeat;
		background-size: contain;
		background-position: top center;
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
	h1 {
		font-size: 1.7rem;
		margin: 20px 0 14px;
	}
	h2 {
		font-size: 1.1rem;
		margin: 8px 0 15px;
	}
	.caja-fecha {
		padding: 14px 54px 40px 61px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 2.5rem;
	}
	.continuar {
		width: 200px;
		max-width: 200px;
	}
	.continuar img {
		width: 100%;
		max-width: 100%;
	}
	.menoresniunagota {
		width: 230px;
		max-width: 230px;
	}
	.mano {
		right: 12%;
		top: 39%;
		max-width: 120px;
	}
	.lentes {
		position: absolute;
		left: 14%;
		top: 23%;
		max-width: 90px;
		z-index: 0;
	}
	.rayo {
		right: 4%;
		max-width: 32px;
		width: 32pc;
	}
	.nota1 {
		right: 13%;
		top: 12%;
		max-width: 30px;
	}
	.nota2 {
		left: 9%;
		top: 63%;
		max-width: 40px;
	}
	.avion {
		max-width: 160px;
	}
	.latas {
		max-width: 390px;
	}
	.lataCodigo {
		max-width: 201px;
		width: 100%;
		top: 9%;
	}
	.form-control {
		font-size: 1rem;
	}
	.codigoProducto {
		font-size: 1rem;
	}
	.campo-foto label {
		font-size: 1rem;
		text-align: left;
	}
	.campo-foto label::placeholder {
		font-size: 1rem;
		text-align: left;
	}
	.form-control::placeholder {
		font-size: 1rem;
	}
	.codigoProducto::placeholder {
		font-size: 1rem;
	}
	.form-check-label {
		font-size: .8rem;
		line-height: 1em;
	}
	.lentes-2 {
		right: 6%;
		top: 86%;
		max-width: 96px;
	}
	.mano-2 {
		left: 5%;
		top: 27%;
		max-width: 108px;
	}
	.nota1-2 {
		left: 12%;
		top: 90%;
		max-width: 20px;
	}
	.m20 {
		margin-top: 15px;
	}
	.asterisco {
		top: 8px;
		right: 15px;
	}
	.contenedorCampo .asterisco2 {
		right: 0px;
		top: -5px;
	}
	.asteriscoBases {
		margin-right: 10px;
	}
	.enviar {
		max-width: 200px;
	}
	.enviar img {
		max-width: 200px;
	}
	.participar {
		width: 90%;
		max-width: 390px;
	}
	.form {
		max-width: 510px;
		margin: auto;
	}
}
@media (max-width: 1024px){
	.latas {
		max-width: 340px;
	}
	.logo {
		max-width: 290px;
	}
	.general {
		background: url(../img/bg-l.png) no-repeat;
		background-size: contain;
		background-position: top center;
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
}
@media (max-width: 1024px) and (max-height: 600px){
	.general {
		background: url(../img/bg-l.png) no-repeat;
		background-size: cover;
		background-position: top center;
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
}
@media (max-width: 1000px){
	body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
	.general {
		background: url("../img/bg-m.png") no-repeat;
		background-size: cover;
		background-position: top center;
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
	.latas-m {
		display: flex;
		width: 100%;
		margin: -20% auto 0;
		text-align: center;
		position: relative;
	}
	.latas{
		display: none;
	}
	.logo {
		width: 90%;
		max-width: 500px;
		margin: 10% auto 0;
	}
	h1 {
		font-size: 2.5rem;
		margin: 20% 0 20px;
	}
	h2 {
		font-size: 2.5rem;
		margin: 10px auto 40px;
		max-width: 410px;
	}
	.avion {
		display: none;
	}
	.rayo {
		right: 4%;
		top: -21px;
		width: 40px;
		max-width: 40px;
	}
	.avion-m {
		display: block;
		position: absolute;
		left: -5%;
		top: 23%;
		width: 100%;
		max-width: 300px;
		z-index: 5;
	}
	.lentes {
		right: 7%;
		left: auto;
		top: -11%;
		max-width: 140px;
	}
	.mano {
		left: 2%;
		top: 40%;
		max-width: 170px;
	}
	.nota1 {
		left: 14%;
		top: -59%;
	}
	.nota2 {
		left: 6%;
		top: -63%;
		max-width: 68px;
	}
	.continuar {
		width: 330px;
		max-width: 330px;		
		margin: auto;
	}
	.continuar img {
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: auto;
	}
	.plegal {
		font-size: 23px;
		margin: 0 auto 20px;
	}
	.menoresniunagota {
		width: 370px;
		max-width: 90%;
		height: auto;
		margin: 0 auto 10%;
	}
	.arriba {
		position: relative;
		z-index: 10;
	}
	.errorParticipar {
		color: #ffffff;
		background: #e44e4e;
		width: auto;
		display: table;
		margin: 5px auto 0px;
		padding: 4px 10px;
		font-size: 1.1rem;
		font-weight: 600;
		border: 3px solid #000;
	}
	.mano-2 {
		display: none;
	}
	.form {
		width: 80%;
		max-width: 450px;
		margin: auto;
	}
	.participar {
		width: 90%;
		max-width: 670px;
		height: auto;
		margin: 40px auto 8%;
		position: relative;
		z-index: 10;
	}
	.campos {
		max-width: 400px;
		margin: 40px auto 20px;
	}
	.form-check {
		width: 50%;
	}
	.col-button {
		width: 50%;
	}
	.lataCodigo {
		position: absolute;
		right: -10px;
		top: 280px;
		max-width: 190px;
		width: 100%;
	}
	.inline {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
	}
	.form-check-label {
		text-align: left;
		margin: 0 0 0 10px;
	}
	.nota1-2 {
		left: 11%;
		bottom: 0;
		margin-top: 3%;
		max-width: 24px;
	}
	.nota2-2 {
		left: 6%;
		bottom: 0;
		max-width: 42px;
		margin-top: 4%;
	}
	.lentes-2 {
		position: absolute;
		right: 5%;
		top: 86%;
		width: 100%;
		max-width: 110px;
		z-index: 0;
	}
	#gracias .lataCodigo {
		display: none;
	}
	#gracias .lentes-2 {
		display: none;
	}
	.caja-fecha {
		padding: 15px 48px 53px 61px;
		max-width: 650px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 4.4rem;
	}
}
@media (max-width: 740px) {
	.caja-fecha {
		padding: 15px 54px 50px 58px;
		max-width: 600px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 4rem;
	}
	.lataCodigo {
		position: absolute;
		right: -10px;
		top: 224px;
		max-width: 100px;
		width: 100%;
	}
	.campos {
		max-width: 290px;
		margin: 40px auto 20px;
	}
	.lentes-2 {
		position: absolute;
		right: 3%;
		top: 86%;
		width: 100%;
		max-width: 80px;
		z-index: 0;
	}
	.nota2-2 {
		left: 3%;
		bottom: 0;
		max-width: 42px;
		margin-top: 4%;
	}
}
@media (max-width: 540px) {
	.general {
		background: url(../img/bg-s.png) no-repeat;
		background-position: top center;
		background-size: cover;
		overflow-x: hidden;
		width: 100%;
	}
	.nota1 {
		left: 12%;
		top: -54%;
		width: 100%;
   		max-width: 25px;
	}
	.nota2 {
		left: 3%;
		top: -57%;
		max-width: 46px;
	}
	.avion-m {
		display: block;
		position: absolute;
		left: -5%;
		top: 22%;
		width: 100%;
		max-width: 220px;
		z-index: 10;
	}
	h1 {
		font-size: 2rem;
		line-height: 1em;
		margin: 20% 0 14px;
	}
	.caja-fecha {
		background: url(../img/box-fecha.svg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
		padding: 19px 25px 45px 30px;
		width: 100%;
		max-width: 438px;
		margin: auto;
		position: relative;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 3rem;
	}
	h2 {
		font-size: 2rem;
		max-width: 330px;
		margin: 10px auto 40px;
	}
	.continuar  {
		width: 280px;
		max-width: 280px;
	}
	.continuar img {
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: auto;
	}
	.avion-m {
		top: 22%;
	}
	.nota1 {
		left: 12%;
		top: -59%;
		width: 100%;
		max-width: 20px;
	}
	.nota2 {
		left: 4.2%;
		top: -63%;
		max-width: 40px;
	}
		.lentes {
		max-width: 110px;
	}
	.mano {
		left: 2%;
		top: 35%;
		max-width: 110px;
	}
	.menoresniunagota {
		width: 310px;
	}
	.logo {
		width: 80%;
		max-width: 620px;
		margin: 10% auto 0;
	}
	.rayo {
		right: -4%;
		top: -22px;
		width: 42px;
	}
	.gracias {
		width: 80%;
		max-width: 560px;
		height: auto;
		margin: 20% auto 20%;
		display: flex;
		flex-direction: column;
	}
	.form {
		width: 80%;
		max-width: 320px;
		margin: auto;
	}
	
}
@media (max-width: 513px){
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 3rem;
	}
	h1 {
		font-size: 2rem;
		line-height: 1em;
		margin: 20% 0 14px;
	}
	.mano {
		left: 1%;
		top: 33%;
		max-width: 96px;
	}
	.lentes {
		right: 7%;
		left: auto;
		top: -10%;
		max-width: 96px;
	}
}
@media (max-width: 430px){
	.plegal {
		font-size: 17px;
		margin: 0 auto 10px;
	}
	h1 {
		font-size: 1.6rem;
		margin: 30% 0 14px;
	}
	h2 {
		font-size: 1.5rem;
	}
	.avion-m {
		top: 20%;
		max-width: 180px;
	}
	.lentes {
		right: 10%;
		left: auto;
		top: -9%;
		max-width: 80px;
	}
	.rayo{
		right: 4%;
		top: -22px;
		width: 30px;
	}
	.nota1 {
		left: 14%;
		top: -64%;
	}
	.nota2 {
		left: 4.2%;
		top: -67%;
	}
	.mano {
		left: 1%;
		top: 28%;
		max-width: 74px;
	}
	.caja-fecha {
		padding: 14px 20px 33px 26px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 2.5rem;
	}
	.continuar  {
		width: 250px;
		max-width: 250px;
	}
	.continuar img {
		width: 100%;
		max-width: 100%;
	}
	.menoresniunagota {
		width: 200px;
	}
	.caja-fecha select {
		padding-right: 15px;
		background: url(../img/flechita.svg) no-repeat right;
		 -webkit-appearance: none;
		background-size: 10px;
		overflow: hidden;
  		overflow: -moz-hidden-unscrollable;
	}
	.form {
		max-width: 300px;
	}
	.lataCodigo {
		right: -10px;
		top: 249px;
		max-width: 68px;
	}
	.form-check {
		width: 100%;
		margin: -10px auto 20px;
	}
	.col-button {
		width: 100%;
	}
	#form .lentes-2 {
		position: absolute;
		left: 0;
		top: 51%;
		width: 100%;
		max-width: 73px;
		z-index: 0;
	}
	.campos {
		max-width: 310px;
		margin: 20px auto 20px;
	}
	.form-check .form-check-input {
		width: 26px;
		height: 25px;
	}
	.nota1-2 {
    left: 12%;
    bottom: 0;
    margin-top: -6%;
    max-width: 20px;
}
	.nota2-2 {
		left: 3%;
		bottom: -7px;
		max-width: 32px;
		margin-top: 0%;
	}
}
@media (max-width: 394px){
	.caja-fecha {
		padding: 12px 22px 30px 26px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 2rem;
	}
	.footer {
		margin: 0 auto 0;
	}
	.avion-m {
		top: 21.5%;
		max-width: 190px;
	}
	.lentes {
		right: 9%;
		left: auto;
		top: -10%;
		max-width: 70px;
	}
	.mano {
		left: 1%;
		top: 31%;
		max-width: 70px;
	}
	.nota1 {
		left: 14%;
		top: -66%;
	}
	.nota2 {
		left: 3.2%;
		top: -69%;
	}
	h1 {
		font-size: 1.4rem;
	}
	h2 {
		margin: 10px auto 30px;
	}
	.rayo {
		right: 8%;
	}
}
@media (max-width: 376px){
	.avion-m {
		top: 20%;
		max-width: 170px;
	}
	h1 {
		font-size: 1.42rem;
	}
	h2 {
		font-size: 1.2rem;
		max-width: 250px;
		margin: 10px auto 40px;
	}
	.mano {
		top: 27%;
	}
	.rayo {
		right: 7%;
		top: -17px;
		width: 27px;
	}
	.form {
		max-width: 260px;
	}
	.form-control {
		font-size: 1.1rem;
	}
	.codigoProducto {
		font-size: 1.1rem;
	}
	.form-control::placeholder {
		font-size: 1.1rem;
	}
	.codigoProducto::placeholder {
		font-size: 1.1rem;
	}
	.asterisco {
		width: 8px;
		height: 8px;
		position: absolute;
		right: 14px;
		top: 8px;
	}
	.contenedorCampo .asterisco2 {
		width: 8px;
		height: 8px;
		position: absolute;
		right: -1px;
		top: -3px;
	}
	
}
@media (max-width: 340px){
	.avion-m {
		top: 19%;
		max-width: 160px;
		left: -13%;
	}
	.lentes {
		max-width: 62px;
	}
	.mano {
		left: 0;
		top: 30%;
		max-width: 60px;
	}
	.nota1 {
		left: 13%;
		top: -69%;
		width: 15px;
	}
	.nota2 {
		left: 2.2%;
		top: -71%;
		width: 30px;
	}
	h1 {
		font-size: 1.2rem;
		margin: 40% 0 14px;
	}
	h2 {
		font-size: 1rem;
		max-width: 210px;
		margin: 10px auto 40px;
	}
	.caja-fecha {
		padding: 12px 25px 28px 30px;
		max-width: 248px;
	}
	.caja-fecha input, .caja-fecha select, .caja-fecha textarea {
		font-size: 1.5rem;
	}
	.continuar img {
		width: 190px;
		max-width: 190px;
	}
	.rayo {
		right: -3%;
		top: -10px;
		width: 20px;
	}
	.plegal {
		font-size: 13px;
		margin: 0 auto 10px;
	}
	.menoresniunagota {
		width: 200px;
	}
}