/*Breakpoints*/
/*
 Colors
 */
/*
 Fonts
 */
.material-icons, #navigationMobile .navBack::before, #navigationMobile .navBackHome::before, #navigationMobile .navbar-nav .subnavigation .subnavigation-toggle::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

.toggler-wrap {
  z-index: 1092;
  background: black;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px; }

@media (min-width: 992px) {
  .toggler-wrap {
    height: 80px;
    width: 80px;
    top: 50px;
    right: 50px; } }

@media (min-width: 1200px) {
  .toggler-wrap {
    top: 100px;
    right: 100px; } }

#navigationMobile .navBackWrap {
  width: 100%;
  background-color: #9cd563; }
#navigationMobile .navBack, #navigationMobile .navBackHome, #navigationMobile .toggle-navigation {
  font-size: 2rem;
  color: #507d22; }
#navigationMobile .navBack::before {
  content: 'chevron_left'; }
#navigationMobile .navBackHome::before {
  content: 'home'; }
#navigationMobile .navItemBack {
  visibility: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
#navigationMobile .navItemBack.open {
  visibility: visible;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease; }
#navigationMobile .navbar {
  width: 100%;
  background-color: #cccccc;
  padding-top: 0; }
#navigationMobile .navbar-nav {
  position: relative;
  width: 100%; }
  #navigationMobile .navbar-nav .subnavigation {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #navigationMobile .navbar-nav .subnavigation .subnavigation-toggle {
      margin-right: 3px;
      height: 40px;
      width: 40px;
      background-color: rgba(255, 255, 255, 0.2);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
    #navigationMobile .navbar-nav .subnavigation .subnavigation-toggle::before {
      content: 'chevron_right';
      color: white;
      font-size: '1.2rem';
      line-height: 1; }
    #navigationMobile .navbar-nav .subnavigation .subnavigation-menu {
      position: absolute;
      left: 100%;
      top: 0;
      height: 100%;
      width: 100%;
      background-color: #cccccc;
      -webkit-transition: left 0.3s;
      -moz-transition: left 0.3s;
      -ms-transition: left 0.3s;
      -o-transition: left 0.3s;
      transition: left 0.3s; }
  #navigationMobile .navbar-nav .subnavigation-menu.open {
    left: 0; }
