
/***INICIO FUENTES***/
    
    @font-face{
        font-family: "fuente-labely";
        src: url("maze.woff") ;
    }

            @font-face{
        font-family: "fuente-normal";
        src: url("aldo.ttf") format("TrueType") ;
    }
    
/***FIN FUENTES***/

/***INICIO COLORES***/
:root {
    --color0: 232,220,174;  /*#E8DCAE*/
}
/***FIN COLORES***/

/***INICIO BODY***/

        /* Estilo general de 'body'*/
        body{
            color:rgb(var(--color0));
            font-family: "fuente-normal";
            font-size: 26px;
            letter-spacing: 0.5px;
            background-color: black;
            min-height: 100vh;
        }

        /* Estilo de 'body' para tipo 'oto' (otoñal)*/
        body[sty="oto"] {
            background: linear-gradient(to bottom, #ffe5b4, #ffcc80);
        }

        /* Estilo de 'body' para tipo 'inv' (invernal)*/
        body[sty="oto"] {
            background: linear-gradient(to bottom, #ffe5b4, #ffcc80);
        }

        /* Estilo de 'body' para tipo 'pri' (primaveral)*/
        body[sty="oto"] {
            background: linear-gradient(to bottom, #ffe5b4, #ffcc80);
        }

        /* Estilo de 'body' para tipo 'est' (estival)*/
        body[sty="oto"] {
            background: linear-gradient(to bottom, #ffe5b4, #ffcc80);
        }

        /* NOTA: la plantilla permite estilo con colores libres, definidos en BBDD y embebidos en la etiqueta 'style' del 'body' directamente */

        div#body {
            max-width: 1200px;
            min-height: 100vh;
            margin:0 auto;
        }
        
        div#sitebox {
            min-height: 100vh;
        }
        
/***FIN BODY***/

/***INICIO TÍTULOS***/
        
        /*Estilo de título genérico*/
        h1, h2, h3, h4 {
            color: rgb(var(--color0));
            font-weight: bold;
            margin: 5px 0;
        }
        
        h1 { font-size: 1.4em; }
        
        h2 { font-size: 1.3em; }
        
        h3 { font-size: 1.2em; }
        
        h4 { font-size: 1.1em; }
        
/***FIN TÍTULOS***/

/***INICIO ELEMENTO CARGANDO***/
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    background-color: black;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading .loading_img {
    width: calc(100% - 60px);
    max-width: 120px;
    padding: 30px;
    aspect-ratio:1;
    position: fixed;
}

#loading .loading_img.loading-move {
	animation: imgmove 16s linear infinite;
}

#loading .loading_img img {
    width: 100%;
}

@keyframes imgmove {
    to {
        transform: rotate(360deg);
    }
}

/***INICIO INPUTS***/
label {
    /* margin-bottom: 30px; */
}

label span {
    width: 100%;
    color: #444;
    text-align: center;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 15px;
    margin-left: 3px;
    display: block;
    border: none;
}

input[type="text"],input[type="password"],input[type="submit"],button,select{
    width: calc(100% - 10px);
    font-size: 18px;
    text-align: center;
    padding: 5px;
    margin: 15px 0 15px 0;
    border: solid 2px rgb(var(--color1));
    border-radius: 5px;
    display: block;
    cursor: pointer;
}

input[type="submit"],button{
    max-width: 150px;
    text-transform: uppercase;
    background-color: white;
    margin: auto;
    cursor: pointer;
    border-color: #00b3b3;
    transition: ease .3s;
}

input[type="submit"]:hover,button:hover{
    max-width: 180px;
    background-color: #00b3b311;
    cursor: pointer;
}

select {
    max-width: 300px;
    text-transform: uppercase;
}

/*Input Ckeckbox*/
/*Para que sea visible, el input+label(sin texto) deben estar dentro de un div que tenga la clase Input_Checkbox */
div.Input_Checkbox_wrapper {
    position: relative;
    /* height: 30px; */
    margin: 6px 0;
}

div.Input_Checkbox_wrapper span{
    display: block;
    line-height: 22px;
    padding-left: 26px;
}

div.Input_Checkbox {
    font-size: 14px;
    position: absolute;
    top: 0;
}

div.Input_Checkbox label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 1.2em;
    width: 1.2em;
    display: block;
    position: relative;
}

div.Input_Checkbox label:after {
    border: .15em solid #eee;
    box-shadow: -2px 2px 0px #66bb6a;
    border-top: none;
    border-right: none;
    content: "";
    height: 0.35em;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 30%;
    margin-left: 4px;
    margin-top: -2px;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 1.3em;
}

div.Input_Checkbox input {
    visibility: hidden;
    display: none;
    opacity: 0;
}

div.Input_Checkbox input:checked + label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

div.Input_Checkbox input:checked + label:after {
    opacity: 1;
}

/***FIN INPUTS***/

.acontent {
    padding: 10px;
}

/***INICIO BOTONES***/
.ly_btn{
    
}