/* ------------------------------------------------*/
/* Language pill — menu, fixed left                */
/* Symmetric to hamburger close button (right)     */
/* ------------------------------------------------*/

.blu-menu__lang-pill {
  position: fixed;
  left: 5rem;
  bottom: 5rem;
  min-height: 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 200;
  -webkit-transition: all 0.2s ease;
          transition: all 0.2s ease;
}

.blu-menu__lang-pill:hover {
  color: var(--t-light);
  border: 2px solid var(--t-bright);
  background-color: var(--t-bright);
}

@media only screen and (min-width: 768px) {
  .blu-menu__lang-pill {
    left: 8rem;
    bottom: 8rem;
    min-height: 5.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .blu-menu__lang-pill {
    left: 11rem;
  }
}

.blu-menu__lang-pill__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-bright);
  border: 2px solid var(--t-bright);
  padding: 1.5rem;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease;
}

.blu-menu__lang-pill__link:hover {
  opacity: 0.6;
}
