* {
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  height: 100%;
}

.overlay {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 80%;
  height: 75%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  overflow: auto;
}

.H1 {
  display: flex;
  align-items: center;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-value {
  display: block;
}

.text-overlay p {
  color: rgba(255, 255, 255, 0.7);
  /* Optional: Add a background color to the paragraphs */
  padding: 10px;
  margin: 0;
  display: block;
}

#overlay-scrollable-content {
  max-height: 600;
  /* Define the maximum height of the scrollable content */
  padding: 10px;
  /* Add padding as needed */
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  /*overflow: hidden;*/
  background: #000;
}

#scroll {
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%;
  height: 2000px; */
  /* fill: rgba(255, 0, 0, .5); */
  /* position: absolute; */
  /* visibility: hidden; */
  /* display: none; */
  /*background-color: rgba(255,0,0,0.2);*/
}

#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: url("../brand/images/loading/Loading_background_ReducedSize.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main {
  width: 100%;
  height: 100%;
  /*background: #000;*/
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#loading .main {
  height: 76vh;
  margin: 12vh 0;
}

.videoLogo {
  /*width: 70vw;*/
  /*margin-left: -10vw;*/
  margin: -4vh 0;
  z-index: -10;
}

.videoLogo>video {
  /*object-fit: cover;*/
  width: 100%;
  object-fit: contain;
  height: 60vh;
}

#bar {
  position: absolute;
  top: 15%;
  left: 6px;

}

#external_game_popup {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: flex;
  z-index: 10;
  font-family: Montserrat, sans-serif;
}

/*Loading bar & Loading star images*/
.progress {
  position: relative;
  width: 98%;
  bottom: 25px;
}

.loadingBar {
  width: 32vw;
}

.loadingStarLeft {
  width: 2vw;
  top: 9%;
  left: 1%;
  position: absolute;
  animation: rotateImg 2s linear infinite;
}


.loadingStarRight {
  width: 2vw;
  top: 9%;
  left: 95%;
  position: absolute;
  animation: rotateImg 2s linear infinite;
}

.powered {
  /*height: 6vh;*/
  /*max-width:50vw;*/
  /*margin-bottom: 10vh;*/
  margin-bottom: 5vh;
}

#powered-logo {
  width: 16vw;
}

.poweredSlotMatrix {
  /*height: 6vh;*/
  /*max-width:50vw;*/
  /*margin-bottom: 10vh;
  margin-top: 10vh;*/
}

#powered-logo-slot-matrix {
  width: 16vw;
  margin-bottom: -40px;
}

.bar {
  border-radius: 10px 10px 10px 10px;
  width: 0%;
  height: 70%;
  transition: width;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(.36, .55, .63, .48);
}

.loader {
  background: -webkit-linear-gradient(left, #42cf05 30%, #69f816 80%, #52f816 100%) repeat;
  /* background-size: 50% 100%; */
  animation-name: moving-gradient;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* background-color: #cf1305; */
}


#popup_content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: calc(100vw / 2);
  height: calc(100vh / 2);
  max-height: 400px;
  max-width: 600px;
  margin: auto;
}

#popup_buttons {
  display: flex;
}


#paytable_07_hide {
  display: none;
}

#popup_message {
  margin: 20px auto;
  color: white;
  font-size: 18px;
  text-align: center;
}

.popup_button {
  margin: 10px auto;
  border: 3px solid gray;
  border-radius: 20px;
  background-color: black;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  min-width: 60px;
  min-height: 60px;
  display: block;
}

.popup_button.home,
.popup_button.adjust,
.popup_button.reload,
.popup_button.deposit,
.popup_button.ok {
  width: 150px;
  background-position: center;
  background-size: 40px;
  background-repeat: no-repeat;
}

.hide {
  display: none !important;
}


.dwarfAnim {
  position: relative;
  width: 280px;
  /* Viewport-width */
  /* Viewport-height */
  margin: 1vh;
  background: transparent url('../brand/images/loading/sprite.png') 0 0 no-repeat;
  /* Our sprite as the viewport background */
  animation: dwarf 0.75s steps(6) initial;
  /* The Animation */
}

/* Landscape orientation */
@media screen and (orientation: landscape) {
  .dwarfAnim {
    transform: scale(1);
    /* Little margin */
    margin-left: -100px;
    height: 125px;
  }
}

/* Portrait orientation */
@media screen and (orientation: portrait) {
  .dwarfAnim {
    transform: scale(0.8);
    /* Little margin */
    margin-left: -80px;
    height: 115px;
  }
}


