@charset "utf-8";
/* CSS Document */

.pd-catalog a, .pd-catalog label {
  display: block;
  padding:0;
  color: #666;
  font-size: 14px;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  width:100%;
  padding:5px 0 5px 0px;
}

.pd-catalog a:focus, .pd-catalog a:hover, .pd-catalog label:focus, .pd-catalog label:hover {
  color:#70accb;
  background: #f4fafb;
}

.pd-catalog label { cursor: pointer; margin:2px 0 2px 0px;}

/**
 * Styling first level lists items
 */

.group-list a, .group-list label {
  padding:5px 0 5px 14px; margin:2px 0 2px 0px;
  width:100%;
}

.group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover { background: #f4fafb; }

/**
 * Styling second level list items
 */

.sub-group-list a, .sub-group-list label {
  padding-left: 28px;
}

.sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover { background: #f4fafb; }

/**
 * Styling third level list items
 */

.sub-sub-group-list a, .sub-sub-group-list label {
  padding-left: 14px;
}

.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: #f4fafb; }

/**
 * Hide nested lists
 */

.group-list, .sub-group-list, .sub-sub-group-list {
  width:100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .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;
  -webkit-transition: -webkit-transform .65s ease;
  transition: transform .65s ease;
  font-family: FontAwesome;
  display: inline-block;
  margin:3px 5px 0px 0px;
  color: #CCC;
  font-size: 13px;
}

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

