
/**
 * Styling top level items
 */

.nav a,
.nav label {
    display: block;
    padding: 0.70rem;
    color: #ffffff;
    font-size: 16px !important;
    background-color: #e30613; /* color fondo menú */
    box-shadow: inset 0 -1px #fc3a45; /* linea separa menús*/
    transition: all 0.25s ease-in;
    width: 100%;
}
    .nav a:focus, .nav a:hover,
    .nav label:focus,
    .nav label:hover {
        color: rgba(255, 255, 255, 0.9);
        background-color: #000000; /* color fondo cursor sobre menú*/
    }

.nav label {
  cursor: pointer;
}

/**
 * Styling first level lists items
 */
.group-list a,
.group-list label {
    color: #666666;
    padding-left: 2rem;
    background-color: #e6e6e6; /* color fondo submenú */
    box-shadow: inset 0 -1px #cccccc; /*linea separa submenús*/
}
    .group-list a:focus, .group-list a:hover,
    .group-list label:focus,
    .group-list label:hover {
        color: #666666;
        background-color: #cccccc; /* color fondo cursor sobre submenú*/
    }

/**
 * Styling second level list items
 */
.sub-group-list a,
.sub-group-list label {
    padding-left: 4rem;
    background-color: #52c8f5; /*color fondo submenu de submenú */
    box-shadow: inset 0 -1px #8cd9f7; /*color linea separa submenu de submenú*/
}
    .sub-group-list a:focus, .sub-group-list a:hover,
    .sub-group-list label:focus,
    .sub-group-list label:hover {
        background-color: #7d7e7e; /* color fondo cursor sobre submenú de subemnú*/
    }

/**
 * Styling third level list items
 */
.sub-sub-group-list a,
.sub-sub-group-list label {
    padding-left: 6rem;
    background-color: #7ecfee; /*color fondo submenú de submenú de submenú*/
    box-shadow: inset 0 -1px #9edbf3; /*color linea separa submenu de submenú de subemnú*/
}
    .sub-sub-group-list a:focus, .sub-sub-group-list a:hover,
    .sub-sub-group-list label:focus,
    .sub-sub-group-list label:hover {
        background-color: #7d7e7e; /* color fondo cursor sobre submenú de subemnú de subemnú*/
    }

/**
 * Hide nested lists
 */
.group-list,
.sub-group-list,
.sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.nav__list input[type=checkbox]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: 1000px;
}

/**
 * Rotating chevron icon
 */
label > span {
  float: right;
  transition: transform 0.65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
    transform: rotate(90deg);
}

.nav__list {
    max-height: 1000px;
    width: 100% !important;
    padding: 0 !important;
    /*
    font-size:12px;
    position:fixed;
    */
}

.iconoMenu {padding-right:5px; vertical-align:middle;}