@charset "utf-8";
/* CSS Document */

#langWrap {
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 99999;
  font-family: Arial, sans-serif;
}

#langBar {
  display: flex;
  align-items: stretch;
  white-space: nowrap;

  height: 35px;
  overflow: hidden;

  background: #b41711;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);

  transform: translateX(120px); /* zatvorené */
  transition: transform 260ms ease;
}

.langItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 35px;
  padding: 0 0 3px 0;
  box-sizing: border-box;

  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  opacity: .85;

  transition: opacity 180ms ease, background 180ms ease;
}

.langItem:hover {
  opacity: 1;
  background: rgba(255,255,255,0.10);
}

.langItem.isActive {
  opacity: 1;
  background: rgba(0,0,0,0.25);
}

@media only screen and (max-width: 799px) {
#langWrap {
  top: 80px;
}
}
