/*@import url(https://fonts.googleapis.com/css?family=Quicksand);*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

*{
    margin: 0;
    padding: 0;
  /*font-family: 'Quicksand', sans-serif;*/
   font-family: 'Open Sans', sans-serif;
}

body{
  /*background: red;*/
   background: #EFF3F8;
}
video{ 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background: url('./img/traffic.png') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

/*este estilo es para ocultar el video*/
/*@media screen and (max-device-width: 800px) {
  html { background: url('./img/2384260.jpg') #000 no-repeat center center fixed; }
  #bgvid { display: none; }
}*/

.letterCapital1{
  text-transform:lowercase;
}
.lCapital{
 text-transform: capitalize;
}

.containerCenter{
  width: 100%;
  margin: auto;
}

.containerCenter2{
  width: 88%;
  margin: auto;
}

/*.bg{
    background-image: url("../img/2blur.jpg");
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
}
*/

.eliminarButton{
    visibility: hidden;
}

p{
    font-size: 12px;
}

label{
    font-size: 11px;
}

.inputSize{
    font-size: 12px;
}

.inputSize2{
    font-size: 11px;
}

.inputSize3{
    font-size: 10px;
}

.inputCenter{
  text-align: center;
}
.colorText{
    color: white;
}

.titleMargin{
    margin-top: 120px;
}

.blockMargin{
    margin-top: 80px;
}

.formColor{
    background: rgba(0,0,0,.2);
    padding:15px;
    border: 1px solid #ced5db;
    border-radius: 4px;
}
.formBorder{
    padding: 8px;
    background: #FFFFFF;
}
.formBorderColor{
  /*border: 1px solid rgb(221,221,221);*/
  padding: 8px;
  border-radius: 3px;
  box-shadow: 0 0 8px 0.1px;
}
.container-fluid-size{
  width: 99%;
}

.padding-top-button{
  margin-top: 28px;

}

.table>td,th,tr {
   text-align: center;   
}

td{
    font-size: 12px;
}

hr{
  background-color: #00377A;
  height: 2px;
  width: 70%;
  margin: auto;
}
#line-divider{
  background-color: #0074C8;
  height: 1px;
  width: 100%;
  margin: auto;
}

.footerCon{
    padding: 20px;
    width: 100%;
    height: 60px;
    color: white;
    margin-top: 40px;
    background: #0074C8; 
}


/*----------------------------------MENU-------------------------------------*/

/*estilos para hacer menu mas ancho y ajustar el logotipo*/
.navbar-brand{
  background: #ffffff;
  height: 70px;
}
.navbar-brand:hover{
  background: #ffffff;

}
.noHover:hover{
background: #ffffff;
}

.nav >li >a {
  padding-top: 25px;
  padding-bottom: 25px;
}
.navbar-toggle {
  padding: 10px;
  margin: 25px 15px 25px 0;
}

.navbar-brand {
  padding: 0px;
}
.navbar-brand>img {
  height: 100%;
  padding: 10px;
  width: auto;
}

/*cambio de color MENU*/

#nav > .navbar-default{
  background:#0074C8;
  height: 70px;
}


/*color de letras de menu*/
.navbar-default .nav.navbar-nav>li>a{
  color: #fff;
  font-size: 14px;
    
}
/*podemos modificar el  color del drop down abierto*/
/*.navbar-nav > li > .dropdown-menu { background-color: #fff; }*/

/* Dropdown menu font color*/

/*.navbar-nav > li > .dropdown-menu a{ color: #555555; }*/

/*dropmenu*/

.navbar-default .navbar-nav .open .dropdown-menu>li>a, .navbar-default .navbar-nav .open .dropdown-menu {
    background-color: #ffffff;
    color:#000;
}
  
/*menu al dar click open*/
.dropdown-toggle:active, .open .dropdown-toggle{
  background:#FFF !important; 
  color:#000 !important;
}

/*hover en en laces dentro de drop down*/
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{
  
  color:#00377A;
}

/*---------------------------------- FIN MENU-------------------------------------*/

.titlePadding{
   margin-top: 100px;
   margin-bottom: 20px;
}

/*DASHBOARD*/
.backgroundGraphips{
    background: #F1F1F1;
    width: 100%;
    /*margin: auto;*/
    padding-top:10px;
    padding-bottom:10px;
   /* padding-left:0px;
    padding-right:0px;*/
}

zingchart{
    width: 80%;
    height: 80%;   
    margin:auto; 
}


.dashboard1{
    background: #3498DB;
    width: 100%;
    height: 120px;
    color:white;
    padding: 5px;
    border-radius: 2px;
    
}

.dashboard2{
    background: #2ECC71;
    width: 100%;
    height: 120px;
    color:white;
    padding: 5px;
    border-radius: 2px;
    
}

.dashboard3{
    background: #FFC300;
    width: 100%;
    height: 120px;
    color:white;
    padding: 5px;
    border-radius: 2px;

}

.dashboard4{
    background: #E74C3C;
    width: 100%;
    height: 120px;
    color:white;
    padding: 5px;
    border-radius: 2px;

}


.imgSize{
    width:90%;
    height:75px;
    opacity: 0.5;
}

.imgSize:hover{
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    -moz-transition: all .6s ease;
  
    transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);

    opacity: 1;
}

.imgSize2{
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    -moz-transition: all .6s ease;
  
    transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);

    opacity: 1;

}



.red{
  color:#000000;
  background: #ff8e8e;
}

.green{
  color:#000000;
  background: #2ECC71;
}

.menuActiveClass{
    background: #00AEEF;
     /*background:  #0074C8;*/
}

