.announcement-bar--container {
  position: relative;
  /* z-index: 99999; */
}
.announcement-bar--list {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.announcement-bar--list .announcement-bar--item {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .announcement-bar--list .announcement-bar--language-switcher {
    position: absolute;
    display: flex;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999999;
    gap: 20px;
    /* padding-left: var(--page-padding); */
    padding-right: calc(var(--page-padding) + 6px);
  }
}

@media screen and (max-width: 767px) {
  .announcement-bar--list .announcement-bar--language-switcher {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 10px;
  }
}
.announcement-bar--list.announcement-bar--compact {
  flex-direction: row;
}

.announcement-bar--list.announcement-bar--compact .announcement-bar--item {
  width: auto;
  padding: 0px 10px;
  flex: 1 1 auto;
}

.announcement--text {
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block;
}

.announcement-bar__slider {
  text-align: center;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  height: auto;
}

.announcement-bar__slider .announcement-bar__slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__slider.announcement-bar__slider--vertical {
  display: block;
}

.announcement-bar__slider.announcement-bar__slider--vertical
  .announcement-bar__slide {
  height: auto;
}

.icon-globe {
  width: 14px;
}
.icon-chevron {
  width: 9px;
}
.dropdown {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  top: 100%;
  right: 0;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0px;
  text-align: left;
}
.dropdown-content.active {
  display: flex;
}
.dropdown-item {
  font-weight: 500;
  cursor: pointer;
  color: rgb(var(--color-page-background));
  text-decoration: none;
  font-size: 14px;
  padding: 2px 20px;
}
.dropdown-item:hover {
  background-color: #e8e8e8;
}
.dropdown-item-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */
