@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Righteous&display=swap");
/*
Old Sizes
$sizes: (
  small: 540px,
  medium: 720px,
  large: 960px,
  xlarge: 1140px,
); 
*/
.text-header {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 6.5em;
  line-height: 1.15em;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.text-header span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .text-header {
    font-size: 4.5em;
  }
}
@media screen and (max-width: 576px) {
  .text-header {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  .text-header + p {
    font-size: 1em !important;
  }
}
@media screen and (max-width: 576px) {
  .text-header + p {
    font-size: 0.85em !important;
  }
}

h3 {
  margin: 2rem 0rem 1rem;
  font-size: 1.75em;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

:root {
  --color-primary-0: #d2cefc;
  --color-primary-50: #b7b0fa;
  --color-primary-100: #9d92f8;
  --color-primary-200: #8274f7;
  --color-primary-300: #6757f5;
  --color-primary-400: #4c39f3;
  --color-primary-500: #260ff0;
  --color-primary-600: #1f0cc6;
  --color-primary-700: #18099c;
  --color-primary-800: #120771;
  --color-primary-900: #0b0447;
  --color-neutral-0: #cbcbcb;
  --color-neutral-50: #acacac;
  --color-neutral-100: #8d8d8d;
  --color-neutral-200: #6e6e6e;
  --color-neutral-300: #4f4f4f;
  --color-neutral-400: #303030;
  --color-neutral-500: #292929;
  --color-neutral-600: #222222;
  --color-neutral-700: #1a1a1a;
  --color-neutral-800: #131313;
  --color-neutral-900: #0c0c0c;
  --color-white-0: #efefef;
  --color-white-50: #e5e5e5;
  --color-white-100: #dbdbdb;
  --color-white-200: #d1d1d1;
  --color-white-300: #c7c7c7;
  --color-white-400: #bdbdbd;
  --color-white-500: #a1a1a1;
  --color-white-600: #848484;
  --color-white-700: #686868;
  --color-white-800: #4c4c4c;
  --color-white-900: #2f2f2f;
}

/* ------------ 
# Scrollbar
------------ */
html {
  scrollbar-color: none;
  scrollbar-width: none;
  margin: 0;
  scroll-behavior: smooth;
}

div,
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 0px;
}

html ::-webkit-scrollbar {
  width: 0px;
  scrollbar-width: none;
}

html ::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track-piece {
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

html ::-webkit-scrollbar-thumb {
  background-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  margin-block-start: 0;
  padding-inline-start: 0;
}

a {
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-color: white;
  color: var(--color-neutral-100);
}

h1 {
  font-size: 2em;
  color: white;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.25em;
  color: white;
  font-weight: 600;
}

.accordion-container {
  background-color: var(--color-neutral-400);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.25s ease-in;
  margin: 4px 0px;
  width: 100%;
}
.accordion-container:hover {
  transform: scale(1.01);
}

.accordion {
  background-color: var(--color-neutral-400);
  color: var(--color-white-400);
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.accordion.active, .accordion:hover {
  background-color: var(--color-primary-400);
}
.accordion + .panel {
  display: none;
  opacity: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  padding: 0.5rem 1rem;
  color: var(--color-white-400);
  background-color: var(--color-neutral-300);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
}

html {
  --delay: 0s;
}

body {
  background: var(--color-neutral-0);
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-attachment: fixed;
  scroll-behavior: smooth;
}

p {
  margin: 0;
}

.backdrop {
  background: var(--color-neutral-800);
  padding-bottom: 7rem;
}

nav.nav-top {
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 100%;
  max-height: 5rem;
  min-height: 5rem;
  z-index: 10;
}
nav.nav-top.bgnabled {
  background: var(--color-primary-400);
}
nav.nav-top .logo {
  align-items: center;
  display: inline-flex;
  height: 55px;
  justify-content: center;
}
nav.nav-top .logo #imgcon .first {
  visibility: visible;
  opacity: 1;
  display: inline;
}
nav.nav-top .logo #imgcon .second {
  visibility: hidden;
  opacity: 0;
  display: none;
}
nav.nav-top .logo #imgcon.display .first {
  visibility: hidden;
  opacity: 0;
  display: none;
}
nav.nav-top .logo #imgcon.display .second {
  visibility: visible;
  opacity: 1;
  display: inline;
}
nav.nav-top .nav-top-container {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0rem 50px;
  max-width: 1050px;
  width: 100%;
  justify-content: space-between;
}
nav.nav-top .nav-toggle {
  display: none;
}
@media screen and (max-width: 992px) {
  nav.nav-top .nav-toggle {
    display: block;
  }
}
nav.nav-top img {
  height: 100%;
  max-width: 12rem;
}
nav.nav-top ul {
  align-items: center;
  display: inline-flex;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
  padding: 0;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 992px) {
  nav.nav-top ul {
    display: none;
  }
}
nav.nav-top ul li {
  margin: 0rem 0.15rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
nav.nav-top ul li a {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-white-400);
  text-decoration: none;
  transition: all 0.25s ease-out;
  letter-spacing: 0.05em;
}
nav.nav-top ul li a .icon {
  transition: all 0.25s ease-out;
}
nav.nav-top ul li.active .icon {
  color: var(--color-primary-500);
}
nav.nav-top ul li.active a {
  color: var(--color-white-0);
}
nav.nav-top ul li:hover {
  transform: translateY(-2px);
}
nav.nav-top ul li:hover .icon {
  color: var(--color-primary-500);
}
nav.nav-top ul li:hover a {
  color: var(--color-white-0);
}

