html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box; }

body {
  background: #081130;
  font-size: 16px;
  font-family: "Roboto", sans-serif; }

ul, ol, p {
  font-size: 0.875rem;
  line-height: 1rem;
  line-height: 1.4; }

ul, ol {
  line-height: 1.8; }

h1,
h2,
h3,
h4,
h5 {
  color: #341b56;
  font-weight: normal;
  font-weight: 500; }

h1,
h2 {
  font-size: 2rem; }

p,
a,
span {
  font-size: 0.875rem; }

img {
  max-width: 100%;
  height: auto; }

.alignleft, .alignnone {
  float: left;
  margin: .5rem .5rem .5rem 0; }

.alignright {
  float: right;
  margin: .5rem .5rem 0 .5rem; }

.aligncenter {
  display: block;
  margin: 0 auto; }

@media only screen and (max-width: 979px) {
  .alignleft, .alignnone, .alignright, .aligncenter {
    max-width: 100%;
    height: auto;
    float: inherit;
    display: block;
    margin: 0 auto; } }

.background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh; }

.template-wrapper {
  z-index: 1; }

@media only screen and (max-width: 979px) {
  .template-wrapper {
    margin: 0 auto;
    position: relative; } }

@media only screen and (min-width: 980px) {
  .template-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; } }

/* Make clicks pass-through */
#nprogress {
  pointer-events: none; }

#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; }

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px); }

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px; }

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite; }

.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.button {
  color: #6d4822;
  background-color: #ffd15c;
  border-radius: 50%;
  padding: 0.3rem 1rem;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid rgba(109, 72, 34, 0.2);
  transition: background-color .3s ease; }
  .button:hover {
    background-color: rgba(255, 209, 92, 0.6);
    transition: background-color .3s ease; }

@media only screen and (max-width: 980px) {
  .header {
    display: block;
    margin: 1rem 0; }
    .header .logo {
      display: none;
      justify-content: center; }
      .header .logo img {
        width: 100%; }
    .header .top-banner {
      margin-top: 1.5rem; }
      .header .top-banner img {
        width: 100%; } }

@media only screen and (min-width: 980px) {
  .header {
    display: flex;
    justify-content: space-between;
    margin: 43px 0 37px;
    align-items: center; } }

.navbar-wrapper {
  position: relative;
  margin-top: 5rem; }
  .navbar-wrapper .logo {
    width: 200px; }

