/* CSS for language selection overlay modal (#langModal) */
#langModal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10020;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  opacity: 1;
}
#langModal > img {
  max-width: 360px;
  width: 80vw;
  height: auto;
  display: block;
  margin-bottom: 32px;
}
#langModal > div {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  border: 2.5px solid #bbb;
  border-radius: 18px;
  padding: 32px 36px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.07);
}
#langModal > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#langModal img#flagPL,
#langModal img#flagEN,
#langModal img#flagDE {
  max-width: 90px;
  width: 18vw;
  height: auto;
  cursor: pointer;
  display: block;
}
#langModal > div > div > div {
  font-size: 1.08rem;
  color: #222;
  margin-top: 8px;
  text-align: center;
}