.footer {
  margin-top: 4rem;
  background: var(--color-neutral-800);
  padding: 6rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  bottom: 0;
  color: var(--color-white-300);
}
.footer .footer-links {
  text-align: center;
}

.alert {
  z-index: 1000;
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  background: var(--color-primary-400);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 15px 15px -5px #2b2b2b34;
}
.alert p {
  color: var(--color-white-50);
}
.alert-close {
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.alert-content {
  padding: 1rem 1.5rem 1rem 1rem;
}
.alert .loadingbar {
  width: 100%;
  height: 0.5rem;
  background: var(--color-white-50);
  animation: fillup 3s 0.5s both;
}
@keyframes fillup {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.container {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  transition: margin 0.25s ease-in;
}
@media (min-width: 576px) {
  .container {
    max-width: 530px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1050px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 2fr));
  grid-auto-rows: minmax(30px, auto);
  gap: 12px;
  grid-auto-flow: dense;
}
.grid.fix {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  .grid.fix {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .grid.fix {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid .box,
.grid .credit,
.grid .withdraw-card {
  grid-column-end: span 2;
}
.grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.flex.center {
  justify-content: center;
}

.spacer {
  margin: 1rem 0rem;
}

.categories {
  color: var(--color-neutral-700);
  justify-content: space-between;
  margin: 1rem 0rem;
  font-weight: 500;
}
.categories .right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  grid-auto-rows: minmax(30px, auto);
  gap: 12px;
  grid-auto-flow: dense;
}
.categories .right .btn {
  display: grid;
  align-items: center;
  padding: 0.5rem;
  grid-column-end: span 1;
}
.categories .left {
  position: relative;
  margin-bottom: 0.25rem;
}
.categories .left span {
  position: absolute;
  top: -13px;
  left: 35px;
}
.categories .left p {
  font-size: 1.5em;
}
.categories .left h1{
  font-size: 1.5em;
  color: var(--color-neutral-700);
  font-weight: 500;
  margin-bottom: 0;
}

.flex .title {
  margin-bottom: 0.5rem;
}
.flex .title p {
  color: var(--color-neutral-0);
  font-size: 1.5em;
  font-style: italic;
}
.flex.padding {
  padding: 0rem 1.5rem;
}

.icons {
  /* Flex Settings */
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  z-index: 1;
  color: var(--color-white-200);
}
.icons:hover {
  transition: all 0.05s ease-in;
  transform: translateY(-2px);
}
.icons-image {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}
.icons-text {
  padding: 1rem 0rem;
}
.icons-text span {
  text-transform: uppercase;
  color: var(--color-primary-400);
  font-size: 1.4em;
  font-weight: 600;
}

.box {
  /* Flex Settings */
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  border-radius: 0.75rem;
  z-index: 1;
  transition: transform 0.05s ease-in-out;
  color: var(--color-white-200);
  cursor: pointer;
}
.box:hover .box-image {
  transform: scale(1.02);
  box-shadow: 0px 15px 15px -5px #2b2b2b34;
  transition: all 0.1s ease-in;
}
.box-header {
  position: relative;
  padding: 0.5rem 0.5rem 0rem;
}
.box-image {
  position: relative;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 0.5rem;
  max-height: 250px;
  box-shadow: 0px 5px 15px -5px #2b2b2b34;
}
.box-image img,
.box-image video {
  position: absolute;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-style: none;
  transition: transform 0.2s cubic-bezier(0.65, 0.6, 0.65, 1);
}
.box-content {
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0.5rem 0.5rem;
  position: relative;
  border-radius: 0 0 8px 8px;
}
.box-content-title {
  font-size: 1em;
  color: var(--color-neutral-800);
  text-transform: uppercase;
  margin-bottom: 0rem;
}

.center p,
.center h1,
.center h2,
.center h3,
.center h4,
.center h5 {
  text-align: center;
}
.center .banner-content {
  align-items: center;
  justify-content: center;
}

.banner {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  margin: 2rem 0rem;
  justify-content: center;
  border-radius: 8px;
}
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
.banner-content + .banner-content {
  margin-left: 1rem;
}
.banner-content p {
  font-weight: 300;
  font-size: 1.5rem;
  color: white;
  margin: 0.5rem 0 1rem 0;
}
.banner-content p span {
  color: var(--color-primary-400);
}
.banner-image {
  position: relative;
  max-width: 70%;
  /* &::after {
      content: ' ';
      display: block;
      background: var(--color-green-400);
      background: linear-gradient(90deg, var(--color-green-400) 15%, rgba(0, 0, 0, 0) 50%);
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
  } */
}
.banner-image img {
  border-radius: 0;
  object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

[showmore=website],
[showmore=logo],
[showmore=image],
[showmore=ident],
[showmore=steam-artwork] {
  display: none !IMPORTANT;
  visibility: hidden;
  opacity: 0;
}

.more {
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.65, 0.6, 0.65, 1);
}
.more:hover {
  color: var(--color-neutral-900);
}

#webspace {
  margin: 4rem 0rem;
}

.contact {
  background: var(--color-neutral-400);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  border-radius: 0.5rem;
  position: relative;
  min-height: 300px;
  padding: 0 3rem;
}
@media screen and (max-width: 576px) {
  .contact {
    padding: 0 1rem;
  }
}
.contact-text-wrapper {
  max-width: 50ch;
}
.contact .contact-img {
  z-index: -1;
  position: absolute;
  right: -69px;
}
@media screen and (max-width: 992px) {
  .contact .contact-img {
    display: none;
  }
}
.contact h3,
.contact p {
  color: var(--color-white-0);
  text-align: left;
}
.contact p {
  font-size: 1.125em;
  margin-bottom: 3rem;
  font-weight: 400;
}
.contact img {
  border: 0;
  max-width: 50%;
  vertical-align: middle;
  display: inline-block;
}
.contact span {
  color: var(--color-primary-100);
  font-weight: 600;
}

.captcha-img-container {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn {
  height: 3.2rem;
  min-width: 8.5rem;
  background: none;
  border: none;
  z-index: 2;
  border-radius: 1.5rem;
  background: var(--color-primary-400);
  transition: filter 0.15s ease-in-out, background 0.15s ease-in-out;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0rem 3rem;
  cursor: pointer;
}
.btn.afix {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  filter: brightness(1.15);
}
.btn.buy {
  text-transform: uppercase;
  font-style: italic;
  color: var(--color-neutral-700);
  font-size: 1.5em;
}
.btn.buy:active {
  box-shadow: none;
}

.btn-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-neutral-0);
  border-radius: 50%;
  z-index: 5;
  font-size: 2em;
  cursor: pointer;
  border: 4px solid var(--color-neutral-700);
  outline: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.btn-top:hover {
  filter: brightness(1.15);
}
.btn-top.display {
  visibility: visible;
  opacity: 1;
}

/*             */
/*    Input    */
/*             */
.input-box .input {
  padding: 1rem 2rem 1rem 0.75rem;
  outline: none;
  box-sizing: border-box;
  /*              */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  color: #383838;
  background: #ffffff;
  /*              */
  border: 2px #212121 solid;
  border-radius: 11px;
  /*              */
  left: 0;
  top: 0;
  /*              */
  height: 100%;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 0);
}

.input-box .input:not(:placeholder-shown) {
  outline: none;
}

.input-box .input:not(:placeholder-shown):focus-visible {
  border: 2px #ffffff solid;
}

/*               */
/*     Input     */
/*               */
.input-box {
  display: block;
  position: relative;
  color: #fff;
  border-radius: 11px;
  z-index: 10;
}

.input-box.price {
  display: flex;
  margin: 0;
}

/* .input-box.price input {
  border-radius: 0.375rem 0rem 0rem 0.375rem;
}

.input-box.price div + input {
  flex: 1 0 80%;
  border-radius: 0rem 0.375rem 0.375rem 0rem;
} */
.input-box .input-title {
  color: #efefef;
  margin-bottom: 0.25rem;
  margin-left: 0.225rem;
  text-align: right;
  font-size: 1em;
  font-weight: 400;
}

.input-box input[type=text] {
  height: 3.5rem;
}

.input-box #inputCurrency {
  text-transform: capitalize;
  cursor: pointer;
}

