.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.announcement-bar {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 36px;
  background-color: var(--bg-topbar);
  color: var(--color-topbar);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  display: grid;
  place-items: center;
  overflow: hidden; }

.announcement-bar__navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.announcement-bar__navigation button {
  pointer-events: none;
  color: #fff;
  position: absolute;
  top: 0;
  background-color: transparent;
  border: none;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 2;
  transition: opacity 0.3s;
  cursor: pointer;
  opacity: 0; }

.announcement-bar__navigation button:focus-visible {
  box-shadow: 0 0 0 2px #009d1f; }

@media (hover: hover) {
  .announcement-bar__navigation button:hover {
    opacity: 0.7; } }

.announcement-bar__navigation button:focus-visible {
  box-shadow: inset 0 0 0 2px #009d1f; }

.announcement-bar__navigation button:focus-visible {
  opacity: 1; }

.announcement-bar__navigation button:nth-child(1) {
  left: 0; }

.announcement-bar__navigation button:nth-child(2) {
  right: 0; }

.announcement-bar__item {
  display: block;
  place-content: center;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0ms, visibility 0.3s; }

.announcement-bar__item > a {
  text-decoration: underline;
  transition: opacity 0.3s;
  cursor: pointer;
  color: var(--color-topbar); }

.announcement-bar__item > a:focus-visible {
  box-shadow: 0 0 0 2px #009d1f; }

@media (hover: hover) {
  .announcement-bar__item > a:hover {
    opacity: 0.7; } }

.announcement-bar__item > strong {
  font-weight: 700; }

.announcement-bar__item[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease 0.3s, visibility 0ms;
  z-index: 1; }
