.animation-toggle {
    display: block;
    position: relative;
    margin: 0.5rem auto;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 0.875rem;
    font-weight: 600;
    border: none;
    background-color: #666666;
    color: #fff;
    border-radius: 0.25rem;
    cursor: pointer;
}
.animation-toggle.active {
    background-color: #ff0000;
    color: #fff;
}
.animation-toggle::before {
  content: "\2717 ";
  margin-right: 0.5rem;
}
.animation-toggle.active::before {
  content: "\2713 ";
  margin-right: 0.5rem;
}

.volume-container {
  display: none;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.has-audio .volume-container {
  display: flex;
}
.isSticky .volume-container {
  margin-bottom: 0;
}
.isSticky .volume-container label {
  display: none;
}

.volume-control {
  display: block;
  position: relative;
  padding: 0;
  margin: 0 1rem 0 0;
  height: 1.5rem;
  width: 1.5rem;
  border: none;
  background-color: transparent;
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.high-contrast .volume-control {
  filter: invert(1);
}
.isSticky .volume-control {
  margin: 0 1rem;
}
.has-audio .volume-control {
  display: block;
}
.volume-control img {
  width: 100%;
  height: 100%;
}
.volume-control .volume-muted {
  display: none;
}
.muted .volume-control .volume-muted {
  display: block;
}
.volume-control .volume-on {
  display: block;
}
.muted .volume-control .volume-on {
  display: none;
}

.longform-controls {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.entry-element-container.fullwidth {
  max-width: 100% !important;
}

#navigation_container {
  display: block;
  position: relative;
}
.sub-navigation-holder {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.sub-navigation-holder.isSticky {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 7;
  border-top: 1px solid #cccccc;
  padding: 1rem 0;
}

.sub-navigation-holder .sub-navigation-toggle {
  display: none;
}
.sub-navigation-holder.isSticky .sub-navigation-toggle {
  display: block;
}
.sub-navigation-toggle {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0.5rem 0.75rem;
    background-color: #ff0000;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 0.25rem;
}
.sub-navigation-toggle::after {
  content: " \25BE";
}
.sub-navigation-toggle.expand-button-open::after {
  content: " \25B4";
}

.sub-nav-label {
  font-size: 0.875rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
select.sub-nav-select {
  padding-right: 1.5em;
  background: url(data:image/png;base64,R0lGODlhDwAUAIABAAAAAP///yH5BAEAAAEALAAAAAAPABQAAAIXjI+py+0Po5wH2HsXzmw//lHiSJZmUAAAOw==) no-repeat 96% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  cursor: pointer;
  max-width: 32rem;
  /* width: 77%; */
  height: 2rem;
  margin: 0;
  padding: .3rem 3rem .3rem .5rem;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  outline: 0;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  resize: vertical;
  appearance: none;
}
select.sub-nav-select:focus {
  border: 2px solid #2626f0;
}

.dropdown-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.sub-navigation {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.sub-navigation-holder.isSticky .sub-navigation {
  margin-bottom: 0;
}
.sub-navigation.hidden {
  display: none;
}

.sub-nav-items {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.sub-nav-item {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border: none;
}
.sub-nav-item:hover {
  text-decoration: underline;
  cursor:pointer;
}

.sub-navigation-controls {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.isSticky .sub-navigation-controls {
  flex-direction: row;
}

@media only screen and (max-width: 480px) {
  .sub-nav-label {
    font-size: 0.675rem;
  }
}