* {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Source Sans 3", Roboto, sans-serif;
}

/*=======================================================
App
=======================================================*/
#app {
  position: relative;
  overflow: hidden;
  height: 740px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#app .game {
  background-color: #69b1d3;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding-top: 4rem;
  box-sizing: border-box;
}
#app.loading {
  display: none;
}
#app header {
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: var(--header-bg-color);
}
#app footer {
  background-color: var(--footer-bg-color);
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 0;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
#app footer .stats span {
  white-space: nowrap;
}
#app footer .pair-count {
  float: right;
}

#app .panel::after {
  content: attr(data-text-original);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 50%;
}

#app .panel::before {
  content: attr(data-text-fake);
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 50%;
  z-index: 10;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

/*=======================================================
Image Pairs
=======================================================*/
.image-pair {
  position: relative;
  cursor: pointer;
}
.image-pair img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 0;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.image-pair .hit {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50% 50%;
  background-color: rgba(85, 153, 170, 0.4);
  opacity: 0;
  transform: translateX(-20px) translateY(-20px);
}
.image-pair .hit.found {
  opacity: 1;
}
@media screen and (orientation: landscape) {
  .image-pair.image-pair-alpha {
    border-right: 1px solid #fff;
  }
  .image-pair.image-pair-bravo {
    border-left: 1px solid #fff;
  }
}

/*=======================================================
Intro und Outro
=======================================================*/
.intro-outro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
  text-align: center;
}
.intro-outro h1 {
  
 
  font-size: 42px;
  margin-bottom: 20px;
  font-family: "Playfair Display";
}
.intro-outro p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}



/*=======================================================
Button
=======================================================*/
.btn-regular {
  color: #fff;
  background: #DC8036;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 20px;
  height: 60px;
  padding: 0 60px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  line-height: 60px;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}
.btn-regular:focus, .btn-regular:active {
  outline: none;
}
.btn-regular.btn-next-step {
  margin: 10px auto 30px auto;
  display: inline-block;
  text-decoration: none;
}

/*=======================================================
Modal
=======================================================*/
.modal-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: block;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.modal-wrapper.fade-enter-active {
  animation-name: fadeIn;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
  display: block;
}
.modal-wrapper.fade-leave-active {
  animation-name: fadeOut;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 1;
  display: block;
  z-index: 100;
}
.modal-wrapper .modal {
  color: #000;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: relative;
  margin: auto auto;
  width: 80%;
  display: block;
  top: 50%;
  padding: 10px 15px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.modal-wrapper .modal.slide-down-enter-active {
  top: -100%;
  animation-name: slideDown;
  animation-delay: 0.75s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.modal-wrapper .modal.slide-down-leave-active {
  animation-name: slideUp;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
.modal-wrapper .modal .btn-regular {
  position: relative;
  top: 25px;
}
.modal-wrapper .modal h1 {
  font-weight: 400;
}

/*=======================================================
Hit - Indicator
=======================================================*/
.stats {
  top: 0;
  position: absolute;
  text-align: center;
  background: #fff;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px;
  -webkit-border-radius: 0px 0px 8px 8px;
  box-shadow: 5px 5px 35px 0px rgba(0, 0, 0, 0.15);
}
.stats .stat-hit {
  width: 15px;
  height: 15px;
  margin: 3px 5px 1px 5px;
  display: inline-block;
  background: url("../assets/indicators.png") no-repeat center center;
  background-position: -15px 0;
  background-size: 30px 15px;
}
.stats .stat-hit.found {
  background-position: 0 0;
}
@media screen and (min-width: 768px) {
  .stats .stat-hit {
    width: 21px;
    height: 21px;
    background-position: -21px 0;
    background-size: 42px 21px;
  }
}

/*=======================================================
Switch - Buttons
=======================================================*/
footer .buttons {
  cursor: pointer;
  position: relative;
  height: 48px;
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  width: 100%;
  background: #6ec35b;
  background: linear-gradient(to right, #6ec35b, #3d7f2e);
  transition: background 0.5s;
  -moz-transition: background 0.5s;
  -webkit-transition: background 0.5s;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
footer .buttons.fake-visible {
  background: #e55d5d;
  background: linear-gradient(to right, #e55d5d, #c43434);
  transition: background 0.5s;
  -moz-transition: background 0.5s;
  -webkit-transition: background 0.5s;
}
footer .buttons.fake-visible .switch {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  right: calc(100% - 43px);
}
footer .buttons.fake-visible .switch:before {
  background-position: 0 0;
}
footer .buttons .switch {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
}
footer .buttons .switch:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  text-align: center;
  content: "";
  background: url("../assets/switch-arrow.png") no-repeat center center;
  background-position: -38px 0;
}
footer .buttons button {
  position: absolute;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  text-transform: uppercase;
}
footer .buttons button:focus, footer .buttons button:active {
  outline: none;
}
footer .buttons button:not([disabled]) {
  cursor: pointer;
  top: 0;
  z-index: 1;
  width: 48px;
  text-indent: -9999px;
}
footer .buttons button:not([disabled]).button-to-fake {
  right: 0;
}
footer .buttons button:not([disabled]).button-to-original {
  left: 0;
}
footer .buttons button:disabled {
  z-index: 0;
}

/*=======================================================
Keyframe Animations
=======================================================*/
@keyframes wobble-right {
  0% {
    right: 10px;
  }
  100% {
    right: 20px;
  }
}
@keyframes wobble-left {
  0% {
    left: 10px;
  }
  100% {
    left: 20px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideUp {
  0% {
    top: 50%;
  }
  100% {
    top: -100%;
  }
}
/*=======================================================
Media Queries
=======================================================*/
/* Portrait Ansicht - Mobile only */
@media screen and (orientation: portrait) {
  #app {
    max-width: 474px;
    width: 100%;
    /*height:100%;*/
    min-width: 320px;
    min-height: 320px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
  }
  #app .panel {
    width: 200%;
    height: 100%;
    /*overflow-x: scroll;*/
    overflow-x: hidden;
    position: relative;
    left: 0;
    transition: left 0.5s ease;
  }
  #app .panel::-moz-selection {
    background-color: transparent;
  }
  #app .panel::selection {
    background-color: transparent;
  }
  #app .panel.go-left {
    left: -100%;
  }
  #app .panel > div {
    width: 50%;
    float: left;
  }
  .game {
    background: #fff;
    border-radius: 0 0 29px 29px;
    -moz-border-radius: 0 0 29px 29px;
    -webkit-border-radius: 0 0 29px 29px;
  }
  .modal-wrapper {
    border-radius: 0 0 29px 29px;
    -moz-border-radius: 0 0 29px 29px;
    -webkit-border-radius: 0 0 29px 29px;
  }
  footer {
    padding: 10px;
  }
  footer .button-to-fake {
    float: right;
  }
}
/* Landscape Ansicht - Desktop only */
/*=======================================================
Old Browser (<IE 11) Fallbacks
=======================================================*/
.old-browser #app {
  display: none;
}

.old-browser #old-browser-fallback {
  display: block;
}

#old-browser-fallback,
noscript {
  display: none;
  width: 80%;
  margin: 10% auto;
  color: #555;
}

/*=======================================================
Footer
=======================================================*/
.footer-container {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  background-color: #f3f3f3;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 1px solid #cecece;
  border-top: 1px solid #fff;
}
.footer-container ul {
  margin: 6px 0px;
  padding-left: 0px;
  list-style: none;
}
.footer-container ul li {
  display: inline-block;
  padding: 0px 5px;
}
.footer-container ul li a {
  color: #999;
  text-decoration: none;
}/*# sourceMappingURL=stylesheet.css.map */