:root {
  --parallax-scale: {$parallax-scale};
}

.dark-background {
  background-color: rgba(0, 0, 0, 0.5019607843);
}

#ae-preview-big {
  background-image: url(../assets/backgrounds/bg-ae-level.png);
  background-size: cover;
  position: relative;
}

#ms-preview-big {
  background-image: url(../assets/backgrounds/bg-ae-level.png);
  background-size: cover;
  position: relative;
}

.extra-row-space .row + .row {
  margin-top: 1rem;
}

.toggle-game-button.btn {
  position: absolute;
  top: 40px;
  right: 10px;
  height: 50px;
}

.toggle-game-button.btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

#toggle-game-image {
  height: 40px;
}

#scroll-indicator-container {
  bottom: 80px;
}
#scroll-indicator-container > img {
  width: 60px;
}
#scroll-indicator-container > #scroll-indicator-arrow {
  animation: arrow-movement 2s linear infinite alternate;
}

.parallax-section {
  transform-origin: center top;
  transform: scaleY(0.9);
}
.parallax-section > * {
  transform-origin: center top;
  transform: scaleY(1.1111111111);
}

.parallax-content {
  position: relative;
  margin: -90vh auto 0;
}

.parallax-image {
  position: sticky;
  top: 64px;
  width: 100%;
  height: 100vh;
  z-index: -2;
}
.parallax-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
}
.parallax-image .dark-ribbon {
  position: relative;
  top: 0;
  left: 12.5%;
  width: 75%;
  height: 125%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5019607843);
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.timed-reveal {
  opacity: 0;
}

.timed-reveal.active {
  opacity: 1;
}

:not(.fade-out).active.fade-bottom {
  animation: fade-bottom 1s ease;
}

:not(.fade-out).active.fade-simple {
  animation: fade-simple 1s ease;
}

:not(.fade-out).active.fade-slow {
  animation: fade-simple 1.5s linear;
}

.profile-card > .card {
  border-left-style: solid !important;
  border-left: 3px;
  border-bottom: 0;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  border-color: #d83d00;
}
.profile-card > .card .card-body {
  height: 9em;
}
.profile-card > .card .card-subtitle {
  max-width: 75%;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.bg-profile {
  background-position: bottom left;
  background-repeat: no-repeat;
}

.bg-adam {
  background-image: url(../assets/profiles/portrait_adam.png);
}

.bg-anni {
  background-image: url(../assets/profiles/portrait_anni.png);
}

.bg-anton {
  background-image: url(../assets/profiles/portrait_anton.png);
}

.bg-basti {
  background-image: url(../assets/profiles/portrait_basti.png);
}

.bg-daan {
  background-image: url(../assets/profiles/portrait_daan.png);
}

.bg-daniel {
  background-image: url(../assets/profiles/portrait_daniel.png);
}

.bg-denis {
  background-image: url(../assets/profiles/portrait_denis.png);
}

.bg-fabian {
  background-image: url(../assets/profiles/portrait_fabian.png);
}

.bg-galina {
  background-image: url(../assets/profiles/portrait_galina.png);
}

.bg-jorge {
  background-image: url(../assets/profiles/portrait_jorge.png);
}

.bg-manoah {
  background-image: url(../assets/profiles/portrait_manoah.png);
}

.bg-malika {
  background-image: url(../assets/profiles/portrait_malika.png);
}

.bg-olga {
  background-image: url(../assets/profiles/portrait_olga.png);
}

.bg-steffen {
  background-image: url(../assets/profiles/portrait_steffen.png);
}

.faq-details {
  height: 500px;
  overflow: auto;
}

.bg-faq {
  background-image: url(../assets/backgrounds/bg-sky.png);
  background-size: cover;
  background-position: left bottom;
  transform: scaleY(-1);
}

.bg-faq > .faq-container {
  transform: scaleY(-1);
}
.bg-faq > .faq-container .accordion-item {
  background-color: rgba(33, 37, 41, 0.6274509804);
  border: 0;
}
.bg-faq > .faq-container .accordion-item .accordion-button.collapsed {
  background-color: rgba(33, 37, 41, 0.3137254902);
}
.bg-faq > .faq-container .accordion-item .accordion-button {
  background-color: #d83d00;
  color: #ffffff;
}
.bg-faq > .faq-container .nav-link {
  border-radius: 6px;
  border-color: rgba(216, 61, 0, 0);
  border-width: 2px;
  border-style: solid;
}
.bg-faq > .faq-container .nav-link:hover {
  border-radius: 6px;
  border-color: #d83d00;
  border-width: 2px;
  border-style: solid;
  color: #ffffff;
}
.bg-faq > .faq-container #faq-question-list > ul {
  border-radius: 6px;
}
.bg-faq > .faq-container #faq-answer-list {
  border-radius: 6px;
}

.dark-ribbon {
  position: absolute;
  top: 0;
  left: 12.5%;
  width: 75%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5019607843);
}

.shop-image {
  border-radius: 6px;
}

.offer-box {
  border-radius: 6px;
  background-color: #fcd6b9;
  color: #41302b;
  text-align: center;
  padding: 15px;
}

.offer-point {
  font-weight: bold;
  margin: 5px;
}

.offer-point-new {
  margin: 5px;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-simple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-movement {
  0% {
    top: 0px;
  }
  100% {
    top: 10px;
  }
}

/*# sourceMappingURL=moi-rai-main.css.map */
