/* Header */
.mm-header {
  background-color: #fff;
  font-family: 'Titillium Web', sans-serif;
  width: 100vw;
}

.mm-header__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1425px;
  padding: 25px 90px;
  width: 100%;
}

.mm-header__logo {
  height: 50px;
}

.mm-header__actions {
  display: flex;
  justify-content: space-between;
}

.mm-header__buttonWrapper {
  align-items: center;
  display: flex;
}

.mm-header__button {
  background-color: #8e3785;
  border-radius: 7px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 17px;
  margin-right: 85px;
  padding: 7px 20px;
}

.mm-header__button:focus,
.mm-header__button:hover {
  color: #fff;
}

.mm-search {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding-top: 0;
}

.mm-search__icon {
  font-size: 29px;
}

.mm-search .mm-search__input {
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: width .3s linear;
  width: 0;
}

.mm-search .mm-search__input:focus {
  border-bottom: 1px solid #000;
  box-shadow: none;
  transition: width .3s linear;
  width: 150px;
}

/* Header Navigation */
.mm-navigation {
  display: flex;
  align-items: center;
}

.mm-navigation__list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin-bottom: 0;
}

.mm-navigation__list .menu-item {
  list-style-type: none;
  margin-right: 25px;
  position: relative;
}

.mm-navigation__list .menu-item a {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  position: relative;
}

.mm-navigation__list .current-menu-item.menu-item:after {
  background-color: #bacf31;
  bottom: -3px;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.mm-navigation__list .current-menu-item.menu-item a {
  font-weight: 600;
}

.mm-navigation__list .menu-item:hover {
  font-weight: 600;
}

.mm-navigation__list .menu-item:last-of-type:hover .sub-menu {
  display: block;
}

.mm-navigation__list .sub-menu {
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 40px 0 rgba(34, 34, 34, .12);
  display: none;
  left: 0;
  margin-left: 0;
  overflow: hidden;
  position: absolute;
  top: 30px;
  z-index: 100;
}

.mm-navigation__list .sub-menu .menu-item {
  list-style-type: none;
  margin-right: 0;
  min-width: 200px;
  padding: 12px 0 12px 28px;
}

.mm-navigation__list .sub-menu .menu-item:hover {
  background-color: #bacf31;
  color: #fff;
}

.mm-navigation__element--recs:hover .mm-navigation__subList {
  display: block;
}

.mm-header__toggle {
  display: block;
  z-index: 100;
}

/* Mobile Menu */
.mm-header__mobile {
  background-color: #fff;
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}

.mm-navigation--mobile,
.mm-header__button {
  align-self: center;
}

.mm-navigation__list--mobile {
  flex-direction: column;
  margin: 0 0 50px;
  text-align: center;
}

.mm-navigation__list--mobile .menu-item {
  list-style-type: none;
  margin-bottom: 25px;
  margin-right: 0;
}

.mm-navigation__list--mobile .menu-item a {
  font-size: 28px;
  line-height: 35px;
}

.mm-header__button--mobile {
  margin-right: 0;
}

.mm-header__toggle {
  display: none;
}

.mm-header__toggle:checked ~ .mm-header__mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mm-header__toggleLabel {
  align-self: center;
  display: flex;
  font-size: 30px;
  z-index: 110;
}

.mm-header__toggleLabel:before {
  content: '\f0c9';
  font-family: 'FontAwesome';
}

.mm-header__toggle:checked ~ .mm-header__toggleLabel {
  position: fixed;
  right: 90px;
}

.mm-header__toggle:checked ~ .mm-header__toggleLabel:before {
  content: '\f00d';
}

@media (min-width: 1001px) {
  .mm-header__toggleLabel {
    display: none;
  }
}

@media (max-width: 1000px) {
  .mm-navigation,
  .mm-header__actions {
    display: none;
  }

  .mm-navigation--mobile {
    display: block;
  }
}
