/* Desktop */
/* Mobile */
/* Prevents the blue element callout on the UL */
.mobile-noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hide all the checkboxes which are used to handle dropdown states */
.menu input[type=checkbox] {
  display: none;
}

/* The  hamburger */
.hamburger {
  text-align: right;
}

.toggle-menu-text {
  padding: 15px 12px 15px 6px;
}

.menu-arrow {
  margin-left: 6px;
}

.menu .main-menu .separator {
  height: 20px;
  background-image: url("../images/separator.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 95% auto;
}

ul.sub-menu {
  list-style: none;
}

li.main-menu-entry {
  list-style: none;
  margin: 0;
}

/* DESKTOP */
@media only screen and (min-width: 992px) {
  .main-menu {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .menu-title {
    display: none;
  }
  .main-menu-entry {
    cursor: pointer;
    position: relative;
  }
  .sub-menu {
    width: 300px;
    margin: 0;
    padding: 0;
  }
  .sub-menu-entry {
    padding: 12px 12px 12px 12px;
    margin: 0px;
    position: relative;
  }
  .main-menu-entry {
    padding: 12px 12px 12px 12px;
    margin: 0;
  }
  .main-menu-entry-divider {
    padding-left: 0px;
    padding-right: 0px;
  }
  .menulink-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* Hide the dropdowns by default.. */
  .sub-menu {
    display: none;
    border-width: 0;
    left: 0;
    margin: 0;
    position: absolute;
    z-index: 1000;
    top: 100%;
  }
  /* Unless hovered */
  .main-menu-entry:hover > .sub-menu,
  .sub-menu-entry:hover > .sub-menu,
  .main-menu-entry:hover > .megamenu {
    display: block;
  }
  .sub-menu-entry:hover > .sub-menu {
    left: 300px;
    top: 0;
  }
  .entry-has-megamenu {
    position: static !important;
  }
  .megamenu {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 100100; /* Wordpress admin bar is at 99,999 */
    cursor: auto;
    user-select: text;
    display: none;
    padding: 20px;
    border: 1px solid #454e50;
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 5px;
  }
  .megamenurow {
    padding: 0px 12px;
  }
  .megamenu-link {
    padding: 4px 0;
  }
  .menu-home-entry-close {
    display: none;
  }
}
/* MOBILE */
@media only screen and (max-width: 991px) {
  #main-menu-background-mask {
    background: rgba(0, 0, 0, 0.85);
  }
  .hamburger-container-mobile {
    padding: 12px;
  }
  .main-menu {
    cursor: pointer;
    /* Traditional hamburger version
    display: none;
    width: 100%;
    */
    /* Slide out */
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 50px);
    overflow: hidden;
    transition: all 0.2s;
    transition-timing-function: ease;
    z-index: 100200; /* Wordpress admin bar is at 99,999 */
    flex-direction: column;
    align-items: stretch;
    max-height: 100%;
    height: 100vh;
  }
  .menu-title {
    padding: 12px 12px 24px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-menu-entry {
    padding: 12px 12px 12px 12px;
  }
  .main-menu-entry-divider {
    display: none;
  }
  .main-menu-entry-active {
    padding-bottom: 7px;
    margin-bottom: 0;
  }
  .sub-menu {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -7px;
    margin-top: 7px;
    padding: 0;
    padding-left: 15px;
  }
  .sub-menu-entry {
    padding: 7px 12px 7px 12px;
    margin: 0px;
  }
  .menu-home-entry-close {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-image: url("../images/menu-close.png");
    background-repeat: no-repeat;
    background-position: center center;
  }
  #main-menu-background-mask {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100100; /* Wordpress admin bar is at 99,999 */
  }
  .main-menu-entry {
    margin: 0;
    position: relative;
  }
  .menulink-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tm:checked + .main-menu {
    display: flex;
    left: 0;
    overflow: auto;
    scrollbar-width: none;
  }
  /* Hide the dropdowns by default.. */
  .sub-menu, .megamenu {
    display: none;
  }
  /* Unless checked or tapped */
  .main-menu-entry input[type=checkbox]:checked + .sub-menu,
  .main-menu-entry input[type=checkbox]:checked + .megamenu,
  .sub-menu-entry input[type=checkbox]:checked + .sub-menu {
    display: block;
    flex: 1 1 100%;
  }
  .menu-home-entry-close {
    display: none;
  }
  .menu-home-entry-close {
    z-index: 100300; /* Wordpress admin bar is at 99,999 */
    display: none;
    cursor: pointer;
  }
  .megamenu {
    padding: 10px 0;
  }
  .megamenurow {
    padding: 0px 12px;
  }
  .megamenu-link {
    padding: 4px 0;
  }
  .tm:checked ~ .menu-home-entry-close {
    display: block;
  }
  #fixed-nav {
    width: 100%;
  }
  #fixed-nav.is-active {
    position: fixed;
    top: 0;
    z-index: 1000;
  }
}
/* Utilities */
@media (min-width: 992px) {
  .desktop-hidden {
    display: none !important;
  }
}

/*# sourceMappingURL=menu.css.map */
