@charset "UTF-8";
@keyframes animateBackground {
  from {
    background-position: -100% 100%;
  }
  to {
    background-position: 0 0;
  }
}
.faq-section {
  background-image: linear-gradient(360deg, #0D0B0F 0%, #1E1923 100%);
}

.newsletter-section {
  background: url(/assets/img/pattern-bg.png), linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  animation: animateBackground 40s linear infinite;
  background-size: 270px, 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 70px 0 126px;
  position: relative;
}
.newsletter-section .response-message {
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 32px;
  color: #fff;
  display: none;
}
.newsletter-section .response-message.success {
  background: #678452;
}
.newsletter-section .response-message.error {
  background: #f33f3f;
}
.newsletter-section h2 {
  font-size: 50px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.newsletter-section .subline {
  margin: 0;
  font-size: 30px;
  text-align: center;
}
.newsletter-section form {
  display: flex;
  flex-direction: column;
  max-width: 670px;
  width: 90%;
  font-size: 13px;
  margin: auto;
  color: #fff;
  padding: 30px 18px;
  border-radius: 11px;
  background-color: rgba(255, 255, 255, 0.1294117647);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  margin-top: 40px;
  text-align: center;
}
.newsletter-section form input[type=email] {
  font-size: 21px;
  border-radius: 4px;
  border: none;
  padding: 11px 14px;
  color: #000;
  margin-bottom: 9px;
}
.newsletter-section form button[type=submit] {
  margin-top: 20px;
  font-size: 21px;
  border-radius: 3px;
  border: none;
  padding: 11px;
  font-weight: normal;
  color: #000;
  width: 100%;
  background: #fff;
  height: auto;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s;
}
.newsletter-section form button[type=submit]:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 1100px) {
  .newsletter-section h2 {
    font-size: 40px;
  }
  .newsletter-section .subline {
    font-size: 22px;
  }
}
@media (max-width: 828px) {
  .newsletter-section {
    animation: animateBackground 10s linear infinite;
    background-size: 190px, 100%;
  }
  .newsletter-section h2 {
    font-size: 27px;
  }
  .newsletter-section .subline {
    font-size: 16px;
  }
}

/* jost-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/jost-v15-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/jost-v15-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/jost-v15-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/jost-v15-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body, html {
  padding: 0;
  margin: 0;
  background: #0D0B0F;
  color: #fff;
}

* {
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.6px;
}

.primary-button {
  background: #fff;
  padding: 10px 29px;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.5s;
}
.primary-button:hover {
  background-color: #000;
  color: #fff;
}

.subpage {
  width: 1200px;
  max-width: 90%;
  background: #fff;
  color: #000;
  margin: auto;
  border-radius: 6px;
  padding: 40px;
  border-bottom: 42px solid #2b2b2b;
}
.subpage * {
  letter-spacing: 0;
  line-height: 167%;
}
.subpage h1 {
  font-size: 41px;
}
.subpage h3 {
  font-size: 20px;
  margin: 10px 0;
}
.subpage h2 {
  text-align: left;
  font-size: 24px;
  margin: 0;
  margin-top: 50px;
}

.role {
  padding: 0 12px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  width: 7vw;
  align-items: center;
  height: 1.8vw;
  display: inline-block;
  overflow: hidden;
  font-weight: 500;
  vertical-align: bottom;
  border-radius: 4px;
  margin-left: 5px;
}

.role * {
  transition: transform 0.5s;
  animation: slide 7s infinite;
  display: block;
  text-align: center;
}

@keyframes slide {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-200%);
  }
  75% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(0%);
  }
}
.primary-header-button {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  box-shadow: 10px 2px 24px 0 rgba(0, 0, 0, 0.5);
  padding: 0.8vw 4vw;
  color: #fff;
  margin-top: 1vw;
  font-weight: 500;
  font-size: 0.8vw;
  display: inline-block;
  border-radius: 50px;
  transition: 0.5s;
  text-decoration: none;
}
.primary-header-button:hover {
  transform: translateY(-3px);
}

.page-wrapper {
  padding: 65px 6vw;
  color: #fff;
}

.scenario {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.scenario:after {
  background-image: linear-gradient(-52deg, rgba(223, 32, 63, 0.68) 45%, #2110b5 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  content: "";
}
.scenario .scenario-meta {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 65px 6vw;
  z-index: 3;
  display: flex;
}
.scenario .scenario-meta .meta {
  display: flex;
  width: 100%;
  margin: auto;
  justify-content: center;
  flex-direction: column;
}
.scenario .scenario-meta .primary-button {
  background: #fff;
  display: flex;
  padding: 11px 50px;
  align-items: center;
  color: #000;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.5s;
  justify-content: center;
}
.scenario .scenario-meta .primary-button:hover {
  background-color: #000;
  color: #fff;
}
.scenario .scenario-meta .secondary-button {
  border: 1px solid #fff;
  padding: 11px 50px;
  color: #fff;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.5s;
}
.scenario .scenario-meta .secondary-button:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.scenario .scenario-meta .buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.scenario .scenario-meta .szenario-info {
  width: 32vw;
  font-size: 0.9vw;
  font-weight: 300;
  line-height: 1.6vw;
}
.scenario .scenario-meta .meta-list {
  display: flex;
  list-style: none;
  margin: 40px 0px;
  font-weight: 500;
  gap: 5px;
  font-size: 1vw;
  padding: 0;
}
.scenario .scenario-meta .meta-list li {
  border-radius: 50px;
  padding: 6px 16px;
}
.scenario .scenario-meta .meta-list li.playtime {
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.scenario .scenario-meta .scenario-logo {
  width: 20vw;
}
.scenario video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
}
.scenario .video-play {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scenario .video-play:after {
  content: "Trailer ansehen";
  text-align: center;
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  color: white;
  margin-top: 187px;
}
.scenario .play-button {
  display: block;
  height: 220px;
  width: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(/assets/img/play-icon.png);
}
@media (max-width: 1100px) {
  .scenario {
    height: auto;
    background-image: linear-gradient(-52deg, rgba(223, 32, 63, 0.68) 45%, #2110b5 100%);
  }
  .scenario .scenario-meta {
    flex-wrap: wrap;
    justify-content: center;
    position: static;
    padding: 0;
  }
  .scenario .scenario-meta .primary-button, .scenario .scenario-meta .secondary-button {
    font-size: 16px;
  }
  .scenario .scenario-meta .play-button {
    height: 110px;
    width: 110px;
  }
  .scenario .scenario-meta .video-play:after {
    margin-top: 97px;
  }
  .scenario .scenario-meta .szenario-info {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 180%;
  }
  .scenario .scenario-meta .meta {
    text-align: center;
    align-items: center;
  }
  .scenario .scenario-meta .meta-list {
    font-size: 15px;
  }
  .scenario .scenario-meta .scenario-logo {
    width: 210px;
  }
  .scenario video {
    display: none;
  }
  .scenario:after {
    display: none;
  }
}
@media (max-width: 500px) {
  .scenario .scenario-meta .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .scenario .scenario-meta .video-play {
    margin-top: 36px;
  }
  .scenario .scenario-meta .primary-button, .scenario .scenario-meta .secondary-button {
    width: 100%;
  }
}

.scenario .scenario-box {
  width: 1120px;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 0 44px 1px rgba(0, 0, 0, 0.34);
  height: 590px;
  background-size: cover;
  background-position: center;
}

.page-header {
  padding: 65px 6vw;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background-image: linear-gradient(180deg, #1E1923 0%, #0D0B0F 100%);
  background-size: cover;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.mobile-nav-trigger {
  font-size: 31px;
  margin-left: 19px;
  display: none;
}

.mobile-nav {
  position: fixed;
  background: #fff;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 222;
  color: #000;
  display: none;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 20px;
  list-style: none;
  font-size: 6vw;
  gap: 30px;
}
.mobile-nav .games-dropdown {
  transition: 0.5s;
  padding: 17px;
  cursor: default;
}
.mobile-nav .games-dropdown a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.168627451);
}
.mobile-nav .games-dropdown a:last-child {
  border: none;
}
.mobile-nav .games-dropdown a .genre {
  display: block;
  font-size: 24px;
  text-align: left;
}
.mobile-nav .games-dropdown a img {
  width: 50px;
  border-radius: 5px;
}
.mobile-nav .foot-logo {
  margin-top: auto;
}
.mobile-nav .foot-logo img {
  width: 22px;
}

.close-mobile-nav {
  display: inline-block;
  margin: 50px 0;
}

.figures {
  position: absolute;
  top: 170px;
  right: 30px;
  z-index: 4;
  width: 40vw;
  animation: float 2s ease-in-out infinite;
}
@media (max-width: 1100px) {
  .figures {
    display: none;
  }
}

.page-header h1 {
  font-weight: 900;
  color: #fff;
  font-size: 3.5vw;
  margin-bottom: 0;
  margin-top: -20px;
}

.page-header h1 .highlight {
  font-weight: bold;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-45deg, #ffa63d, #ff3d77);
}

.page-header p {
  font-size: 0.9vw;
  color: #fff;
  width: 33vw;
  line-height: 1.8vw;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .page-header {
    text-align: center;
  }
  .page-header p {
    font-size: 17px;
    width: 100%;
    margin-bottom: 40px;
  }
  .page-header .role {
    height: 25px;
    width: 135px;
  }
  .page-header p:not(.head-pre) {
    max-width: 640px;
    line-height: 153%;
    margin: 10px auto;
  }
  .page-header h1 {
    font-size: 56px;
  }
  .page-header .mobile-nav {
    display: flex;
  }
  .page-header .mobile-nav.active {
    left: 0;
  }
  .page-header .mobile-nav-trigger {
    display: inline-block;
  }
  .page-header .topnav li:not(.logo-nav-item) {
    display: none;
  }
  .page-header .topnav .login-button {
    display: none;
  }
  .page-header .primary-header-button {
    font-size: 26px;
    margin-top: 30px;
  }
  .page-header .first-game {
    right: 50%;
    width: 520px;
    margin-right: -260px;
    bottom: 0px;
  }
}
@media (max-width: 828px) {
  .page-header {
    height: auto;
    gap: 130px;
    position: relative;
  }
  .page-header h1 {
    font-size: 7vw;
  }
  .page-header .role {
    height: 31px;
    width: 165px;
  }
  .page-header .head-pre {
    display: none;
  }
  .page-header p:not(.head-pre) {
    font-size: 20px;
    line-height: 193%;
  }
  .page-header .first-game {
    left: 5px;
    width: auto;
    right: 5px;
    bottom: 30px;
    margin: 0;
  }
  .page-header .primary-header-button {
    font-size: 20px;
    margin-top: 60px;
    width: 260px;
    padding: 15px;
  }
  .page-header .head-pre {
    font-size: 2vw;
  }
}
@media (max-width: 500px) {
  .page-header p:not(.head-pre) {
    font-size: 16px;
    line-height: 210%;
  }
  .page-header .role {
    margin-top: 10px;
  }
}

.head-pre {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 7.5px;
}

.page-header .logo {
  width: 211px;
  margin: 0 40px;
}

.page-header .topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header .topnav .fa-caret-down {
  font-size: 12px;
}
.page-header .topnav .with-dropdown:hover .games-dropdown {
  opacity: 1;
  pointer-events: all;
}
.page-header .topnav .games-dropdown {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: rgba(255, 255, 255, 0.79);
  padding: 17px;
  border-radius: 5px;
  box-shadow: 10px 2px 24px 0 rgba(0, 0, 0, 0.5);
}
.page-header .topnav .games-dropdown a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.168627451);
}
.page-header .topnav .games-dropdown a:last-child {
  border: none;
}
.page-header .topnav .games-dropdown a .genre {
  display: block;
  font-size: 14px;
}
.page-header .topnav .games-dropdown a img {
  width: 50px;
  border-radius: 5px;
}
.page-header .topnav.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  padding: 12px 30px;
  background-color: rgba(0, 0, 0, 0.13);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.page-header .topnav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: auto;
  padding: 0;
  align-items: center;
}

.page-header .topnav ul a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  text-decoration: none;
  transition: 0.5s;
  background-color: rgba(255, 255, 255, 0.78);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header .topnav ul a:hover {
  background-color: #fff;
}
.page-header .topnav ul .active a {
  background-color: #fff;
}

.centered-step {
  display: flex;
  justify-content: center;
  text-align: center;
}
.centered-step .step-indicator {
  margin: auto;
}

.trailer-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.831372549);
  z-index: 99;
  display: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.trailer-popup .trailer-wrapper {
  color: #fff;
  text-align: center;
  line-height: 27px;
}
.trailer-popup .load-trailer {
  background: #fff;
  color: #000;
  padding: 14px 50px;
  display: inline-block;
  border-radius: 2px;
  margin-top: 16px;
}
.trailer-popup .inner {
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 5vw;
}
.trailer-popup .inner iframe, .trailer-popup .inner object, .trailer-popup .inner embed {
  width: 900px;
  height: 500px;
  max-width: 100%;
}

.first-game {
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  right: 9vw;
  z-index: 99;
  color: rgba(255, 255, 255, 0.79);
  bottom: 10px;
  padding: 17px;
  border-radius: 5px;
  box-shadow: 10px 2px 24px 0 rgba(0, 0, 0, 0.5);
}

.explain-section {
  padding: 80px 0;
  background-image: linear-gradient(180deg, #0D0B0F 0%, #1E1923 100%);
}
.explain-section img {
  max-width: 100%;
}

.divider {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 90px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}
.divider .half {
  width: 50%;
  max-width: 680px;
}
.divider .half.align-half {
  display: flex;
}
.divider .half.align-middle {
  align-items: center;
  justify-content: center;
}
@media (max-width: 828px) {
  .divider .half {
    width: 100%;
  }
}

h2 {
  font-size: 2.4vw;
  text-align: center;
  margin-bottom: 80px;
  margin-top: 0;
}
@media (max-width: 828px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 27px;
  margin-bottom: 0px;
}

.step-description {
  margin: 6px auto;
  font-weight: 100;
  line-height: 173%;
  font-size: 16px;
  width: 90%;
  max-width: 490px;
}

.meeting-logos {
  width: 340px;
  margin-top: 20px;
}

.step-indicator {
  background-image: url(/assets/img/step-shape1.svg);
  background-repeat: no-repeat;
  width: 117px;
  height: 117px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  font-weight: bold;
  background-size: contain;
}
.step-indicator.shape-2 {
  background-image: url(/assets/img/step-shape2.svg);
}

.explain-section {
  color: #fff;
}
.explain-section .explain-wrapper {
  width: 1530px;
  margin: auto;
  max-width: 100%;
}
.explain-section .video-call {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap value as needed */
}
.explain-section .video-call video {
  width: calc(50% - 10px); /* Adjust the gap value as needed */
  box-sizing: border-box;
  border-radius: 9px;
}

