
/* Month Navigation Element */


.month-navigation {
  padding-left: 10px;
  padding-right: 10px;
}
.month-navigation--right {
  margin-top: 2em;
}
@media (min-width: 800px) {
  .month-navigation {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.month-navigation--left.month-navigation--left.month-navigation--left.month-navigation--left ul + h2 {
  padding: 2rem 0 0 0;
}
.month-navigation--list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.month-navigation--month-list li {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1em;
}
.month-navigation--month-list li::after {
  content: '|';
  display: inline-block;
  margin-left: 0.5em;
}
.month-navigation--month-list li:last-child::after {
  display: none;
}
.month-navigation--month-list a {
  font-weight: bold;
}
.month-navigation--link-list li {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
}
@media (min-width: 577px) {
  .month-navigation--link-list {
    column-count: 2;
    column-gap: 1em;
  }
}
.month-navigation--link-list a::before {
  content: url(../Icons/link-arrow.svg);
  display: inline-block;
  margin-right: 0.5em;
  position: relative;
  top: 3px;
  width: 1em;
}
.month-navigation--link-list a:hover::before,
.month-navigation--link-list a:focus::before {
  content: url(../Icons/link-arrow_hover.svg);
}
.month-navigation--list.month-navigation--month-list a:hover,
.month-navigation--list.month-navigation--link-list a:hover {
  text-decoration: underline;
}
.month-navigation.month-navigation.month-navigation h2 {
  margin-top: -3px;
}
.month-navigation--right h3 {
  font-size: 18px;
}
.month-navigation--select-wrapper {
  position: relative;
  margin-bottom: 30px;
}
.month-navigation--select-wrapper::after {
  content: "\25bc";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
select.month-navigation--select {
  font-size: 1.2rem;
  font-weight: 700;
  color: #444;
  padding: .55em 0;
  width: 100%;
  box-sizing: content-box;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}
.month-navigation--mobile {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 75px;
  left:0;
  z-index: 100;
  overflow: hidden;
}
.month-navigation--mobile.hidden {
  display: none;
}

@media only screen and (min-width: 800px) {
  .month-navigation--mobile.hide-on-desktop {
    display: none !important;
  }
}
.month-navigation--scroll {
  background-color: #fff;
  position: relative;
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding-left: 15px;
  padding-right: 15px;
}
.month-navigation--scroll::-webkit-scrollbar {
  display: none; }

.month-navigation--scroll .nav-item-theme, .month-navigation--scroll .nav-item-link{
  padding: 0 7px;
  display: inline-block;
}
.month-navigation--scroll .sub-nav {
  display: inline-block;
}
.month-navigation--scroll .nav-item-theme a, .month-navigation--scroll .nav-item-link a{
  display: inline-block;
}
.month-navigation--scroll .nav-item-theme {
  font-size: 1.3em;
  line-height: 4em;
}
.month-navigation--scroll .nav-item-link {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 4em;
}
.month-navigation--scroll .nav-item-link a.active{
  border-bottom: 4px solid #462672;
  text-decoration: none;
}
.month-navigation--scroll .nav-item-theme::before {
  content:'|';
  font-size: 1.3em;
  display: inline-block;
  margin-right: 0.5em;
}
.month-navigation--scroll .nav-item-theme:first-child:before {
  display: none;
}
