/* --------------------------- Translation Floating Circle ---------------------------- */
.translation {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  background-color: rgba(247, 23, 92, 1);
  box-shadow: 0 0px 16px rgba(255, 255, 255, 0.2),
    0 12px 40px rgba(255, 255, 255, 0.3);
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 12px 40px rgba(0, 0, 0, 0.4); */
  /* background-color: white; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
}

.translation:hover {
  box-shadow: 0 0px 16px rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(255, 255, 255, 0.2);
}

.gt-image {
  display: flex;
  padding: 10px;
  width: 50px;
  height: 50px;
}

.d-none {
  display: none !important;
}

/* --------------------------- Translate Language Selection --------------------------- */
.languages {
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom: 70px;
  right: 15px;
  /* width: 150px; */
  min-width: 240px;
  /* height: 150px; */
  border-radius: 8px;
  background-color: #494747;
  align-items: start;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: default;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.select-title {
  display: flex;
  width: 100%;
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 8px 8px 0px 0px;
  color: #fff;
  background-color: #062539;
}

.ln-btn {
  background-color: #7a90a8;
  color: #062539;
  padding: 4px 10px;
  width: 100%;
  height: 100%;
  border: none;
}

.ln-btn:hover {
  background-color: #062539;
  color: white;
}

.ln-btn-last-left {
  border-radius: 0px 0px 0px 8px;
}

.ln-btn-last-right {
  border-radius: 0px 0px 8px 0px;
}

.selected-language {
  background-color: #062539 !important;
  color: white !important;
}

/* ------------------------------------------ Media ------------------------------------------ */
@media (min-width: 480px) {
  .translation {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  .gt-image {
    width: 60px;
    height: 60px;
  }
  .languages {
    min-width: 280px;
    bottom: 85px;
  }
}

@media (min-width: 1024px) {
  .translation {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
  }
  .gt-image {
    width: 65px;
    height: 65px;
  }
  .languages {
    min-width: 320px;
    bottom: 95px;
  }
}
