:root {
    --base-color-fonts:rgb(140,140,140);
    --base-color: darkorchid;
    --base-background-color: rgb(240,240,240);
    --celdas-hover: rgb(235,235,235);
    --base-color-accent: #4f176a;
    --logo-picture: url("../img/logo/logo_gde.svg");
}

body,html{
    position: relative;
    height: 100%;
    width: 100%;
    font-family: system-ui;
    padding: 0;
    margin: 0;
    background-color: rgb(240,240,240);
    overflow-y: auto;
    cursor: default;
}
.btn{

}
.container_logo_svg:before{
    content: "";
    width: 100%;
    height: 100px;
    display: block;
    background-image: var(--logo-picture);
    background-size: 360px 100px;
    background-repeat: no-repeat;
    background-position: center center;
}
.btn.btnTransparent{

}
.btn:hover{
    cursor: pointer;
}
.btn.ic{
    opacity: 0;
    position: relative;
    display: none;
    left: 0;
    width: 30px;
    height: 30px;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease-out;
    -webkit-transition-property: all;
    -webkit-transition-duration: .5;
    -webkit-transition-timing-function: ease-out;
}
.btn.ic.back{
    background-image: url("../img/icons/left-arrow-ic.svg");
    background-size: 28px 28px;
    background-repeat: no-repeat;
    background-position: center center;
}
.btn.ic.back.visible{
    opacity: 1;
    left: -125px;
}
#loaderHome{
    z-index: 101;
    position: absolute;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin-bottom: auto;
    top: 0;
}
.abierta{
    color:green;
}
.cerrada{
    color:red;
}
.login{
    position:relative;
    height: 100%;
    width: 100%;
}
.login .container{
    vertical-align: text-top;
    height: 100%;
    width: 100%;
    display: inline-block;
    position: relative;
    background-color: white;
    text-align: center;
}
.login .container label{
    width: 100%;
    display: block;
    font-size: 16px;
    color: black;
}
.login .container .content{
    position: absolute;
    width: 300px;
    height: 50%;
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.login .container .content .title{
    padding: 10px;
    display: block;
    font-size: 13px;
    color: var(--base-color-fonts);
}
.login .container .content .title.big{
    font-size: 18px;
    text-transform: uppercase;
    color: var(--base-color);
    font-style: normal;
    font-weight: bolder;
}
.login form .containerfield{
    position: absolute;
    opacity: 0;
    left: 250px;
    right: 0;
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #DDDDDD;
    background-color: rgb(250,250,250);
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    -webkit-transition-property: all;
    -webkit-transition-duration: .3;
    -webkit-transition-timing-function: ease-out;
    z-index: 8;
}
.login form .containerfield.passchange{
    position: relative;
    opacity: 1;
    left: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
}
.login form .containerfield.visible{
    opacity: 1;
    left: 0px;
    z-index: 10;
    transition-delay: .3s;
    -webkit-transition-delay: .3;
}
.login form .containerfield.hidden{
    opacity: 0;
    left: -250px;
    z-index: 9;
}
.login form .containerfield.error{
    border: solid 2px red;
}
.login form .containerfield input{
    background-color: transparent;
    height: 35px;
    font-size: 14px;
    padding-left: 10px;
    color:#1d5291;
}
.login form .containerfield input::placeholder{
    font-size: 13px;
    color:rgb(100,100,100);
}
.login button.btn.btnlogin{
    width: 100%;
    background-color: var(--base-color);
    color: white;
}
.login button.btn.btnlogin:hover{
    background-color: var(--base-color-accent);
}
.login button.btn.btnlogin.btnCode{
    background-color: var(--base-color);
}
.login .callback_msj{
    font-size: 13px;
    padding: 10px;
}
.login .callback_msj.error{
    color:red;
}
.login form#login_form{
    position: relative;
    /* top: 100px; */
    width: 100%;
    height: 70px;
}
.login form#code_form{
    position: relative;
    /* top: 100px; */
    width: 100%;
    height: 70px;
}
label,form,input,legend,hr{
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
input{
    width: -webkit-fill-available;
    height: 25px;
    border: none;
    background: transparent;
    outline: none;
}
button{
    margin: 5px;
    display: inline-block;
    height: 40px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    font-size: 12px;
    background-color: transparent;
    color: rgb(10,40,100);
}
button:hover{
    background-color: rgb(230,230,230);
}
button.btn.btnTransparent:hover{
    background-color: transparent;
}
button.btn.btnTransparent:hover{
    background-color: transparent;
}
@media screen and (max-width: 500px) {
    .login .container .content{
        width: 100%;
        padding: 10px;
    }

}
@media screen and (max-width: 960px) {
    .login .container .content{
        width: 95%;
    }
    tr,td{
        font-size: 10px;
    }
    tr.resultados .monto_celda{
        font-size: 9px;
        width: 90px;
    }

}