/* Utilities */
/* COLOR CODES */
/* FONTS */
/* MEDIA QUERY */
@-webkit-keyframes arrow-jump {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    right: 3px;
  }
}
@-moz-keyframes arrow-jump {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    right: 3px;
  }
}
/* Includes */
body {
  font-family: "Hind", sans-serif;
}
body p,
body span,
body li {
  font-size: 16px;
  line-height: 1.7;
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}

.sidebar {
  padding-top: 20px;
}
.sidebar .sidebar-image-wrapper {
  height: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.sidebar .sidebar-image-wrapper .sidebar-image {
  max-height: 150px;
}
.sidebar .sidebar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  margin-bottom: 10px;
}
.sidebar .sidebar-button .btn647 {
  display: flex;
  align-items: center;
  height: 41px;
  padding: 0 8px;
  min-width: 100px;
}
.sidebar img {
  width: 100%;
}

iframe, img {
  max-width: 100%;
}

img {
  height: auto;
}

.social-icons a {
  text-decoration: none;
}
.social-icons .dashicons {
  margin: 0 5px;
  color: #a07d42;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icons .dashicons:hover {
  color: #1A2889;
}

.btn,
.btn647 {
  vertical-align: middle;
  background-color: #FF6447;
  color: black;
  border-radius: 6px;
  border: 2px solid #FF6447;
  padding: 10px 15px 5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
}
.btn:hover, .btn:active, .btn:focus,
.btn647:hover,
.btn647:active,
.btn647:focus {
  background: #FFAA9B;
  color: black;
  text-decoration: none;
  border: 2px solid #FFAA9B;
}

.btn::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 3.5px;
  transform: rotate(48deg);
  border: 15.3px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  z-index: -1;
}

.btn:hover::after {
  border: 15.3px solid #FFAA9B;
  transition: 0.3s;
}

.btn-2-modular {
  vertical-align: middle;
  background-color: #FF6447;
  color: black;
  border-radius: 6px;
  border: 2px solid #FF6447;
  padding: 10px 15px 5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
}

.btn-2-modular::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 2px;
  transform: rotate(48deg);
  border: 14px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  z-index: -1;
}

.btn-2-modular:hover::after {
  border: 14px solid #FFAA9B;
  transition: 0.3s;
}

.btn-modal:hover::after {
  border: 14px solid #FFAA9B;
  transition: 0.3s;
}

.btn-modal::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 2px;
  transform: rotate(48deg);
  border: 14px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  z-index: -2;
}

a.casino-bonus-gtm.btn {
  vertical-align: middle;
  background-color: #FF6447;
  color: black;
  border-radius: 6px;
  border: 2px solid #FF6447;
  padding: 10px 15px 5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
}

a.casino-bonus-gtm.btn::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 5px;
  transform: rotate(48deg);
  border: 15px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  z-index: -2;
}

a.casino-bonus-gtm.btn:hover::after {
  border: 15px solid #FFAA9B;
  transition: 0.3s;
}

a.casino-bonus-gtm.btn:hover {
  background-color: #FFAA9B;
  transition: 0.3s;
}

.btn647 {
  padding: 0;
}
.btn647:hover, .btn647:active, .btn647:focus {
  color: black;
  background-color: #FF6447;
}

.rate {
  background-color: #fff;
  border-radius: 30px;
  max-width: 105px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 5px 0;
  margin: auto;
}
.rate img {
  display: inline;
  opacity: 1;
  padding: 0 2px;
  width: 18px;
  height: 14px;
}

/* Common style for single-game.scss
and single-casino.scss
*/
.module-page-header .header {
  padding: 35px 0 12px 0;
  background-color: #efefef;
  /* MIN */
}
.module-page-header .header.hidden {
  display: none;
}
.module-page-header .header .casino {
  text-align: center;
  margin: 0 55px 10px 0;
  border-right: 1px solid #d2d2d2;
  /* MIN */
  /* MIN */
}
.module-page-header .header .casino .rate {
  align-items: center;
  height: 28px;
}
@media only screen and (max-width: 768px) {
  .module-page-header .header .casino {
    border: none;
  }
}
@media only screen and (min-width: 768px) {
  .module-page-header .header .casino {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .module-page-header .header .casino .rate {
    width: 100%;
  }
}
.module-page-header .header .cta {
  text-align: center;
  margin: 20px 0;
  position: relative;
  z-index: 23;
}
@media only screen and (min-width: 520px) and (max-width: 768px) {
  .module-page-header .header .col-xs-6,
  .module-page-header .header .details {
    width: 33%;
  }
}
.module-page-header .header .col-lg-1 {
  width: 12%;
}

.content-module .aligncenter,
.content .aligncenter {
  margin: auto;
}
.content-module .alignright,
.content .alignright {
  margin-left: 17px;
}
.content-module .alignleft,
.content .alignleft {
  margin-right: 17px;
}
.content-module h2,
.content h2 {
  clear: none;
}

.center img {
  margin: auto;
  display: block;
}

.right img {
  margin: auto;
  display: block;
  float: right;
}

.left img {
  margin: auto;
  display: block;
  float: left;
}

.first-two-0 > .article {
  max-height: 405px !important;
  overflow: hidden;
}

.first-two-1 > .article {
  max-height: 195px !important;
  overflow: hidden;
}

.last-two-0 > .article {
  max-height: 195px !important;
  overflow: hidden;
}

.last-two-1 > .article {
  max-height: 195px !important;
  overflow: hidden;
}

.page-title {
  padding-left: 13px;
  padding-right: 13px;
}

.page-title h1 {
  border-bottom: 4px solid lightgray;
  padding-bottom: 5px;
}

.container {
  width: 100% !important;
  /* MIN */
}
.container.module-container {
  padding: 15px 15px 5px 15px;
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 100% !important;
    max-width: 1200px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

.widget-title {
  border-bottom: 2px solid #3BBBED;
  text-align: left;
  color: #1A2889;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.textwidget {
  background: #FFFFFF;
  margin-bottom: 16px;
  border-radius: 6px;
}
.textwidget .sidebar-casino-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  min-height: 220px;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border-radius: 6px;
}
.textwidget .sidebar-casino-card .casino-image .casino-logo {
  width: 187px;
  height: 60px;
  object-fit: contain;
  pointer-events: none;
}
.textwidget .sidebar-casino-card .casino-oneliner {
  width: 60%;
}
.textwidget .sidebar-casino-card .casino-oneliner p {
  text-align: center;
  margin: 15px 0;
}
.textwidget .sidebar-casino-card .casino-affiliate {
  width: 124px;
  height: 41px;
  border-radius: 6px;
  position: relative;
  padding-right: 8px;
}
.textwidget .sidebar-casino-card .casino-affiliate .casino-btn {
  font-weight: 600;
  font-size: 16px;
  color: black;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  background: #FF6447;
  z-index: 5;
  position: relative;
}
.textwidget .sidebar-casino-card .casino-affiliate .casino-btn:hover {
  text-decoration: none;
  background: #FFAA9B;
}
.textwidget .sidebar-casino-card .casino-btn::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 6px;
  transform: rotate(48deg);
  border: 15px solid #FF6447;
  border-radius: 5px;
  transition: 0.2s;
  z-index: -1;
}
.textwidget .sidebar-casino-card .casino-btn:hover::after {
  border: 15px solid #FFAA9B;
  transition: 0.2s;
}
.textwidget .sidebarlinksWrapper {
  display: flex;
  flex-direction: column;
  padding: 16px;
  font-size: 16px;
}
.textwidget .sidebarlinksWrapper a {
  padding: 5px 0;
  border-bottom: 0.5px solid #E3E6EF;
}
.textwidget .sidebarlinksWrapper a:last-child {
  border: none;
}

.gold {
  background-color: #FF6447;
  margin-left: 20px;
}

.game-review-btn {
  margin: 10px;
}

a.btn.game-review-btn {
  vertical-align: middle;
  background-color: #FF6447;
  color: black;
  border-radius: 6px;
  padding: 10px 15px 5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
}

a.btn.game-review-btn:hover {
  background-color: #FFAA9B !important;
  transition: 0.3s;
}

.a.btn.game-review-btn::after {
  content: '';
  position: absolute;
  right: -13px;
  transform: rotate(48deg);
  border: 16px solid #FF6447;
  border-radius: 5px;
}

#myModal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 48px;
}

.modal-header,
.modal-footer {
  border: none;
}

#modalWindow {
  background: #4f4f52b5;
}

.modal-backdrop {
  z-index: -2;
}

.modal-body,
.modal-body > iframe,
.modal-body > img {
  z-index: 100;
  width: 100%;
  height: 600px;
  top: 50px;
  margin-bottom: 70px;
}

.eurojackpot-numbers {
  text-align: center;
  font-weight: bold;
}

#first2 {
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 520px) and (max-width: 768px) {
  #first2 {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #first2 {
    padding-right: 15px;
  }
}

#last2 {
  /* MIN */
}
@media only screen and (max-width: 768px) {
  #last2 {
    width: 32% !important;
  }
}

