body{
	background-color: white;
	width: 100%;
	font-family: 'Helvetica Neve', sans-serif;
	line-height: 1.75;
	font-size: 1rem; 
}

.FranjaTop{
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 1%;
}

.BotonesCaratula{
	position : relative;
	width: 100%;
	height: auto;
}

.BotonLogo
{
	display: inline-block;
	width: 15%;
	left:  5%;
	vertical-align: top;
}

.BotonCuenta{
	display: inline-block;
	width: 20%;
	left: 40%;
}

.BotonBrain{
	display: inline-block;
	width: 20%;
	left: 60%;
}

.BotonCupones{
	display: inline-block;
	width: 20%;
	left: 80%;	
}

.BotonVitta{
	display: inline-block;
	width: 20%;
	right: 4%;
	vertical-align: top;
}

.FranjaBottom{
	position: relative;
	width: 100%;
	height: auto;
}

.MiniBoton{
	width : 160px;
	height: 90px;
	padding: 2% 0 0 0; 
}

.divCarrito{
	position : absolute;
	width: 50px;
	height: 40px;
	display: flex;
	right: 130px;
	top: 60px;
}

.divItem{
	position : absolute;
	display: flex;
	right: 147px;
	top: 65px;
	color: #ffff;
	font-size: 12px;
	font-weight: bold;
	z-index: 10;
}

.MarcoImagen{
    width: 100px;
    max-width: 100px;
    height: 150px;
    max-height: 150px;
    object-fit: contain;
}

nav{
	position: relative;
	margin : 10px 200px 0;
	width : 950px;
	height: 50px;
	background:  #f2f2f2;
	border-radius: 8px;
	font-size: 0;
	box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);

}

nav a{
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	color: #2F658B;
	text-decoration: none;
	line-height: 60px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	z-index: 1;
}

nav .animation{
	position: absolute;
	height: 100%;
	background: #69ec97;
	width: 200px;
	border-radius: 8px;
	transition: all .5s ease 0s;
	top: 0;
	z-index: 0;

}

nav a:nth-child(1){
	width: 150px;
}

nav .start-1, a:nth-child(1):hover~.animation{
	width: 150px;
	left: 0px;
} 

nav a:nth-child(2){
	width: 200px;
}

nav .start-dos, a:nth-child(2):hover~.animation{
	width: 190px;
	left: 160px;
} 

nav a:nth-child(3){
	width: 200px;
}

nav .start-tres, a:nth-child(3):hover~.animation{
	width: 200px;
	left: 350px;
}

nav a:nth-child(4){
	width: 200px;
}

nav .start-cuatro, a:nth-child(4):hover~.animation{
	width: 200px;
	left: 560px;
}

nav a:nth-child(5){
	width: 200px;
}

nav .start-cinco, a:nth-child(5):hover~.animation{
	width: 200px;
	left: 760px;
}

.modal{
	width: 100%;
	height: 100vh;
	background: rgb(0,0,0,0.6);
	position: fixed;
	top: 0;
	left:0;
	display: flex;
	
	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
	z-index: 40;
}

.contenido{
	margin: auto;
	border-radius: 10px;
}

#cerrar{
	display: none;
}

#cerrar + label{
	position: fixed;
	float: right;
	top: 50px;
	right: 250px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	vertical-align: middle;
	z-index: 50;
	background: darkred;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	cursor: pointer;
	
	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
}

#cerrar:checked + label , #cerrar:checked ~ .modal {
	display: none;
}

@keyframes modal{
	100%{
		visibility: visible;
		opacity: 1;
	}
}

h1{
	font-size : 40px;
	color: #2F658B;
	text-align: center;
	text-shadow: groove;
}

h2{
	font-size : 25px;
	color: #2F658B;
	text-align: center;
	text-shadow: groove;
}

h3{
	font-size : 18px;
	color: #2F658B;
	text-align: center;
	text-shadow: groove;
}

p{
	font-size: 16px;
}

span {
	font-size : 22px;
	color: #2F658B;
	line-height: 1.5;
}

img{
	display : block;
	margin : 0 auto;
	max-width: 100%;
}

textarea{
    font-size: 14px;	
    box-sizing: border-box;
    color: #2F658B;
    border-radius: 8px;
    padding: 5px;
}

label{
	font-size: 20px;
}

button {
	border: none;
	background: #009045;
	color : #FFFFFF;
 	padding: 10px;
 	font-size: 18px;
 	border-radius: 8px;
 	box-sizing: border-box;
 	transition: all 500ms ease;
}

form{
	padding: 10px 10px 10px 10px;
}

fieldset{
	border: 2px solid #009045;
	border-radius: 8px;
}