.input-box .input {
  padding: 1rem 2rem 1rem 0.75rem;
  outline: none;
  box-sizing: border-box;
  /*              */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  color: #efefef;
  background: #272727;
  /*              */
  border: 1px #212121 solid;
  border-radius: 0.375rem;
  margin: 0.125rem;
  /*              */
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 0);
}

.input-box.text-left {
  margin: 0.5rem 0rem 1.5rem 0rem;
}
.input-box.text-left .input-title {
  text-align: left !important;
  color: var(--color-neutral-50) !important;
}
.input-box.text-left a {
  margin-left: 0.225rem;
}
.input-box.text-left a:hover {
  color: var(--color-white-400);
  transition: opacity 0.125s ease-in, transform 0.125s ease-in;
}

.input-box .input:not(:placeholder-shown) {
  outline: none;
}

.input-box .input:not(:placeholder-shown):focus-visible {
  border: 1px #ffffff solid;
}

.currencyInput {
  position: relative;
}

.currencyInput span.input-icon {
  position: absolute;
  top: 1.225rem;
  right: 0.725rem;
  cursor: pointer;
}

/**********/
/*  Currency * /
/************/
.currency {
  position: absolute;
  box-sizing: border-box;
  flex-direction: column;
  /*              */
  display: none;
  /*              */
  background: #272727;
  margin: 0.125rem;
  /*              */
  width: 100%;
  /*              */
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  /*              */
  border-radius: 0.375rem;
  border: 2px #212121 solid;
  text-align: left;
  /*              */
}