a {
  color: currentColor;
  text-decoration: none;
}

.main-footer {
  padding: 47px 0 20px;
  position: relative;
}
@media (max-width: 800px) {
  .main-footer.promo-window-visible {
    padding-bottom: 190px;
  }
}
.main-footer:before {
  background: url(/assets/img/icon-white.svg);
  content: "";
  position: absolute;
  height: 64px;
  margin-left: -15px;
  top: -32px;
  left: 50%;
  width: 30px;
  background-size: 100%;
}
.main-footer ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  color: #fff;
  list-style: none;
  padding: 0 20px;
  margin: 0;
  flex-wrap: wrap;
}
.main-footer ul a {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-footer ul a:hover {
  background-image: linear-gradient(-45deg, #ffa63d, #ff3d77);
}
.main-footer .social-footer {
  font-size: 22px;
  margin-top: 15px;
}

.subpage-header {
  height: 220px;
}

.brimstone-theme {
  background: transparent !important;
}

.brimstone-theme-gradient {
  background-image: linear-gradient(0deg, rgba(20, 46, 108, 0) 0%, #08132e 43%, #ff004c 91%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1720px;
  z-index: -1;
  overflow: hidden;
}
.brimstone-theme-gradient video {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  opacity: 0.05;
}

.sherlock-theme-gradient {
  background-image: linear-gradient(0deg, rgba(20, 46, 108, 0) 0%, #08132e 43%, #bb5900 91%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1720px;
  z-index: -1;
  overflow: hidden;
}
.sherlock-theme-gradient video {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  opacity: 0.05;
}

.nightjump-theme-gradient {
  background-image: linear-gradient(0deg, rgba(20, 46, 108, 0) 0%, #08132e 43%, #171b24 91%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1720px;
  z-index: -1;
  overflow: hidden;
}
.nightjump-theme-gradient video {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  opacity: 0.05;
}

.halloween-theme-gradient {
  background-image: linear-gradient(0deg, rgba(30, 52, 103, 0) 0%, #08132e 43%, #145262 91%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1720px;
  z-index: -1;
  overflow: hidden;
}
.halloween-theme-gradient video {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  opacity: 0.05;
}

.play-trailer {
  background: #fff;
  color: #0c122d;
  padding: 12px 32px;
  border-radius: 4px;
  margin-top: 16px;
  display: inline-block;
  box-shadow: -4px -17px 24px 0 rgba(0, 0, 0, 0.24);
  transition: 0.5s;
}
.play-trailer:hover {
  color: #DC0041;
}

.game-header {
  text-align: center;
}

.description p {
  line-height: 180%;
}

.button-shiny {
  position: relative;
}
.button-shiny::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  opacity: 0.1;
  height: 100%;
  width: 100%;
  transform: skewX(-45deg);
  background: linear-gradient(to right, white, white 40px, transparent 40px);
  transform-origin: left bottom;
  animation: shine 7s ease-in infinite;
}
.button-shiny:hover:before {
  animation: shine 7s ease-in infinite;
}

@keyframes shine {
  0% {
    transform: skewX(-45deg) translateX(-100%);
  }
  20% {
    transform: skewX(-45deg) translateX(100%);
  }
  100% {
    transform: skewX(-45deg) translateX(100%);
  }
}
.new-label {
  display: block;
  text-transform: uppercase;
  width: 83px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  margin: auto;
  font-size: 19px;
  padding: 2px;
}

.ratings {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  margin-top: 16px;
  max-height: 1270px;
}
.ratings .meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.ratings .meta .highlight, .ratings .meta .difficulty {
  background: rgba(255, 255, 255, 0.1294117647);
  padding: 0 6px;
  border-radius: 3px;
}
.ratings .meta .highlight.easy, .ratings .meta .difficulty.easy {
  background: #1e7e5e;
}
.ratings .meta .highlight.normal, .ratings .meta .difficulty.normal {
  background: #b35031;
}
.ratings .meta .highlight.hard, .ratings .meta .difficulty.hard {
  background: #b63131;
}
@media (max-width: 700px) {
  .ratings .meta .date {
    position: absolute;
    top: 32px;
    right: 34px;
  }
}
.ratings .meta .right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-left: auto;
}
@media (max-width: 700px) {
  .ratings .meta .right {
    font-size: 13px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 18px;
  }
}

.rating-display {
  position: relative;
  margin: 20px auto;
  width: 158px;
  cursor: pointer;
}

.rating, .base-rating {
  font-size: 24px;
  color: #fff;
  display: flex;
  gap: 4px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.base-rating {
  position: absolute;
}

.rating {
  background-color: #fff;
}

.star-rating {
  width: 113px;
  position: relative;
}

.op-comment img {
  width: 30px;
  border-radius: 52px;
  display: inline-block;
  height: 30px;
  vertical-align: middle;
  margin-right: 6px;
}
.op-comment .op-head {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.0588235294);
}
.op-comment .op-answer {
  margin-top: 6px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.0588235294);
  padding: 11px 16px;
  margin-left: 39px;
  display: inline-block;
  border-radius: 4px;
}

.rating-row {
  background: rgba(255, 255, 255, 0.1098039216);
  border-radius: 7px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 29px;
  text-align: left;
  margin-bottom: 20px;
}
.rating-row .tester-label {
  position: absolute;
  top: 0;
  padding: 3px 13px;
  border-radius: 0 0 3px 3px;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  right: 30px;
  background: rgba(0, 0, 0, 0.2588235294);
  color: rgba(255, 255, 255, 0.4117647059);
}
.rating-row .base-rating {
  position: absolute;
  top: 0;
  z-index: -2;
  font-size: 17px;
  background-color: rgba(255, 255, 255, 0.368627451);
  background-image: none;
}
.rating-row .rating {
  width: 100%;
  font-size: 17px;
  margin: 4px 0 11px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #604eff 100%);
}
.rating-row .rating-text {
  font-size: 13px;
  font-weight: 100;
}

.game-detail-wrapper {
  position: relative;
}
.game-detail-wrapper .faq-list {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
}
.game-detail-wrapper h2 {
  width: 710px;
  max-width: 100%;
  text-align: left;
  font-size: 38px;
  margin-top: 70px;
  margin-bottom: 0;
}
@media (max-width: 828px) {
  .game-detail-wrapper h2 {
    font-size: 28px;
  }
}

.star::before {
  content: "\f005";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 40px;
  justify-content: space-between;
  margin-top: 60px;
}
.feature-list .icon {
  font-size: 41px;
  margin-bottom: 9px;
}
.feature-list p {
  font-size: 13px;
  font-weight: 100;
}
.feature-list li {
  width: 302px;
  text-align: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1098039216);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
@media (max-width: 828px) {
  .feature-list {
    justify-content: center;
  }
}

.game-meta {
  background: #fff;
  display: inline-block;
  color: #000;
  box-shadow: -4px -17px 24px 0 rgba(0, 0, 0, 0.24);
  border-radius: 7px;
  width: 100%;
  margin-top: 44px;
  margin-bottom: 40px;
  top: -1px;
  transition: 0.5s;
  font-size: 19px;
}
.game-meta .game-text {
  display: none;
}
.game-meta .price {
  font-size: 26px;
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}
.game-meta .buy-game {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  color: #fff;
  display: block;
  padding: 13px 62px;
  border-radius: 4px;
  overflow: hidden;
  font-size: 16px;
  transition: 0.5s;
}
.game-meta .buy-game:hover {
  opacity: 0.9;
}
.game-meta ul {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 20px 0;
  padding: 0 30px;
  align-items: center;
}
.game-meta ul li {
  text-align: center;
}
.game-meta ul li .label {
  font-weight: 300;
  font-size: 16px;
  color: #51525b;
}
@media (max-width: 990px) {
  .game-meta ul {
    flex-direction: column;
    gap: 30px;
  }
  .game-meta ul .button-col {
    order: -1;
  }
}
@media (min-width: 1100px) {
  .game-meta {
    position: sticky;
  }
  .game-meta.is-pinned {
    background-color: rgba(0, 0, 0, 0.46);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #fff;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.23);
  }
  .game-meta.is-pinned .game-text {
    display: block;
  }
  .game-meta.is-pinned .label {
    color: rgba(255, 255, 255, 0.64);
  }
  .game-meta.is-pinned .price-text {
    display: none;
  }
}

.poster-illustration {
  opacity: 0.5;
  position: absolute;
  right: 0;
  z-index: -1;
  margin-right: 3%;
}
@media (max-width: 1100px) {
  .poster-illustration {
    display: none;
  }
}

.fingerprints-illustration {
  opacity: 0.5;
  position: absolute;
  right: 0;
  z-index: -1;
  margin-right: 0;
}
@media (max-width: 1100px) {
  .fingerprints-illustration {
    display: none;
  }
}

.dude-illustration {
  opacity: 0.5;
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: 0;
}
@media (max-width: 1100px) {
  .dude-illustration {
    display: none;
  }
}

.chip-illustration {
  animation: float 2s ease-in-out infinite;
  position: absolute;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 1100px) {
  .chip-illustration {
    display: none;
  }
}

.teaser-videos {
  display: flex;
  gap: 10px;
  margin-bottom: 110px;
  flex-wrap: wrap;
}

.teaser-video {
  width: 290px;
  margin-bottom: 37px;
  border-radius: 6px;
  height: 162px;
  background: #272628;
  text-align: center;
  position: relative;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: 0.5s;
  cursor: pointer;
  background-position: -1px;
  background-size: 101% 102%;
}
.teaser-video:hover {
  border-color: #fff;
  background-size: 121% 122%;
  background-position: center;
}
.teaser-video i {
  font-size: 37px;
}
.teaser-video span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
}

.game-meta-wrapper {
  width: 1000px;
  max-width: 90%;
  margin: auto;
}

.game-detail h1 {
  font-size: 70px;
  text-align: center;
  margin-top: 0;
  padding: 0 15px;
}
.game-detail .game-cover {
  width: 310px;
  margin: auto;
  margin-top: 29px;
  display: block;
  box-shadow: -4px -17px 24px 0 rgba(0, 0, 0, 0.24);
  border-radius: 15px;
}
@media (max-width: 828px) {
  .game-detail .game-cover {
    width: 190px;
  }
  .game-detail h1 {
    font-size: 40px;
  }
}

.tickets {
  display: flex;
  justify-content: left;
  gap: 16px;
  flex-wrap: wrap;
}

.ticket {
  width: 400px;
  height: 775px;
  background-color: white;
  position: relative;
  color: #000;
  height: auto;
}
.ticket img {
  max-width: 100%;
  height: auto;
}
.ticket .holes-top {
  height: 50px;
  width: 50px;
  background-color: #0d0b0f;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: -25px;
}
.ticket .holes-top:before, .ticket .holes-top:after {
  content: "";
  height: 50px;
  width: 50px;
  background-color: #0d0b0f;
  position: absolute;
  border-radius: 50%;
}
.ticket .holes-top:before {
  left: -200px;
}
.ticket .holes-top:after {
  left: 200px;
}
.ticket .holes-lower {
  position: relative;
  margin: 25px;
  border: 1px dashed #aaa;
}
.ticket .holes-lower:before, .ticket .holes-lower:after {
  content: "";
  height: 50px;
  width: 50px;
  background-color: #0d0b0f;
  position: absolute;
  border-radius: 50%;
}
.ticket .holes-lower:before {
  top: -25px;
  left: -50px;
}
.ticket .holes-lower:after {
  top: -25px;
  left: 350px;
}
.ticket .title {
  padding: 50px 25px 10px;
}
.ticket .cinema {
  color: #aaa;
  font-size: 22px;
}
.ticket .btn-primary {
  width: 100%;
  border-radius: 0;
  background: #df1f3f;
  display: block;
  padding: 17px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  color: #fff;
  transition: 0.5s;
  text-align: center;
}
.ticket .btn-primary:hover {
  opacity: 0.9;
}
.ticket .movie-title {
  margin: 11px;
  font-size: 30px;
  font-weight: bold;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-45deg, #ffa63d, #ff3d77);
}
.ticket .info {
  padding: 15px 25px 0px;
}
.ticket table {
  width: 100%;
  font-size: 18px;
  margin-bottom: 15px;
}
.ticket table tr {
  margin-bottom: 10px;
}
.ticket table th {
  text-align: left;
}
.ticket table th:nth-of-type(1) {
  width: 38%;
}
.ticket table th:nth-of-type(2) {
  width: 40%;
}
.ticket table th:nth-of-type(3) {
  width: 15%;
}
.ticket table td {
  width: 33%;
  font-size: 17px;
}
.ticket .bigger {
  font-size: 48px;
}
.ticket .serial {
  padding: 25px;
}
.ticket .serial table {
  border-collapse: collapse;
  margin: 0 auto;
}
.ticket .serial td {
  width: 3px;
  height: 50px;
}
.ticket .numbers td {
  font-size: 16px;
  text-align: center;
}

.payment-success {
  text-align: center;
}
.payment-success h1 {
  width: 400px;
  margin: 20px auto 70px;
}
.payment-success .ticket {
  margin: auto;
  margin-bottom: 90px;
  text-align: left;
}
.payment-success .badge {
  background: #d7d7d7;
  color: #fff;
  padding: 6px 11px;
  color: #000;
  font-size: 14px;
  border-radius: 3px;
}

.icon-holder {
  background: rgba(255, 255, 255, 0.0901960784);
  width: 70px;
  text-align: center;
  height: 70px;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 30px;
}

.fireworks {
  position: absolute;
  height: 10px;
  width: 10px;
  animation: 5s position ease-out infinite;
}

.firework {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  left: 50%;
  offset-distance: 0;
  z-index: -1;
}
.firework:nth-of-type(0) {
  offset-path: path("M 0, 0 q 0, -23, -168, 50 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(1) {
  offset-path: path("M 0, 0 q 0, -47, -104, -299 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(2) {
  offset-path: path("M 0, 0 q 0, -28, -286, -104 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(3) {
  offset-path: path("M 0, 0 q 0, -28, 119, 94 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(4) {
  offset-path: path("M 0, 0 q 0, -15, 62, 299 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(5) {
  offset-path: path("M 0, 0 q 0, -34, 290, -31 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(6) {
  offset-path: path("M 0, 0 q 0, -6, 51, -27 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(7) {
  offset-path: path("M 0, 0 q 0, -29, -185, 230 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(8) {
  offset-path: path("M 0, 0 q 0, -42, -226, -44 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(9) {
  offset-path: path("M 0, 0 q 0, -39, -185, 242 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(10) {
  offset-path: path("M 0, 0 q 0, -25, 48, 21 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(11) {
  offset-path: path("M 0, 0 q 0, -44, -199, 181 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(12) {
  offset-path: path("M 0, 0 q 0, -8, -240, -52 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(13) {
  offset-path: path("M 0, 0 q 0, -25, 82, -273 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(14) {
  offset-path: path("M 0, 0 q 0, -5, -220, 242 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(15) {
  offset-path: path("M 0, 0 q 0, -29, 71, -3 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(16) {
  offset-path: path("M 0, 0 q 0, -31, -193, 158 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(17) {
  offset-path: path("M 0, 0 q 0, -44, -108, -228 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(18) {
  offset-path: path("M 0, 0 q 0, -1, 174, 184 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(19) {
  offset-path: path("M 0, 0 q 0, -32, -104, 115 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(20) {
  offset-path: path("M 0, 0 q 0, -22, -112, -174 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(21) {
  offset-path: path("M 0, 0 q 0, -29, 132, 222 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(22) {
  offset-path: path("M 0, 0 q 0, -1, -281, 247 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(23) {
  offset-path: path("M 0, 0 q 0, -30, 32, -246 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(24) {
  offset-path: path("M 0, 0 q 0, -6, 6, -160 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(25) {
  offset-path: path("M 0, 0 q 0, -5, 157, 193 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(26) {
  offset-path: path("M 0, 0 q 0, -39, -119, -40 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(27) {
  offset-path: path("M 0, 0 q 0, -43, -79, 118 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(28) {
  offset-path: path("M 0, 0 q 0, -1, -172, -135 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(29) {
  offset-path: path("M 0, 0 q 0, -3, -290, 216 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(30) {
  offset-path: path("M 0, 0 q 0, -25, 209, 203 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(31) {
  offset-path: path("M 0, 0 q 0, -1, -154, -145 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(32) {
  offset-path: path("M 0, 0 q 0, -17, -75, 59 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(33) {
  offset-path: path("M 0, 0 q 0, -28, 93, 49 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(34) {
  offset-path: path("M 0, 0 q 0, -19, 66, -168 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(35) {
  offset-path: path("M 0, 0 q 0, -44, -11, 219 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(36) {
  offset-path: path("M 0, 0 q 0, -47, 263, 216 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(37) {
  offset-path: path("M 0, 0 q 0, -42, 212, -189 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(38) {
  offset-path: path("M 0, 0 q 0, -21, -155, 252 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(39) {
  offset-path: path("M 0, 0 q 0, -8, 190, 42 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(40) {
  offset-path: path("M 0, 0 q 0, -31, -246, -202 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(41) {
  offset-path: path("M 0, 0 q 0, -5, -280, -292 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(42) {
  offset-path: path("M 0, 0 q 0, -19, 70, 217 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(43) {
  offset-path: path("M 0, 0 q 0, -18, -107, -150 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(44) {
  offset-path: path("M 0, 0 q 0, -29, 173, 292 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(45) {
  offset-path: path("M 0, 0 q 0, -47, 15, 26 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(46) {
  offset-path: path("M 0, 0 q 0, -1, 179, 82 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(107, 255, 199.352);
}
.firework:nth-of-type(47) {
  offset-path: path("M 0, 0 q 0, -3, 242, 266 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(48) {
  offset-path: path("M 0, 0 q 0, -34, -89, 5 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}
.firework:nth-of-type(49) {
  offset-path: path("M 0, 0 q 0, -48, 171, -180 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(102.6, 225, 254.4);
}
.firework:nth-of-type(50) {
  offset-path: path("M 0, 0 q 0, -11, 242, 141 ");
  animation: 1s scatter ease-out infinite;
  background: rgb(236.2047244094, 119.7952755906, 139.1968503937);
}

@keyframes scatter {
  0% {
    offset-distance: 0%;
  }
  50% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes position {
  0%, 19.9% {
    transform: translate(10vw, 40vh);
  }
  20%, 39.9% {
    transform: translate(40vw, 30vh);
  }
  40%, 59.9% {
    transform: translate(20vw, 90vh);
  }
  60%, 79.9% {
    transform: translate(30vw, 20vh);
  }
  80%, 99.9% {
    transform: translate(80vw, 50vh);
  }
}
.faq-list {
  list-style: none;
  padding: 0;
  max-width: 910px;
  margin: auto;
}

.faq {
  margin-bottom: 20px;
  border-radius: 5px;
}
.faq .fas {
  margin-right: 7px;
}

.faq .question {
  cursor: pointer;
  padding: 10px;
  background: rgba(242, 242, 242, 0.1490196078);
  transition: 0.5s;
  border-radius: 50px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.0196078431) 100%);
}
.faq .question:hover {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
}

.faq .answer {
  display: none;
  padding: 10px;
}

.features-section {
  background-image: linear-gradient(118deg, rgb(223, 32, 63) 10%, #2110b5 100%);
}
.features-section .feature-list {
  margin-top: 0;
  margin-bottom: 0;
  justify-content: center;
}

.about-h3 {
  font-size: 1.7vw;
}

.about-p {
  width: 30vw;
  font-size: 0.8vw;
  line-height: 210%;
  color: rgba(255, 255, 255, 0.8588235294);
  font-weight: 300;
}
.about-p a {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  background: rgba(0, 0, 0, 0.77);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}

.cookie-popup {
  width: 800px;
  z-index: 999999;
  background: #fff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  margin-top: -209px;
  left: 50%;
  margin-left: -400px;
  padding: 30px;
}
.cookie-popup .buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 7px;
}
.cookie-popup .buttons .set-cookies {
  display: inline-block;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 23px;
  border-radius: 3px;
  margin-right: 10px;
}
.cookie-popup .buttons .set-all-cookies {
  display: inline-block;
  color: #fff;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 56px;
  border-radius: 3px;
  transition: 0.5s;
}
.cookie-popup .buttons .set-all-cookies:hover {
  background-image: linear-gradient(-52deg, rgb(236, 59, 88) 10%, #4737d4 100%);
}
.cookie-popup .options {
  display: flex;
  justify-content: space-between;
  margin-top: 49px;
  flex-wrap: wrap;
}
.cookie-popup .options .option {
  position: relative;
}
.cookie-popup .options .option .disabled {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cookie-popup .option {
  position: relative;
  color: #000;
}
@media (max-width: 870px) {
  .cookie-popup {
    width: auto;
    left: 20px;
    margin-left: auto;
    right: 20px;
    margin-top: 0;
    top: 20px;
    position: absolute;
  }
  .cookie-popup .explain-notice {
    font-size: 12px;
  }
  .cookie-popup .options {
    margin-top: 28px;
  }
  .cookie-popup .head {
    margin-top: -9px;
    padding-bottom: 15px;
  }
  .cookie-popup .set-cookies, .cookie-popup .set-all-cookies {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .cookie-popup .buttons {
    margin-top: 10px !important;
  }
  .cookie-popup .option {
    width: 100%;
    margin-bottom: 10px;
  }
}

.head {
  font-size: 25px;
  color: #05164D;
  font-weight: 700;
  padding-bottom: 19px;
  border-bottom: 1px solid #dedede;
}

.explain-notice {
  font-size: 14px;
  line-height: 166%;
  margin-top: 26px;
  color: #171b33;
}

.ody-checkbox-el {
  width: 30px;
  height: 30px;
  padding-top: 8px;
}

.imprint-link {
  margin-right: auto;
  margin-top: 16px;
  color: #636b82;
}

a {
  text-decoration: none;
}

.ody-checkbox {
  display: none;
}

.ody-checkbox-label img {
  width: 15px;
  vertical-align: middle;
  margin-right: 3px;
}

.ody-checkbox-el {
  display: inline-block;
  border: 1px solid #bbc1d5;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 0;
  text-align: center;
  padding-top: 3px;
  cursor: pointer;
}
.ody-checkbox-el:hover {
  border-color: #000;
}
.ody-checkbox-el i {
  color: #000 !important;
  margin: 0 !important;
}

.ody-checkbox:checked + label .ody-checkbox-el {
  font-size: 10px;
}

.workstage {
  position: absolute;
  right: -180px;
  top: 0px;
  width: 60vw;
  opacity: 0.5;
}
@media (max-width: 1097px) {
  .workstage {
    position: static;
    width: 100%;
    margin-top: -230px;
  }
}

.inline-image {
  float: left;
  width: 20vw;
}

.with-image {
  width: 40vw;
}

.about-page {
  overflow-x: hidden;
}

@media (max-width: 1097px) {
  .about-p {
    font-size: 15px;
    width: 80%;
  }
  .about-h3 {
    font-size: 30px;
  }
  .with-image {
    width: 100%;
  }
  .inline-image {
    width: 290px;
  }
  .about-page .page-wrapper {
    padding: 0 6vw 10px;
    color: #fff;
  }
}
@media (max-width: 548px) {
  .about-p {
    font-size: 15px;
    width: 100%;
  }
  .about-h3 {
    font-size: 30px;
  }
  .with-image {
    width: 100%;
  }
  .inline-image {
    width: 100%;
    float: none;
    margin: 10px 0;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.screens-slider img {
  width: 100%;
  margin-top: 20px;
  border-radius: 9px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1803921569);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 100px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 78px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fff;
}

.slider-nav img {
  width: 92%;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4784313725);
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "\f0a8";
}

[dir=rtl] .slick-prev:before {
  content: "\f0a9";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "\f0a9";
}

[dir=rtl] .slick-next:before {
  content: "\f0a8";
}

.compare {
  width: 100%;
  position: relative;
  margin: 57px 0 90px;
  min-width: 790px;
}
.compare i {
  font-size: 26px;
}
.compare .fill {
  position: relative;
}
.compare tr td, .compare tr th {
  transition: 0.5s;
}
.compare tr:hover td, .compare tr:hover th {
  background: rgba(255, 255, 255, 0.1098039216);
}
.compare .filler {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
  border-radius: 13px;
  height: 547px;
}
.compare td {
  text-align: center;
}
.compare th {
  padding-block-start: 25px;
  padding-block-end: 25px;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 11px;
  flex-direction: column;
}

.player-count {
  width: 130px;
  text-align: center;
  padding: 7px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3490196078);
}

@media (max-width: 900px) {
  .table-wrapper {
    width: 100%;
    overflow: scroll;
  }
}
.slider {
  width: 300px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #272628;
  color: #fff;
  border-radius: 30px;
  height: 20px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  overflow: visible;
  cursor: pointer;
}

.price {
  margin-top: 20px;
}

.support-mails {
  max-width: 100%;
  width: 730px;
  margin: auto;
  text-align: center;
}

.email {
  width: 260px;
  text-align: center;
  display: block;
  padding: 17px;
  border-radius: 4px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 8px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
}

.info-box {
  background: rgba(255, 255, 255, 0.1098039216);
  padding: 28px;
  border-radius: 2px;
  max-width: 740px;
  margin: auto;
  display: flex;
  gap: 11px;
}
.info-box i {
  font-size: 30px;
  margin-top: 9px;
  float: left;
}
@media (max-width: 850px) {
  .info-box {
    line-height: 160%;
  }
  .info-box i {
    float: none;
    display: block;
    margin-bottom: 18px;
  }
}

#loader-el {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  background: rgba(0, 0, 0, 0.61);
  top: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.promo-action {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.768627451);
  width: 380px;
  text-align: center;
  border-radius: 7px;
  color: #fff;
  padding: 10px 30px;
  z-index: 99;
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 10px 2px 24px 0 rgba(0, 0, 0, 0.5);
  max-width: 88vw;
}
.promo-action .promo-action-button {
  display: block;
  padding: 14px;
  margin-top: 10px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  border-radius: 4px;
}
.promo-action .code {
  padding: 10px;
  border: 3px dashed #fff;
}
.promo-action .close-promo {
  position: absolute;
  right: 17px;
  top: 11px;
}
.promo-action .discount {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 30px;
  justify-content: center;
  position: absolute;
  align-items: center;
  top: -32px;
  left: 50%;
  margin-left: -30px;
  border-radius: 50%;
}
@media (max-width: 800px) {
  .promo-action p {
    display: none;
  }
  .promo-action h3 {
    font-size: 22px;
  }
  .promo-action .code {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    border: 3px dashed #fff;
  }
}

.gift-info {
  margin: auto;
  width: 580px;
  text-align: center;
  background: rgba(255, 255, 255, 0.0784313725);
  padding: 20px;
  margin-top: 30px;
  line-height: 28px;
  margin-bottom: 70px;
  padding-top: 43px;
  border-radius: 5px;
  position: relative;
}
.gift-info .gift-icon {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 30px;
  justify-content: center;
  position: absolute;
  align-items: center;
  top: -32px;
  left: 50%;
  margin-left: -30px;
  border-radius: 50%;
}

.personalized-fields {
  width: 500px;
  margin: 30px auto;
}
.personalized-fields input {
  background: #ffffff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 19px;
  border-radius: 6px;
}
.personalized-fields label {
  margin-bottom: 10px;
  display: block;
}
.personalized-fields .button {
  text-decoration: none;
  display: block;
  padding: 14px;
  margin-top: 10px;
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  border-radius: 4px;
  text-align: center;
}

.download-gift {
  filter: blur(18px);
}
.download-gift.data-set {
  filter: none;
}

.alderbrook-login {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.alderbrook-login svg {
  height: 210px;
}
.alderbrook-login .error {
  background: #cd3939;
  border-radius: 2px;
  padding: 9px;
}
.alderbrook-login label {
  display: block;
}
.alderbrook-login form {
  background: rgba(255, 255, 255, 0.0705882353);
  padding: 14px;
  border-radius: 3px;
  text-align: center;
  max-width: 490px;
  margin: 28px auto;
}
.alderbrook-login input[type=text] {
  padding: 10px;
  width: 100%;
  margin: 9px 0;
  text-align: center;
}
.alderbrook-login input[type=submit] {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: none;
  cursor: pointer;
}
.alderbrook-login .legal-row {
  display: flex;
  list-style: none;
  gap: 17px;
  color: rgba(255, 255, 255, 0.3803921569);
  padding: 0;
}

.gift-step {
  margin-top: 90px;
}

.gift-teaser {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
  padding: 20px 30px;
  border-radius: 9px;
  margin-top: 70px;
}
.gift-teaser h2 {
  margin: 0;
}
.gift-teaser .button {
  display: inline-block;
  background: #fff;
  padding: 12px 32px;
  color: #000;
  border-radius: 4px;
}

.load-more {
  width: 200px;
  display: block;
  margin: auto;
  background: #272628;
  text-align: center;
  padding: 9px;
  border-radius: 4px;
}

.stream-dummy {
  max-width: 100%;
  width: 950px;
  margin: auto;
  margin-top: -150px;
  position: relative;
}
.stream-dummy .stream {
  background: #333038;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}
.stream-dummy .stream video {
  width: 100%;
}
.stream-dummy .stream-meta {
  display: flex;
  background: rgba(36, 32, 44, 0.7490196078);
  padding: 12px 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  width: 100%;
  bottom: 0;
}
.stream-dummy .stream-meta .profile-picture {
  background: rgba(255, 255, 255, 0.1411764706);
  width: 40px;
  height: 40px;
  border-radius: 44px;
}
.stream-dummy .stream-meta .profile-picture img {
  width: 100%;
  border-radius: 44px;
}
.stream-dummy .stream-meta .name-line {
  display: flex;
  gap: 19px;
  height: 63px;
  justify-content: center;
}
.stream-dummy .stream-meta .live {
  position: absolute;
  background: #e91916;
  padding: 1px 10px;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 12px;
  bottom: 10px;
  left: 18px;
  display: inline-block;
  animation: glowing 1250ms infinite;
  animation-direction: alternate;
}
.stream-dummy .stream-meta .viewer {
  margin-left: auto;
  padding-top: 19px;
  color: #ff8280;
}
.stream-dummy .stream-meta .stream-category {
  color: #bf94ff;
  font-size: 14px;
}

.centered-features {
  justify-content: center;
}

.streamer-program {
  background-image: linear-gradient(-52deg, rgb(223, 32, 63) 10%, #2110b5 100%);
}
.streamer-program .compare {
  max-width: 520px;
  margin: 40px auto;
  min-width: auto;
}
.streamer-program .compare td {
  padding: 21px;
}
.streamer-program .compare th {
  background-color: rgba(255, 255, 255, 0.1098039216);
}
@media (max-width: 1097px) {
  .streamer-program {
    padding-top: 50px;
    margin-bottom: 50px;
  }
}

.streamer-notice {
  margin-bottom: 59px;
}

.pag {
  width: 50px;
  vertical-align: text-top;
}

.twitch-cats {
  width: 720px;
  margin: 70px auto;
  display: block;
  max-width: 100%;
  border-radius: 0px;
}

.live-dot {
  background-color: #FF0000;
  width: 18px;
  height: 18px;
  border-radius: 34px;
  vertical-align: middle;
  display: inline-block;
  margin-top: -10px;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 0px #FF0000;
  }
  100% {
    box-shadow: 0 0 8px #FF0000;
  }
}
.glow {
  animation: glowing 1250ms infinite;
  animation-direction: alternate;
}

.timeline {
  display: flex;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3098039216);
  justify-content: space-around;
  margin-bottom: 180px;
}
.timeline li {
  text-align: center;
}
.timeline .game-cover {
  width: 110px;
  transition: 0.5s;
  border-radius: 10px;
}
.timeline .game-cover:hover {
  transform: scale(1.2);
}
.timeline .timeline-marker {
  background: #767676;
  width: 2px;
  height: 10px;
  display: inline-block;
}

/*# sourceMappingURL=landings.css.map*/