/***

An accessible menu for WordPress
https://github.com/argenteum/accessible-nav-wp

Licensed GPL v.2 (http://www.gnu.org/licenses/gpl-2.0.html)

***/

@charset "UTF-8";


.no-js .site-header-menu,
.site-header-menu.toggled-on {
  display: block;
}

.site-header-menu.toggled-on {
  margin-top: 10px;
}

.no-js .main-navigation ul,
.main-navigation ul .sub-menu.toggled-on {
  display: block;
}

button.dropdown-toggle,
button.menu-button {
  display: block;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  content: "";
  float: right;
}

button.dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 2px;
}

.dropdown-toggle:after,
.dropdown-toggle.toggled-on:after {
  font-size: 16px;
}

.menu-button {
  float: none;
  padding: 0;
  font-size: 24px;
}

.menu-button:before,
.menu-button.toggled-on:before {
  margin-right: 5px;
  padding-top: -10px;
}

.main-navigation a:focus,
button.dropdown-toggle:focus,
button.menu-button:focus {
  outline: 1px dotted grey;
  outline-offset: 2px;
}

.no-js .menu-button {
  display: none;
}

/* Plus symbol to expand sub-menu on mobile */
.dropdown-toggle:after {
  content: "\002B";
}

/* Minus symbol to collapse sub-menu on mobile */
.dropdown-toggle.toggled-on:after {
  content: "\2212";
}

/* 'Hamburger' or bars to expand menu on mobile*/
.menu-button:before {
  content: "\2261";
}

/* Times (x) to collapse menu on mobile*/
.menu-button.toggled-on:before {
  content: "\2573";
  font-size: 70%;
}

.dropdown-toggle:after,
.dropdown-toggle.toggled-on:after,
.menu-button:before,
.menu-button.toggled-on:before {
  font-weight: bold;
}

/* Screen readers */
.screen-readers {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-break: normal !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Desktop media query */
@media only screen and (min-width: 768px) {
  .no-js .main-navigation ul ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    margin-left: 0;
    padding: 0;
    padding-bottom: 5px;
    padding-top: 5px;
    background-color: #f5f5f5;
    border: 1px solid #c0c0c0;
    z-index: 999;
  }
  .no-js .main-navigation ul ul li {
    float: none;
    width: 220px;
    padding: 4px 10px;
  }

  .no-js .main-navigation ul ul ul {
    top: -1px;
    left: 100%;
    margin-left: 0;
    margin-top: -5px;
  }
  ul.sub-menu .dropdown-toggle {
    position: absolute;
    right: 10px;
    top: 4px;
  }
  .dropdown-toggle:after {
	color: #FFF;
  }
  /* Arrow down */
  .main-navigation ul .dropdown-toggle:after {
	font-family: "Font Awesome 5 Free";
	color: #FFF;
    content: "\f0d7";
  }
  /* Arrow right */
  .main-navigation ul ul .dropdown-toggle:after {
	font-family: "Font Awesome 5 Free";
    content: "\f0da";
  }
  /* Arrow up */
  .main-navigation ul .dropdown-toggle.toggled-on:after {
	font-family: "Font Awesome 5 Free";
    content: "\f0d8";
  }
  /* Arrow left */
  .main-navigation ul ul .dropdown-toggle.toggled-on:after {
	font-family: "Font Awesome 5 Free";
    content: "\f0d9";
  }
  button.dropdown-toggle {
    position: inherit;
    right: auto;
  }
}