.currency:focus-within {
  border: 2px #ffffff solid;
}

.currency span {
  display: flex;
  align-items: center;
  scroll-snap-align: center;
  font-weight: 600;
  font-size: 1.25em;
  cursor: pointer;
  padding: 1rem 2rem 1rem 0.75rem;
  outline: none;
}
.currency span:hover {
  color: var(--color-white-400);
  transform: translateX(0.5rem);
  transition: opacity 0.125s ease-in, transform 0.125s ease-in;
}

/*                  */
/*     Settings     */
/*                  */
.settings-section {
  width: 100%;
  max-width: 25rem;
}

.settings-section + .settings-section {
  margin-top: 2rem;
}

.contact-sections {
  position: relative;
  border: 1px solid #00000063;
  padding: 0.25rem 1rem 0.25rem 7rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  outline: none;
  font-family: "Poppins", sans-serif;
}
.contact-sections .title {
  position: absolute;
  top: 0px;
  left: 14px;
  display: block;
  width: 80px;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 38px;
  white-space: nowrap;
  padding: 0px;
}
.contact-sections .button {
  -webkit-text-size-adjust: 100%;
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  word-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: black;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  background: none;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 2;
}
.contact-sections .radio-input {
  vertical-align: middle;
  margin: 0rem 0.2rem 0rem 0.5rem;
}
.contact-sections .radio-input:checked {
  background: black;
}
.contact-sections .text-input {
  height: 34px;
  border: none;
  background: none;
  width: calc(100% - 90px);
  max-width: 500px;
  outline: none;
  font-family: inherit;
  font-size: 0.9em;
}
.contact-sections .text-input[type=text] {
  height: 32px;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact-sections textarea {
  overflow: auto;
  vertical-align: top;
  font-size: 0.9em;
  font-family: inherit;
  font-weight: 400;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
  height: 12rem;
  width: calc(100% + 80px);
  max-width: calc(100% + 80px);
  min-width: calc(100% + 80px);
  position: relative;
  top: 38px;
  left: -80px;
  outline: none;
  resize: vertical;
}
.contact-sections .label {
  display: inline-block;
  margin: 0 15px 5px 0;
  white-space: nowrap;
}

.modal {
  position: fixed;
  background: #1a1a1aa6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  align-content: center;
  justify-content: center;
  overflow: auto;
  transition: all 0.15s ease-out;
  display: none;
  opacity: 0;
}

/* The Modal (background) */
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  /* margin: 5% auto; */
  /* 15% from the top and centered */
  z-index: 51;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 0.9rem;
  max-height: 93vh;
  /* overflow-y: auto; */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-content::-webkit-scrollbar{
  display: none;
}
.modal-content .header {
  display: flex;
  justify-content: space-between;
  background: var(--color-neutral-700);
  padding: 1.5rem;
  border-radius: 0.75rem 0.75rem 0px 0px;
  color: var(--color-white-100);
  font-weight: 700;
}
.modal-content .modal-header {
  position: relative;
}
.modal-content .modal-header .modal-banner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--color-neutral-700);
  width: 100%;
  border-radius: 0.75rem 0.75rem 0 0;
  position: relative;
  padding: 4.5rem 0rem 2rem;
}
.modal-content .modal-header .modal-titlecard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal-content .modal-header .modal-name {
  color: #ebebeb;
  font-family: Spartan, sans-serif;
  margin: 5px 15px;
  max-width: 41ch;
  padding: 2rem;
  background: #0000008a;
  border-radius: 0.75rem;
}
.modal-content .modal-header .modal-name + .modal-name {
  text-align: right;
}
.modal-content .modal-header .modal-name span {
  font-size: 15px;
  font-variant-caps: small-caps;
  text-transform: lowercase;
}
.modal-content .modal-header .modal-name p {
  font-size: 36px;
  margin: 0 5px 0 0;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.modal-content .modal-body {
  display: flex;
  justify-content: space-around;
  flex: 1;
  margin: 1rem;
  overflow-x: auto;
}
.modal-content .modal-body .modal-box {
  background: #ebebeb;
  border-radius: 0.75rem;
  margin: 0.5rem;
  -webkit-box-shadow: 1px 2px 5px 0 #ffffff;
  box-shadow: 1px 2px 5px 0 #fdfeff;
}
.modal-content .modal-body .modal-box .modal-title {
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 0.5rem 0.25rem 0.75rem;
  background: var(--color-neutral-700);
}
.modal-content .modal-body .modal-box .modal-title span {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--color-white-100);
}
.modal-content .modal-body .entry {
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 0.75rem;
}
.modal-content .modal-body .entry.description {
  text-align: left;
  max-width: 40ch;
  margin: 0.5em;
}
.modal-content .modal-body .entry.description ul {
  list-style: circle !important;
  padding-inline-start: 24px !important;
}
.modal-content .modal-body .entry.description ul li {
  list-style: disc !important;
}
.modal-content .modal-body .entry-padding {
  padding: 1rem;
}
.modal-content .modal-body .entry.media {
  position: relative;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  max-height: 250px;
}

