.mr-sid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--mr-sid-header-bg);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}

.mr-sid-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
}

.custom-logo-link img {
  max-width: 200px;
}

.mr-sid-menu-toggle,
.mr-sid-menu-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--headings);
  text-transform: uppercase;
  padding: 0 2rem;
  box-shadow: none;
  &:hover {
    color: var(--headings);
    background: none;
    border: none;
	text-decoration: underline;
  }
  &:focus {
    color: var(--headings);
    background: none;
    border: none;
	text-decoration: underline;
  }
  &:active {
    color: var(--headings);
    background: none;
    border: none;
	text-decoration: underline;
  }
}
.mr-sid-nav a.active {
  text-decoration: underline;
}

.mr-sid-nav[hidden] {
  display: block;
}

.mr-sid-menu-close {
  float: right;
  padding: 0;
}

.mr-sid-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--mr-sid-header-bg);
  padding: 1rem;
  transform: translateX(calc(100% + var(--nav-offset, 0px)));
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  will-change: transform, opacity;
  z-index: 10;
}

.mr-sid-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 200vw;
  height: 100%;
  background: var(--mr-sid-header-bg);
  z-index: -1;
}

.mr-sid-nav li {
  text-transform: uppercase;
  font-size: 1rem;
  &:hover {
    text-decoration: underline;
  }
  &:focus {
    text-decoration: underline;
  }
  &:active {
    text-decoration: underline;
  }
}

.mr-sid-nav.active {
  transform: translateX(0);
  opacity: 1;
}

.mr-sid-nav ul {
  list-style: none;
  padding: 2rem 0 0;
}

.mr-sid-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--headings);
  text-decoration: none;
}

/* ===========================
   Dim Overlay (Body background)
=========================== */
.mr-sid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
  pointer-events: none;
}

.mr-sid-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}


@media only screen and (max-width:767px) {
}