/*-------------------------------*/
/*           General         */
/*-------------------------------*/
.nav > li > a{
    outline:0 !important;
}
.pointer{
    cursor: pointer;
}
/*-------------------------------*/
/*           Data-tables         */
/*-------------------------------*/
table.collapsed td{ /* No remover. Corrige el error del responsive tables que muestra centrado el texto por default en modo responsivo.*/
    text-align: left !important;
}
.table{
    width: 100%!important;
}

body {
    position: relative;
    overflow-x: hidden;
}
body,
html { height: 100%;}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    /*padding-top: 70px;*/
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 235px;
    margin: 0;
    padding: 0px 0px 30px 0px;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
/*.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #1a1a1a;
}*/
.sidebar-nav li.parent:nth-child(1):before {
    background-color: #3f3f3f;   
}
.sidebar-nav li.parent:nth-child(2):before {
    background-color: #545a64;   
}
.sidebar-nav li.parent:nth-child(3):before {
    background-color: #7e827d;   
}
.sidebar-nav li.parent:nth-child(4):before {
    background-color: #95846b;   
}
.sidebar-nav li.parent:nth-child(5):before {
    background-color: #5983a7;   
}
.sidebar-nav li.parent:nth-child(6):before {
    background-color: #a49783;   
}
.sidebar-nav li.parent:nth-child(7):before {
    background-color: #939aa1;   
}
.sidebar-nav li.parent:nth-child(8):before {
    background-color: #606362;   
}
.sidebar-nav li.parent:nth-child(9):before {
    background-color: #608dbc;   
}
.sidebar-nav li.parent:nth-child(10):before {
    background-color: #9ca7ab;
}
.sidebar-nav li.parent:nth-child(11):before {
    background-color: #545a64;
}
.sidebar-nav li.parent:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
       -moz-transition:  width .2s ease-in;
        -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 6px 15px 6px 10px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 60px;
    font-size: 20px;
    line-height: 40px;
}
.sidebar-nav .active_user_name{
    height: 90px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #333;
    box-shadow: none;
}

.user_sidebar > .user_name{
    padding: 6px 0px 0px 15px;
    width: 85%;
}
.user_sidebar > .dropdown-menu {
    position: relative;
    width: 90%;
    height: 40px;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    top:0% !important;
}
.user_sidebar > .dropdown-menu li {
    line-height: 10px;
}
.user_sidebar .user_logout{
    padding-bottom: 0;
    padding-top: 0;
    line-height: 0;

}
/*-------------------------------*/
/* Hamburger-Cross (Menu button) */
/*-------------------------------*/

.hamburger {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 9px;
  background: transparent;
  border: none;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #707070;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  right: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #707070;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #707070;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #707070;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}

.navbar{
    margin-bottom:0;
}

/*-------------------------------*/
/*            Header             */
/*-------------------------------*/

#logo-container{
    width: 1300px;
    padding-left: 0;
}
#logo-container-logged {
    /*padding-left: 55px;
    position: fixed;*/
    width: 1240px;
}
/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
    .custom-header{
        padding-left: 30px;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
    .custom-header{
        padding-left: 30px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .custom-header{
        padding-left: 30px;
    }
}
.custom-header{
    height:80px;
    padding:7px;
    background:#d2d2d2;
}
.jumbotron{
    background:#7e827d;
    color:#fff;
    padding:10px 0;
    height: 80px;
}

.jumbotron h2{
    margin-top:10px;
}
.input-group{
    margin-bottom: 20px;
}
/*-------------------------------*/
/*         breadcrumb            */
/*-------------------------------*/
#breadcrumb-navbar {
    height: 50px;
    padding-left: 0;
    position: relative;
    width: auto;
    z-index: 999;
}
.breadcrumb-and-signup{
    margin-bottom: 30px;
}

.current-directory{
    padding: 0;
}
#breadcrumb-navbar{
    padding-left: 0;
}

.breadcrumb{
    padding-left: 0;
    padding-top: 15px;
    margin-bottom: 0;
    background-color:#f8f8f8;
    border-radius: 0;
}
/* Custom,  Extra Small Devices */
@media only screen and (min-width : 320px) and (max-width: 479px){
    .breadcrumb{
        padding-left: 15px;
    }
    .logo{
        margin-left: 25px;
    }
    .logo-logged{
        margin-left: 15px;
    }
}

/* Small - medium Phones, mobile portraits and landscapes less than 5 inches */
@media only screen and (min-width : 480px) and (max-width: 767px) {
    .breadcrumb{
        padding-left: 15px;
    }
    .logo{
        margin-left: 25px;
    }
    .logo-logged{
        margin-left: 15px;
    }
}

/* Medium Devices, Tablets low resolution*/
@media only screen and (min-width : 768px) and (max-width: 979px) {
    .breadcrumb{
        padding-left: 0;
    }
    .logo{
        margin-left: 25px;
    }
    .logo-logged{
        margin-left: 0;
    }
}

/* Medium - big devices High resolution 5 or more inches */
@media only screen and (min-width : 980px){
    .breadcrumb{
        padding-left: 0;
    }
    .logo{
        margin-left: 25px;
    }
    .logo-logged{
        margin-left: 0;
    }
}

@media only screen and (min-width : 1280px) {
    .logo{
        margin-left: 0;
    }
    .logo-logged{
        margin-left: 0;
    }
}

@media only screen and (min-width : 1920px) {
    .logo{
        left: 25px;
        position: fixed;
    }
    .logo-logged{
        margin-left: 0;
    }
}

.btn-invisible{
    display: none;
}
.input-group-addon.info {
    color: rgb(255, 255, 255);
    background-color: rgb(57, 179, 215);
    border-color: rgb(38, 154, 188);
}
.input-group-addon.success {
    color: rgb(255, 255, 255);
    background-color: rgb(92,184,92);
    border-color: rgb(76,174,76);
}
/* excel td-bold*/
.td-bold{
    font-weight: bold;
}
/*tool tip*/
.tooltip-inner { max-width: none; white-space: nowrap; }
.bold-red{
    font-weight: bold;
    color:red;
}
/***********NOMINAS*******************/
.tr-cc-header
{
    font-weight: bold;
    background-color: #d6d2d2;
}
.tr-emp-header{
    font-weight: bold;
}
.tr-emp-children{
    color: gray;
    font-style: italic;
}
.tr-cc-footer{
    background-color: #f7f7f7;
    font-weight: bold;
}
.tr-emp-red{
    font-weight: bold;
    color:red;
}
.tr-emp-blue{
    color:blue;
}