.top-bar {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--c-secondary);
  min-height: 5.8rem;
  height: 5.8rem;
  border-bottom: 1px solid var(--c-border-grey);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}

@media screen and (min-width:992px) {
  .top-bar {
    position: relative
  }
.top-bar__logo img {
  width: 80px;
  height: auto;
  display: flex;
  align-items: center;
}
}

.top-bar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 11.8rem;
  width: 100%;
  height: 100%
}
@media screen and (min-width:992px) {
  .top-bar__logo {
    border-right: 1px solid var(--c-border-grey);
  }
}
@media screen and (max-width:992px) {
  .top-bar {
    min-height: 7rem;
    height: 7rem;
  }
  .sidebar {
    top: 7rem;
    height: calc(100% - 7rem);
  }
}

.top-bar__content {
  display: flex;
  align-items: center;
  padding-right: 2.4rem;
  width: 100%
}

@media screen and (min-width:992px) {
  .top-bar__content {
    padding-left: 0.8rem;
    justify-content: space-between
  }
}
@media screen and (max-width:992px) {
  .top-bar__content {
    width: auto;
  }
  .top-bar__burger {
    margin-right: 1.6rem;
  }
  .overflow-hidden-mobile .dropdown--topbar {
    display: none;
  }
}
.top-bar__burger {
  display: inline-flex;
  width: 1.8rem;
  height: 1.2rem;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto
}

@media screen and (min-width:992px) { 
  .top-bar__burger {
    display: none;
  }
}
@media screen and (max-width:992px) { 
  /* #changeacct ~ #changelanguage {
    display: none;
  } */
  #changelanguage {
    display: none;
  }
   
  .isOpen ~ #changelanguage, .overflow-hidden-mobile #changelanguage{
    display: block;
  }
}
.top-bar__burger.isOpen {
  position: relative;
}

.top-bar__burger-plank {
  display: inline-flex;
  width: 100%;
  height: 2px;
  background-color: var(--c-grey);
}

.top-bar__burger.isOpen .top-bar__burger-plank:first-child,
.top-bar__burger.isOpen .top-bar__burger-plank:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%
}

.top-bar__burger.isOpen .top-bar__burger-plank:first-child {
  transform: translate(-50%, -50%) rotate(45deg)
}

.top-bar__burger.isOpen .top-bar__burger-plank:nth-child(2) {
  display: none
}

.top-bar__burger.isOpen .top-bar__burger-plank:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg)
}