.fembloc-site-switcher,
.fembloc-site-switcher * {
  box-sizing: border-box;
}

.fembloc-site-switcher {
  position: fixed;
  top: 118px;
  right: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: calc(100vw - 40px);
  min-height: 56px;
  padding: 10px 10px 10px 14px;
  color: #444;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(90, 80, 154, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(18, 80, 96, 0.14);
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.15;
}

.fembloc-site-switcher--with-top-banner {
  top: 160px;
}

.fembloc-site-switcher__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 98px;
}

.fembloc-site-switcher__eyebrow,
.fembloc-site-switcher__site {
  display: block;
  margin: 0;
  padding: 0;
}

.fembloc-site-switcher__eyebrow {
  color: #747474;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.fembloc-site-switcher__site {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.fembloc-site-switcher .fembloc-site-switcher__link,
.fembloc-site-switcher .fembloc-site-switcher__link:link,
.fembloc-site-switcher .fembloc-site-switcher__link:visited {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  background: #5a509a;
  border: 1px solid #5a509a;
  border-radius: 999px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.fembloc-site-switcher .fembloc-site-switcher__link:hover,
.fembloc-site-switcher .fembloc-site-switcher__link:focus-visible {
  color: #5a509a;
  background: #fff;
  outline: none;
}

.fembloc-site-switcher .fembloc-site-switcher__link:focus-visible,
.fembloc-site-switcher__close:focus-visible {
  outline: 2px solid #125060;
  outline-offset: 2px;
}

.fembloc-site-switcher__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0;
  padding: 0;
  color: #777;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

.fembloc-site-switcher__close:hover {
  color: #444;
  background: #f3f1f7;
}

@media (max-width: 767px) {
  .fembloc-site-switcher {
    top: auto;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .fembloc-site-switcher--with-top-banner {
    top: auto;
  }
}

@media (max-width: 520px) {
  .fembloc-site-switcher {
    left: 12px;
    justify-content: flex-start;
    width: auto;
    max-width: none;
  }

  .fembloc-site-switcher__content {
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fembloc-site-switcher,
  .fembloc-site-switcher * {
    scroll-behavior: auto !important;
  }
}