.navbar {
  display: flex;
  align-items: center;
  z-index: 9999;
  padding: 0 1rem;
  background-color: #351c56;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0; }
  .navbar nav {
    display: flex;
    justify-content: center;
    width: 100%; }
  .navbar .nav-menu {
    letter-spacing: 1px;
    list-style: none;
    padding: 0.8rem;
    margin: auto;
    transition: all 0.5s ease; }
    .navbar .nav-menu li {
      display: inline-block; }
      .navbar .nav-menu li a {
        padding: 0.3rem 1rem;
        color: white;
        text-decoration: none;
        cursor: pointer; }
        .navbar .nav-menu li a:hover {
          color: #ffd15c; }
      .navbar .nav-menu li > .active {
        border-radius: 50%;
        color: #6d4822;
        background-color: #ffd15c; }
        .navbar .nav-menu li > .active:hover {
          color: #6d4822; }
  .navbar .burger-bars {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem; }
  .navbar .bar1, .navbar .bar2, .navbar .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s; }

@media only screen and (max-width: 414px) {
  .navbar {
    padding: 0; }
    .navbar nav {
      height: 60px;
      background-color: #351c56; }
    .navbar .nav-menu {
      display: none; }
    .navbar .nav-menu.active {
      width: 100%;
      font-size: 25px;
      text-align: center;
      display: flex;
      justify-content: center;
      flex-direction: column;
      background-color: #351c56;
      transition: all 0.9s ease;
      opacity: 1; }
      .navbar .nav-menu.active li:first-child {
        padding: 0 1rem 1rem 1rem; }
      .navbar .nav-menu.active li {
        padding: 1rem; }
    .navbar .burger-bars {
      display: block;
      z-index: 1; } }

.title-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 51px;
  background-color: #341b56; }
  .title-wrapper p {
    font-size: 1rem;
    text-transform: uppercase;
    color: white; }

.top-section {
  background-color: white; }

.left-section {
  background-color: white; }

.top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem; }
  .top-section article h1 {
    text-align: center;
    text-align: center; }

.article {
  padding: 0 1rem; }

.game-page iframe {
  width: 100%;
  min-height: 373px;
  height: auto;
  margin-bottom: 1rem; }

@media only screen and (max-width: 979px) {
  .top-section img {
    margin: 0 auto; }
  .gid-wrapper, .top-section {
    display: block; }
  .left-section {
    display: inline-block;
    width: 100%; }
  .aside-section {
    display: inline-block;
    width: 100%; } }

@media only screen and (min-width: 980px) {
  .gid-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr); }
  .left-section,
  .text-section {
    grid-column-start: 1;
    grid-column-end: 6; }
  .aside-section {
    grid-column-start: 6;
    grid-column-end: 8; } }

.aside-section {
  background-color: #593f7d; }
  .aside-section .title-wrapper {
    background-color: rgba(52, 27, 86, 0.96); }
  .aside-section .banner-side-nav {
    display: flex;
    justify-content: center;
    align-items: center; }

@media only screen and (max-width: 980px) {
  .aside-section {
    display: none; } }

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 77px;
  color: #A9A9A9;
  font-size: 0.75rem;
  background-color: #F7F7F7; }

.casino-rating-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0.5rem 0;
  padding-left: 1rem; }
  .casino-rating-wrapper:nth-child(odd) {
    background-color: #F4F4F4; }
  .casino-rating-wrapper .casino-rating-banner,
  .casino-rating-wrapper .casino-rating-wrapper,
  .casino-rating-wrapper .casino-rating-cup,
  .casino-rating-wrapper .casino-rating-text,
  .casino-rating-wrapper .casino-rating-btn {
    display: flex;
    align-items: center; }
  .casino-rating-wrapper .casino-rating-text {
    grid-column-start: 2;
    grid-column-end: 4;
    padding-left: .5rem;
    border-right: 1px solid #d6d6d6; }
    .casino-rating-wrapper .casino-rating-text p {
      margin: 0;
      padding-left: 1rem; }
      .casino-rating-wrapper .casino-rating-text p:first-child {
        font-size: 1rem;
        font-weight: 500;
        color: #c25849; }
  .casino-rating-wrapper .casino-rating-cup {
    grid-column-start: 4;
    grid-column-end: 6;
    padding-left: .5rem; }
    .casino-rating-wrapper .casino-rating-cup .cups {
      display: flex;
      align-items: center; }

@media only screen and (max-width: 979px) {
  .casino-rating-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 1rem; }
    .casino-rating-wrapper .casino-rating-text {
      grid-column-start: 2;
      grid-column-end: 3; }
    .casino-rating-wrapper .casino-rating-cup {
      grid-column-start: 1;
      grid-column-end: 2;
      display: flex;
      height: 40px; }
      .casino-rating-wrapper .casino-rating-cup img {
        width: 20px; } }

.games-wrapper {
  margin-bottom: 1rem; }
  .games-wrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5rem; }
    .games-wrapper ul li {
      height: 160px; }
      .games-wrapper ul li .game {
        position: relative;
        height: 100%;
        width: 100%; }
        .games-wrapper ul li .game img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .games-wrapper ul li .game .game-text {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          opacity: 0;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: opacity .4s ease;
          color: white; }
        .games-wrapper ul li .game:hover .game-text {
          background-color: rgba(0, 0, 0, 0.6);
          opacity: 1;
          transition: opacity .4s ease; }
          .games-wrapper ul li .game:hover .game-text .button {
            display: block;
            text-align: center;
            margin: 0 1rem; }
  .games-wrapper .game-more {
    display: flex;
    justify-content: center; }

@media only screen and (max-width: 979px) {
  .games-wrapper ul {
    grid-template-columns: repeat(3, 1fr); } }

.news-wrapper {
  list-style-type: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem; }
  .news-wrapper li {
    padding: 0.5rem 0.5rem 2.5rem;
    background-color: #F9F9F9;
    position: relative; }
    .news-wrapper li h3 {
      color: #2a2a2a;
      font-size: 1rem;
      font-weight: normal;
      text-align: center; }
    .news-wrapper li p {
      font-size: 0.75rem; }
    .news-wrapper li .news-footer {
      width: 100%;
      left: 0;
      position: absolute;
      bottom: 0;
      padding: .5rem;
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .news-wrapper li .news-footer p {
        margin: 0;
        color: rgba(42, 42, 42, 0.6); }

@media only screen and (max-width: 979px) {
  .news-wrapper {
    display: block; } }

.side-nav-wrapper {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .side-nav-wrapper li {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    border-bottom: 1px solid rgba(131, 131, 131, 0.2);
    height: 43px;
    transition: background-color .3s ease; }
    .side-nav-wrapper li:hover {
      background-color: #ffd15c;
      transition: background-color .3s ease; }
      .side-nav-wrapper li:hover a {
        color: #6d4822; }
    .side-nav-wrapper li a {
      display: flex;
      height: 100%;
      width: 100%;
      padding: .5rem;
      align-items: center;
      color: #838383;
      text-decoration: none;
      box-sizing: border-box; }
      .side-nav-wrapper li a.active {
        color: #6d4822;
        background-color: #ffd15c; }
      .side-nav-wrapper li a span {
        margin-left: .5rem; }

.errorWrapper {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center; }
  .errorWrapper .error {
    width: 320px;
    padding: 1rem;
    background-color: white; }
    .errorWrapper .error p, .errorWrapper .error a {
      text-align: center; }

.inner-content img {
  max-width: 100%; }

.article ul {
  display: grid; }

.alice-carousel__stage-item a {
  width: 100%;
  display: block; }
  .alice-carousel__stage-item a img {
    width: 100%;
    height: auto; }

.button-area {
  display: flex;
  justify-content: center; }

.btn-grad {
  background-image: linear-gradient(to right, #000000 0%, #53346D 51%, #000000 100%); }

.btn-grad {
  margin: 10px;
  padding: 20px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block; }
  .btn-grad .btn-text {
    color: #fff;
    text-decoration: none;
    font-size: 20px; }

.btn-grad:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none; }

@media only screen and (max-width: 414px) {
  .btn-grad {
    margin: 2px;
    padding: 10px 35px; }
  .btn-text {
    font-size: 15px; } }

.alice-carousel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  direction: ltr; }

.alice-carousel__wrapper {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: auto; }

.alice-carousel__stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap; }
  .alice-carousel__stage-item {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    white-space: normal;
    line-height: 0; }
    .alice-carousel__stage-item * {
      line-height: initial; }
    .alice-carousel__stage-item.__cloned {
      visibility: hidden;
      opacity: 0; }

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 15px 10px; }
  .alice-carousel__prev-btn [data-area]::after,
  .alice-carousel__next-btn [data-area]::after {
    position: relative;
    content: attr(data-area);
    text-transform: capitalize; }

.alice-carousel__prev-btn {
  text-align: right; }

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  cursor: pointer;
  color: #465798; }
  .alice-carousel__prev-btn-item:hover,
  .alice-carousel__next-btn-item:hover {
    color: darkred; }
  .alice-carousel__prev-btn-item.__inactive,
  .alice-carousel__next-btn-item.__inactive {
    opacity: 0.4; }

.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block; }
  .alice-carousel__play-btn:hover {
    cursor: pointer; }
  .alice-carousel__play-btn-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff; }

.alice-carousel__play-btn-item {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent; }
  .alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
    position: absolute;
    pointer-events: none;
    display: block;
    width: 0;
    height: 0;
    content: '';
    transition: all 0.3s linear;
    border-width: 8px 0 8px 15px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #465798; }
  .alice-carousel__play-btn-item::before {
    left: 5px;
    height: 14px; }
  .alice-carousel__play-btn-item::after {
    top: 7px;
    left: 18px; }
  .alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
    height: 30px;
    border-width: 0 0 0 10px; }
  .alice-carousel__play-btn-item.__pause::after {
    top: 0;
    left: 18px; }

.alice-carousel__dots {
  margin: 30px 3px 5px;
  padding: 0;
  list-style: none;
  text-align: center; }
  .alice-carousel__dots-item {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #e0e4fb; }
    .alice-carousel__dots-item:hover, .alice-carousel__dots-item.__active {
      background-color: #6e7ebc; }

.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  color: #465798;
  border-radius: 5px;
  background-color: rgba(224, 228, 251, 0.6); }
  .alice-carousel__slide-info-item {
    vertical-align: middle;
    line-height: 0; }

.alice-carousel .animated {
  animation-fill-mode: both; }

.alice-carousel .animated-out {
  z-index: 1; }

.alice-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden; } }

