@import "/css/glide.core.min.css";
@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@-webkit-keyframes _entrance {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes _entrance {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes _entrance2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-30%, 0);
            transform: translate(-30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes _entrance2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-30%, 0);
            transform: translate(-30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes _exit {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes _exit {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes _fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes _fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes _fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes _fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes _attention {
  from {
    background-color: orange;
  }
  to {
    background-color: red;
  }
}
@keyframes _attention {
  from {
    background-color: orange;
  }
  to {
    background-color: red;
  }
}
@-webkit-keyframes _anim_down {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes _anim_down {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes _hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@keyframes _hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.gameslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0 0 1em 0;
}
.gameslist.muuri {
  width: 100%;
  position: relative;
}

.gamebox {
  width: 48%;
  margin: 0.5em 1% 0.5em 1%;
}
.gamebox.muuri-item {
  position: absolute;
  display: block;
}
.gamebox.hide {
  -webkit-animation: _hide 1s;
          animation: _hide 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.gamebox img {
  display: block;
  width: 100%;
}
.gamebox .preview {
  position: relative;
  margin-bottom: 0.25em;
  overflow: hidden;
}
.gamebox .preview .overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gamebox .preview .overlay a {
  display: none;
  padding: 0 0.5em;
}
.gamebox .preview .overlay a:hover {
  cursor: pointer;
}
.gamebox .preview .overlay .play {
  padding: 0 1em;
}
.gamebox .preview .overlay .loginandplay {
  padding: 0 0.5em;
}
.gamebox .preview .overlay .demo {
  color: #08babc;
  text-transform: uppercase;
  margin-top: 0.5em;
  font-size: 12px;
}
.gamebox .preview .overlay .demo:hover {
  text-decoration: underline;
}
.gamebox .preview .overlay.show {
  opacity: 1;
}
.gamebox .preview .overlay.show a {
  display: block;
}
@media screen and (min-width: 568px) {
  .gamebox .preview .overlay .loginandplay {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .gamebox .preview .overlay .loginandplay {
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .gamebox .preview .overlay .play {
    font-size: 17px;
  }
  .gamebox .preview .overlay .loginandplay {
    font-size: 17px;
  }
  .gamebox .preview .overlay .demo {
    font-size: 14px;
    margin-top: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .gamebox .preview .overlay .play {
    font-size: 20px;
  }
  .gamebox .preview .overlay .loginandplay {
    font-size: 20px;
  }
}
.gamebox .gameinfo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
  color: #FFF;
}
.gamebox .gameinfo h5 {
  overflow: hidden;
  margin: 0 0 3px 0;
  font-size: 1em;
  line-height: 1em;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  background-color: transparent;
  text-overflow: ellipsis;
  width: 100%;
  padding: 3px 10px;
}
@media screen and (min-width: 375px) {
  .gamebox .gameinfo h5 {
    font-size: 0.8em;
  }
}
.gamebox .gameinfo p {
  margin: 0;
  line-height: 1em;
  text-transform: uppercase;
  font-size: 10px;
  padding-left: 5px;
  margin: 0 0 3px 0;
}
.gamebox.locked .preview .overlay {
  opacity: 1;
  background-color: transparent;
}
.gamebox.locked .lockedgame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.gamebox.locked .lockedgame button {
  background-color: #CC0000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}
.gamebox.locked .lockedgame:hover button {
  cursor: pointer;
  -webkit-animation: popintro 0.3s;
          animation: popintro 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.gamebox.locked .lockedgame img.lockimg {
  display: block;
  visibility: visible !important;
  width: 30px;
  -webkit-transform: none;
          transform: none;
  opacity: 0;
  margin-bottom: 3px;
  -webkit-animation: lock_fadeIn 0.5s ease-in 0.1s;
          animation: lock_fadeIn 0.5s ease-in 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.gamebox.locked .lockedgame span {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  -webkit-animation: lock_fadeIn2 0.5s ease-in 0.1s;
          animation: lock_fadeIn2 0.5s ease-in 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 1200px) {
  .gamebox.locked .lockedgame img.lockimg {
    margin-bottom: 5px;
  }
  .gamebox.locked .lockedgame span {
    font-size: 13px;
  }
}
@media screen and (min-width: 568px) {
  .gamebox {
    width: 24%;
    margin: 0.5em 0.5% 0.5em 0.5%;
  }
}
@media screen and (min-width: 768px) {
  .gamebox .gameinfo h5 {
    font-size: 1.3em;
  }
}

.newbanner {
  position: absolute;
  top: 0;
  left: 0;
  color: red;
  font-weight: 900;
  font-size: 8px;
  background-color: #FFF;
  -webkit-transform: rotate(-30deg) translate(-25%, -50%);
          transform: rotate(-30deg) translate(-25%, -50%);
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  line-height: 1.5em;
  padding: 0 4em;
}
@media screen and (min-width: 568px) {
  .newbanner {
    font-size: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .newbanner {
    font-size: 18px;
    -webkit-transform: rotate(-30deg) translate(-30%, -50%);
            transform: rotate(-30deg) translate(-30%, -50%);
  }
}

.jackpot {
  position: absolute;
  background-color: red;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border-radius: 6px;
  top: 5%;
  right: 2%;
  font-size: 11px;
  line-height: 18px;
  font-weight: 401;
  padding: 0px 5px;
}
@media screen and (min-width: 568px) {
  .jackpot {
    right: 3%;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    padding: 0 9px;
  }
}

body.fr .gamebox .preview .overlay .loginandplay {
  font-size: 9px;
  padding: 0 0.5em;
}
@media screen and (min-width: 360px) {
  body.fr .gamebox .preview .overlay .loginandplay {
    font-size: 10px;
  }
}
@media screen and (min-width: 568px) {
  body.fr .gamebox .preview .overlay .loginandplay {
    font-size: 9px;
  }
}
@media screen and (min-width: 768px) {
  body.fr .gamebox .preview .overlay .loginandplay {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  body.fr .gamebox .preview .overlay .loginandplay {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  body.fr .gamebox .preview .overlay .loginandplay {
    font-size: 18px;
  }
}

@-webkit-keyframes popintro {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popintro {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lock_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lock_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lock_fadeIn2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes lock_fadeIn2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
#gamefiltersort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#gamefiltersort ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#gamefiltersort .filter, #gamefiltersort .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-transform: uppercase;
}
#gamefiltersort .filter span, #gamefiltersort .sort span {
  display: block;
  line-height: 40px;
}
#gamefiltersort .filter .title, #gamefiltersort .sort .title {
  font-weight: 700;
  padding-right: 1em;
  width: 100%;
}
#gamefiltersort .filter i, #gamefiltersort .sort i {
  font-size: 0.7em;
  color: red;
  margin-left: 1em;
}
#gamefiltersort .filter {
  z-index: 2;
}
#gamefiltersort .filter .tab {
  padding: 0 0.5em;
  position: relative;
  width: 50%;
}
#gamefiltersort .filter .tab:hover {
  cursor: pointer;
  text-decoration: underline;
}
#gamefiltersort .filter .tab ul.options {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 1;
  height: 0;
  overflow: auto;
}
#gamefiltersort .filter .tab ul.options li {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0 1em;
  line-height: 30px;
  opacity: 0;
  background-color: #FFF;
  overflow: hidden;
  height: 0;
  font-size: 13px;
  white-space: nowrap;
}
#gamefiltersort .filter .tab ul.options li:hover {
  background-color: #F1F1F1;
}
#gamefiltersort .filter .tab:hover {
  -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
}
#gamefiltersort .filter .tab:hover ul.options {
  height: auto;
  max-height: 150px;
  -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
}
#gamefiltersort .filter .tab:hover ul.options li {
  height: 30px;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  #gamefiltersort .filter .tab {
    padding: 0 1em;
  }
}
#gamefiltersort .sort {
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#gamefiltersort .sort .title {
  width: auto;
  padding: 0;
}
#gamefiltersort .sort i {
  position: absolute;
  top: 0;
  right: 1em;
  height: 40px;
  line-height: 40px;
}
#gamefiltersort .sort .sortoptions {
  position: relative;
  height: 40px;
  width: 175px;
  z-index: 1;
}
#gamefiltersort .sort .sortoptions ul {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#gamefiltersort .sort .sortoptions ul li {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0 2em 0 1em;
  line-height: 30px;
  opacity: 0;
  background-color: #FFF;
  height: 0;
  font-size: 13px;
  white-space: nowrap;
}
#gamefiltersort .sort .sortoptions ul li.active {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  line-height: 40px;
  opacity: 1;
  height: 40px;
}
#gamefiltersort .sort .sortoptions ul:hover {
  -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
}
#gamefiltersort .sort .sortoptions ul:hover li {
  opacity: 1;
  height: 30px;
}
#gamefiltersort .sort .sortoptions ul:hover li.active {
  height: 40px !important;
  line-height: 40px !important;
}
#gamefiltersort .sort .sortoptions ul:hover li:hover {
  background-color: #F1F1F1;
  cursor: pointer;
}
@media screen and (min-width: 568px) {
  #gamefiltersort .filter .title, #gamefiltersort .sort .title {
    width: auto;
  }
  #gamefiltersort .filter .tab {
    width: auto;
    border-left: 1px solid #CCC;
    padding: 0 1em;
  }
  #gamefiltersort .sort {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  #gamefiltersort {
    font-size: 13px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #gamefiltersort .filter {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #gamefiltersort .filter .title {
    width: auto;
  }
  #gamefiltersort .sort {
    width: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #gamefiltersort .sort .sortoptions {
    width: 155px;
  }
}
@media screen and (min-width: 1024px) {
  #gamefiltersort {
    font-size: 14px;
  }
  #gamefiltersort .sort .sortoptions {
    width: 175px;
  }
}

#gamemodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2500000000;
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#gamemodal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#gamemodal.closing {
  -webkit-animation: _fadeIn 1s;
          animation: _fadeIn 1s;
  animation-direction: reverse;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#gamemodal.closing .container {
  -webkit-animation: _exit 0.5s;
          animation: _exit 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#gamemodal .container {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  -webkit-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.8);
          box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-animation: _entrance 1s;
          animation: _entrance 1s;
  overflow: hidden;
  position: fixed;
  top: 0;
  /* Safari */
  /* IE11 */
}
@media screen and (min-width: 728px) {
  #gamemodal .container {
    position: relative;
    height: 100vh;
    top: initial;
  }
}
@media screen and (min-width: 1024px) {
  #gamemodal .container {
    height: auto;
  }
}
#gamemodal .container:-webkit-full-screen iframe {
  max-height: none;
}
#gamemodal .container:-ms-fullscreen iframe {
  max-height: none;
}
#gamemodal .container:fullscreen iframe {
  max-height: none;
}
#gamemodal .container:-webkit-full-screen iframe {
  max-height: none;
}
#gamemodal .container:-ms-fullscreen iframe {
  max-height: none;
}
#gamemodal .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6px;
  border-bottom: 1px inset #666;
  background-color: #000;
}
#gamemodal .header h2 {
  font-size: 1.1em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  color: #FFF;
  line-height: 30px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  letter-spacing: normal;
  text-transform: none;
}
#gamemodal .header i {
  color: #FFF;
  opacity: 0.8;
}
#gamemodal .header i:hover {
  cursor: pointer;
  opacity: 1;
}
#gamemodal .header i:before {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
#gamemodal .header .resize {
  font-family: "kingschance";
  font-size: 0.8em;
  font-style: normal;
  font-size: 100%;
  width: 30px;
  text-align: center;
}
#gamemodal .header .resize:before {
  content: "\e813";
}
#gamemodal .header .icon-close {
  font-size: 1.2em;
}
#gamemodal .header .switchforreal {
  margin-right: 1em;
  white-space: nowrap;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-animation: _fadeIn 1s;
          animation: _fadeIn 1s;
  outline: none;
  border: none;
  border-radius: 4px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 0 1em;
  background-color: orange;
  color: #FFF;
  font-weight: 700;
  -webkit-animation: _entrance2 2s, _attention 1s;
          animation: _entrance2 2s, _attention 1s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-timing-function: ease, linear;
          animation-timing-function: ease, linear;
  -webkit-animation-direction: normal, alternate;
          animation-direction: normal, alternate;
}
#gamemodal .header .switchforreal:hover {
  cursor: pointer;
}
#gamemodal .header .switchforreal:disabled {
  opacity: 0.2;
  background-color: #FFF;
  color: #000;
  -webkit-animation: none;
          animation: none;
  cursor: not-allowed;
}
@media screen and (max-width: 350px) {
  #gamemodal .header .switchforreal {
    font-size: 0.8em;
    padding: 0 0.5em;
  }
}
#gamemodal iframe {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  width: 100%;
  height: calc(100vh - 31px);
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #gamemodal iframe {
    max-height: 720px;
  }
}
#gamemodal .loadingscreen {
  background: url(/images/loadingscreen.jpg) no-repeat center center #FFF;
  background-position: top;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#gamemodal .loadingscreen.show {
  display: block;
}
#gamemodal .loadingscreen .animation {
  position: absolute;
  top: 18%;
  left: 5%;
  width: 90%;
}
#gamemodal .loadingscreen .animation .logo {
  margin: 0 auto 1em auto;
  width: 70%;
  max-width: 300px;
  display: block;
}
#gamemodal .loadingscreen .animation svg {
  width: 60%;
  max-width: 220px;
  margin: 0 auto;
  display: block;
}
#gamemodal .loadingscreen .animation .shape {
  fill: #d42d27;
}
#gamemodal .loadingscreen .animation .dot1 {
  -webkit-animation: _fadeOut 1s;
          animation: _fadeOut 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#gamemodal .loadingscreen .animation .dot2 {
  -webkit-animation: _fadeOut 1s;
          animation: _fadeOut 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#gamemodal .loadingscreen .animation .dot3 {
  -webkit-animation: _fadeOut 1s;
          animation: _fadeOut 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#gamemodal .loadingscreen .tip {
  position: absolute;
  bottom: 10%;
  width: 90%;
  left: 5%;
  text-align: center;
  font-size: 1.2em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#gamemodal .loadingscreen .tip.show {
  opacity: 1;
}

