@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900);* {
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}
body.blur .game-wrapper {
  filter: blur(10px);
}
body.blur:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}
body .pause {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10vw;
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
body .pause img {
  max-width: 100%;
}

.lp-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  padding: 10px;
  z-index: 100;
  background-color: #fcfcfc;
  border-top: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.lp-panel .lp-panel__back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  line-height: 1;
  text-decoration: none;
  font-family: "Source Sans Pro";
}
.lp-panel .lp-panel__back-button:hover .button-icon {
  transform: translateX(-3px);
}
.lp-panel .lp-panel__back-button .button-icon {
  transition: transform 200ms ease;
}
.lp-panel .lp-panel__back-button .button-icon .fill {
  fill: #333;
  transform: translateX(-10%);
}
.lp-panel .lp-panel__back-button .button-label {
  margin-left: 5px;
  color: #333;
}

.game-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 70px 0 20px 0;
}
@media (max-width: 768px) {
  .game-wrapper.game-wrapper--intro {
    height: 100%;
  }
  .game-wrapper.game-wrapper--intro .game-aside {
    padding: 2rem;
  }
  .game-wrapper.game-wrapper--intro .game-aside .intro-header {
    font-size: 2rem;
  }
  .game-wrapper.game-wrapper--intro .game-aside .game-logotype {
    width: 60vw;
  }
  .game-wrapper.game-wrapper--intro .game-intro__section .button {
    width: 70px;
    height: 70px;
  }
}
.game-wrapper.game-wrapper--intro .game-board-wrapper {
  overflow: initial;
}
.game-wrapper.game-wrapper--intro .game {
  flex-direction: column;
  align-items: center;
  height: auto;
}

.game-modal-bg {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
}

.clue {
  display: none;
  position: absolute;
  z-index: 1;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-size: cover;
}
.clue .clue__close {
  border: none;
  line-height: 1;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}

