.menu {
  display: block;
  height: 100%; }

.menu__wrap {
  position: absolute;
  top: 5em;
  bottom: 0;
  overflow: hidden;
  width: 100%; }

.menu__level {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  width: calc(100% + 50px);
  margin: 0;
  padding: 0;
  list-style-type: none; }

.menu__level--current {
  visibility: visible; }

.menu__item {
  display: block;
  width: calc(100% - 50px); }

.menu__link {
  font-weight: 700;
  color:#fff;
  position: relative;
  display: block;
  padding: 1.5em 2.5em 1em 1.5em;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  font-size:26px;
}
.menu__link:hover {
  color:#000;
 }
.menu__link[data-submenu]::after {
  content: '+';
  position: absolute;
  font-weight: bold;
  margin-left: 10px; }

[class^='animate-'], [class*=' animate-'] {
  visibility: visible; }

.animate-outToRight .menu__item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1); }

@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.animate-outToLeft .menu__item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1); }

@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.animate-inFromLeft .menu__item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1); }

@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.animate-inFromRight .menu__item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1); }

@-webkit-keyframes inFromRight {
  from {
    opacity: 0; }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes inFromRight {
  from {
    opacity: 0; }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.menu__breadcrumbs {
  padding: 1em;
}
.menu__breadcrumbs a {
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  vertical-align: top;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px; }
  @media screen and (max-width: 568px) {
    .menu__breadcrumbs a {
      font-size: 12px; } }
  @media screen and (max-width: 375px) {
    .menu__breadcrumbs a {
      font-size: 10px; } }

.menu__breadcrumbs a:last-child {
  pointer-events: none; }

.menu__breadcrumbs a:hover {
  color: #000; }

.menu__breadcrumbs a:not(:last-child)::after {
  content: ' + ';
  font-family: 'feather';
  display: inline-block;
  padding: 0 0.5em;
  color: #33353e; }

.menu__breadcrumbs a:not(:last-child):hover::after {
  color: #33353e; }

.menu__back {
  font-size: 1.05em;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 2.25em;
  margin: 0;
  padding: 1.365em 0.65em 0 0;
  cursor: pointer;
  color: #2a2b30;
  border: none;
  background: none; }

.menu__back--hidden {
  pointer-events: none;
  opacity: 0; }

.menu__back:hover, .menu__back:focus {
  color: #fff;
  outline: none; }

/* Open and close buttons */
.action {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none; }

.action:focus {
  outline: none; }

.action--open {
  font-size: 1.5em;
  top: 1em;
  left: 1em;
  display: none;
  color: #fff;
  position: fixed;
  z-index: 1000; }

.close {
  font-size: 1.1em;
  top: 0.75em;
  right: 1em;
  color: #45464e; }

@media screen and (max-width: 40em) {
  .action--open, .action--close {
    display: block; }
  .menu {
    z-index: 1000;
    top: 0;
    width: 100%; }
  .menu--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }


/*# sourceMappingURL=maps/02component.css.map */