#filter-and-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#filter-and-sort ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#filter-and-sort .title {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  width: 90%;
  display: block;
  line-height: 40px;
  height: 40px;
}
#filter-and-sort .title i {
  margin-left: 1em;
  color: red;
}
#filter-and-sort .filter, #filter-and-sort .sort {
  height: 40px;
  overflow: hidden;
}
#filter-and-sort .filter {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 50%;
}
#filter-and-sort .filter.active {
  overflow: visible;
  height: auto;
}
#filter-and-sort .filter.active .tab {
  line-height: 40px;
  max-height: 40px;
}
#filter-and-sort .filter .tab {
  padding: 0 0.5em;
  position: relative;
  width: 100%;
  display: block;
  max-height: 0;
  overflow: hidden;
  text-transform: uppercase;
}
#filter-and-sort .filter .tab i {
  position: absolute;
  right: 3em;
}
#filter-and-sort .filter .tab ul.options {
  z-index: 1;
  height: 0;
  max-height: 150px;
  overflow: auto;
  -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
}
#filter-and-sort .filter .tab ul.options li {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  padding: 0 1em;
  line-height: 30px;
  background-color: #FFF;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
}
#filter-and-sort .filter .tab ul.options li:hover {
  background-color: #F1F1F1;
}
#filter-and-sort .filter .tab.active {
  cursor: pointer;
  max-height: none;
  padding-bottom: 7px;
}
#filter-and-sort .filter .tab.active ul.options {
  height: auto;
}
#filter-and-sort .filter .tab.active ul.options li {
  text-decoration: none;
}
#filter-and-sort .sort {
  width: 135px;
}
#filter-and-sort .sort .sortoptions ul li {
  padding: 0 1em;
  line-height: 30px;
  background-color: #FFF;
  height: 30px;
  font-size: 13px;
  white-space: nowrap;
}
#filter-and-sort .sort .sortoptions ul li.active {
  line-height: 40px;
  height: 40px;
  background: url(/app/shared/Games/Fusion/scss/checkmark.svg) no-repeat;
  background-position: 90% center;
  background-size: 18px;
  font-weight: 700;
}
#filter-and-sort .sort .sortoptions ul li:hover {
  background-color: #F1F1F1;
  cursor: pointer;
}
#filter-and-sort .sort.active {
  overflow: visible;
  height: auto;
}
@media screen and (min-width: 768px) {
  #filter-and-sort .filter {
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #filter-and-sort .filter .title {
    position: initial;
    width: auto;
    padding-right: 1em;
    border-right: 1px solid #E9E9E9;
  }
  #filter-and-sort .filter .title i {
    display: none;
  }
  #filter-and-sort .filter .tab {
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0 1em;
    border-right: 1px solid #E9E9E9;
    position: relative;
    line-height: 40px;
    height: 40px;
  }
  #filter-and-sort .filter .tab:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  #filter-and-sort .filter .tab i {
    color: red;
    position: initial;
    right: initial;
    margin-left: 1em;
  }
  #filter-and-sort .filter .tab ul.options {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
  }
  #filter-and-sort .filter .tab ul.options li {
    -webkit-transition: height 0.5s, opacity 0.5s;
    transition: height 0.5s, opacity 0.5s;
    opacity: 0;
    height: 0;
  }
  #filter-and-sort .filter .tab:hover ul.options {
    height: auto;
    max-height: 150px;
    -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
  }
  #filter-and-sort .filter .tab:hover ul.options li {
    height: 30px;
    opacity: 1;
  }
  #filter-and-sort .sort {
    overflow: visible;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #filter-and-sort .sort .title {
    position: initial;
    width: auto;
  }
  #filter-and-sort .sort .title i {
    position: absolute;
    right: 0.5em;
  }
  #filter-and-sort .sort .sortoptions {
    position: relative;
    z-index: 1;
    width: 135px;
  }
  #filter-and-sort .sort .sortoptions ul {
    height: 40px;
    overflow: hidden;
    width: 135px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
  }
  #filter-and-sort .sort .sortoptions ul li {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    opacity: 0;
    height: 0;
    -webkit-transition: height 0.5s, opacity 0.5s;
    transition: height 0.5s, opacity 0.5s;
  }
  #filter-and-sort .sort .sortoptions ul li.active {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    line-height: 40px;
    opacity: 1;
    height: 40px;
    font-weight: 400;
    background: none;
  }
  #filter-and-sort .sort .sortoptions ul:hover {
    -webkit-box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.1);
    height: auto;
    overflow: visible;
    background-color: #FFF;
  }
  #filter-and-sort .sort .sortoptions ul:hover li {
    opacity: 1;
    height: 40px;
    line-height: 40px;
  }
  #filter-and-sort .sort .sortoptions ul:hover li.active {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    height: 40px !important;
    line-height: 40px !important;
    background: url(/app/shared/Games/Fusion/scss/checkmark.svg) no-repeat;
    background-position: 90% center;
    background-size: 18px;
  }
  #filter-and-sort .sort .sortoptions ul:hover li:hover {
    background-color: #F1F1F1;
    cursor: pointer;
  }
  #filter-and-sort .sort.active {
    height: 40px;
    overflow: visible;
  }
}

#lockmodaloverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2500000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: _fadeIn 0.5s;
          animation: _fadeIn 0.5s;
}
#lockmodaloverlay .gamelockModal {
  background-color: #000;
  padding: 2em;
  color: #FFF;
  position: relative;
  width: 96%;
  max-width: 400px;
  -webkit-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.8);
          box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-animation: _entrance 0.5s;
          animation: _entrance 0.5s;
  overflow: hidden;
}
#lockmodaloverlay .icon-cancel {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 2em;
  width: 30px;
  height: 30px;
  font-style: normal;
  text-align: center;
  line-height: 30px;
  font-weight: 900;
}
#lockmodaloverlay .icon-cancel:hover {
  cursor: pointer;
}
#lockmodaloverlay h4 {
  margin: 0 0 9px 0;
  font-weight: 700;
}
#lockmodaloverlay h4 span {
  font-weight: 400;
}
#lockmodaloverlay h3 {
  font-weight: 900;
  font-size: 1.5em;
  margin: 0 0 12px 0;
  color: #FFF;
}
#lockmodaloverlay .button {
  line-height: 2em;
  border: none;
  border-radius: 4px;
  padding: 0 1em;
  font-weight: 700;
  background-color: #666;
  color: #FFF;
  width: 155px;
  font-size: 1.2em;
  margin: 1em auto 0 auto;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
}
#lockmodaloverlay.out {
  -webkit-animation: _fadeOut 1s;
          animation: _fadeOut 1s;
}