.modal-content .modal-body .entry.steam-artwork {
  position: relative;
  overflow: hidden;
  max-height: 100%;
  height: 100%;
  padding-bottom: 0%;
}
.modal-content .modal-body .entry.media video,
.modal-content .modal-body .entry.media img {
  position: absolute;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-style: none;
  transition: transform 0.2s cubic-bezier(0.65, 0.6, 0.65, 1);
  left: 0;
}
.modal-content .modal-body .entry.media.steam-artwork img{
  position: unset;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-style: none;
  transition: transform 0.2s cubic-bezier(0.65, 0.6, 0.65, 1);
  left: 0;
}

.modal-content .modal-body .entry p {
  z-index: 2;
  font-size: 1em;
  text-align: left;
}
.modal-content .modal-body-flex {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 33rem;
}
.modal-content .modal-body-flex.noborder .modal-box .entry {
  border-radius: 0rem !important;
}
.modal-content .modal-body-flex.noborder .modal-box .entry:first-child {
  border-radius: 0.75rem 0.75rem 0rem 0rem !important;
}
.modal-content .modal-body-flex.noborder .modal-box .entry:last-child {
  border-radius: 0rem 0rem 0.75rem 0.75rem !important;
}
.modal-content .modal-body-flex.noborder .modal-box .entry:only-child {
  border-radius: 0.75rem !important;
}
.modal-content .infocontainer {
  padding: 5px;
}
.modal-content .infocontainer .ic-title {
  font-family: Spartan, sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.modal-content .infocontainer .ic-body p {
  font-size: 15px;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .modal-content .modal-body {
    flex-wrap: wrap;
    justify-content: center;
  }
  .modal-content .modal-body-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100rem;
  }
}
@media screen and (max-width: 576px) {
  .modal-content .modal-body {
    flex-wrap: wrap;
  }
}
[data-anim] {
  opacity: 0;
}

