@font-face {
    font-family: 'VolkswagenSerial';
    src: url('../../../assets/fonts/Volkswagen Serial.otf');
}
@font-face {
	font-family: 'VolkswagenSerialItalic';
    src: url('../../../assets/fonts/Volkswagen Serial Italic.otf');
}
@font-face {
    font-family: 'VolkswagenBlack';
    src: url('../../../assets/fonts/Volkswagen Serial Black.otf');
}
@font-face {
    font-family: 'VolkswagenBold';
    src: url('../../../assets/fonts/Volkswagen Serial Bold.otf');
}
@font-face {
    font-family: 'VolkswagenExtraBold';
    src: url('../../../assets/fonts/Volkswagen Serial ExtraBold.otf');
}

* {
    margin: 0;
    padding: 0;
    /* box-sizing: content-box; */ /* No incluye borde, relleno y/o imagen en las cajas CSS */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

body {
    display: flex;
    justify-content: space-around;
}
/*----------Index---------*/
.img-full {
	width: 100vw;
}
.img-mod {
	width: 75%;
}
.img-mid {
	width: 50%;
}
.img-small {
	width: 25%;
}
/*----------FinIndex---------*/
h1, h2, h3 {
    font-family: 'VolkswagenBlack';
    font-size: 6rem;
    /* background-color: #336699;
    color: #FFFFFF; */
    color: #6ed2ff;
    /*color: #00ff0090;*/
    letter-spacing: 2px;
    padding-top: 0px;
    text-decoration: none;
    text-shadow: /*0 0 15px #00ff00,
    0 0 30px #ffffff;*/
    /*0px -2px 0px #000000, /*Arriba*/
    /*2px -2px 0px #000000, /*Derecha-Arriba*/
    2px 0px 0px #000000, /*Derecha*/
    2px 2px 0px #000000, /*Derecha-Abajo*/
    0px 2px 0px #000000, /*Abajo*/
    /*-2px 2px 0px #000000, /*Izquierda-Abajo*/
    /*-2px 0px 0px #000000, /*Izquierda*/
    /*-2px -2px 0px #000000, /*Izquierda-Arriba*/
    4px 4px 10px #00000050; /*Tamaño y difuminado.*/
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
    text-shadow: 0.5px 0.5px 0.5px #000000;
}

p {
    font-family: 'VolkswagenBold';
    font-size: 20px;
    text-decoration: none;
    padding-left: 0rem;
}

#p-Titulo {
    grid-area: 'head head';
    display: flex;
    padding-bottom: 1rem;
    justify-content: center;
}

a:link {
    color: black;
    text-decoration: none;
}

#copyright a:visited, #copyright a:active {
    color: #6ed2ff;
}

#copyright a:hover {
    color: white;
}

.divfgMM {
    background-color: #ff0000;
    margin-top: 0.8rem;
}
.divfg00 {
    background-color: #33669920;
    color: #000000;
}
/*
.divfg01 {
    background-color: #4CAF5090;
}
*/
.divfg02 {
    background-color: #ff0000;
}
.divfg03 {
    background-color: #336699;
}
/*
.divfg01:hover, .divfg02:hover {
    background-color: #4CAF5080;
    transition: ease .3s
}
*/
.contenedor {
    width: 100vw;
    display: inline-block;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: auto;
    grid-template-areas:
    "head" "tit" "main" "footer";
}

.divfgMM, .divfg00 {
    grid-area: head;
    height: 3rem;
}

.divfg01 {
    display: grid;
    /* display: flex;
    flex-direction: row-reverse; */
    padding: 1rem;
    width: 90%;
    /* height: fit-content; */
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 4rem;
    gap: 2rem;
    /* row-gap: 0.2rem;
    column-gap: 0.2rem; */
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto  auto;
    grid-template-areas:
    "head head head"
    "main main main"
    "footer footer footer";
}

.divfg01 #botoncheck {
    width: 100%;
    height: 6rem;
    display: grid;
    justify-content: space-around;
    align-items: center;
    border: 0px solid black;
    border-radius: 10px;
}

.divfg02, .divfg03 {
    grid-area: footer;
    height: 2rem;
}

#cont-titulo, #cont-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

#titulo, #copyright {
    width: fit-content;
    height: fit-content;
}
/*----------  ---------*/
div #cont-informacion, div #cont-copyright {
    width: 100vw;
    bottom: 0;
    position: fixed;
}

div #cont-informacion {
    margin-bottom: 0.5rem;
}
/*----------  ---------*/
.divfg01 input[type=number]::-webkit-inner-spin-button, 
.divfg01 input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}

.divfg01 input[type=number], .divfg01 input[type=text], 
.divfg01 input[type=email], .divfg01 input[type=date], 
.divfg01 select, .divfg01 textarea {
    background-color: #33669920;
    color: #000000 !important;
    height: 4rem;
    margin: 0px;
    margin-bottom: 1rem;
    padding: 1rem;
    font-family: 'VolkswagenSerial';
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #00000050;
    border-radius: 15px;
    box-sizing: border-box;
    outline: none;
}

.divfg01 input[type=number]:hover, 
.divfg01 input[type=text]:hover, .divfg01 input[type=email]:hover,
.divfg01 input[type=date]:hover, .divfg01 select:hover, textarea:hover,
.divfg01 input[type=number]:focus, 
.divfg01 input[type=text]:focus, .divfg01 input[type=email]:focus, 
.divfg01 input[type=date]:focus, .divfg01 select:focus, textarea:focus {
    border: none;
    border-bottom: 1px solid #000000;
}

.divfg01 select {
    background-image: url('../img/flechaselect.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: calc(50% - 2rem);
    margin: 0 1rem 0 1rem;
    margin-bottom: 1rem;
}

.divfg01 select option {
    background-color: #33669920;
    color: #000000;
    font-size: 24px;
    border-bottom: 1px solid #000000;
}
/*
.divfg01 input[type=submit], .divfg01 button {
    background-color: #4CAF50;
    color: #ffffff !important;
    width: 100%;
    height: 4rem;
    margin: 0px;
    padding: 0px;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #ffffff;
    font-family: 'VolkswagenBold';
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    clear: both;
}

.divfg01 input[type=submit]:hover, .divfg01 button:hover {
    background-color: #ffffff;
    color: #4CAF50 !important;
    box-shadow: inset 0 0 0 2px #4CAF50;
	text-decoration: none;
    transition: 500ms;
}
*/
.divfg01 textarea {
    width: 100%;
    height: 20rem;
    resize: none;
}

hr {
	width: 100%;
    border-color: #999999;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
