#section-sidebar-menu-wrapper {
  position: fixed;
  z-index: 10;
  top: 0;
  height: 100%;
  
  width: 345px;
  left: -345px;

  padding: 1.5rem;
  transition: ease-in .255s;
  
  gap: 20px;

  border-right: 2px solid #62dca8;
}
  
#section-sidebar-menu-wrapper.is-moving {
  transition: none;
}
  
#section-sidebar-menu-wrapper.open {
  transition: .255s ease-out;
  left: 0;
}
  
#btn-menu {
  color: white;
  background: #03a9f4;
  border: none;
  padding: 8px;
  outline: 0;
  max-width: 150px;
}
  
#btn-menu.menu--open {
  background: #109ede;
}
  
#touch-taget {
  position: absolute;
  right: -20px;
  height: 100%;
  width: 20px;
  background: red;
  display: flex;
  align-items: center;
}
  
.header__menu-item {
  gap: 10px;  
}

.fixed-side__navigation a {
    {% comment %}
      gap between active link indicator and
      menu item link text
    {% endcomment %}
    gap: .75rem;
    padding: 0;
}

@media screen and (min-width: 990px) {
  .fixed-side__navigation a {
      padding: 0 .5rem;
  }
}

ul.fixed-side__menu,
ul.fixed-side__sub-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.link--text-wrapper {
    {% comment %}
      to vertically center the text in each 
      menu item link due to unwanted offset. 
    {% endcomment %}
    transform: translateY(1.5px);
}

.header__menu-item:hover span {
    {% comment %}
      remove default styling
    {% endcomment %}
    text-decoration: none;
}

.active-link-icon-wrapper,
.active-link-icon-wrapper > img {
    height: 1.5rem;
}

.active-link-icon-wrapper > img {
    width: 1.5rem;
}

{% comment %}
  Accordion styles when menu has nested links
{% endcomment %}

.tab {
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.tab input:checked + .tab__label::after {
  transform: rotate(-90deg);
  transform-origin: 4px 12px;
}

@media screen and (min-width: 990px) {
  .tab {
      padding: 0 .5rem;
  }
}
  
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
  max-width: 200px;
}
.tab input:checked ~ .tab__content {
  max-height: 35rem;
}

.tab__label {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  margin: 0;
  color: var(--secondary-btn-color);
}

.tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  /* transition: all 0.35s; */
}
  
.tab__content > ul {
  list-style-type: none;
  padding-left: .75rem;
}

.sidebar-overlay {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10;
}

.fixed-side__navigation.desktop {
  display: none;
}

@media screen and (min-width: 1500px) {
  .fixed-side__navigation-wrapper {
    left: 1rem;
  }
  
  .fixed-side__navigation.desktop {
    display: block;
    position: sticky;
    top: 0;
  }
  
  #btn-menu {
    display: none !important;
  }

  .sidebar-trigger-btn__mobile {
    display: none;
  }
}

.gap-half-rem {
  gap: 0.5rem;
}