.animation {
  -webkit-animation: fade 1s var(--delay) both;
  animation: fade 1s var(--delay) both;
}
.animation[data-anim=fade] {
  -webkit-animation: fade 1s var(--delay) both;
  animation: fade 1s var(--delay) both;
}
.animation[data-anim=left] {
  -webkit-animation: left 0.7s var(--delay) both;
  animation: left 0.7s var(--delay) both;
}
.animation[data-anim=right] {
  -webkit-animation: right 0.7s var(--delay) both;
  animation: right 0.7s var(--delay) both;
}
.animation[data-anim=top] {
  -webkit-animation: top 0.7s var(--delay) both;
  animation: top 0.7s var(--delay) both;
}
.animation[data-anim=bottom] {
  -webkit-animation: bottom 0.7s var(--delay) both;
  animation: bottom 0.7s var(--delay) both;
}

@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.info-box{
  background-color: var(--color-neutral-800);
  color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 0.5rem;
  cursor: auto;
  user-select: none;
  transition: box-shadow 0.2s ease-in-out;
}

.info-box:hover{
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0); 
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

@media screen and (max-width: 991px) {
  .info-box{
    width: 40%;
  }
}
@media screen and (max-width: 576px) {
  .info-box{
    width: 80%;
  }
}

.info-box i{
  display: block;
  margin-bottom: 10px;
  font-size: 3rem;
}

.info-box h4{
  font-size: 1.2rem;
}

.info-box p{
  color: var(--color-neutral-100);
}

div.img{
  max-width: 50%;
  max-height: 50%;
}

.company-logo{
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  pointer-events: none;
  object-fit: fill;
}

.carousel-wrapper{
  width: 100%; 
  position: relative; 
  margin: auto;
}

.carousel-overwrite{
  width: 100%; 
  position: relative; 
  margin: auto;
}

.carousel-wrapper i { 
  height: 50px; 
  width: 50px; 
  background: var(--color-neutral-0);
  text-align: center; 
  line-height: 50px; 
  border-radius: 50%; 
  cursor: pointer; 
  position: absolute; 
  top: 50%;
  transform: translateY(-50%); 
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); 
  border: 4px solid var(--color-neutral-700);
} 

