/**
 * MENU TOGGLE TYPE
 *
 * Use a Hamburger Icon or a Navigation bar.
 * Please note the slightly different HTML markup (demos).
 *
 */
/**
 * LABEL FORM
 */
/**
 * COLORS
 *
 * You can assign different colors to the first level and the sublevels,
 * e.g. a transparent bar and colored sublevels (see hamburger demo).
 */
/* first menu level */
/* menu sublevels */
/* active page */
/* miscellaneous */
/**
 * MEASURES
 */
/**
 * MENU TOGGLE TYPE
 */
#toggle-menu {
  background-color: transparent;
  color: #fff;
  display: block;
  padding: 0.75em 1em;
  position: relative; }

/**
 * MENU ARROWS
 */
.cbnav__arrow {
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #555; 
  display: inline-block;
  vertical-align: middle;
  height: 0;
  width: 0; }

.cbnav__arrow--sub {
  border-top: 6px solid #555;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  display: inline-block;
  vertical-align: middle;
  height: 0;
  width: 0; }
  @media (min-width: 930px) {
    .cbnav__arrow--sub {
      border-right: none;
      border-bottom: 6px solid transparent;
      border-top: 6px solid transparent;
      border-left: 6px solid #555; } }

/**
 * MOBILE VIEW
 */
 .cbnav__lvl--first {
  background-color: #eee;
 }
  .cbnav__lvl--first::after {
    clear: both;
    content: "";
    display: table; }

.cbnav__lvl--first,
.cbnav__lvl--sub {
  margin: 0;
  padding: 0; }

.cbnav__lvl--first,
.cbnav input[type="checkbox"] {
  display: none; }

#toggle:checked + .cbnav__lvl--first,
.cbnav input[type="checkbox"]:checked + .cbnav__lvl--sub {
  display: block; }

.cbnav__item {
  color: #eee;
  display: block;
  position: relative; }
  .cbnav__item a {
    display: block;
    position: relative;
    text-decoration: none; }
    .cbnav__item a:hover, .cbnav__item a:focus {
      text-decoration: none; }

.cbnav__item--header {
/*  background-color: #424254;*/
  color: #555;
  display: block;
  font-size: 0.75em;
  padding: 1.5em 1.25em 0.25em; }

.cbnav__link--first {
/*  background-color: #424254;*/
  color: #555;
  padding: 0.3em 1em;
  padding-right: 20px; }
  .cbnav__link--first:hover {
    background-color: #ddd;
    color: #555; }

.cbnav__lvl--sub {
  display: none;
  padding-left: 1em; }

.cbnav__link--sub {
  background-color: #ddd;
  color: #555;
  padding: 0.3em 1em;
  padding-right: 42px; }
  .cbnav__link--sub:hover {
    background-color: #ccc;
    color: #555; }

.cbnav__link--active {
  background-color: #ccc;
  color: #555;
  padding: 0.3em 1em;
  padding-right: 42px; }

ul span.cbnav__label {
  display: none; }

.c-hamburger {
 cursor:pointer;
 display:inline-block;
 font-weight:400;
 font-size:16px;
 height:32px;
 line-height:100%;
 margin-bottom:5px;
 position:relative;
 top:5px;
 left:3%;
 -webkit-tap-highlight-color:transparent;
 width:32px;
 z-index:10
}
.c-hamburger:focus {
 outline:0
}
.c-hamburger__icon,
.c-hamburger__icon:after,
.c-hamburger__icon:before {
 background:#fff;
 height:4px;
 position:absolute;
 top:42%;
 right:23px;
 transition:all .25s;
 width:37px
}
.c-hamburger__icon:before {
 content:"";
 top:-15px;
 left:0
}
.c-hamburger__icon:after {
 content:"";
 top:15px;
 left:0
}

/**
 * LABELS
 */
.cbnav__label:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.cbnav__label {
/*  background-color: #880000;*/
  height: 100%;
  padding: 0 1.5em;
  position: absolute;
  right: 0;
  top: 0; }