#loadingContainerID {
  visibility: hidden;
}

/* Animation keyframes for the sprite */
@keyframes dwarf {
  100% {
    background-position: 0 -720px;
  }
}

@keyframes moving-gradient {
  0% {
    background-position: left bottom;
  }

  100% {
    background-position: right bottom;
  }
}

@keyframes rotateImg {
  from {
    transform: rotate(359deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* 
​@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
} */

.background-image--default--HS_Small {
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 15em;
}

.fadeOut {
  animation: fadeOut 2s;
}

@keyframes fadeOutRemove {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    display: none;
  }
}

.fadeOutRemove {
  animation: fadeOut 1s;
}

/*** VERSION: 1.1.2 ***/
/*** CERT: 1.0.0 ***/
/*** SHA: 37aa2d95ceb568672393e6b1a9b298ddfd4818de ***/
.center {
  margin: 0 auto
}

.paytable {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.bottom-bar {
  left: 17px;
  right: 17px
}

.back-button,
.game-name {
  background: no-repeat;
  background-size: 100% 100%
}

.scatter__img,
.wild__img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain
}

.hide {
  display: none
}

@media screen and (orientation: landscape) {
  .portrait {
    display: none
  }
}

@media screen and (orientation: portrait) {
  .landscape {
    display: none
  }
}


.background-image--default {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%
}

h2 {
  font-size: 2.5em
}

h3 {
  font-size: 1.4em
}

sup {
  font-size: 50%;
  vertical-align: super
}

p {
  line-height: 1.35;
  font-size: 1.3em;
  margin: 1em 0
}

.grid {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  margin: 2%;
}

.grid__item {
  width: 100%
}

@media (min-width: 568px) {
  .grid__item {
    width: 50%
  }
}

@media (min-width: 2000px) {
  .grid__item {
    width: 50%
  }
}

@media (max-width: 768px) {
  .progress {
    width: 95%;
  }

  .loadingStarRight {
    left: 98%;
  }
}

.ja {
  font-family: "Arial Unicode MS", "Arial", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "sans-serif"
}

@media (orientation: portrait) {
  .th .game-name {
    min-width: 300px;
    max-width: 350px;
    width: 60vmin
  }

  .th .text--small {
    font-size: 1.4em
  }

  .th .text--medium {
    font-size: 1.6em
  }

  .th .text--big {
    font-size: 1.75em
  }

  .th .text--bigger {
    font-size: 1.9em
  }
}

.de {
  font-size: 1em
}

.back-button {
  height: 8.33vmin;
  width: 8.33vmin;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 30px;
  z-index: 1
}

.close-alt {
  color: #fff;
  font-weight: bold;
  font-size: 6em;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.bottom-bar {
  background: linear-gradient(transparent 0%, #000014 85%);
  bottom: -0.1em;
  color: rgba(227, 119, 151, 0.7);
  font-family: Arial-Bold, Arial, Helvetica, sans-serif;
  left: 0;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 2
}

@media (min-width: 500px) {
  .bottom-bar {
    font-size: 18px
  }
}

.nohomenotch {
  min-height: 2.5em
}

.homenotch {
  min-height: 2.5em
}

@media (orientation: portrait) {
  .homenotch {
    min-height: 3em
  }
}

.image-loader {
  -ms-flex-align: center;
  align-items: center;
  background-color: #333;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.65em;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden
}

.image-loader--faded-out {
  opacity: 0;
  transition: opacity 300ms ease-in
}

.paytable {
  box-sizing: border-box;
  color: #29abe2;
  font-family: "Arial", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 2vw;
  font-weight: bold;
  height: 100%;
  opacity: 0;
  line-height: 1.25;
  position: absolute;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-align: center;
  width: 98%;
  z-index: 10;
  margin-left: 10px;
}

@media (min-width: 1000px) {
  .paytable {
    font-size: 1em
  }
}

@media (max-width: 450px) {
  .paytable {
    font-size: 0.7em
  }
}

.paytable img {
  display: inline-block;
  max-width: 100%
}

.paytable__content {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
  padding: 3em
}

@media (max-width: 450px) {
  .paytable__content {
    padding: 5% 5% 3em 9%
  }
}

.paytable__content--show {
  visibility: visible
}

.paytable__scroll-container {
  overscroll-behavior-y: contain;
  overscroll-behavior-x: none;
  height: inherit;
  z-index: 0
}

.titan-swipe-to-full-screen_overlay-visible .paytable__scroll-container {
  overflow: hidden
}

.paytable__heading {
  color: #568543
}

.paytable__link {
  color: #568543
}

.paytable--show {
  opacity: 1;
  transition: opacity 300ms ease-in
}

.paytable--hide {
  transition: opacity 300ms ease-in
}

.paytable .section-container {
  border-radius: 5px;
  padding: 1.5em
}

.paytable section {
  margin-bottom: 3.25em;
  margin-left: 2%;
  margin-right: 2%;

}

.paylines-img {
  height: 10em;
  width: 100%
}

@media (max-width: 400px) {
  .paylines-img {
    height: 8em
  }
}

/* .symbol {
  margin: 2% 14%;
} */

.symbol__image {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  /* align-self: stretch; */
  background: center center no-repeat;
  background-size: contain;
  min-height: 7em;
  /* position: relative; */
  width: 40%
}

.symbol__image--scatter {
  margin-right: 0;
  -ms-transform: scale(1.25);
  transform: scale(1.25)
}

.symbol__image--lows {
  bottom: 0;
  left: 50%;
  height: 35%;
  position: absolute;
  -ms-transform: translate(-50%, 95%);
  transform: translate(-50%, 95%);
  max-width: initial
}

.symbol__payout {
  margin-left: 1em;
  list-style: none;
  padding: 0 10 0 0;
  width: 30%;
}

.symbol__payout li {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  margin-bottom: -4px;
  /* Adjust margin as needed */
}

.symbol__amount {
  margin-left: 0.5em;
}

.symbol__amount1 {
  margin-left: 0.5em;
}

.text--small {
  font-size: 1em
}

.text--medium {
  font-size: 1.4em
}

.text--big {
  font-size: 1.6em
}

.text--bigger {
  font-size: 1.8em
}

.text--bold {
  font-weight: bold
}

.text--normal {
  font-weight: normal
}

.text--white {
  color: #fff
}

.text--gold {
  color: #bc8c22
}

.text--brown {
  color: #7a562b
}

.text--light-brown {
  color: #875821
}

.text--light-gold {
  color: #ffe38d
}

.text--light-blue {
  color: #61edff
}

.text--green {
  color: #6bcc3b
}

.text--yellow {
  color: #e8c63f
}

.text--orange {
  color: #d96923
}

.text--blue {
  color: #3bb4ff
}

.text--dark-blue {
  color: #1377b5
}

.text--purple {
  color: #9d63f5
}

.text--nowrap {
  white-space: nowrap
}

.paytable__win-up-to {
  margin: 1em 0 2.5em
}

@media (max-width: 450px) {
  .paytable__win-up-to {
    font-size: 70%
  }
}

.paytable__win-up-to-amount {
  display: inline-block
}

.game-name {
  height: 3.5vmin;
  width: 40vmin;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: 0;
  color: #999;
  display: block;
  font-size: 3vmin;
  left: 50%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.game-name__reg {
  font-size: 100%;
  margin: 0 0.5em 0 0.1em
}

.game-logo--main {
  height: 15em
}

.scatter__img {
  height: 12em;
  margin-bottom: -1em
}

.wild__img {
  height: 9em
}

.wild__symbol-wrapper {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex
}

.wild__symbol {
  height: 13em;
  width: 8em;
  margin-right: 5%
}

.free-spins--jotunheim {
  background-color: #101529;
  color: #1476b3
}

.free-spins--vanaheim {
  background-color: #0d211f;
  color: #24800f
}

.free-spins--alfheim {
  background-color: #211c0d;
  color: #9e7213
}

.free-spins--nidavellir {
  background-color: #210e0d;
  color: #8f3700
}

.free-spins--svartalheim {
  background-color: #171029;
  color: #6354d4
}

.paytable [class*="free-spins--"]:not(.free-spins--svartalheim) {
  margin-bottom: 1em
}

.fs-wildstorm-logo {
  height: 15em;
  max-width: 500px
}

.fs-hammer-collect {
  height: 10em
}

.hyperhold {
  background-color: #121528;
  color: #1476b3
}

.hyperhold__img {
  height: 90vw;
  max-height: 650px
}

.jackpots {
  color: #7a562b
}

.thunderball__img-wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex
}

@media (max-width: 450px) {
  .thunderball__img-wrapper {
    width: 100%
  }
}

.thunderball__symbol {
  height: 15em;
  width: 15em
}

.thunderball__jackpot {
  height: 9em;
  width: 9em
}

.thunderball__jackpot:not(:last-child) {
  margin-right: 1%
}


ol,
ul {
  list-style: none;
}