/*estilo para alinear imagenes de la cabecera*/
.imagAling{
    margin-top: 10px;
    /*padding-bottom: 4px;*/
    /*padding-left: 40px;*/
    width:180px;
    height:50px;
    /*position: fixed;*/



}

.imagAling:hover{
   cursor:pointer
}

.imgAling2{
    width:50px;
    height:50px;
    border-radius: 400px;
    margin-top: 10px;
    margin-right: 60px;
}

.imgAlingProfile{
  
  width:90px;
  height:90px;
  margin: auto;
}

/*Fin de estilos para alinear imagenes*/



/* Estos son mis extilos que voy agregando*/
.pintarRojo{
    color: red;
    font-size: 20px;
}
.pintarAmarillo{
    color: #FFC300;
    font-size: 20px;
}
.pintarVerde{
    color: #2ECC71;
    font-size: 20px;
}

.greenColorText{
    color: #2ECC71;
    font-size: 20px;
}

input[type=number]::-webkit-outer-spin-button,

input[type=number]::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

 

input[type=number] {

    -moz-appearance:textfield;

}
.redHolid{
    color: red;
    font-size: 15px;
}

.greenHolid{
    color: #2ECC71;
    font-size: 15px;
}


/*style for plan staff*/

.classImg{
  width: 80px;
  height: 80px;
  border-radius: 100px;
}
.classImgAgentCS{
  width: 70px;
  height: 70px;
  border-radius:100px;
}


.borderLeftBottom{
  border-radius: 15px 0px 0px 20px;
  border-left: 6px solid;
  border-bottom: 6px solid;
  padding: 0px 0px 20px 10px;
}
.borderBottom{
  border-bottom: 6px solid;
  padding: 0px 0px 20px 0px;
}
.borderRightBottom{
  border-radius: 0px 15px 20px 0px;
  border-right: 6px solid;
  border-bottom: 6px solid;
  padding: 0px 10px 20px 0px;
}
.tamanioHeight{
  height: 40px;  
}
.tamanioHeigthPrinc{
 /*background-color: red;*/
 height: 135px;
}
/*STYLE INPUT FILE*/


.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Select an Image';
  display: inline-block;
  background: #387EF5;
  border: 1px solid #387EF5;
  border-radius: 3px;
  padding: 5px 8px;
  /*outline: none;*/
  /*white-space: nowrap;*/
  -webkit-user-select: none;
  font-weight: 700;
  font-size: 8pt;
  color: #fff;
}


.custom-file-input:hover::before {
  border-color: #fff;
}
.custom-file-input:active::before {
  background: #387EF5;
}  


/*input curriculum*/

.custom-file-input2::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input2::before {
  content: 'Select a Curriculum';
  display: inline-block;
  background: #387EF5;
  border: 1px solid #387EF5;
  border-radius: 3px;
  padding: 5px 8px;
  /*outline: none;*/
  /*white-space: nowrap;*/
  -webkit-user-select: none;
  font-weight: 700;
  font-size: 8pt;
  color: #fff;
}

.custom-file-input2:hover::before {
  border-color: #fff;
}
.custom-file-input2:active::before {
  background: #387EF5;
}  



.centerTable{
    width: 100%;
    margin:auto;
}
.TrainingsStyle{
  width: 100%;
  margin: auto;
  margin-top: 30px;
  padding-right: 40px;
  /*border: solid #A6E3F9 2px;*/
  /*border-radius: 2px;*/
  background: #E4F1FE;
}


.trainingTitular{
  font-size: 10.5px;
}

.trainingText{
  font-size: 9px;
}

.paddingLR{
  padding-right: 0px;
  padding-left: 0px;
}


.fontSizeTable{
  font-size: 10px;
 
}

.view{
  text-decoration: none;
  color: red;
}

.borderInfo{
  border:dashed 2px black;
  border-radius: 10px;
}

.spaceInfo{
  padding-left: 12px;
  padding-right: 12px;
}

.backgroundHeadersInfo{
  background: #A6E3F9;
  color: black;
}
.backgroundHeadersTwo{
  background: #E4F1FE;
  color: black;
}

.paddingP1{
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 5px 5px 0px 0px;
}

.paddingP2{
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 0px 0px 5px 5px;
  font-size: 11px;
}

.containerInputRecover{
  width: 60%;
  margin: auto;
}

.navbar-login{
    width: 305px;
    padding: 10px;
    padding-bottom: 0px;
}

.navbar-login-session{
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
    
}

.icon-size{
    font-size: 87px;
}

.colorButtonBlock{
  background: #00AEEF;
}

.colorButtonBlock:hover{
  background: #00AEEF;
  opacity: 0.8;
}

.colorButtonProfile{
  background: #0074C8;
}

.colorButtonProfile:hover{
  background: #0074C8;
  opacity: 0.8;
}


/*BLOQUEO DE SESION*/

.modalBloqueo{

 /* margin-top: 0px;
  padding-top: 0px;*/

  background: rgba(0,0,0,0.9);
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10;
}


/* Agregar icon a input  */
.inner-addon { 
    position: relative; 
}

/* style icon */
.inner-addon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
}

/* align icon */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px;}

/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }



.marginn{
  /*background: red;*/

  /*padding: 0;*/
  /*padding-left: 3px;*/
  padding-right: 3px;
}

.marginn2{
  background: red;

  /*padding: 0;*/
  /*padding-left: 3px;*/
  padding-right: 2px;
  padding-left: 2px;
  margin-right: 2px;
  margin-left: 2px;
}

#paddingR1{
  padding-right: 10px;
}

#paddingR2{
  padding-right: 10px;
}




@media screen and (min-width:780px) and (max-width: 1024px){
    
    
}


@media screen and (min-width:480px) and (max-width: 780px){
    

}


@media screen and (max-width:480px){
    
}