.carousel-wrapper i:hover{
  filter: brightness(1.15);
}

.carousel-wrapper i:first-child { 
  left: -22px;
} 

.carousel-wrapper i:last-child { 
  right: -22px;
}

.carousel-wrapper .carousel { 
  display: grid; 
  grid-auto-flow: column; 
  grid-auto-columns: calc((100% / 4) - 12px); 
  gap: 16px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  scrollbar-width: 0; 
}

.carousel-overwrite .carousel { 
  display: grid; 
  grid-auto-flow: column; 
  grid-auto-columns: calc((100% / 3) - 12px)!IMPORTANT; 
  gap: 16px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  scrollbar-width: 0; 
}

.carousel::-webkit-scrollbar { 
  display: none; 
} 

.carousel :where(.card, .img) { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
} 

.carousel.dragging { 
  scroll-snap-type: none; 
  scroll-behavior: auto; 
} 

.carousel.no-transition { 
  scroll-behavior: auto; 
} 

.carousel.dragging .card { 
  cursor: grab; 
  user-select: none; 
} 

li.card{
  height: 90%;
  user-select: none;
}

.carousel .card { 
  scroll-snap-align: start;
  list-style: none; 
  background: var(--color-neutral-800); 
  border-radius: 8px; 
  display: flex;
  width: 98%; 
  padding-bottom: 15px; 
  align-items: center; 
  justify-content: center; 
  flex-direction: column; 
  cursor: pointer;
} 

.company-name{
  color: #fff;
}

@media screen and (max-width: 900px) { 
  .carousel-wrapper .carousel, .carousel-wrapper.carousel-overwrite .carousel { 
    grid-auto-columns: calc((100% / 2) - 9px)!IMPORTANT; 
  } 
} 

@media screen and (max-width: 600px) { 
  .carousel-wrapper .carousel, .carousel-wrapper.carousel-overwrite .carousel { 
      grid-auto-columns: 100%!IMPORTANT; 
  } 
}

.col-50{
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 570px) {
  .col-50{
    max-width: 100%;
  }

  .row{
    flex-direction: column;
  }
}

.index-col{
  margin-bottom: 25px;
  text-align:center;
  padding: 5px;
}

.index-col a.btn{
  width: 40%;
  margin: auto;

  margin-top: 10px;
}

.index-col h3{
  padding-left: 15px;
  padding-right: 15px;
}

.index-col img{
  width: 70%;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.row{
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
}

.youtube-embed{
  margin: auto;
  margin-bottom: 25px;
  margin-top: 45px;
}

.youtube-embed iframe {
  max-width: 80vw;
}

@media (max-width: 570px) {
  .youtube-embed iframe {
      max-width: 80vw;
  }
}

.col-33{
  flex: 0 0 33%;
  max-width: 33%;
}

@media (max-width: 570px) {
  .col-33{
    max-width: 100%;
  }

  .row{
    flex-direction: column;
  }
}

.how-to-use-button{
  margin-top: 25px!IMPORTANT;
}

.index-col h4{
  font-size: 1.3rem;
  font-weight: 500;
}

.steam-artwork{
  display: flex;
  flex-direction: column;
}

.steam-artwork-box{
  grid-column-end: span 4!IMPORTANT;
}

.steam-artwork-img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.steam-artwork-img:hover{
  transform: scale(1.02);
  box-shadow: 0px 15px 15px -5px #2b2b2b34;
  transition: all 0.1s ease-in;
}

.steam-artwork-card{
  background-color: transparent!IMPORTANT;
}

.steam-artwork-wrapper{
  width: 100%; 
  position: relative; 
  margin: auto;
}

.steam-artwork-wrapper .carousel { 
  display: grid; 
  grid-auto-columns: calc((100% / 4) - 12px); 
  gap: 16px;
  grid-template-columns: repeat(4, 25%);
}

.feedback-text{
  color: white;
  padding: 20px;
  text-align: center;
}

.feedback-name{
  color: var(--color-white-300);
  font-size: 0.9rem;
}