/* reset css */



ol, ul, li, EncabezadoML, navml {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
}

 EncabezadoML, navml,  { display: block }

ol, ul { list-style: none }

blockquote, q { quotes: none }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none
}

table {

}

a { text-decoration: none; }

/**
 * Hidden fallback
 */


/**
 * Styling navmligation
 */



/**
 * Styling top level items
 */

.navml a, .navml label {
display: block;
padding:10px;
color: #FFFFFF;
/* SEPARADOR */
border-bottom: 1px solid #a0484e;
-webkit-transition: all .25s ease-in;
transition: all .25s ease-in;
font-family:Open Sans, Arial, Tahoma;
font-size:15px;
/* SOMBRA TITULOS PRINCIPALES*/
text-shadow: 1px 1px #000000
}

.navml a:focus, .navml a:hover, .navml label:focus, .navml label:hover {
/* OVER PRINCIPAL */
  color: #e39ea4;
  background: #7a2229;
}

.navml label { cursor: pointer; }

/**
 * Styling first level lists items
 */

.group-list a, .group-list label {
  padding-left: 20px;
/* FONDO CATEGORIA */
  background: #77292f;
color: #FFFFFF;
font-size:13px;
text-shadow: 0px 0px #000000
}
/* FONDO CATEGORIA OVER */
.group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover { background: #6b181e;   color: #FFFFFF;}

/**
 * Styling second level list items
 */

/* FONDO SECCION */
.sub-group-list a, .sub-group-list label {
  padding-left: 35px;
  background: #6b181e;
color: #FFFFFF;
}

.sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover { background: #5c0e14;   color: #FFFFFF;}

/**
 * Styling third level list items
 */

.sub-sub-group-list a, .sub-sub-group-list label {
  padding-left: 50px;
  background: #404040;
}

.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: #790022; }

/**
 * Hide nested lists
 */

.group-list, .sub-group-list, .sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .5s ease-in-out;
}

.navml__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */
max-height: 1000px; }

/**
 * Rotating chevron icon
 */

label > span {
  float: right;
  -webkit-transition: -webkit-transform .65s ease;
  transition: transform .65s ease;
}

.navml__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}