.product-navigation-wrapper {
  height: 3rem;
  background-color: #0b0b0b;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 3.4rem;
  z-index: 49;
}

.subheader-container {
  /* changing overall max-width for the containers on overview pages */
  max-width: 75rem;
  /* max-width: 77rem; */
  margin: 0 auto;
  /* margin-top: 2rem; */
  padding-left: 5vw;
  padding-right: 5vw;
}

.subheader-container-media {
  margin: 0 auto;
  /* margin-top: 2rem; */
  padding-left: 0;
  padding-right: 0;
}

.product-navigation-wrapper div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  margin-right: 1rem;
  margin-left: 1rem;
  background-color: #0b0b0b;
  /* max-width: 980px;
  margin: 0 auto; */
}

.sticky-links {
  height: 100%;
  color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  max-width: 280px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.sticky-links p {
  font-weight: 500 !important;
}

.unselected {
  border-bottom: 2px solid #0b0b0b;
  color: white;
  text-decoration: none;
  transition: all 100ms ease;
}
.unselected:hover {
  opacity: 0.6;
}

.selected {
  border-bottom: 3px solid orange;
  color: orange;
}

#sticky-navbar {
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.explore-more-container {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 6rem; */
  padding-top: 3rem;
}

.explore-more-text {
  padding: 0.5rem 0.4rem;
  border: 2px solid orange;
  border-radius: 10px;
  color: orange;
  /* font-size: 0.875rem; */
  font-size: 15px !important;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 100ms ease;
}

.explore-more-text p {
  margin-left: 1rem;
  font-weight: 500;
}

.explore-more-chevron {
  margin-left: 1rem;
  color: orange;
  opacity: 1;
  font-size: 1rem;
}

.explore-more-icon {
  font-size: 0.75rem;
  margin-left: 0.5rem;
  opacity: 0;
}

.se-description-para {
  /* padding-left: 1.3rem;
  padding-right: 1.3rem; */
  color: #d9d9d9 !important;
  font-weight: 300;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
}

/* ul elements, common across product pages */
.dt-ul-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  /* letter-spacing: 0.05em; */
}

.mobile-ul {
  list-style: none;
  /* padding-left: 2em; */
  color: #d9d9d9 !important;
  font-weight: 300 !important;
  font-size: 0.875rem;
  line-height: 1.7rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.mobile-ul li::before {
  content: "•";
  color: orange; /* change the color for each bullet point */
  display: inline-block;
  width: 0.7em;
  /* margin-left: -1em; */
}

.tablet-ul {
  display: none;
}

.tablet-ul li::before {
  content: "•";
  color: orange;
  display: inline-block;
  width: 0.7em;
  margin-left: -1em;
}

.dt-ul {
  display: none;
}

.dt-ul li::before {
  content: "•";
  color: orange;
  display: inline-block;
  width: 0.7em;
  margin-left: -1em;
}

.sound-listing-container {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  max-width: 69.8rem;
}

@media (min-width: 350px) {
  .sticky-links {
    width: 19rem;
    font-size: 1rem;
  }
  .product-navigation-wrapper div {
    justify-content: center;
  }
}
@media (min-width: 640px) {
  .sticky-links {
    font-size: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (min-width: 768px) {
  .sticky-links {
    font-size: 1.125rem;
  }
  .tablet-ul {
    display: block;
    list-style: none;
    padding-left: 2em;
    color: #d9d9d9 !important;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
    line-height: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .mobile-ul {
    display: none;
  }
  .se-description-para {
    font-size: 1rem;
    line-height: 1.9em;
    font-weight: 300 !important;
    letter-spacing: 0.03em;
  }
  .subheader-container-media {
    margin-top: 2rem;
  }
  .subheader-container {
    margin-top: 2rem;
  }
  .explore-more-text {
    font-size: 1.25rem;
  }
  .explore-more-icon {
    font-size: 0.875rem;
  }
  .sound-listing {
    margin-top: -0.5rem !important;
  }
}

@media (min-width: 980px) {
  .tablet-ul {
    display: none;
  }
  .dt-ul {
    display: block;
    list-style: none;
    padding-left: 2em;
    color: #d9d9d9 !important;
    font-weight: 300 !important;
    font-size: 16px;
    line-height: 1.9em;
    letter-spacing: 0.03em;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .subheader-container-media {
    /* changing overall max-width for the containers on overview pages */
    max-width: 75rem;
    /* max-width: 77rem; */
    margin: 0 auto;
    margin-top: 2rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (min-width: 1100px) {
  .sound-listing {
    margin-top: 1rem !important;
  }
}
@media (min-width: 1160px) {
  .subheader-container {
    padding-left: 5.2rem;
    padding-right: 5.2rem;
  }
  .subheader-container-media {
    padding-left: 5.2rem;
    padding-right: 5.2rem;
  }
  .sound-listing-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 69.8rem;
  }
}
