/*        RESET       */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {margin: 0;	padding: 0;	border: 0;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {display: block; width: 100%;}
ol, ul {list-style: none;}
blockquote, q {	quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {	content: '';content: none;}
table {	border-collapse: collapse;border-spacing: 0;}
* { box-sizing:border-box;}

/*----------------------------------------------------------------- */
/* GENERAL */
/*----------------------------------------------------------------- */
body{
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    font-family: 'Roboto', Verdana, Helvetica , sans-serif; 
    min-height: 100%;
}
.flex{display: flex;}
.columna {flex-flow: column;}
.fila{flex-flow: row wrap;align-items: center;}
.m-r-5{ margin-right: 5px;}
a.active {background: #305a95; color: #FFF;}
.input-error{
    background-color: #f87a7a;
    overflow: hidden;
    color: #910505;
    outline: none;
}

.input-error:focus{
     border: 1px solid #910505;
}
.small-words{
    font-size: .9em;
    color: #b2b0b0;
    text-align: right;
}
.btn-opc-small{
    margin-left: 4px;
    padding: 3px 8px;
}

ul, ol{
    list-style: none;
}

.b-green{
    color: #44cb68;
}

.b-red{
    color: #f45252;
}

/*----------------------------------------------------------------- */
/* LAYOUT */
/*----------------------------------------------------------------- */
.container-principal{
    height: 100vh;
    min-height: 100%;
    width: 100%;
    background: #FFF;
      /*FLEX*/
    display: flex;
    flex-flow: column;
}

.container{
    width: 100%;
    margin: 0 auto;
    height: auto; 
}

header{
    min-height: 70px;
    height: 70px;
    width: 100%;
    position: relative;
    
    justify-content: space-between;
}

menu{
    min-height: 40px; 
    height: 40px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #5682bf;
    border-top: 1px solid #5682bf;
    background-color: #f5f5f5;
    
    justify-content: center;
    align-items: center;
}

main{
    flex: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #d3d3d3;
}

footer{
    font-size: .75em;
    text-align: center;
    min-height: 60px;
    color: #999;
    background:  #FFF;
    border-top: 1px solid #dedede;
}

.panel{
    width: 100%;
    margin-bottom: 0px;
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    
    margin-bottom: 10px;
    
}


.panel-header{
    height: 50px;
    padding: 15px 30px;
    
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    
    justify-content: space-between;
    align-items: center;
    
}

.panel-header.header-m{
    height: 100px;
    padding-top: 25px;
}



.panel-header .controles span{
    padding-right: 5px;
}

.panel-body{
    
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.panel-body.body-m{
    min-height: 160px;
}

.panel-body.body-m a{
    text-decoration: none;
}

.pad20{padding: 30px 15px ;}

/*----------------------------------------------------------------- */
/* LOGIN */
/*----------------------------------------------------------------- */

.wraper{
    width: 100%;
    height: 100%;
    background: rgb(31,33,36);
    
    /*FLEX*/
    flex-flow:  column wrap;
    justify-content: center;
    align-items: center;

}

.form-login{
    flex-flow: column;
    background: #fff;
    width: 350px;
    height: auto;
    padding: 40px 15px;
    border: 2px solid #525151;
    border-radius: 4px;
    overflow: hidden;
}

.form-login div{
    text-align: center;
}

.form-login img{
    margin: 0 auto;
    margin-bottom: 15px; 
    color: rgb(150, 0, 0);
}

.form-login input{
    margin-bottom: 15px;
    height: 40px;
}

.form-login span{
    padding: 8;
    color: #3a3a3a;
}

.form-login input#user, .form-login input#pass{
    width: 230px;
    padding-left: 5px;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
}

.form-login a{
    font-size: .75em;
    text-decoration: none;
    color: #b3b3b3;
    text-align: right;
    padding: 5px;
}

.form-login input#btn_login{
    width: 250px;
    margin: auto;
    background: #59c785;
    color: #fff8f8;
    border: 1px solid #59c785;
    border-radius: 4px;
    overflow: hidden;
}

/*----------------------------------------------------------------- */
/* HEADER */
/*----------------------------------------------------------------- */

header .logo{
    padding-left: 20px;
    padding-top: 5px;
}

header .datos-session{
    justify-content: flex-end;
    align-items: flex-end;
    width: 40%;
    padding-right: 15px;
    color: #626262;
}

    header .datos-session div{
        padding-left: 15px;
    }
        header .datos-session div a{
            text-decoration: none;
        }

/*----------------------------------------------------------------- */
/* MENU */
/*----------------------------------------------------------------- */

menu a{
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: center;
    text-decoration: none;
    
    background: #5682bf;
    color: #ebe7e7;
}
    menu a:hover{
        text-decoration: none;
        background-color: #305a95;
        color: #FFF;
    }

/*

.navegacion{
	width: 100%;
	background: #FFF;
       border-bottom: 1px solid #5682bf;
    border-top: 1px solid #5682bf;
    background-color: #f5f5f5;
    
}

.navegacion ul{
	list-style: none;
    justify-content: center;
}

.menu > li{
	position: relative;
	display: inline-block;
}

.menu > li > a{
	display: block;
	padding: 10px 25px;
	color: #ebe7e7;
    background-color: #5682bf;
	text-decoration: none;
}

.menu li a:hover{
	color: #FFF;
	transition: all 0.3s;
}

 Submenu

.submenu{
	position: absolute;
	background: #b0b3b7;
	width: 160%;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.9s;
}

.submenu li a{
	display: block;
	padding: 15px;
	color: #262626;
	text-decoration: none;
}

.menu li:hover .submenu{
	visibility: visible;
	opacity: 1;
}
*/


/*----------------------------------------------------------------- */
/* MODALES */
/*----------------------------------------------------------------- */

input, select{
    height: 35px;
    outline: none;
    border: 1px solid #DDD;
    border-radius: 3px;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 5px;
}

.pendientes-abonar{
    padding: 3px 15px;
    margin-bottom: 12px;
}

.pendientes-abonar h4{
    margin-top: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

/*----------------------------------------------------------------- */
/* JQUERY-UI */
/*----------------------------------------------------------------- */
.ui-datepicker-calendar {
        display: none;
    }
.ui-datepicker-month { display: none; } 

.ui-datepicker-prev{ display: none; } .ui-datepicker-next{ display: none; }

.ui-autocomplete{
    z-index: 2500 !important;
    background: #FFF;
    border: 2px solid #DDD;
    border-radius: 3px;
    width: 200px;
    position: absolute;
}

/*Agregar una imagen mientras se cargan los datos del sistema*/
/* .ui-autocomplete-loading {
    background: white url("../images/spinner.gif") right center no-repeat;
} */

/*----------------------------------------------------------------- */
/* CONTROLES */
/*----------------------------------------------------------------- */

.controles-cobros {
    align-items: center;
}

    .controles-cobros input, .controles-cobros select{
        margin-left: 10px;
    }

    .controles-cobros input#date{
        width: 100px;
        text-align: center;
    }
    
    .controles-cobros input#btnBuscarA{
        padding-left: 10px;
        padding-right: 10px;
        background-color: #5682bf;
        color: #FFF;
    }

    .controles-cobros input#btnBuscarA:hover{
        background-color: #305a95;
    }

