/* .anchorNavMain.fixed {
  position: fixed;
  box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.5);
} */
.anchorNavMain {
  width: 100%;
  max-width: 1440px;
  position: sticky;
  top: 0px;
  margin-bottom: 40px;
  background-color: #FFFFFF;
  z-index: 3;
  border-bottom: 1px solid #E6E7E8;
}
.anchorMainInner {
  position: sticky;
  top: 0px;
  width: 83.3%;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 3;
  min-height: 48px;
}
.categories{
  display: none;
}
.categoriesBtn{
  cursor: pointer;
  background-color: transparent;
  border: 0px;
}
.links{
  display: flex;
  flex-direction: row;
  column-gap: 40px;
  row-gap: 40px;
  flex-wrap: wrap;
  /* padding: 25px 0px; */
}
.links > div {
  margin-bottom: -1px;
  background-color: transparent;
}
.anchorLink{
  font-size: 32px;
  color: #606162;
  font-weight: 350;
  width: max-content;
  padding: 25px 0px;
  cursor: pointer;
  background: transparent;
    border: 0px;
}
.anchorLink:focus-visible {
  outline: 2px solid #0076D5;
  border-radius: 4px;
  /* outline-offset: 4px; */
}
/* .menuIcon{
  height: 24px;
  width: 24px;
  background-image: url(/c/dam/r/newsroom/components/anchor-nav/assets/burgerMenu.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
} */
svg{
  display: none;
}
.active{
  color: #1B1C1D;
  border-bottom: 2px solid #0076D5;
}
.openMenu{
  opacity: 1 !important;
  height: max-content !important;
  transform: translateY(0px) !important;
}

/* Media Queries */
@media screen and (min-width: 1025px) and (max-width: 1275px) {
.anchorLink {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width:1024px) {
  .anchorMainInner{
    width: 87.3%;
    margin: 0 auto;
  }
  .links{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    flex-wrap: wrap;
  }
  .anchorLink{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .anchorMainInner{
    width: 100%;
  }
  .categories {
    display: block;
    width: max-content;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    /* column-gap: 20px; */
    /* padding: 12px 0px 12px 18px; */
    cursor: pointer;
    height: 48px;
    line-height: 40px;
    background: transparent;
    border: 0px;
    align-items: center;
    padding: 0 18px;
    width: 100%;
}
.categories .menuIcon { 
  margin-right: 20px;
}
.menuIcon,.menuText{
  cursor: pointer;
}
  .links {
    opacity: 0;
    height: 0px;
    display: none;
    transition: all 0.2s;
    padding: 0px;
    transform: translateY(-483px); 
  }

  .anchorLink{
    font-size: 16px;
    padding: 6px 0px;
    padding-left: 18px;
    margin: 6px 0px;
    color: #727272;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    column-gap: 16px;
    align-items: center;
    width: 100%;
  }
  svg{
    display: block;
  }
  .active{
    color: #1B1C1D;
    border-left: 2px solid #0076D5;
    border-bottom: 0px;
  }
  .openMenu{
    display: block !important;
  }
}