.quicklinks-module .quicklinks-container {
  background: #F6F6FB;
  width: 100%;
}
.quicklinks-module .quicklinks-container .casino-card {
  margin-bottom: 16px;
  background-color: white;
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
}
.quicklinks-module .quicklinks-container .casino-card:last-child {
  margin-bottom: 0;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-logo a img {
  width: 100px;
  height: 34px;
  object-fit: contain;
  pointer-events: none;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .rating {
  display: flex;
  padding-top: 5px;
  background-color: #fff;
  border-radius: 30px;
  max-width: 105px;
  height: 32px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button {
  margin-top: 8px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button {
    margin: auto 0;
  }
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button a {
  border: 0;
  padding: 4px 18.2px;
  cursor: pointer;
  background: #FF6447;
  font-weight: bold;
  transition: 0.2s;
  color: black;
  position: relative;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button a:hover {
  background: #FFAA9B;
  color: black;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button a::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 5px;
  transform: rotate(48deg);
  border: 12px solid #FF6447;
  border-radius: 5px;
  transition: 0.2s;
}
.quicklinks-module .quicklinks-container .casino-card .casino-header .casino-button a:hover::after {
  transition: 0.2s;
  border: 12px solid #FFAA9B;
}
.quicklinks-module .quicklinks-container .casino-card .casino-footer .casino-oneliner p {
  color: #17182F;
  font-size: 16px;
  margin: 0;
  padding-top: 5px;
}

.sticky-footer-menu {
  display: none;
  min-height: 80px;
  background: #F7F7F7;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 999;
  justify-content: center;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .sticky-footer-menu {
    display: none;
  }
}
.sticky-footer-menu .box-elements {
  display: flex;
  justify-content: center;
  width: 80%;
  height: 100%;
  transform: translate(-8.2%, 0);
  padding-top: 10px;
}
.sticky-footer-menu .box-elements .box {
  padding-top: 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sticky-footer-menu .box-elements .box:first-child {
  margin-left: 10px;
}
.sticky-footer-menu .box-elements .box .image {
  display: flex;
  justify-content: center;
  width: 70px;
}
.sticky-footer-menu .box-elements .box .image img {
  width: 32px;
  height: 32px;
}
.sticky-footer-menu .box-elements .box .text p {
  margin: 6px 0 0;
  letter-spacing: -1px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}
.sticky-footer-menu .box-elements .seperator {
  width: 1px;
  background: #000000;
  height: 54px;
  margin: auto 0;
  opacity: 0.2;
}
.sticky-footer-menu .sticky-nav {
  height: 100%;
  width: 52px;
}

/* MIN */
@media only screen and (min-width: 992px) {
  .centered {
    text-align: center;
  }
}
.disable-cta:hover {
  background-color: #1A2889 !important;
  color: white !important;
}
.disable-cta:focus {
  color: white !important;
  outline: none;
}

.placeholder-affiliate {
  margin-top: 5px;
}
.placeholder-affiliate a {
  color: #337ab7;
  text-decoration: underline !important;
  font-weight: bold;
  font-size: 15px;
}

.intro-banner-date {
  display: flex;
  align-items: center;
}
.intro-banner-date img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: 5px;
  object-fit: cover;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: white;
  margin-top: 40px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .breadcrumb {
    margin: 0;
  }
}
.breadcrumb .bread-holder a {
  color: #1A2889;
}

.heateor_sss_sharing_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#jaa_text {
  margin-right: 15px !important;
}

.navbar-collapse {
  /* MIN */
}
@media only screen and (max-width: 767px) {
  .navbar-collapse {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 9999;
  }
}

.mobile-navigation {
  border-color: transparent !important;
  /* MIN */
}
@media only screen and (max-width: 767px) {
  .mobile-navigation {
    position: fixed;
    transform: translateX(-25%);
    z-index: 9999;
  }
}
.mobile-navigation:focus {
  background-color: transparent !important;
}
.mobile-navigation .icon-bar {
  background-color: #1A2889 !important;
  width: 25px !important;
  margin-bottom: 7px;
}
.mobile-navigation .icon-text {
  letter-spacing: -1px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 5px;
  bottom: -25px;
}

.cli-modal {
  display: none;
}

body {
  background: #F6F6FB;
}

.sprite-1 {
  background-image: url(../../../images/star-rating.png);
  background-repeat: no-repeat;
  display: block;
}

.sprite-star-half-1 {
  background-position: 0 -24px;
}

.sprite-star-full-1 {
  background-position: -25px -1px;
}

.sprite-star-empty-1 {
  background-position: -1px -1px;
}

.module h2 {
  color: #1A2889;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  text-align: left !important;
}
.module h3 {
  color: #1A2889;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
}

.navbar-header {
  /* MIN */
}
@media only screen and (max-width: 767px) {
  .navbar-header {
    height: 88px;
    padding: 20px 25px;
  }
}

.navbar-brand {
  padding: 11px 0px;
  margin-left: 65px;
}
.navbar-brand img {
  object-fit: cover;
  width: 200px;
  height: 32px;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .navbar-brand img {
    width: 136px;
    object-fit: cover;
    height: 22px;
  }
}

.front-page .page-title-module h1 {
  font-size: 24px;
  margin: 44px 0 10px;
  /* MIN */
  font-family: Hind;
  font-weight: 600;
  color: #1A2889;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .front-page .page-title-module h1 {
    font-size: 36px;
    margin: 20px 0 10px;
  }
}

.page-title-module h1 {
  color: #1A2889;
}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.site-footer-top {
  background: #1A2889;
  text-align: center;
}
.site-footer-top ul {
  padding: 0;
  margin: 20px 0;
}
.site-footer-top ul li {
  list-style-type: none;
}
.site-footer-top ul li a {
  color: white;
}
.site-footer-top #menu-footer .menu-item {
  padding: 4px 0;
  margin-bottom: 2px;
}
.site-footer-top .footer-elements {
  padding: 45px 0;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements {
    width: auto;
    margin: 0 auto;
    padding: unset;
    min-height: 292px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer-top .footer-elements .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .left-side {
    margin-top: -48px;
  }
}
.site-footer-top .footer-elements .left-side .nk247-logo a img {
  object-fit: cover;
  width: 243px;
  height: 40px;
}
.site-footer-top .footer-elements .left-side .phone-number {
  width: 203px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 38px 0 34px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .left-side .phone-number {
    margin: 28px 0 10px -39px;
    max-width: 203px;
  }
}
.site-footer-top .footer-elements .left-side .phone-number img {
  margin-right: 12px;
}
.site-footer-top .footer-elements .left-side .phone-number p {
  color: white;
  margin: 0;
}
.site-footer-top .footer-elements .left-side .social-media {
  display: flex;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .left-side .social-media {
    place-self: flex-start;
  }
}
.site-footer-top .footer-elements .left-side .social-media a {
  margin-left: 12px;
}
.site-footer-top .footer-elements .left-side .social-media a:first-child {
  margin-left: 0;
}
.site-footer-top .footer-elements .left-side .social-media a .media-icon img {
  width: 26px;
  height: 26px;
}
.site-footer-top .footer-elements .center {
  text-align: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .center {
    text-align: left;
  }
}
.site-footer-top .footer-elements .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .right-side {
    margin-top: -51px;
    align-items: flex-start;
  }
}
.site-footer-top .footer-elements .right-side .responsibility {
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .right-side .responsibility {
    margin-left: -18px;
  }
}
.site-footer-top .footer-elements .right-side .responsibility img {
  margin: 0 18px;
}
.site-footer-top .footer-elements .right-side .safety-icons {
  margin-top: 15px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .right-side .safety-icons {
    display: flex;
    align-items: center;
  }
}
.site-footer-top .footer-elements .right-side .safety-icons .dmca {
  margin-top: 15px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .right-side .safety-icons .dmca {
    margin: 0 0 0 24px;
  }
}
.site-footer-top .footer-elements .right-side .safety-icons .mga {
  margin-top: 4px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-top .footer-elements .right-side .safety-icons .mga {
    margin: 0;
  }
}

.site-footer-bottom {
  padding: 15px 0;
  border-bottom: 1px solid #a07d42;
}
.site-footer-bottom .footer-inner .footer-logo {
  display: flex;
  justify-content: center;
}

.site-footer-credits {
  padding: 15px 24px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-credits {
    padding: 15px 0;
    width: -webkit-fill-available;
    margin: 0 auto;
  }
}
.site-footer-credits .footer-text {
  display: flex;
  justify-content: space-around !important;
  flex-direction: column;
  text-align: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .site-footer-credits .footer-text {
    flex-direction: unset;
    text-align: unset;
  }
}
.site-footer-credits p {
  margin: 10px 0 0 0;
  font-weight: 500;
  /* MIN */
}
.site-footer-credits p:first-child {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .site-footer-credits p {
    margin: 0;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 10px 15px;
  display: none;
  pointer-events: none;
  z-index: 9;
}
.scroll-to-top a {
  pointer-events: all;
  text-decoration: none;
  background: #3BBBED;
  color: #f3f2f1;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  float: right;
  width: 40px;
  height: 40px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 10px 87px 0;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .scroll-to-top a {
    margin: 0 0 33px 0;
    background: #1A2889;
    border: 1px solid #f3f2f1;
  }
  .scroll-to-top a:hover, .scroll-to-top a:focus {
    background: #a07d42;
  }
}
@media only screen and (min-width: 992px) {
  .scroll-to-top a {
    margin: 0;
  }
}
.scroll-to-top a img {
  width: 18px;
  height: 18px;
}

#footer {
  margin-top: 25px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  #footer {
    margin: 0;
  }
}

.search-form {
  display: none;
  padding: 10px 0;
}

.search-btn {
  margin-top: 5px;
}

.search-btn img {
  width: 20px;
  height: 20px;
}

#submitSearch {
  float: left;
}

#clearSearch {
  float: right;
}

.search-icon {
  float: right;
}

#search-field {
  border: none;
  padding: 5px;
  width: 75%;
}

#submitSearch,
#clearSearch {
  background-color: transparent;
  border: none;
}

.search-bar {
  width: 100%;
  float: right;
  z-index: 100;
}

@media (min-width: 768px) {
  .navbar-search-content-mobile .navbar-search,
  .navbar-search-content-mobile .search-bar {
    display: none !important;
  }

  .search-bar {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .collapse .navbar-search,
  .collapse .search-bar {
    display: none !important;
  }
}
.navbar-search-mobile {
  padding: 11px 19px 10px 25px;
  margin-top: 13px;
}

.navbar-search {
  float: right;
  margin: 15px 0px;
  width: 20px;
  height: 20px;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .navbar-search {
    margin: 15px 10px;
  }
}

.navbar-search:hover,
.navbar-search-mobile:hover {
  cursor: pointer;
}

#navbar {
  margin: 0 -15px;
}

.navbar-right {
  margin-right: 0;
}

.search-bar *:focus {
  outline: 0;
}

.nav > li > a {
  padding: 15px 10px;
}

.search-results article {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px #e0e0e0;
  margin-bottom: 15px;
}

.search-results article:hover {
  background: #e0e0e07d;
}

.result-span {
  color: #337ab7;
  font-size: 20px;
  padding-left: 15px;
}

.search-results-page-title {
  margin-top: 35px;
}

.search-results-hr {
  border: 1px solid #337ab7;
}

.img-404 {
  text-align: center;
}

.img-404 img {
  width: 65%;
  height: 65%;
}

