/* --------------------------------------LANGUAGE------------------------------------------- */
header .languageBx {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.45vw;
  display: flex;
  float: right;
  border: inset 1px solid #7d7d7d;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.175);
  z-index: 1;
  padding-left: 12px;
}

header .languageBx .imgBx {
  position: fixed;
  right: 8.5vw;
  top: 0;

  display: flex;
  float: right;

  transform: translateY(-100%);
  visibility: hidden;
}

header .languageBx .imgBx.active {
  transform: translateY(0);
  visibility: visible;
  transition: 0.1s;
}

header .languageBx .imgBx .box {
  height: 1.7vw;
  width: 2.6vw;

  margin: 0.85vw 0.6vw;
  opacity: 0.65;
  transition: 0.3s;
}

/* Remove DE */
header .languageBx .imgBx .box:nth-child(2) {
  display: none;
}

header .languageBx .imgBx .box:hover {
  opacity: 1;
}

header .languageBx .imgBx .box img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid
    linear-gradient(235deg, rgb(79, 79, 79), black, rgb(79, 79, 79));
  border-radius: 4px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header .languageBx .content {
  font-style: italic;
  font-weight: 200;
  color: white;
  position: absolute;
  font-size: 1.4vw;
  top: 0.8vw;
  right: 1.6vw;
  opacity: 0.7;
  transition: 0.25s;
  cursor: pointer;
}

header .languageBx .content:hover {
  opacity: 1;
}

/* ---------------------------------MOBILE VERSION--------------------------------------- */

@media (max-width: 1025px) {
  header .languageBx .imgBx {
    display: grid;
    right: 0;
    top: 60px;

    height: auto;
    width: 85px;
    justify-content: center;

    padding-bottom: 0.5vw;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 0 0 12px 12px;

    transform: translateX(100%);
  }

  header .languageBx .imgBx.active {
    transform: translateX(0);
  }

  header .languageBx .imgBx .box {
    height: 28px;
    width: 42px;
    margin: 14px 12px;
    margin: 10px 0;
    transition: 0s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  header .languageBx .content {
    top: 12px;
    right: 20px;
    height: 100%;
    right: 20px;
    font-size: 18px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