.gamesslider .glide__arrows .glide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  font-size: 1.5em;
  border-radius: 50%;
  color: #ffe11e;
}

.gamesslider {
  width: 95%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  /*custom sliders:*/
}
@media screen and (min-width: 568px) {
  .gamesslider {
    max-width: 1750px;
  }
}
.gamesslider .glide__bullets {
  padding: 0.5em;
  text-align: right;
  height: 36px;
}
.gamesslider .glide__bullets .glide__bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  display: inline-block;
  opacity: 0.5;
}
.gamesslider .glide__bullets .glide__bullet::before {
  content: "";
  background-color: #13102c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.gamesslider .glide__bullets .glide__bullet:hover {
  cursor: pointer;
}
.gamesslider .glide__bullets .glide__bullet--active {
  opacity: 1;
  border: 1px solid #ffffff;
}
.gamesslider .glide__slides {
  margin: 0;
}
.gamesslider .glide__slide {
  position: relative;
}
.gamesslider .glide__slide .label {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 20%;
  max-width: 140px;
}
.gamesslider .glide__slide img {
  display: block;
  width: 100%;
  border-radius: 0;
}
.gamesslider .glide__slide--active {
  z-index: 5;
}
.gamesslider .glide__arrows .glide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #29153b;
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  font-size: 1.5em;
  border-radius: 50%;
  color: #fec2a8;
}
.gamesslider .glide__arrows .glide__arrow:hover {
  cursor: pointer;
}
.gamesslider .glide__arrows .glide__arrow--left {
  left: -1em;
  text-align: right;
}
.gamesslider .glide__arrows .glide__arrow--left:before {
  right: 0;
}
.gamesslider .glide__arrows .glide__arrow--right {
  right: -1em;
  text-align: left;
}
.gamesslider .glide__arrows .glide__arrow--right:before {
  left: 0;
}
.gamesslider .glide__arrows .glide__arrow:before {
  width: 100%;
  position: absolute;
  top: 50%;
  font-size: 1.3em;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.gamesslider .letsplay {
  text-align: center;
}
.gamesslider .letsplay .title {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: block;
  width: 60%;
  max-width: 303px;
}
@media screen and (min-width: 568px) {
  .gamesslider .letsplay .title {
    left: 5%;
    top: 35%;
    width: 35%;
    max-width: 303px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.gamesslider .letsplay .cta {
  font-size: 1.2em;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
@media screen and (min-width: 568px) {
  .gamesslider .letsplay .cta {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .gamesslider .letsplay .cta {
    font-size: 2em;
  }
}
.gamesslider .letsplay i {
  font-size: 2em;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  display: block;
  -webkit-animation: _anim_down 1s;
          animation: _anim_down 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#pagehero.games .title {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: block;
  width: 60%;
  max-width: 303px;
}
@media screen and (min-width: 568px) {
  #pagehero.games .title {
    left: 5%;
    top: 30%;
    width: auto;
    max-width: none;
    max-height: 120px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media screen and (min-width: 768px) {
  #pagehero.games .title {
    top: 32%;
    width: 25%;
    max-width: 303px;
    max-height: none;
  }
}
@media screen and (min-width: 1024px) {
  #pagehero.games .title {
    top: 35%;
  }
}

#gamefiltersort .filter i,
#gamefiltersort .sort i {
  color: #fd7300;
}
@media screen and (min-width: 568px) {
  #gamefiltersort .filter .tab {
    border-left: 1px solid #ffffff;
  }
}

.gamessection {
  padding: 1em 0;
}
.gamessection h3 {
  text-transform: uppercase;
  margin: 0;
}

#filter-and-sort {
  font-size: 14px;
}
#filter-and-sort .filter .tab i {
  color: #fd7300;
}
#filter-and-sort .filter .tab ul.options li {
  background-color: #3A3D63;
}
#filter-and-sort .filter .tab ul.options li:hover {
  background-color: #231e51;
}
#filter-and-sort .sort .title i {
  color: #fd7300;
}
#filter-and-sort .sort .sortoptions ul li {
  background-color: #3A3D63;
}
#filter-and-sort .sort .sortoptions ul:hover {
  background-color: #3A3D63;
}
#filter-and-sort .sort .sortoptions ul:hover li:hover {
  background-color: #231e51;
}

body.fr #pagehero.games .title {
  width: 70%;
  max-width: 421px;
}
@media screen and (min-width: 568px) {
  body.fr #pagehero.games .title {
    width: 35%;
  }
}

#gamemodal .header .resize {
  font-family: "spindinero";
}
#gamemodal .header .resize:before {
  content: "\e813";
}
#gamemodal .container {
  background: url(/images/loadingscreen.jpg) no-repeat center center #000;
  /* Safari */
  /* IE11 */
}
#gamemodal .container:-webkit-full-screen .header .resize:before {
  content: "\e814";
}
#gamemodal .container:-ms-fullscreen .header .resize:before {
  content: "\e814";
}
#gamemodal .container:fullscreen .header .resize:before {
  content: "\e814";
}
#gamemodal .container:-webkit-full-screen .header .resize:before {
  content: "\e814";
}
#gamemodal .container:-ms-fullscreen .header .resize:before {
  content: "\e814";
}
#gamemodal .loadingscreen .animation .shape {
  fill: #fff;
}

@media screen and (max-width: 1023.99px) {
  #gamemodal {
    height: 100%;
  }
  #gamemodal iframe {
    height: calc(100% - 33px);
  }
}