.img-404 button {
  padding: 23px 62px;
  background: linear-gradient(to left, #2377b9, #1daeeb);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bolder;
  margin: 100px 0;
}

.img-404 button:hover {
  background: #1daeeb;
}

.error404 h1 {
  color: #031E37;
  font-size: 36px;
  font-weight: bolder;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.img-404 h2 {
  font-size: 16px;
  font-weight: bolder;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #031E37;
  margin-top: -5%;
}

@media (max-width: 768px) {
  .img-404 h1 {
    margin-top: 50px;
  }

  .img-404img {
    width: 80%;
  }

  .img-404 button {
    margin-top: 55px;
  }
}
.single-game .img-responsive {
  max-height: 130px;
}
.single-game .header h2 {
  text-transform: uppercase;
  color: #1A2889;
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0;
}
.single-game .header img {
  display: inline-block;
  margin-bottom: 15px;
  width: 200px;
  height: 130px;
  object-fit: cover;
}
.single-game .header .slot-logo-wrapper {
  width: 200px;
  height: 180px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.single-game .header .slot-logo-wrapper .slot-logo-bg {
  width: 100%;
  height: 100%;
  max-width: 190px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.single-game .header span {
  display: block;
  font-weight: 600;
}

/* MIN */
@media only screen and (min-width: 1200px) {
  .content-col-left {
    margin-left: 20%;
  }
}
.single-casino .sticky-module {
  position: fixed;
  bottom: 91px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 98;
  display: none;
}
@media (min-width: 768px) {
  .single-casino .sticky-module {
    bottom: 45px;
    left: 47%;
  }
}
@media (min-width: 992px) {
  .single-casino .sticky-module {
    left: 50%;
    transform: translate(-67.2%, 0);
    bottom: 10px;
  }
}
.single-casino .sticky-module .sticky-module-container {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 690px;
  height: 85px;
  background-color: rgba(243, 242, 240, 0.92);
  border: 2px solid #1A2889;
  border-radius: 12px;
}
@media (min-width: 767px) {
  .single-casino .sticky-module .sticky-module-container {
    display: flex;
  }
}
@media (min-width: 900px) {
  .single-casino .sticky-module .sticky-module-container {
    width: 760px;
  }
}
@media (min-width: 1200px) {
  .single-casino .sticky-module .sticky-module-container {
    width: 790px;
  }
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body {
  display: flex;
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-logo {
  padding: 0 20px;
  height: 81px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-logo img {
  max-width: 90px;
  pointer-events: none;
}
@media (min-width: 767px) {
  .single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-logo img {
    max-height: 35px;
    max-width: 100px;
    border-radius: 5px;
    margin-bottom: 5px;
  }
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-logo .rate {
  padding: 4px 0;
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-body {
  margin: 13px 0 0 5px;
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-body .casino-name span {
  font-weight: 700;
  font-size: 12px;
}
@media (min-width: 767px) {
  .single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-body .casino-name span {
    font-size: 18px;
  }
}
.single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-body .casino-information span {
  font-size: 10px;
}
@media (min-width: 767px) {
  .single-casino .sticky-module .sticky-module-container .sticky-module-body .casino-body .casino-information span {
    font-size: 16px;
  }
}
.single-casino .sticky-module .casino-cta {
  padding: 30px;
}
.single-casino .sticky-module .cta {
  position: relative;
}
.single-casino .sticky-module .cta .btn {
  background-color: #FF6447;
  color: black;
  border: none;
  width: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 3px;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 992px) {
  .single-casino .sticky-module .cta .btn {
    font-size: 16px;
  }
}
.single-casino .sticky-module .cta .btn::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 5px;
  transform: rotate(48deg);
  border: 15px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  z-index: 2;
}
.single-casino .sticky-module .sticky-casino-cta {
  display: flex;
}
@media (min-width: 767px) {
  .single-casino .sticky-module .sticky-casino-cta {
    display: none;
  }
}
.single-casino .sticky-module .sticky-casino-cta .btn {
  width: 145px;
  height: 49px;
}
.single-casino .sticky-module .casino-rating .rate {
  padding: unset;
  min-width: 100px;
  height: 32px;
  align-items: center;
}

.casino__review {
  background: #FFFFFF;
}
.casino__review__page {
  padding-bottom: 16px;
}
.casino__review__page__title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #17182F;
}
.casino__review__page__top {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 24px 0 0 0;
}
.casino__review__page__top__info {
  margin: 24px 0 0 0;
  display: flex;
}
.casino__review__page__top__info__logo {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  width: 187px;
  height: 187px;
  margin: 0 24px 0 0;
}
.casino__review__page__top__info__logo a {
  width: 187px;
  height: 187px;
}
.casino__review__page__top__info__logo a img {
  background-color: #165AF8;
  border-radius: 8px;
  width: 187px;
  height: 187px;
  object-fit: contain;
}
.casino__review__page__top__info__logo__ribbon {
  width: fit-content;
  padding: 2px 12px;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border-radius: 50px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #3bbbed;
  position: absolute;
  top: -10px;
  left: 35px;
}
.casino__review__page__top__info__logo .rating {
  position: absolute;
  bottom: -17px;
  left: 40px;
}
.casino__review__page__top__info__logo .rating .rate {
  padding: 9px;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border-radius: 50px;
  width: 100px;
  height: 32px;
}
.casino__review__page__top__info__bar__first__detail, .casino__review__page__top__info__bar__second__detail, .casino__review__page__top__info__bar__third__detail {
  display: flex;
  flex-direction: column;
}
.casino__review__page__top__info__bar__first__detail .title, .casino__review__page__top__info__bar__second__detail .title, .casino__review__page__top__info__bar__third__detail .title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #17182F;
  margin: 0 0 8px 0;
  display: inline-block;
}
.casino__review__page__top__info__bar__first__detail .details, .casino__review__page__top__info__bar__second__detail .details, .casino__review__page__top__info__bar__third__detail .details {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #6E6E84;
  width: 100px;
}
.casino__review__page__top__info__bar__first__detail, .casino__review__page__top__info__bar__second__detail {
  margin: 0 0 24px 0;
}
.casino__review__page__top__info__bar__first__detail .details a {
  text-decoration-line: underline;
  color: #165AF8;
  word-break: break-word;
}
.casino__review__page__top__details {
  position: relative;
  margin: 36px 0 0 0;
}
.casino__review__page__top__details__info, .casino__review__page__top__details__information, .casino__review__page__top__details__payment__methods {
  display: flex;
  flex-direction: column;
}
.casino__review__page__top__details__info .title, .casino__review__page__top__details__information .title, .casino__review__page__top__details__payment__methods .title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #17182F;
}
.casino__review__page__top__details__info .details, .casino__review__page__top__details__information .details, .casino__review__page__top__details__payment__methods .details {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #6E6E84;
}
.casino__review__page__top__details__info, .casino__review__page__top__details__information {
  margin: 0 0 24px 0;
}
.casino__review__page__top__details__payment__methods {
  margin: 0 0 24px 0;
}
.casino__review__page__top__details__payment__methods .methods {
  margin: 10px 0 0 0;
}
.casino__review__page__top__details__payment__methods .methods img {
  border-radius: 4px;
  width: 72px;
  height: 48px;
  margin: 0 5px 8px 0;
}
.casino__review__page__top__details::after {
  content: none;
  border-left: 1px solid #E3E6EF;
  position: absolute;
  top: -3px;
  right: -42px;
  bottom: 1px;
}
.casino__review__page__top__details::before {
  content: none;
  border-left: 1px solid #E3E6EF;
  position: absolute;
  top: -3px;
  left: -42px;
  bottom: 1px;
}
.casino__review__page__top__pros__cons__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #17182F;
}
.casino__review__page__top__pros__cons .pros {
  width: -webkit-fill-available;
  margin: 0 0 8px 0;
  padding: 8px 8px 8px 12px;
  background: #F2FAF4;
  border-radius: 4px;
}
.casino__review__page__top__pros__cons .pros img {
  width: 16px;
  height: 12px;
  margin: 0 13px 0 0;
}
.casino__review__page__top__pros__cons .cons {
  width: -webkit-fill-available;
  margin: 0 0 8px 0;
  padding: 8px 8px 8px 12px;
  background: #FFCDCB;
  border-radius: 4px;
}
.casino__review__page__top__pros__cons .cons img {
  width: 14px;
  height: 14px;
  margin: 0 13px 0 0;
}
.casino__review__page__top__pros__cons .pros,
.casino__review__page__top__pros__cons .cons {
  display: flex;
  align-items: center;
  color: #17182F;
  line-height: 24px;
}
.casino__review__cta {
  background: #B5EAFF;
  height: 96px;
  display: flex;
}
.casino__review__cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino__review__cta__wrapper__details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 40px 0 0;
}
.casino__review__cta__wrapper__details .title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #17182F;
}
.casino__review__cta__wrapper__details .details {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #17182F;
}
.casino__review__cta__wrapper__button {
  width: 210px;
  height: 48px;
  background: #FF6447;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.casino__review__cta__wrapper__button a {
  padding: 0 12px 0 12px;
  color: black;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.casino__review__cta__wrapper__button::after {
  content: '';
  position: absolute;
  right: -14px;
  transform: rotate(48deg);
  border: 18px solid #FF6447;
  border-radius: 5px;
}

/* MIN */
@media only screen and (min-width: 768px) {
  .casino__review__page__top__info {
    display: flex;
    justify-content: unset;
    margin: 0 21px 0 0;
  }
  .casino__review__page__top__info .pointer a > * {
    pointer-events: none;
  }
  .casino__review__page__top__info__bar {
    margin: 0 0 0 20px;
  }
  .casino__review__page__top__info__bar__first__detail .details, .casino__review__page__top__info__bar__second__detail .details, .casino__review__page__top__info__bar__third__detail .details {
    width: unset;
  }
  .casino__review__page__top__info__bar__first__detail .details a {
    word-break: unset;
  }
  .casino__review__page__top__info__logo {
    align-items: unset;
  }
  .casino__review__page__top__details {
    margin: 24px 0 24px 0;
  }
  .casino__review__cta__wrapper__details .details {
    font-size: 24px;
    line-height: 24px;
  }
}
/* MIN */
@media only screen and (min-width: 992px) {
  .casino__review__page {
    padding: 24px;
  }
  .casino__review__page__top {
    flex-direction: row;
  }
  .casino__review__page__top__info__logo {
    margin: unset;
  }
  .casino__review__page__top__payment__methods {
    margin: unset;
  }
  .casino__review__cta__wrapper__details .details {
    font-size: 24px;
    line-height: 24px;
  }
}
/* MIN */
@media only screen and (min-width: 1200px) {
  .casino__review__page {
    padding: 24px 0 24px 0;
  }
  .casino__review__page__top {
    flex-direction: row;
  }
  .casino__review__page__top__info {
    display: flex;
    margin: 0 35px 0 0;
  }
  .casino__review__page__top__details {
    margin: 0 35px;
  }
  .casino__review__page__top__details::after {
    content: "";
  }
  .casino__review__page__top__details::before {
    content: "";
  }
  .casino__review__page__top__pros__cons {
    margin: 0 0 0 35px;
  }
  .casino__review__page__top__pros__cons .pros,
  .casino__review__page__top__pros__cons .cons {
    width: 360px;
  }
}
.archive-page {
  margin-top: 20px;
  margin-bottom: 20px;
}
.archive-page article {
  margin-top: 20px;
  min-height: 180px;
}
.archive-page article a {
  display: block;
  text-decoration: none;
  outline: none;
  position: relative;
}
.archive-page article .news-img {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.archive-page article .news-details {
  position: relative;
  text-align: left;
}
.archive-page article .news-details h4 {
  width: 100%;
  font-size: 1.3em;
  position: relative;
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  /* MIN */
}
@media only screen and (max-width: 480px) {
  .archive-page article .news-details h4 {
    font-size: 1em;
  }
}
.archive-page article .news-details p {
  font-size: 1em;
  margin: 10px 0 0;
}
.archive-page .page-numbers {
  background-color: #1A2889;
  border-radius: 0;
  border: 2px solid #1A2889;
  padding: 10px 15px 5px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  color: #f3f2f1;
  /* MIN */
}
.archive-page .page-numbers.current, .archive-page .page-numbers:hover {
  background-color: transparent;
  color: #1A2889;
}
@media only screen and (max-width: 480px) {
  .archive-page .page-numbers {
    padding: 6px 6px 4px;
  }
}

.splash-screen {
  display: flex;
  align-items: center;
  background-color: #E5E5E5;
  height: calc(100vh - 70px);
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .splash-screen {
    height: calc(100vh - 32px);
  }
}
.splash-screen .splash-container {
  width: 100%;
  min-height: 340px;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  text-align: center;
  color: #150E06;
  position: relative;
  padding: 0 16px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 31px 25px 24px;
}
.splash-screen .splash-container__wait {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.splash-screen .splash-container__progress {
  width: 100%;
  height: 8px;
}
.splash-screen .splash-container__redirect {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}
.splash-screen .splash-container__cta {
  width: 185px;
  background: #1B2C84;
  border-radius: 6px;
  padding: 9px 20px;
  margin-top: -10px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
  color: #FFFFFF;
}

.fullscreen-bg {
  position: fixed;
  top: -444px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
  /* MIN */
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
}

/* MIN */
@media only screen and (min-width: 768px) {
  .splash-screen .splash-container {
    width: 472px;
    margin: 0 auto;
  }
  .splash-screen .splash-container__wait {
    font-size: 22px;
    line-height: 36px;
  }
  .splash-screen .splash-container__progress {
    width: 422px;
    margin-top: -7px;
  }
  .splash-screen .splash-container__redirect {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: -1px;
  }
  .splash-screen .splash-container__cta {
    font-size: 20px;
    line-height: 30px;
    padding: 9.5px 16px;
  }
}
progress {
  color: #3BBBED;
  -webkit-appearance: none;
  overflow: hidden;
  border-radius: 2px;
}
progress::-webkit-progress-bar {
  background: #F3F4F5;
}
progress::-webkit-progress-value {
  background: #3BBBED;
}
progress::-moz-progress-bar {
  background: #3BBBED;
}

.anchor__menu {
  padding: 0 15px;
}
.anchor__menu__items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  margin: 64px 0 0 0;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.anchor__menu__items__type {
  height: 64px;
  padding: 0px 40px 0 0;
  margin: 6px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.anchor__menu__items__type span {
  font-style: normal;
  font-size: 18px;
  line-height: 16px;
  color: #3968D6;
  text-transform: capitalize;
  align-self: center;
}
.anchor__menu__items__type span:after {
  content: "";
  border-right: 1px solid #848eb3;
  position: relative;
  left: 41px;
  padding: 5px 0px 5px 0;
}
.anchor__menu__items__type:last-child {
  border-right: unset;
  padding: 0;
}
.anchor__menu__items__type:last-child span:after {
  content: unset;
}

.sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sitemap .group {
  width: 33%;
}
.sitemap section {
  margin: 20px 0px 0px 0;
  float: left;
  font-size: 24px;
}
.sitemap section img {
  margin: 0 12px 0 0;
  width: 48px;
  height: 48px;
}
.sitemap__section__items {
  padding: 10px 0 0 29px;
}
.sitemap__section__items li {
  list-style: none;
  padding: 12px;
}
.sitemap__section__items li a {
  font-size: 12px;
  line-height: 19px;
  font-style: normal;
  color: #004E98;
  text-transform: capitalize;
  text-decoration-line: underline;
}
.sitemap__section__items li a .link-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
}
.sitemap__section__items li a:before {
  content: "";
  border: 1px dashed #C4C4C4;
  position: relative;
  right: 18px;
  top: 13px;
  display: block;
  width: 24px;
}
.sitemap__section__items li .children {
  margin: 12px 0 0 0;
  padding-left: 0px;
}
.sitemap__section__items li .children li {
  padding: 12px 0 0 0;
}
.sitemap__section__items li:before {
  content: "";
  border: 1px dashed #C4C4C4;
  position: relative;
  right: 62px;
  bottom: -31px;
  width: 82px;
  display: block;
  transform: rotate(90deg);
}
.sitemap__section__items > li:first-child:before {
  right: 66px;
  bottom: -27px;
  width: 90px;
}
.sitemap__section__items > li:last-child:before {
  right: 22px;
  bottom: 0;
  width: 0;
}
.sitemap__section__items > li:only-child:before {
  right: 39px;
  bottom: 2px;
  width: 36px;
}
.sitemap__loaded {
  padding: 0 20px;
}

form.sitemap__load-more {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
form.sitemap__load-more button.sitemap__load-more__btn {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: unset;
  background: transparent;
  color: #004e98;
  border: 2px solid #ec5c58;
  border-radius: 100px;
  min-width: 256px;
  height: 48px;
  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;
  position: relative;
}

/* MIN */
@media only screen and (max-width: 768px) {
  .anchor__menu__items {
    justify-content: flex-start;
  }
  .anchor__menu__items__type {
    width: 45%;
    padding: 0px 30px 0 30px;
  }
  .anchor__menu__items__type:last-child {
    padding: 0px 30px 0 30px;
  }

  .sitemap .group {
    width: auto;
  }
}
/* MIN */
@media only screen and (max-width: 480px) {
  .anchor__menu__items__type {
    padding: 0px 20px 0 20px;
  }
  .anchor__menu__items__type:last-child {
    padding: 0px 20px 0 20px;
  }

  .sitemap {
    flex-direction: column;
  }
  .sitemap .group {
    width: 100%;
  }
}
/* Modules */
.accordion-module .accordion .module-title {
  font-weight: 600;
  font-size: 24px;
  color: #1A2889;
  line-height: 36px;
}
.accordion-module .accordion .module .panel-group .panel {
  border-radius: 6px;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border: none;
}
.accordion-module .accordion .module .panel-group .panel .active {
  background-color: #FFFFFF;
}
.accordion-module .accordion .module .panel-group .panel + .panel {
  margin-top: 8px;
}
.accordion-module .accordion .module .panel-default > .panel-heading {
  background-color: #FFFFFF;
  padding: 16.5px 16px;
  border-radius: 6px;
}
.accordion-module .accordion .module .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: none;
  padding: 5px 15px 0;
}
.accordion-module .accordion .module .panel-default > .panel-heading .panel-title {
  font-size: 14px;
  font-weight: 500;
  color: #17182F;
  line-height: 20px;
}
.accordion-module .accordion .module .panel-default > .panel-heading .panel-title a {
  text-decoration: none;
}
.accordion-module .accordion .module .panel-default > .panel-heading .panel-title a:hover {
  text-decoration: none;
}
.accordion-module .accordion .module .panel-default > .panel-heading .panel-title span {
  font-size: 24px;
  color: #000000;
  float: right;
}

.article-list h2 {
  padding-bottom: 5px;
  border-bottom: 3px solid #6344A1;
}
.article-list .module {
  padding: 0 15px;
}
.article-list .module .article {
  overflow: hidden;
}
.article-list .module .article a {
  text-decoration: none;
  color: black;
}
.article-list .module .article a img {
  float: left;
  margin: 15px 15px 15px 0;
  width: 100%;
  height: 104px;
  object-fit: cover;
}
.article-list .module .article a h3 {
  color: #1A2889;
  font-size: 1.2em;
  word-wrap: break-word;
  font-weight: 500;
}
.article-list .module .article a p {
  margin-bottom: 7px;
}
.article-list .module .article a .date {
  text-transform: uppercase;
  color: #ac9ee6;
}

/* MIN */
@media only screen and (min-width: 992px) {
  .widget .article-list .col-lg-6 {
    width: 100%;
    padding: 0;
  }
  .widget .article-list .col-lg-6 .article a img {
    margin: 20px 10px 0 0;
  }
  .widget .article-list .col-lg-6 .article a h3 {
    margin-bottom: 2px;
    line-height: 1.4em;
  }
  .widget .article-list .col-lg-6 .article a p {
    margin-bottom: 4px;
  }
  .widget .article-list .col-lg-6 .date {
    /* MIN */
  }
}
@media only screen and (min-width: 992px) and (min-width: 1200px) {
  .widget .article-list .col-lg-6 .date {
    margin-left: 110px;
  }
}

.bonuses .module {
  /*
  Adjusting Bootstrap offset to center odd number of boxes.
  */
}
.bonuses .module .content {
  background-color: #590ec2;
  border-bottom: 5px solid #ac9ee6;
  text-align: center;
  padding: 5px 30px 20px 30px;
  min-height: 150px;
  margin-top: 10px;
}
.bonuses .module .content h2 {
  color: #ac9ee6;
  border-bottom: 1px solid #d2b4ec;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: 600;
}
.bonuses .module .content p {
  color: #d2b4ec;
  margin-bottom: 10px;
  font-size: 1.15em;
  font-weight: 300;
}
.bonuses .module .number {
  display: block;
  text-align: center;
  margin: -18px 0 10px 0;
}
.bonuses .module .number span {
  padding: 12px 20px;
  border-radius: 75%;
  background-color: #590ec2;
  color: #ac9ee6;
  font-size: 1.2em;
  font-weight: 600;
}
.bonuses .module .col-md-offset-4 {
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .bonuses .module .col-md-offset-4 {
    margin-left: 25%;
  }
}
@media only screen and (min-width: 992px) {
  .bonuses .module .col-md-offset-4 {
    margin-left: 40%;
  }
}
.bonuses .module .col-md-offset-2 {
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .bonuses .module .col-md-offset-2 {
    margin-left: 13%;
  }
}

.casino-bonus .module {
  background-color: #F3F2F0;
  border: 5px solid #A8A8C6;
  text-align: center;
  padding: 15px;
}
.casino-bonus .module .bonus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* MIN */
}
.casino-bonus .module .bonus .logo a {
  padding: 20px;
}
.casino-bonus .module .bonus .logo a img {
  max-height: 70px;
  max-width: 150px;
  pointer-events: none;
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .casino-bonus .module .bonus .logo a img {
    max-height: 50px;
    margin-bottom: 15px;
  }
}
.casino-bonus .module .bonus .middle span {
  font-size: 1.3em;
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .casino-bonus .module .bonus .middle span {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 768px) {
  .casino-bonus .module .bonus .btn {
    margin-top: 1em;
  }
}
.casino-bonus .module .bonus .btn {
  font-weight: 600;
  padding: 10px 15px 8px;
  border: unset;
  position: relative;
  z-index: 23;
}

.gallery-module .module {
  max-width: 768px;
  margin: 25px auto;
  position: relative;
}
.gallery-module .module .gallery-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
}
.gallery-module .module .swiper-button {
  background-image: none;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  background: #1A2889;
  border: 2px solid #1A2889;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gallery-module .module .swiper-button:hover {
  background: #a07d42;
}
.gallery-module .module .swiper-button .centered {
  padding: 5px 0px 0px 3px;
}
.gallery-module .module .swiper-button .centered-left {
  padding: 5px 3px 0px 0px;
}
.gallery-module .module .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.gallery-module .module .swiper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.gallery-module .module .swiper-container iframe, .gallery-module .module .swiper-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.gallery-module .module .gallery-top {
  height: 80%;
  width: 100%;
}
.gallery-module .module .gallery-top .swiper-slide {
  width: 100% !important;
}
.gallery-module .module .gallery-top .video-inside {
  padding-bottom: 56.25%;
}
.gallery-module .module .gallery-thumbs {
  height: 20%;
  width: 80%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-module .module .gallery-thumbs .video-inside {
  padding-bottom: 19.6%;
}
.gallery-module .module .gallery-thumbs iframe, .gallery-module .module .gallery-thumbs img {
  pointer-events: none;
}
.gallery-module .module .gallery-thumbs .swiper-slide {
  height: 100%;
  width: 35%;
  opacity: 0.4;
  cursor: pointer;
}
.gallery-module .module .gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.sidebar .gallery .swiper-button {
  height: 30px;
  width: 30px;
}
.sidebar .gallery .swiper-button-next {
  right: -10px;
}
.sidebar .gallery .swiper-button-prev {
  left: -10px;
}

.payment-provider .module .providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-provider .module .providers .payments {
  text-align: center;
  width: 80px;
  height: 110px;
  margin: 10px 20px 0 20px;
  display: inline-block;
}
.payment-provider .module .providers .payments span {
  display: block;
  text-transform: uppercase;
  font-size: .8em;
  margin-top: 10px;
}
.payment-provider .module .providers .payments .outline {
  border: 1px solid #1A2889;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-provider .module .providers .payments .outline img {
  max-height: 60px;
  max-width: 60px;
}

.game-list h2 {
  padding-bottom: 5px;
  border-bottom: 3px solid #6344A1;
}
.game-list .module .flex-center {
  display: flex;
  justify-content: center;
}
.game-list .module .game {
  background-color: #efefef;
  padding: 15px;
  margin: 5px 0;
  width: 400px;
}
.game-list .module .game a {
  text-decoration: none;
}
.game-list .module .game a .game-inner {
  background-color: #A8A8C6;
  padding-bottom: 7px;
}
.game-list .module .game a .game-inner:hover {
  background-color: #efefef;
}
.game-list .module .game a .game-inner:hover:hover p {
  color: #1A2889;
}
.game-list .module .game a .game-inner:hover:hover span {
  color: #a07d42;
}
.game-list .module .game a .game-inner img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.game-list .module .game a .game-inner p {
  color: white;
  text-transform: uppercase;
  font-size: 1.1em;
  margin: 10px 5px 7px 12px;
  word-wrap: break-word;
}
.game-list .module .game a .game-inner span {
  display: block;
  color: white;
  margin-left: 12px;
  font-weight: 500;
}
.game-list .module .grid {
  padding: 0 3px;
}
.game-list .module .grid .game {
  width: 95%;
}
.game-list .module .grid .game a .game-inner {
  background-color: #1A2889;
  /* MIN */
}
.game-list .module .grid .game a .game-inner:hover {
  background-color: #efefef;
}
@media only screen and (max-width: 380px) {
  .game-list .module .grid .game a .game-inner {
    height: 175px;
  }
}

/* MIN */
@media only screen and (min-width: 992px) {
  .widget .game-list .row {
    margin: 0 -7px;
  }
  .widget .game-list .col-md-4, .widget .game-list .col-lg-3 {
    width: 50%;
  }
  .widget .game-list .col-md-4 .game, .widget .game-list .col-lg-3 .game {
    padding: 8px;
    height: 160px;
  }
  .widget .game-list .col-md-4 .game .game-inner, .widget .game-list .col-lg-3 .game .game-inner {
    height: 100%;
  }
  .widget .game-list .col-md-4 .game .game-inner p, .widget .game-list .col-md-4 .game .game-inner span, .widget .game-list .col-lg-3 .game .game-inner p, .widget .game-list .col-lg-3 .game .game-inner span {
    font-size: .9em;
    margin-left: 7px;
  }
}
.casinos-top-list .toplist-header {
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border-radius: 6px;
  background: white;
  height: 41px;
  font-weight: 600;
  font-size: 16px;
  color: #337AB7;
  text-transform: uppercase;
  margin: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93.7%;
  text-align: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-header {
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
.casinos-top-list .toplist-title {
  color: #1A2889;
  margin: 20px 10px;
  font-size: 28px;
  font-weight: 600;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-title {
    margin: 20px -15px 15px;
  }
}
.casinos-top-list .toplist-wrapper {
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper {
    margin-top: 10px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item {
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border-radius: 6px;
  background: #FFFFFF;
  margin: 0 24px 16px;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item {
    min-height: unset;
    height: 169px;
    flex-direction: row;
  }
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item {
    margin: 0 0 16px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header {
  position: absolute;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-index {
  position: absolute;
  color: white;
  width: 24px;
  height: 14px;
  border-radius: 6px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-index span {
  font-size: 12px;
  font-weight: 600;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-1,
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-2 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  justify-content: center;
  height: 14px;
  min-width: 102px;
  color: white;
  padding: 0 8px;
  border-radius: 0px 0px 6px 6px;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-1 span,
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-2 span {
  font-size: 9px;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-1 {
  left: 32px;
  background-color: #3BBBED;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-top-header .casino-ribbon-2 {
  left: 142px;
  background-color: #975AD5;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header {
  padding: 16px 24px 0;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header {
    padding: 12px 0 0 24px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-name {
  margin-top: 14px;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-name span {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #17182F;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating {
    flex-direction: column;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating .casino-logo a img {
  width: 80px;
  height: 70px;
  object-fit: contain;
  pointer-events: none;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating .casino-rating {
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating .casino-rating {
    display: flex;
    align-self: start;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-casino-header .casino-logo-rating .casino-rating .rate {
  padding: unset;
  min-width: 100px;
  height: 32px;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body {
  padding: 0 24px;
  margin-top: 16px;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body {
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-oneliner {
  border: 2px dashed #3BBBED;
  border-radius: 4px;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-oneliner {
    width: 164px;
    min-height: 118px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-oneliner a {
  text-decoration: none;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-oneliner a:hover {
  text-decoration: none;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-oneliner a p {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #1A2889;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  pointer-events: none;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp {
  padding-top: 20px;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp {
    display: block;
    width: 250px;
    padding: 0 0 0 30px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp .usp-item {
  display: flex;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp .usp-item {
    margin-left: -10px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp .usp-item p {
  font-weight: bold;
  font-size: 14px;
  margin: 0px 0px 10px 3px;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-body .casino-usp .green-color {
  color: #5CE482;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer {
  padding: 0 24px;
  margin: 8px 0 3px;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer {
    padding: 0 41px 0 0;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .cta-link {
  color: white;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-btn {
  width: 100%;
  background: #FF6447;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-weight: 600;
  font-size: 16px;
  color: black;
  transition: 0.3s;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-btn {
    width: 129px;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-btn:hover {
  background-color: #FFAA9B;
  color: black;
  width: 129px;
  height: 44px;
  text-decoration: none;
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-review {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-review {
    width: 115px;
    margin: 5px auto 0;
  }
}
@media only screen and (min-width: 992px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-review {
    margin: 7px auto 0;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-review .review-btn-new {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-decoration: underline;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-review .review-btn-new {
    text-align: center;
  }
}
.casinos-top-list .toplist-wrapper .toplist-item .logo-18 {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.casinos-top-list .toplist-wrapper .toplist-item .logo-18 img {
  width: 29px;
  height: 29px;
}
.casinos-top-list .load_more_ajax {
  text-align: center;
  margin: 2rem 0;
}
.casinos-top-list .load_more_ajax .load_more_button {
  position: relative;
}
.casinos-top-list .load_more_ajax .load_more_button img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-btn:hover::after {
  content: '';
  border: 16px solid #FFAA9B;
  transition: 0.3s;
}

.casinos-top-list .toplist-wrapper .toplist-item .toplist-footer .casino-affiliate-links .casino-btn::after {
  content: '';
  position: absolute;
  right: -12px;
  transform: rotate(48deg);
  border: 16px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
}

.casino-affiliate-links {
  position: relative;
}

.front-page-articles {
  /* FOR LAYOUT */
}
.front-page-articles .first-two-0 {
  padding: 0;
}
.front-page-articles .first-two-1 {
  padding-right: 0;
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 992px) {
  .front-page-articles .first-two-1 {
    padding: 0;
  }
  .front-page-articles .first-two-1 .article {
    width: 32%;
    float: left;
  }
}
@media only screen and (max-width: 768px) {
  .front-page-articles .first-two-1 .article {
    width: 32%;
  }
}
.front-page-articles .last-two-0, .front-page-articles .last-two-1 {
  width: 49%;
}
.front-page-articles .last-two-0 {
  float: left;
  /* MIN */
}
@media only screen and (max-width: 992px) {
  .front-page-articles .last-two-0 {
    margin: 0 2%;
  }
}
.front-page-articles .last-two-1 {
  float: right;
}
.front-page-articles .article {
  color: #fff;
  position: relative;
  /* MIN */
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .front-page-articles .article {
    height: 0;
    overflow: hidden;
    padding-bottom: 25%;
  }
}
@media only screen and (max-width: 580px) {
  .front-page-articles .article {
    padding-bottom: 35%;
  }
}
@media only screen and (max-width: 480px) {
  .front-page-articles .article {
    padding-bottom: 45%;
  }
}
.front-page-articles .article .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.front-page-articles .article img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  min-height: 405px;
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .front-page-articles .article img {
    min-height: 0;
  }
}
.front-page-articles .article .article-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  /* MIN */
}
@media only screen and (max-width: 380px) {
  .front-page-articles .article .article-content {
    padding: 15px 5px !important;
  }
}
.front-page-articles .article .article-content p {
  /* MIN */
}
@media only screen and (max-width: 992px) {
  .front-page-articles .article .article-content p {
    margin: 5px 0;
  }
}
.front-page-articles .article .article-content h3 {
  margin-top: 0;
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 992px) {
  .front-page-articles .article .article-content h3 {
    margin: 0;
  }
}
@media only screen and (max-width: 380px) {
  .front-page-articles .article .article-content h3 {
    font-size: 1.3em !important;
  }
}
.front-page-articles .article .article-content .btn {
  margin-top: 0;
  border: 0px solid #1A2889 !important;
  background-color: #f3f2f1;
  color: #2c359c;
  position: absolute;
  bottom: 8%;
  font-weight: 600;
}
.front-page-articles .article .article-content .btn:hover {
  background-color: #1A2889;
  color: #f3f2f1;
}
.front-page-articles .first-two-0 .article {
  /* MIN */
}
@media only screen and (max-width: 992px) {
  .front-page-articles .first-two-0 .article {
    margin-bottom: 15px;
  }
}
.front-page-articles .first-two-0 .article .article-content {
  padding: 20px 15px;
}
.front-page-articles .first-two-1 .article {
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .front-page-articles .first-two-1 .article {
    margin-bottom: 15px;
  }
}
.front-page-articles .first-two-1 .article .article-content {
  padding: 10px 15px;
}
.front-page-articles .first-two-1 .article:nth-child(1) {
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .front-page-articles .first-two-1 .article:nth-child(1) {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .front-page-articles .first-two-1 .article:nth-child(1) h3 {
    font-size: 1.1em;
  }
}
.front-page-articles .first-two-1 .article:nth-child(2), .front-page-articles .first-two-1 .article:nth-child(3) {
  /* MIN */
}
.front-page-articles .first-two-1 .article:nth-child(2) .article-content, .front-page-articles .first-two-1 .article:nth-child(3) .article-content {
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 1240px) {
  .front-page-articles .first-two-1 .article:nth-child(2) .article-content, .front-page-articles .first-two-1 .article:nth-child(3) .article-content {
    padding: 7px 10px;
  }
  .front-page-articles .first-two-1 .article:nth-child(2) .article-content h3, .front-page-articles .first-two-1 .article:nth-child(3) .article-content h3 {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 992px) {
  .front-page-articles .first-two-1 .article:nth-child(2) .article-content, .front-page-articles .first-two-1 .article:nth-child(3) .article-content {
    padding: 10px 15px;
  }
  .front-page-articles .first-two-1 .article:nth-child(2) .article-content h3, .front-page-articles .first-two-1 .article:nth-child(3) .article-content h3 {
    font-size: 1.1em;
  }
}

.header-module-page {
  background-color: white;
  padding: 70px 15px;
  /* MIN */
  /* MIN */
  /* MIN */
}
.header-module-page .container {
  padding: unset;
}
.header-module-page .title-content-header h1 {
  font-weight: 600;
  font-size: 32px;
  color: #1A2889;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.header-module-page .title-content-header .description-header p {
  font-weight: 400;
  font-size: 16px;
  color: #17182F;
}
.header-module-page .row-header-page {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.header-module-page .row-header-page::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}
.header-module-page .row-header-page::-webkit-scrollbar {
  height: 4px;
}
.header-module-page .row-header-page .all-cards-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 180px;
  height: 153px;
  box-shadow: 0px 0px 8px rgba(23, 24, 47, 0.08);
  border-radius: 6px;
  margin-bottom: 4px;
  margin-right: 8px;
  background-color: white;
}
.header-module-page .row-header-page .all-cards-header:last-child {
  margin-right: 0;
}
.header-module-page .row-header-page .all-cards-header:hover, .header-module-page .row-header-page .all-cards-header:focus {
  text-decoration: none;
}
.header-module-page .row-header-page .all-cards-header .image-cards {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}
.header-module-page .row-header-page .all-cards-header .title-content {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #337AB7;
}
@media only screen and (min-width: 768px) {
  .header-module-page .row-header-page {
    overflow: unset;
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 8px;
  }
  .header-module-page .row-header-page .all-cards-header {
    margin: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .header-module-page .col-md-8 {
    width: 52.4%;
  }
  .header-module-page .col-md-4 {
    width: 43%;
  }
  .header-module-page .row-header-page .all-cards-header {
    width: 202px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .header-module-page .container {
    padding: 0 54px;
  }
  .header-module-page .col-md-8 {
    width: 52.4%;
  }
  .header-module-page .col-md-4 {
    width: 45.8%;
  }
  .header-module-page .row-header-page {
    grid-gap: 16px;
  }
  .header-module-page .row-header-page .all-cards-header {
    width: 237px !important;
  }
}

.game-features .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.game-features .features .feature {
  margin: 0 28px;
  text-align: center;
}
.game-features .features .feature img {
  height: 85px;
  width: auto;
}
.game-features .features .feature p {
  margin-top: 10px;
  font-weight: 500;
}
.game-features .features .cons .green-color {
  color: #228B22;
  display: none;
}
.game-features .features .pros .red-color {
  color: #FF0000;
  display: none;
}

.ancors-menu-module {
  min-height: 64px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.ancors-menu-module .ancor-selected a {
  position: relative;
}
.ancors-menu-module .ancor-selected a:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #2c359c, #2c359c);
}
.ancors-menu-module .module {
  padding: 15px 45px;
  text-align: center;
  max-width: 1170px;
  margin: auto;
  position: relative;
  margin-bottom: 0px;
}
.ancors-menu-module .swiper-slide {
  color: #2c359c;
  padding-bottom: 3px;
  font-size: 1.2em;
  width: auto !important;
}
.ancors-menu-module .swiper-slide a {
  color: #2c359c;
  text-decoration: none;
  font-weight: 700;
}
.ancors-menu-module .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.ancors-menu-module .sticky {
  padding: 0 15px;
}
.ancors-menu-module .sticky .sticky-inner {
  background: transparent;
}
.ancors-menu-module .sticky.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 1920px;
  width: 100%;
  margin: auto;
  padding: 0;
}
.ancors-menu-module .sticky.fixed .sticky-inner {
  padding: 0 15px;
  /* MIN */
}
@media only screen and (min-width: 1200px) {
  .ancors-menu-module .sticky.fixed .sticky-inner {
    margin-left: 16.7%;
  }
}
.ancors-menu-module .swiper-button {
  background-image: none !important;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  background: transparent;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  color: #2c359c;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ancors-menu-module .swiper-button-next {
  right: 0;
}
.ancors-menu-module .swiper-button-prev {
  left: 0;
}
.ancors-menu-module .dark > .swiper-container > .ancors-menu-generated > div > a {
  color: white !important;
}

.game-grid-module #module-page {
  min-height: unset;
}
.game-grid-module .module-header h2 {
  margin-left: -15px;
  color: #1A2889;
  font-weight: 600;
  font-size: 23px;
  margin: 20px 5px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .game-grid-module .module-header h2 {
    margin: 20px -15px 10px;
  }
}
.game-grid-module .filter {
  margin: 0 6px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .game-grid-module .filter {
    margin: 0 -15px;
  }
}

.item {
  margin: 0 0 10px 0;
  padding: 0 10px 0 0;
}

.grid-item:nth-child(4n) {
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .grid-item:nth-child(4n) .item {
    padding: 0;
  }
}

.grid-item:nth-child(2n) {
  /* MIN */
}
@media only screen and (max-width: 767px) {
  .grid-item:nth-child(2n) .item {
    padding: 0;
  }
}

.grid-item--width2 {
  width: 300px;
}

.inline-img {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

.max-lines {
  display: block;
  /* or inline-block */
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 11.2em;
  line-height: 1.4em;
}

.game-name {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 500;
  font-size: 1.0em;
  /* MIN */
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 768px) {
  .game-name {
    font-size: 1em;
  }
}
@media only screen and (max-width: 580px) {
  .game-name {
    font-size: 1em;
  }
}
@media only screen and (max-width: 480px) {
  .game-name {
    font-size: 0.8em;
  }
}

.title-underlay {
  background: rgba(0, 0, 0, 0.5);
  height: 5em;
}

.small-margin {
  margin: 5px;
}

.game-jackpot {
  background: black;
  color: white;
  text-align: center;
  bottom: 15%;
  left: 12%;
  width: 75%;
  height: 1.5em;
  font-size: 1.3em;
}

.grid {
  margin-right: 5px;
  margin-left: 5px;
  /* MIN */
}
@media only screen and (min-width: 1200px) {
  .grid {
    margin-right: -70px;
    margin-left: -70px;
  }
}

figure {
  position: relative;
  z-index: 1;
}

figure img {
  display: block;
  z-index: 1;
  max-height: 338px;
  object-fit: cover;
}

figcaption {
  height: 3em;
  background: black;
  color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 6px 6px;
  opacity: 0.7;
}

.grid-card img {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  /* MIN */
  /* MIN */
  /* MIN */
  /* MIN */
}
@media only screen and (max-width: 1200px) {
  .grid-card img {
    height: 338px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-card img {
    height: 273px;
  }
}
@media only screen and (max-width: 580px) {
  .grid-card img {
    height: 338px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-card img {
    height: 266px;
  }
}

.overlay-card {
  opacity: 0;
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: #f5f5f5d1;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 2;
}
.overlay-card .btn {
  font-size: 0.9em;
}

.overlay-card:hover, .overlay-card:focus {
  opacity: 1;
}

.overlay-card p {
  width: 100%;
  text-align: center;
  border-radius: 5px;
  position: relative;
  top: 38%;
  font-size: 1em;
  font-weight: 500;
}

.provider_select:only-child {
  width: 100%;
  border-right: 0px solid transparent;
}

.filter > select {
  box-shadow: 0px 2px 4px rgba(23, 24, 47, 0.15);
  border: 0px;
  border-radius: 6px;
  position: relative;
  min-height: 3.2em;
  font-size: 1.2em;
  font-weight: 700;
  padding: 16px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gcNDDMfp2uFRQAAAlNJREFUSMftlk9IVFEUxn/nvRm11ArMP6VQBGkYjDlF0aJch7RslYuWQdu2EtoMURC0CFu0iyBaSKVDVrjo7yIqRywRLYqMCmNo/K85c+9p4TiMojMjZi2aDx6cd893vo/37nn3PMghhxz+NQQgn34MHjbN3yZRgknGxdhkXJiIN6KL+KmcgiU5gH5e4gEwGKCKWZQ8FC8WD0ocyEuIxLGJnAKKi2IAL4onUaeAJ8HxoLgpZnPECXN63jCOD0D2Noa3p3sdscS1WkyZwomKBx3jwLwhQF1DeLMjnHJdaVJU/uCufStkqvU5Zx8n93ABvmO91V4v50X0hIis2dRa/alWm3tC/raFNSeV0Ne1b8iqCSp0rtVMVSdBgj0h/7XUdWcpMdy5v88YDai1j9Zg9gv0wpuOO1dgcbs6yxX0hvyvrHED1vJk1WZWjcLF16Njl6DFLs27KxV+f98wXF5d8tVBakSozPLJLMjlkR8zgfEXR+eW47grl7cTGTrzsXR3fASkVkQqMpipwtXotGn9/PTQ5Eo8J51IHB8DobJOIGhVB9OaqV6PTUvQdnePZTzaMiGfCLXHvzS5QkAc2bGM4Y3pKdNsumeGBzmSVsvNxtBQz+jQgb7SPdFJhYMiUpTyrd02Rluch0Wf+vFn1HKz67124CTRwZ09W2tGZ4HDIrJBrd6bi5mW2P3ygXfsykrJybbd4/iwTNDTUd+GlaC19q6J2cB0V9XbGW6u3zzLJwKcc+oaw5XbiFDDs/UeobcoIMoWopTx4e9M7Xz6KWYk9/vyn+I3YIT61FVsuJcAAAAASUVORK5CYII=") no-repeat right #FFFFFF;
  -webkit-appearance: none;
  background-position-x: 96%;
  outline-color: transparent;
  margin: 0 16px 16px 0;
  /* MIN */
  /* MIN */
  /* MIN */
}
.filter > select:focus {
  outline: none;
}
@-moz-document url-prefix() {
  .filter > select {
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    border: 3px solid white;
  }
}
@media only screen and (max-width: 768px) {
  .filter > select {
    font-size: 1.2em;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 580px) {
  .filter > select {
    font-size: 1em;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .filter > select {
    font-size: 1em;
    padding-left: 7px;
    background-position-x: 99%;
    text-overflow: ellipsis;
    padding-right: 25px;
  }
}
.filter > select option {
  background: #FFFFFF;
  color: black;
  font-size: 16px;
}

.provider_select {
  background-clip: padding-box;
  border: none;
}

.sorting_select {
  border: none;
}

.load-more a {
  color: black;
  font-weight: 700;
  font-size: 1.3em;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 5px solid #2c359c;
  border-image: linear-gradient(to right, #2c359c, #2c359c);
  border-image-slice: 1;
}

.coloured-line {
  border-image: linear-gradient(to right, #2c359c, #2c359c);
  height: 5px;
  margin: 0px;
}

.load-more img {
  margin-top: -5px;
}

.load-more {
  text-align: center;
  cursor: pointer;
}

.filter-bar-generated {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  padding: 0px 0;
  box-shadow: inset 0 -1px 0 0 rgba(89, 91, 212, 0.3);
  text-align: center;
  padding-top: 0px;
  text-align: left;
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .filter-bar-generated {
    overflow-x: auto;
  }
}
.filter-bar-generated .filter-elem {
  display: inline-block;
  color: #777;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 15px;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 15px;
  min-width: 100px;
  text-align: center;
  line-height: 3em;
  cursor: pointer;
}
.filter-bar-generated .filter-elem a {
  color: inherit !important;
  text-decoration: none;
}
.filter-bar-generated .filter-elem.filter-selected {
  background: linear-gradient(to right, #2c359c, #2c359c);
  color: white;
}
@-moz-document url-prefix() {
  .filter-bar-generated {
    overflow: auto;
  }
}
@supports (-ms-ime-align: auto) {
  .filter-bar-generated {
    overflow: auto;
  }
}

.filter-bar-generated:empty {
  display: none;
}

::-webkit-scrollbar {
  /* width: 5px; */
  height: 1px;
}

.additional-filter {
  height: 100%;
}

.filter-fu-element {
  padding: 10px;
  margin: 10px;
  background: #FFFFFF;
  width: fit-content;
  font-weight: 700;
  font-size: 1em;
  border-radius: 11px;
  border: 1px solid #337AB7;
  display: inline-block;
}

.filter-fu-element span {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gUeDRopFTlOEQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAt0lEQVQ4y9XVMQ6FMAwDUCdihYmJc3IMzsnEBCtS/lSJX9LWGUCiK+oDOY4QM8MTR/HQ+YNFtl5k66OId0+vDwd084BujuCle7coDJhYPKEGTMUozMZjx7kIsDL4FRVg3XEuZuPhfjGLt1A/igbOoAAgpR57AAAwaBX28DTcFtqEvckz6Hub14qCrWIV9oYX6blGyh9ZIo2Wn8U1ulEsrlGUxe9RkD3N8eqCpDcyaB5hfk8+98/7AcVe6P2CYtW3AAAAAElFTkSuQmCC") no-repeat 0 0;
  background-color: white;
  padding: 11px;
  position: relative;
  float: right;
  border-radius: 5px;
  margin-left: 7px;
  cursor: pointer;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.grid-item {
  -webkit-animation: fadein 0.7s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.7s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.7s;
  /* Internet Explorer */
  -o-animation: fadein 0.7s;
  /* Opera < 12.1 */
  animation: fadein 0.7s;
}

.newsletter-module {
  padding: 25px 0px;
}

.newsletter {
  width: 100%;
  background: #00008B;
  padding: 48px 10px 48px 35px;
  min-height: 270px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .newsletter {
    padding: 24px 16px;
  }
}
.newsletter .newsletter-header {
  color: white;
}
.newsletter .newsletter-header .text-header {
  font-size: 28px;
  font-weight: 700;
  margin: 0px;
  margin-bottom: 24px;
  line-height: 45px;
}
.newsletter .newsletter-body {
  color: white;
}
.newsletter .newsletter-body .first-p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}
.newsletter .newsletter-body .second-p {
  font-size: 15px;
  font-weight: 500;
  margin-top: -10px;
}
.newsletter .newsletter-footer .input-fields {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .newsletter .newsletter-footer .input-fields {
    flex-direction: column;
  }
}
.newsletter .newsletter-footer .input-fields .email-input {
  padding-left: 16px;
}
.newsletter .newsletter-footer .input-fields .email-input::placeholder {
  color: #6E6E84;
}
.newsletter .newsletter-footer .input-fields .phone {
  display: none;
  margin-left: 8px;
}
.newsletter .newsletter-footer .form-control {
  height: 32px;
}
.newsletter .newsletter-footer input[type="text"] {
  border: 0;
  border-radius: 8px;
  height: 48px;
  width: 44%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 480px) {
  .newsletter .newsletter-footer input[type="text"] {
    width: 100%;
  }
}
.newsletter .newsletter-footer input[type="text"]:focus {
  outline: none;
}
.newsletter .newsletter-footer .subscribe-button {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
@media screen and (max-width: 480px) {
  .newsletter .newsletter-footer .subscribe-button {
    flex-direction: column;
  }
}
.newsletter .newsletter-footer .subscribe-button .btn-main {
  color: #000000;
  font-size: 16px;
  border-radius: 8px;
  background: #FF9900;
  font-weight: 700;
  width: 120px;
  height: 45px;
  border: 0;
  padding: 0px;
  padding-top: 4px;
  transition: none;
  text-transform: none;
}
.newsletter .newsletter-footer .subscribe-button .btn-main:focus {
  outline: none;
}
@media screen and (max-width: 480px) {
  .newsletter .newsletter-footer .subscribe-button .btn-main {
    width: 100%;
  }
}
.newsletter .error-message {
  color: white;
  text-align: center;
  margin: 0;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .newsletter .error-message {
    margin: 0px;
    padding-top: 10px;
  }
}
.newsletter .terms-conditons {
  margin-top: 15px;
  line-height: 24px;
  font-weight: 400;
}
.newsletter .terms-conditons p {
  color: white;
  font-size: 16px;
}
.newsletter .terms-conditons p a {
  color: white;
  font-size: 16px;
}

.success-message {
  color: white;
  padding-top: 7px;
}
@media screen and (max-width: 480px) {
  .success-message {
    padding-top: 25px;
  }
}
.success-message h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 24px;
}
.success-message p {
  font-size: 18px;
  line-height: 24px;
}

.noclick {
  cursor: not-allowed;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-top: 19px;
  color: white;
  border-radius: 4px;
  gap: 10px;
}
.checkbox-item input[type="checkbox"] {
  margin-top: 0px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  background-color: white;
}

.checkbox-item label {
  margin: 0;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.6px;
  padding-top: 2px;
}

.news-carousel-module {
  width: 100%;
}
.news-carousel-module .see-more {
  font-size: 15px;
  display: flex;
  padding: 4px 0;
  margin: 0 0 2px 24px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .see-more {
    margin: 0 0 2px 0;
  }
}
.news-carousel-module .see-more-color {
  color: #25527E;
}
.news-carousel-module .slide {
  display: none;
  /* MIN */
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .slide {
    display: flex;
    position: relative;
  }
}
.news-carousel-module .slide-icon {
  position: absolute;
  right: -2.6%;
  top: -206px;
  z-index: 99;
  height: 40px;
  width: 40px;
}
.news-carousel-module .slide:hover {
  cursor: pointer;
}
.news-carousel-module .slide-icon-left {
  display: none;
  position: absolute;
  left: -2.6%;
  top: -206px;
  height: 40px;
  width: 40px;
  transform: rotate(180deg);
}
.news-carousel-module .slide:hover {
  cursor: pointer;
}
.news-carousel-module .dots-wrapper {
  display: flex;
  margin-left: 24px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .dots-wrapper {
    margin: 0;
  }
}
.news-carousel-module .dots-wrapper .dots {
  width: 8px;
  height: 8px;
  background: #CFDEFF;
  border-radius: 50%;
  margin-right: 6px;
}
.news-carousel-module .dots-wrapper .dots:last-child {
  /* MIN */
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .news-carousel-module .dots-wrapper .dots:last-child {
    display: none;
  }
}
.news-carousel-module .dots-wrapper .dots-active {
  background: #3BBBED;
}
.news-carousel-module .dots-wrapper .slide_2,
.news-carousel-module .dots-wrapper .slide_3,
.news-carousel-module .dots-wrapper .slide_4,
.news-carousel-module .dots-wrapper .slide_5 {
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .dots-wrapper .slide_2,
  .news-carousel-module .dots-wrapper .slide_3,
  .news-carousel-module .dots-wrapper .slide_4,
  .news-carousel-module .dots-wrapper .slide_5 {
    display: none;
  }
}
.news-carousel-module .articles-container {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  margin-left: 24px;
  /* MIN */
}
.news-carousel-module .articles-container::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .articles-container {
    margin-left: unset;
  }
}
.news-carousel-module .articles-container .row-article-container {
  flex-wrap: inherit;
  display: flex;
}
.news-carousel-module .articles-container .row-article-container .single-card {
  padding-right: 8px;
  scroll-snap-align: start;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature {
  position: relative;
  width: 295px;
  height: 346px;
  margin-bottom: 16px;
  box-shadow: 8px 0 12px -4px rgba(0, 0, 0, 0.06), -8px 0 12px -4px rgba(0, 0, 0, 0.06), 0 12px 12px -4px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border-radius: 6px;
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .news-carousel-module .articles-container .row-article-container .single-card .card-feature {
    width: 335px;
  }
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .articles-container .row-article-container .single-card .card-feature {
    width: 267px;
  }
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-header {
  height: 140px;
  border-radius: 6px 6px 0 0;
  /* MIN */
  margin-bottom: 12px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-header {
    height: 135px;
  }
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-header a img {
  width: 100%;
  height: 100%;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer {
  padding: 0 16px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-info .article-title p {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  height: 43px;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #41465E;
  line-height: 1.4;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-info .content-lg {
  margin-top: 15px;
  height: 40px;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-info .content-lg .text {
  font-size: 16px;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 40px;
  font-weight: 500;
  color: #39394F;
  line-height: 1.4;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .date {
  display: flex;
  padding-top: 14px;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .date .calendar-icon {
  width: 20px;
  height: 20px;
  margin: 2px 4px 0 0;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .date p {
  color: #666666;
  font-size: 14px;
  margin: 5px 0 0;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .article-btn {
  margin-top: 10px;
  background: #FF6447;
  border-radius: 6px;
  width: 103px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .article-btn a {
  color: #FFFFFF;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .article-btn a:hover {
  text-decoration: none;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .article-btn a .read-more span {
  color: black;
  font-weight: 600;
  font-size: 16px;
  z-index: 30;
  position: relative;
}
.news-carousel-module .articles-container .row-article-container .single-card .card-feature .article-footer .article-content .article-btn::after {
  content: '';
  position: absolute;
  right: 9px;
  transform: rotate(48deg);
  border: 15px solid #FF6447;
  border-radius: 5px;
  transition: 0.3s;
  top: 16px;
}

.casino-carousel-module {
  position: relative;
  padding: 48px 0;
}
.casino-carousel-module .carousel-title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #17182F;
  margin-bottom: 24px;
}
.casino-carousel-module .swiper-container {
  position: relative;
}
.casino-carousel-module .swiper-container .swiper-wrapper {
  display: flex;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide {
  width: 324px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino {
  position: relative;
  background: white;
  width: 308px;
  height: 416px;
  border-radius: 8px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
  margin: 16px 16px 11px 0;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .ribbon {
  position: absolute;
  top: -16px;
  left: 24px;
  color: white;
  background: #5962F1;
  min-width: 128px;
  padding: 0 12px;
  height: 16px;
  border-radius: 8px 4px 0px 0px;
  text-align: center;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head {
  display: flex;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .logo {
  margin-right: 16px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .logo img {
  width: 104px;
  height: 104px;
  border-radius: 8px 0px;
  object-fit: contain;
  pointer-events: none;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info {
  margin-top: 12px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .name a {
  text-decoration: none;
  color: #17182F;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .rating {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15.95px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .rating .rating-first {
  font-size: 16px;
  line-height: 24px;
  margin-left: 5px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .review {
  margin-top: 5px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .review a {
  color: #165AF8;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .review a:hover, .casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .review a:focus {
  text-decoration: none;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .head .casino-info .review a.smaller-font {
  font-size: 11px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points {
  margin: 18px 0 22px 18px;
  height: 88px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points .selling-point {
  display: flex;
  margin-bottom: 8px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points .selling-point:last-of-type {
  margin-bottom: 0;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points .selling-point .check {
  display: flex;
  justify-content: center;
  background: #B7F0C7;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points .selling-point .check img {
  object-fit: scale-down;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .selling-points .selling-point .content {
  color: #17182F;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner {
  position: relative;
  display: flex;
  justify-content: center;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner a {
  display: block;
  width: 275px;
  height: 88px;
  background: #FFF6F4;
  border: 0.5px solid #FF6447;
  border-radius: 8px;
  color: #17182F;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  z-index: 1;
  padding-top: 23px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner a:hover, .casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner a:focus {
  text-decoration: none;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner a:after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 0;
  transform: rotate(-6deg);
  border-radius: 8px;
  border-bottom-left-radius: 0px;
  width: 151px;
  height: 40px;
  background: #FFF6F4;
  border-bottom: 1px solid #FF6447;
  z-index: -1;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .oneliner a:before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  transform: rotate(7deg);
  border-radius: 8px;
  width: 132px;
  height: 37px;
  background: #FFF6F4;
  border-bottom: 1px solid #FF6447;
  z-index: -1;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta {
  position: absolute;
  bottom: 16px;
  width: 266px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta a {
  position: relative;
  display: block;
  width: 235px;
  text-align: center;
  padding: 16px 0;
  color: #23333D;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  background: #FF6447;
  border-radius: 8px;
  margin-left: 8px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta a:hover, .casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta a:focus {
  text-decoration: none;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta a:after {
  content: '';
  position: absolute;
  right: -15px;
  top: 8px;
  transform: rotate(48deg);
  border: 21px solid #FF6447;
  border-radius: 8px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide .casino .cta a:before {
  content: '';
  position: absolute;
  left: -24px;
  background: #ffffff;
  border-radius: 6px;
  border: 17px solid white;
  transform: rotate(45deg);
  top: 12px;
}
.casino-carousel-module .swiper-container .swiper-wrapper .swiper-slide:last-of-type {
  width: 400px;
}
.casino-carousel-module .swiper-container .banner-shadow {
  position: absolute;
  height: 512px;
  width: 80px;
  right: 0;
  top: -20px;
  z-index: 57;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.casino-carousel-module .swiper-button-next, .casino-carousel-module .swiper-button-prev {
  object-fit: scale-down;
  background: white;
  width: 40px;
  height: 40px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  top: 53%;
}
.casino-carousel-module .swiper-button-prev {
  left: -44px;
}
.casino-carousel-module .swiper-button-next {
  right: -19px;
}
.casino-carousel-module .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 8px;
  margin-right: 4px;
  border-radius: 0;
}
.casino-carousel-module .swiper-pagination-bullet {
  background: url("./../../../../assets/images/gray-rating.png");
  opacity: 1;
}
.casino-carousel-module .swiper-pagination-bullet-active {
  background: url("./../../../../assets/images/blue-rating.png");
}

.author-carousel-module .authors-container {
  display: flex;
  flex-wrap: wrap;
}
.author-carousel-module .author-single-card {
  width: 100%;
  /* MIN */
  /* MIN */
  /* MIN */
}
@media only screen and (min-width: 768px) {
  .author-carousel-module .author-single-card {
    width: 48.6%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .author-carousel-module .author-single-card:nth-child(odd) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .author-carousel-module .author-single-card {
    width: 32.3%;
    margin-right: 12px;
  }
  .author-carousel-module .author-single-card:last-child {
    margin-right: 0;
  }
}
.author-carousel-module .author-single-card .author-card-feature {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  background: #FCFCFC;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  /* MIN */
}
@media only screen and (min-width: 992px) {
  .author-carousel-module .author-single-card .author-card-feature {
    min-height: 459px;
  }
}
.author-carousel-module .author-single-card .author-card-feature .card-header .entry-bg img {
  width: 100%;
  height: 110px;
  border-radius: 4px 4px 0px 0px;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-info {
  padding-bottom: 19px;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-info .profile {
  display: flex;
  justify-content: center;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-info .profile img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 60%;
  border: 2px solid #FFFFFF;
  position: absolute;
  top: 55px;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-name {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 65px;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-name span {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #333333;
}
.author-carousel-module .author-single-card .author-card-feature .card-header .author-name .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
.author-carousel-module .author-single-card .author-card-feature .card-body {
  padding: 0 20px;
}
.author-carousel-module .author-single-card .author-card-feature .card-body .author-description p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin: 0;
}
.author-carousel-module .author-single-card .author-card-feature .card-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
}
.author-carousel-module .author-single-card .author-card-feature .card-footer .social-networks a img {
  opacity: 0.5;
}
.author-carousel-module .author-single-card .author-card-feature .card-footer .read-more a {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  opacity: 0.5;
  text-decoration: none;
}
