* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --image-height: 474px;
}

body {
  margin: 0;
}

#rightcloud {
  margin: 0;
  padding: 0;
  height: 740px;
  max-height: 740px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  overflow: hidden;
}

@media screen and (max-height: 736px) {
  #rightcloud {
    height: 736px;
  }
}

@media screen and (max-height: 667px) {
  #rightcloud {
    height: 667px;
  }
}

@media screen and (max-height: 568px) {
  #rightcloud {
    height: 568px;
  }
}

.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 {
  list-style-type: none;
}

.footer-container ul li a {
  color: #999;
  text-decoration: none;
}

/*=======================================================
App
=======================================================*/
#app {
  position: relative;
  overflow: hidden;
}

#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;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

#app footer .stats span {
  white-space: nowrap;
}

#app footer .pair-count {
  float: right;
}

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

/*=======================================================
Scene
=======================================================*/
.game {
  padding-top: 4rem;
}

.scene {
  position: relative;
  cursor: pointer;
  max-width: 474px;
  margin: 0 auto;
}

.scene img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.scene .hit {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50% 50%;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.scene .hit.found {
  opacity: 1;
  background-image: url("../assets/found.png");
  background-size: contain;
}

/*=======================================================
Intro und Outro
=======================================================*/
.intro-outro {
  text-align: center;
}

.intro-outro h1 {
  width: 100%;
  font-family: 'Pacifico';
  font-weight: 400;
  color: #DE7335;
  font-size: 45pt;
  /*text-transform: uppercase;*/
  margin-top: 0px;
  padding-top: 130px;
  height: 130px;
}

.intro-outro p {
  padding-top: 70px;
  font-size: 25pt;
  color: #DE7335;
}

/*=======================================================
Button
=======================================================*/
.btn-regular {
  color: #fff;
  background: #DE7335;
  display: inline-block;
  margin: 0 auto;
  font-size: 20px;
  height: 200px;
  width: 200px;
  padding: 0px;
  font-size: 23pt;
  font-family: 'Pacifico';
  font-weight: 500;
  border: 0px;
  cursor: pointer;
  line-height: 30pt;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}

.btn-regular:focus, .btn-regular:active {
  outline: none;
}

.outro a {
  color: #DE7335;
  font-size: 23pt;
  font-family: 'Pacifico';
  font-weight: 500;
  margin-left: 20px;
}

/*=======================================================
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 {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  opacity: 0;
  display: block;
}

.modal-wrapper.fade-leave-active {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  opacity: 1;
  display: block;
  z-index: 100;
}

.modal-wrapper .modal {
  font-size: 22pt;
  overflow: block;
  color: #000;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: relative;
  margin: auto auto;
  width: 50%;
  display: block;
  top: 50%;
  padding: 10px 15px;
  padding-bottom: 50px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  vertical-align: center;
  text-align: center;
}

.modal-wrapper .modal.slide-down-enter-active {
  top: -100%;
  -webkit-animation-name: slideDown;
          animation-name: slideDown;
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.modal-wrapper .modal.slide-down-leave-active {
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.modal-wrapper .modal .btn-regular {
  position: relative;
  top: 25px;
  color: #fff;
  background: #DE7335;
}

.modal-wrapper .modal h1 {
  font-weight: 400;
}

/*=======================================================
Hit - Indicator
=======================================================*/
.stats {
  top: 0;
  position: absolute;
  text-align: center;
  background: transparent;
  left: 50%;
  width: 100%;
  max-width: 474px;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 2px 8px;
  padding-top: 2rem;
  /*border-radius: 0px 0px 8px 8px; 
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;*/
}

.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: #DE7335;
  transition: background .5s;
  -moz-transition: background .5s;
  -webkit-transition: background .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: -webkit-gradient(linear, left top, right top, from(#e55d5d), to(#c43434));
  background: linear-gradient(to right, #e55d5d, #c43434);
  transition: background .5s;
  -moz-transition: background .5s;
  -webkit-transition: background .5s;
}

footer .buttons.fake-visible .switch {
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .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 .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .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
=======================================================*/
@-webkit-keyframes wobble-right {
  0% {
    right: 10px;
  }
  100% {
    right: 20px;
  }
}
@keyframes wobble-right {
  0% {
    right: 10px;
  }
  100% {
    right: 20px;
  }
}

@-webkit-keyframes wobble-left {
  0% {
    left: 10px;
  }
  100% {
    left: 20px;
  }
}

@keyframes wobble-left {
  0% {
    left: 10px;
  }
  100% {
    left: 20px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 50%;
  }
}

@-webkit-keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 50%;
  }
}

@keyframes slideUp {
  0% {
    top: 50%;
  }
  100% {
    top: -100%;
  }
}

@-webkit-keyframes slideUp {
  0% {
    top: 50%;
  }
  100% {
    top: -100%;
  }
}

/*=======================================================
Media Queries
=======================================================*/
/* Portrait Ansicht - Mobile only */
@media screen and (orientation: portrait) {
  #app {
    max-width: 530px;
    width: 100%;
    height: 100%;
    min-width: 320px;
    min-height: 474px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    padding: calc(0 (100% - 474px) / 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /*background-color:rgba(0,0,0,0.3);*/
  }
  #app main {
    height: 100%;
    /*overflow-x: scroll;*/
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    left: 0;
    -webkit-transition: left .5s ease;
    transition: left .5s ease;
  }
  #app main::-moz-selection {
    background-color: transparent;
  }
  #app main::selection {
    background-color: transparent;
  }
  #app main.go-left {
    left: -100%;
  }
  .intro-outro {
    padding-bottom: 100px;
  }
  /*.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;
  }
  .modal {
    min-width: 320px;
  }
  .btn-regular {
    width: 150px;
    height: 150px;
  }
  footer {
    padding: 10px;
  }
  footer .button-to-fake {
    float: right;
  }
}

/* Landscape Ansicht - Desktop only */
@media screen and (orientation: landscape) {
  #app {
    width: 100%;
    height: 100%;
    min-width: 474px;
    min-height: 474px;
    display: block;
    margin: 0 auto;
    /*background-color:rgba(0,0,0,0.3);*/
  }
  /* Wrapper of Images Pairs */
  #app main {
    overflow: hidden;
    width: 474px;
    /*max-width:474px;*/
    margin: 0 auto;
    height: 100%;
    max-height: var(--image-height);
    position: relative;
  }
  footer .buttons {
    display: none;
  }
  .intro-outro h1 {
    /*padding: 0; */
    margin: 0;
  }
  .intro-outro p {
    /*padding:0; */
    margin: 0;
  }
}

@media screen and (orientation: landscape) and (max-width: 1280px) {
  .intro-outro h1 {
    height: 80px;
    padding-top: 0px;
  }
  .intro-outro p {
    font-size: 18pt;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .btn-regular {
    margin-top: 10px;
  }
}

@media screen and (orientation: portrait) and (max-width: 1280px) {
  .intro-outro h1 {
    font-size: 30pt;
    height: 100px;
    padding-top: 75px;
  }
  .intro-outro p {
    font-size: 20pt;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }
  /*.btn-regular {
		margin-top: -25px;
	}*/
}

@media (min-width: 1280px) {
  .intro-outro p {
    margin-top: 50px;
  }
  /*.intro-outro h1{
		font-size: 50pt;
	}*/
  .btn-regular {
    margin-top: 50px;
  }
}

@media screen and (orientation: landscape) and (min-width: 948px) {
  #app {
    max-width: 80%;
    /*max-height:600px;*/
  }
}

/*=======================================================
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;
}

.next-step {
  display: block;
  margin: 1rem 0 !important;
  color: #DE7335;
}
/*# sourceMappingURL=stylesheet.css.map */