@charset "utf-8";

#language-toggle {
  padding: 0;
  position: absolute;
  top: 5px;
  right: 60px;
  width: 80px;
  height: 40px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  box-sizing: border-box;
  @media (668px <= width) {
    top: 10px;
    right: 100px;
    width: 110px;
    height: 55px;
    border-radius: 27.5px;
  }
  @media (1025px <= width) {
    top: 10px;
    right: 10px;
    width: 80px;
    height: 40px;
    border-radius: 20px;
  }
  div {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (668px <= width) {
      width: 43px;
      height: 43px;
    }
    @media (1025px <= width) {
      width: 32px;
      height: 32px;
    }
    &.on {
      background: #c39e4c;
      font-weight: bold;
      color: #fff;
      text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.2) inset;
    }
  }
  &:hover :not(.on) {
    background: #ddd;
    transition: all 0.3s ease;
  }
}