input[type="submit"] {
	bottom: 5px;
	border: none;
	background: #009045;
	color : #FFFFFF;
 	padding: 10px;
 	font-size: 18px;
 	border-radius: 25px 0 25px 0;
 	transition: all 500ms ease;
 	cursor: pointer;
}

input[type=submit]: hover{
	text-decoration: none;
	opacity: 0.2;
}

input[type="password"] {
	font-size: 14px;	
	margin: 5px 5px;
	padding: 0.2em;
    box-sizing: border-box;
    line-height: 1.5;
    color: #2F658B;
	background : #FFFFFF;
    border-radius: 10px;
}

input[type="text"]{
    font-size: 14px;	
    left: -8px;
    line-height: 1.5;
    color: #2F658B;
	background : #FFFFFF;
    //border-radius: 10px;
}

input[type="email"]{
    font-size: 14px;	
	margin: 5px 5px;
	padding: 0.2em;
    box-sizing: border-box;
    line-height: 1.5;
    color: #2F658B;
	background : #FFFFFF;
    border-radius: 10px;
}

input[type="number"]{
    font-size: 14px;	
	margin: 5px 5px;
	padding: 0.2em;
    box-sizing: border-box;
    line-height: 1.5;
    color: #2F658B;
	background : #FFFFFF;
    border-radius: 10px;
}

input[type=checkbox]{
	cursor: pointer;
    background-size: cover;	
    padding: 10px;
}

.ClassBigCheckBox{
	-ms-transform: scale(2); /* IE */
  	-moz-transform: scale(2); /* FF */
  	-webkit-transform: scale(2); /* Safari y Chrome */
  	-o-transform: scale(2); /* Opera */
}


select{
	font-size: 16px;
	margin: 5px 5px;
	padding: 0.4em 1.4em .3em .8em;
	box-sizing: border-box;
    line-height: 1.5;
	color: #2F658B;
	background : #FFFFFF;
	border-radius: 10px;
	cursor: pointer;
	user-select: none;
}

table{
	margin: auto;
	border-collapse: collapse;
	border-spacing: 20px;
	display: block;
}

table th{
	font-size: 14px;
	text-align: center;
	font-weight: lighter;
}

table td{
	font-size: 16px;
	padding: 10px;
}

table tr:nth-child(even){background-color: #f2f2f2}


::placeholder {
    color: rgb(164, 164, 164);
    opacity: 0.8; /* Firefox */
    text-align: center;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgb(164, 164, 164);
}

::-ms-input-placeholder { /* Microsoft Edge */
   color: rgb(164, 164, 164);
}

.aBoton{
	border: none;
	background: #009045;
	color : #FFFFFF;
 	padding: 10px;
 	font-size: 18px;
 	border-radius: 8px;
 	box-sizing: border-box;
 	transition: all 500ms ease;
 	cursor: pointer;
}

.Confirma{
	position: relative;
	height: 40%;
}

#PiePagina{
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: #434343;
	padding-bottom: 3%;
}

.PieLogo{
	width: 15%;
	margin-left: auto;
	margin-right: auto;
	padding: 2% 0 0 0;
}

.PieTexto{
	width: 100%;
	font-size : 16px;
	color: #fff;
	text-align: center;
	text-shadow: groove;
}

.InfoPie{
	width: 100%;
	font-size: 14px;
	color : #ffffff;
}

.PieContacto{
	display: inline-grid;
	width: 25%;
	padding-left: 5%;
	text-align: center;
}

.PieNosotros{
	display: inline-grid;
	width: 25%;
	padding-left: 12%;
}

.PieServicios{
	display: inline-grid;
	width: 20%;
	padding-left: 5%;
}

.RedesSociales{
	position: relative;
	width: 100%;
	background: #434343;
	text-align: center;
}

.BotonInstagram{
	display: inline-grid;
}

.BotonTwitter{
	display: inline-grid;
}

.BotonFacebook{
	display: inline-grid;
}

.PieWarning{
	position: relative;
	text-align: center;
	color: #ffffff;
	background: #434343;
}

.TituloPie{
	font-size : 16px;
	color: #ffffff;
	text-decoration: underline;
	text-shadow: groove;
}

.TextoPie{
	font-size : 14px;
	color: #ffffff;
	text-decoration: none;
}

.iconoRS{ 
    height: 32px;
    width: 32px;	
}

.Aviso{
	width: 100%;
	padding-left: 15%;
	padding-right: 15%;
	font-size: 18px;
	text-align: center;
	color: #FC3004;
	padding-top: 10px;
}

.Error {
	width: 80%;
	color:#B40431; 
	border-style: none; 
	font-family: Verdana; 
	font-size: 14px; 
	text-align: center;	
}
