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

/***FIN FUENTES***/

/***INICIO COLORES***/
:root {
    --color0: 245,245,245;  /*#F5F5F5*/
    --color1: 050,033,021;  /*#322115*/
    --color2: 252,253,192;  /*#FCFDC0*/
    --color3: 102,102,102;  /*#666666*/
    --color4: 217,217,217;  /*#D9D9D9*/
    --color5: 169,223,206;  /*#a9dfce*/
    --color6: 250,250,250;  /*#FAFAFA*/
    --color7: 161,048,020;  /*#A13014*/
    --color8: 207,146,010;  /*#CF920A*/
    --color9: 007,168,062;  /*#07a83e*/
    --color10:185,136,029;  /*#b9881d*/
    --color11:248,235,189;  /*#f8ebbd*/
    --color12:049,066,156; /*#31429c*/
}
/***FIN COLORES***/

/***INICIO BODY***/

        /* Estilo general de 'body'*/
        body{
            color:#222;
            font-family: "fuente-normal";
            font-size: 26px;
            letter-spacing: 0.5px;
			/*
            background-image: url('');
            background-repeat: repeat;
            background-size: 60px;*/
            background-color:#EFEFEF;
            min-height: 100vh;
        }

        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 {
            font-weight: bold;
            margin: 5px 0;
        }
        
        h1 { font-size: 1.3em; }
        
        h2 { font-size: 1.2m; }
        
        h3 { font-size: 1.1em; }
        
        /*h4 { font-size: 1em; }*/
        
/***FIN TÍTULOS***/

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

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

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

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

@keyframes imgmove {
    to {
    transform: rotate(360deg);
    }
}
/***FIN ELEMENTO CARGANDO***/

/***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;
}