.game {
  font-family: "Source Sans Pro", sans-serif;
  display: flex;
  margin: 2rem;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .game {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .game {
    margin: 0rem;
    height: 100%;
  }
}
.game .btn {
  border: none;
  border-radius: 100px;
}
.game .game-intro {
  order: 3;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .game .game-intro {
    padding: 0;
  }
}
.game .game-intro .game-intro__cta {
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .game .game-intro .game-intro__cta {
    margin-top: 2rem;
  }
}
.game .game-intro .game-intro__section {
  padding: 1rem;
}
.game .game-intro .game-intro__section .game-message {
  font-weight: bold;
  margin: 0;
  padding: 10px 20px;
  border-radius: 25px;
}
.game .game-intro .button {
  margin-left: auto;
  margin-right: auto;
  width: 50px;
  height: 50px;
}
.game .extra-info {
  width: 100%;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  order: 3;
}
.game .copyright-info {
  display: none;
}
.game .cookie-popup-link,
.game .impressum-link {
  cursor: pointer;
}
.game .game-aside {
  display: none;
  flex-direction: column;
  align-items: center;
  order: 2;
  position: relative;
  overflow: hidden;
  width: 300px;
}
@media (max-width: 768px) {
  .game .game-aside {
    position: initial;
    flex: 1;
    padding: 10px;
    width: auto;
  }
}
.game .game-aside .game-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .game .game-aside .game-branding {
    order: 2;
    margin-bottom: 0;
  }
  .game .game-aside .game-tools {
    order: 1;
    margin-bottom: 2rem;
    flex-direction: row;
    align-items: center;
  }
}
.game .game-aside .game-logo-wrapper {
  text-align: center;
  margin-bottom: 1rem;
  width: 200px;
  min-width: 120px;
}
@media (max-width: 1024px) {
  .game .game-aside .game-logo-wrapper {
    width: 30vw;
    max-width: 200px;
    margin-bottom: 2vw;
  }
}
.game .game-aside .game-logo-wrapper .game-logotype {
  width: 100%;
  height: auto;
}
.game .game-aside .game-logo-wrapper .game-logotype-extra {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.game .game-aside .intro-header {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .game .game-aside .intro-header {
    font-size: 1.62rem;
  }
}
@media (max-width: 500px) {
  .game .game-aside .intro-header {
    font-size: 1.4rem;
  }
}
.game .game-aside .sub-header {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
  font-style: italic;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .game .game-aside .sub-header {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .game .game-aside .sub-header {
    font-size: 1.5rem;
  }
}
.game .game-tiles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.game .game-tiles .game-tiles__container {
  display: none;
  position: relative;
  flex-wrap: wrap;
  width: 90vw;
  height: 90vw;
  max-width: 500px;
  max-height: 500px;
  flex-wrap: wrap;
  background-size: cover;
  transition: transform 5000ms ease 1000ms, box-shadow 5000ms ease 1000ms;
}
.game .game-tiles .game-tiles__container.game-finished {
  transform: scale(1.05);
}
.game .game-tiles .game-tiles__container.game-finished .tile {
  box-shadow: none;
  border: none;
  opacity: 0;
}
.game .game-tiles .game-tiles__container.game-finished .tile:after {
  border: none;
}
.game .game-tiles .game-tiles__container .tile {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.game .game-tiles .game-tiles__container .tile:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.game .game-tiles .game-tiles__container .tile.clicked {
  transform: scale(1.1) rotate(2deg);
  z-index: 1;
}
.game .image-info {
  display: none;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  font-size: 0.9em;
  margin-top: 5px;
}
.game .image-info__caption {
  line-height: 1;
  font-size: 12px;
}
.game .image-info__byline {
  line-height: 1;
  text-align: right;
  font-size: 12px;
}
.game .game-tools {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.game .game-tools .buttons {
  display: flex;
}
.game .game-tools .buttons .button:not(:last-child) {
  margin-right: 5px;
}
.game .game-tools .answer-button {
  margin: 30px 0 0 0;
  padding: 15px 20px;
  line-height: 1;
  border-radius: 100px;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .game .game-tools .answer-button {
    margin: 0 0 0 10px;
    font-size: 1.8rem;
  }
}
.game .game-tools .footer-label {
  display: flex;
  line-height: 1;
  align-items: center;
  padding: 3px 8px;
}
.game .game-tools .game-timer {
  display: flex;
  border-radius: 50px;
  transition: color 200ms ease;
}
.game .game-tools .game-timer.running {
  animation: pulse 2s infinite;
}
.game .game-tools .game-timer.running .timer__display {
  padding: 12px;
  font-size: 2rem;
}
.game .game-tools .game-timer .timer__display {
  padding: 8px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  transition: padding 200ms ease, font-size 200ms ease;
}
.game .game-tools .game-points {
  display: flex;
  border-radius: 50px;
  padding: 0 5px;
  transition: color 200ms ease;
}
.game .game-tools .game-points .game-points__display {
  padding: 8px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: padding 200ms ease, font-size 200ms ease;
}
.game .game-tools .game-points .game-points__label {
  padding: 8px 8px 8px 0;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 500px) {
  .game .game-tools .game-points .game-points__label {
    display: none;
  }
}
@media (min-width: 768px) {
  .game .game-tools .game-tools__tool {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .game .game-tools .game-tools__tool:not(:last-child) {
    margin-right: 10px;
  }
}
.game .button {
  font-weight: bold;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  outline: none;
  cursor: pointer;
}
.game .button.locked {
  opacity: 0.5;
  cursor: not-allowed;
}
.game .button .button-icon {
  width: 100%;
  height: 100%;
  min-width: 25px;
  min-height: 25px;
  border-radius: 25%;
}
.game .button.button--wide {
  display: inline-flex;
  width: 100% !important;
  height: unset !important;
  border-radius: 25px;
  padding: 10px 20px;
}
.game .button.button--wide .button-icon {
  width: 25px;
  margin-right: 10px;
  height: auto;
  min-width: 25px;
  min-height: 25px;
  border-radius: 0;
}
.game .message-box {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 10;
  text-align: left;
  padding: 4rem;
  top: 0;
  left: 50%;
  min-width: 500px;
  max-height: 75vh;
  overflow-y: auto;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2), 3px 3px 30px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .game .message-box {
    top: 0;
    padding: 4rem 2rem 2rem;
    width: 95vw;
    min-width: 75vw;
    max-height: calc(75vh - 2rem);
    transform: translate(-50%, 0);
  }
}
.game .message-box .message-box__back {
  border: none;
  line-height: 1;
  padding: 0 10px;
  margin: 0;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  outline: none;
}
.game .message-box .message-box__back .back-label {
  font-size: 0.7em;
  margin-left: 5px;
  text-transform: uppercase;
}
.game .message-box .message-box__close {
  border: none;
  line-height: 1;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}
.game .message-box .game-new-game-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.game .message-box .game-new-game-wrapper .game-new-game img {
  width: 25px;
  height: 20px;
}
.game .message-box .message-box__body {
  display: none;
}
.game .message-box .message-box__body.message-game-help .game-instruction-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.game .message-box .message-box__body.message-game-help .game-instruction-list li {
  display: flex;
}
.game .message-box .message-box__body.message-game-help .game-instruction-list li:not(:last-child) {
  margin-bottom: 5px;
}
.game .message-box .message-box__body.message-game-help .game-instruction-list li .button {
  margin-right: 10px;
  cursor: initial;
}
.game .message-box .message-box__body .game-result {
  text-align: center;
}
.game .message-box .message-box__body .game-result .btn {
  width: 100%;
  max-width: 300px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.game .message-box .message-box__body .game-result .game-result__status {
  display: flex;
  flex-direction: column;
}
.game .message-box .message-box__body .game-result .game-final-score {
  display: flex;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  .game .message-box .message-box__body .game-result .game-final-score {
    flex-direction: column;
  }
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part {
  font-weight: 700;
  font-size: 2rem;
  white-space: nowrap;
  display: flex;
  line-height: 1;
  justify-content: center;
  padding: 1rem 5rem;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  .game .message-box .message-box__body .game-result .game-final-score .game-final-score-part {
    font-size: 2rem;
  }
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part.game-final-score-part--yours {
  position: relative;
}
@media screen and (max-width: 768px) {
  .game .message-box .message-box__body .game-result .game-final-score .game-final-score-part.game-final-score-part--yours:not(:only-child) {
    margin-bottom: 20px;
  }
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part.game-final-score-part--yours:not(:only-child):after {
  content: "VS";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  transition: transform 500ms ease;
}
@media screen and (max-width: 768px) {
  .game .message-box .message-box__body .game-result .game-final-score .game-final-score-part.game-final-score-part--yours:not(:only-child):after {
    width: 40px;
    height: 40px;
    top: 140%;
    right: 50%;
    font-size: 1.6rem;
  }
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part:first-child {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part:last-child {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.game .message-box .message-box__body .game-result .game-final-score .game-final-score-part:only-child {
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .game .message-box .message-box__body .game-result .game-final-score .game-final-score-part {
    border-radius: 100px;
  }
}
.game .message-box .message-box__body .game-result .game-result__highscore-wrapper {
  margin-bottom: 20px;
}
.game .message-box .message-box__body .game-result .game-result__highscore {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  margin: 0.5rem 0;
}
.game .message-box .message-box__body .game-result .game-result__highscore .highscore-handle {
  flex: 1;
  font-size: 1.6rem;
  border: none;
  background-color: transparent;
}
.game .message-box .message-box__body .game-result .game-result__highscore .highscore-handle:focus {
  outline: none;
}
.game .message-box .message-box__body .game-result .game-result__highscore .game-save-highscore {
  display: none;
  padding: 0 10px;
  width: auto;
  border-radius: 0;
}
.game .message-box .message-box__body .game-result .game-result__highscore .game-save-highscore:focus {
  outline: none;
}
.game .message-box .message-box__body .game-result .highscore-note {
  font-size: 0.9em;
}
.game .message-box .message-box__body .game-result .game-result__challenge {
  margin-bottom: 20px;
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants {
  position: relative;
  display: none;
  border-radius: 3px;
  margin: 2rem 0;
}
@media (max-width: 599px) {
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants {
    flex-direction: column;
  }
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants.game-challenge--init:before {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants:before {
  content: "VS";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
}
@media (min-width: 600px) {
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants:before {
    transition: transform 500ms ease;
  }
}
@media (max-width: 599px) {
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants:before {
    width: 100%;
    border-radius: 0;
    height: 40px;
  }
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input {
  flex: 1;
  font-size: 1.6rem;
  border: none;
  background-color: transparent;
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input:focus {
  outline: none;
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input#game-challenge--reciever {
  text-align: right;
}
@media (max-width: 599px) {
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input {
    text-align: center;
    padding: 10px;
  }
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input#game-challenge--challenger {
    margin-bottom: 20px;
  }
  .game .message-box .message-box__body .game-result .game-result__challenge .game-challenge-participants .game-challenge__input#game-challenge--reciever {
    margin-top: 20px;
    text-align: center;
  }
}
.game .message-box .message-box__body .game-result .game-result__challenge #start-challenge {
  display: none;
}
.game .message-box .message-box__body .game-result .game-result__challenge .game-challenge__sent {
  display: none;
  font-size: 2rem;
  font-weight: bold;
}
.game .message-box .message-box__body .game-result button.sweepstakes-cta {
  animation: pulse 2s infinite;
}
.game .message-box .message-box__body .game-highscore-list {
  width: 100%;
  font-size: inherit;
}
.game .message-box .message-box__body .game-highscore-list th,
.game .message-box .message-box__body .game-highscore-list td {
  padding: 2px 5px;
}
.game .message-box .message-box__body .game-highscore-list .highscore-list__rank {
  width: 10%;
}
.game .message-box .message-box__body .game-highscore-list .highscore-list__handle {
  width: 50%;
  font-weight: bold;
}
.game .message-box .message-box__body .game-highscore-list .highscore-list__points {
  width: 40%;
  text-align: right;
}