.controles-chips {
    align-items: center;
}

    .controles-chips input, .controles-chips select{
        margin-left: 10px;
    }

    .controles-chips input#btnBuscarChips{
        padding-left: 10px;
        padding-right: 10px;
        background-color: #5682bf;
        color: #FFF;
    }

    .controles-chips input#btnBuscarChips:hover{
        background-color: #305a95;
    }


/*----------------------------------------------------------------- */
/* FOOTER */
/*----------------------------------------------------------------- */

footer .respaldo{
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
}

/*----------------------------------------------------------------- */
/* PAGO USUARIO */
/*----------------------------------------------------------------- */


.form-pago-usuario{
    justify-content: center;
    align-items: center;
}

.form-pago-usuario label{
    width: 120px;
}

div#contenedor_paneles{
    width: 15%;
    min-width: 280px;
    justify-content: flex-start;
    align-items: center;
}

div.contenedor_pago{
    width: 410px;
    justify-content: space-between;
    align-items: center;
}

input#pago_abono{
    margin: 0;
}

div#contenedor_detalles{
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 12px;
}

div#panel-tabla-pagos{
    margin-left: 8px;
    width: 85%;
    min-width: 700px;
}

.panel-pago{
    width: 65%;
    min-width: 300px;
    margin: auto;
}

.panel-pago .panel-body{
    justify-content: space-around;
    align-items: center;
}

#pendientes p, #ultimos p{
    padding-bottom: 2px;
    padding-left: 30px; 
}

#pendientes h4{
    margin-bottom: 8px;
    font-weight: bold;

}

.radio-pagos{
    justify-content: space-around;
    align-items: center;
}

.radio-pagos input{
    margin-right: 6px;
    cursor: pointer;
}

.radio-pagos label{
    cursor: pointer;
}







