:root {
  --ms-primary-color-1: #021E35;
  --ms-primary-color-2: #002646;
  --ms-primary-color-3: #08E8E8;
  --ms-primary-color-4: #FFFFFF;
  --ms-primary-color-5: #4BA9FA;
  --ms-primary-color-6: #090012;
  --ms-secondary-color-2: #035EAE;
  --ms-secondary-color-3: #013766;
  --ms-gradient-color-1: #011B31;
  --ms-gradient-color-2: #012F58;
  --ms-sticker-color: #FFDE08;
  --ms-border-color: #025DAC;
  --ms-light-font-color: #FFFFFF80;
  --ms-footer-bottom-border-color-1: #021E35;
  --ms-footer-bottom-border-color-2: #012441;
  --ms-footer-bottom-border-color-3: #002646;
}

html body {
  background: var(--ms-primary-color-2);
  font-family: var(--ms-font-family-primary);
  color: var(--ms-primary-color-4);
  padding-top: 90px;
}
html body a {
  text-decoration: none;
  color: var(--ms-primary-color-3);
}
html body h1 {
  font-family: var(--ms-font-family-secondary);
  font-weight: var(--ms-font-weight-black);
  color: var(--ms-primary-color-4);
  font-size: 2.9rem;
  line-height: 2.4rem;
  margin: 1rem 0;
}
html body h2 {
  font-family: var(--ms-font-family-secondary);
  font-size: 1.5rem;
}
html body h3 {
  font-family: var(--ms-font-family-primary);
  color: var(--ms-primary-color-3);
  font-size: 1.3rem;
}
html body p, html body a, html body span {
  font-size: 1rem;
  margin-bottom: 0;
}
html body pre {
  color: var(--ms-primary-color-3);
  font-size: 14px;
  margin-bottom: 0.5rem;
  font-family: var(--ms-font-family-primary);
}
html body img {
  max-width: 100%;
}
html body .hidden {
  display: none;
}
html body .btn {
  background-color: transparent;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 28px;
  text-transform: uppercase;
  align-self: center;
}
html body .btn.btn-primary {
  border: 3px solid transparent;
  background: linear-gradient(var(--ms-primary-color-1), var(--ms-primary-color-1)) padding-box, linear-gradient(var(--ms-primary-color-3), var(--ms-primary-color-3)) border-box;
  color: var(--ms-primary-color-3);
}
html body .btn.btn-primary:hover {
  background: linear-gradient(var(--ms-primary-color-1), var(--ms-primary-color-1)) padding-box, linear-gradient(0deg, var(--ms-primary-color-5) 0%, var(--ms-primary-color-3) 100%) border-box;
  color: var(--ms-primary-color-5);
}
html body .btn.btn-primary:active {
  background: linear-gradient(var(--ms-primary-color-1), var(--ms-primary-color-1)) padding-box, linear-gradient(0deg, var(--ms-primary-color-5) 0%, var(--ms-primary-color-3) 100%) border-box;
  color: var(--ms-primary-color-5);
  border-color: transparent;
}
html body .btn.btn-secondary {
  padding: 11px 31px;
  background-color: var(--ms-primary-color-3);
  color: var(--ms-primary-color-1);
}
html body .btn.btn-secondary:hover, html body .btn.btn-secondary:focus {
  background: linear-gradient(0deg, var(--ms-primary-color-5) 0%, var(--ms-primary-color-3) 100%), var(--ms-primary-color-5) 0%;
  color: var(--ms-primary-color-1);
}
html body.inlobby nav {
  display: none;
}
html body.inlobby footer {
  display: none;
}
html body nav {
  background-color: var(--ms-primary-color-1);
  height: 90px;
}
html body .navbar-brand {
  margin-right: 0;
}
html body .navbar-brand img {
  width: 189px;
  height: auto;
}
@media (min-width: 1200px) {
  html body .navbar-brand img {
    width: 223px;
  }
}
html body .navbar-toggler {
  border: 0 none;
}
html body .navbar-toggler:focus {
  box-shadow: none;
}
html body #offcanvasNavbar {
  width: 100%;
}
@media (min-width: 576px) {
  html body #offcanvasNavbar {
    max-width: 393px;
  }
}
@media (min-width: 1200px) {
  html body #offcanvasNavbar {
    max-width: 100%;
  }
}
html body #offcanvasNavbar ul {
  padding: 1rem 3rem;
}
@media (min-width: 1200px) {
  html body #offcanvasNavbar ul {
    padding: 0;
  }
}
html body #offcanvasNavbar .offcanvas-header {
  background-image: linear-gradient(to right, var(--ms-gradient-color-1), var(--ms-gradient-color-2));
}
html body #offcanvasNavbar .offcanvas-header .btn-close {
  opacity: 1;
}
html body #offcanvasNavbar .offcanvas-body {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(to right, var(--ms-gradient-color-1), var(--ms-gradient-color-2));
}
@media (min-width: 1200px) {
  html body #offcanvasNavbar .offcanvas-body {
    flex-direction: row;
    background: none;
  }
}
html body #offcanvasNavbar .offcanvas-body .floating-badge {
  position: relative;
}
html body #offcanvasNavbar .offcanvas-body .floating-badge img {
  position: absolute;
  right: -15px;
  top: 0.5rem;
  max-width: 100%;
  height: auto;
}
html body .navbar-nav li a {
  font-family: var(--ms-font-family-secondary);
  display: block;
  padding: 0.5rem 0;
  color: var(--ms-primary-color-4);
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
html body .navbar-nav li a:hover {
  color: var(--ms-primary-color-3);
}
@media (min-width: 992px) {
  html body .navbar-nav li a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  html body .navbar-nav li a {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
@media (min-width: 1400px) {
  html body .navbar-nav li a {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
html body .navbar-nav li.active a {
  color: var(--ms-primary-color-3);
}
html body header {
  display: flex;
  align-items: end;
}
html body header.bgApplied {
  background-image: var(--bg-mobile);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
@media (min-width: 576px) {
  html body header.bgApplied {
    background-image: var(--bg-desktop);
    min-height: 300px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  html body header.bgApplied {
    min-height: 375px;
  }
}
html body header .content-block {
  position: relative;
  z-index: 3;
}
html body header .content-block a {
  color: var(--main-link-color);
}
html body header .content-block .btn {
  margin: 1rem 0;
}
html body header.fullImg {
  position: relative;
  padding: 0;
}
html body header.fullImg .header-overlay {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  text-align: center;
}
@media (min-width: 992px) {
  html body header.fullImg .header-overlay {
    top: 20%;
  }
}
@media (min-width: 992px) {
  html body header.fullImg .header-overlay {
    top: 25%;
  }
}
html body header.fullImg .header-overlay .wrapper {
  display: block;
  width: auto;
  margin: 0 auto;
  max-width: 350px;
}
@media (min-width: 992px) {
  html body header.fullImg .header-overlay .wrapper {
    max-width: 700px;
  }
}
html body header.fullImg .header-overlay .wrapper h2 {
  font-size: 3.125rem;
  font-weight: 800;
  line-height: 81%;
  margin: 0;
}
@media (min-width: 992px) {
  html body header.fullImg .header-overlay .wrapper h2 {
    font-size: 5.875rem;
  }
}
html body header.fullImg .header-overlay .wrapper h3 {
  font-size: 1.875rem;
  font-weight: 400;
}
html body header.fullImg .header-overlay .wrapper h2, html body header.fullImg .header-overlay .wrapper h3 {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
html body header.fullImg .header-overlay .btn-primary {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.7;
}
html body header.fullImg .header-overlay .btn-primary.btn-lg {
  padding-left: 4.2rem;
  padding-right: 4.2rem;
}
html body header.imgHeader {
  position: relative;
}
html body header.imgHeader .grad {
  display: block;
  background: linear-gradient(to right, transparent 0%, black 65%, black 100%);
  height: 30px;
}
html body header .submenu {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
html body header .submenu::-webkit-scrollbar {
  display: none;
}
html body header .submenu ul {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
html body header .submenu ul li {
  list-style: none;
  flex: 0 0 auto;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
html body header .submenu ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 3;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ms-primary-color-4);
}
html body header .submenu ul li a::after {
  content: "";
  background: linear-gradient(0.25turn, var(--ms-primary-color-2), #048797, var(--ms-primary-color-3), #048091, var(--ms-primary-color-2));
  display: block;
  width: 70%;
  height: 1px;
  margin: 0 auto;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
html body header .submenu ul li a:hover::after {
  transform: scaleX(1);
}
html body header .submenu ul:hover a.active::after {
  transform: scaleX(0);
}
html body header .submenu ul:not(:hover) .current a::after {
  transform: scaleX(1);
}
html body header .submenu ul .current a {
  color: var(--ms-primary-color-3);
}
html body .site-grid .grid-child > * {
  margin: 1rem auto;
}
html body footer {
  background-color: var(--ms-primary-color-1);
  color: var(--ms-primary-color-4);
}
html body footer .grid-child > * {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
html body footer .grid-child > *:last-child {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  html body footer .grid-child > * {
    display: unset;
  }
}
html body footer .grid-child > * .mod-menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  html body footer .grid-child > * .mod-menu {
    justify-content: start;
  }
}
html body footer .grid-child > * .mod-menu li {
  text-align: center;
  line-height: 16px;
}
@media (min-width: 992px) {
  html body footer .grid-child > * .mod-menu li {
    text-align: left;
    line-height: 24px;
  }
}
html body footer .grid-child > * .mod-menu li.divider {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  html body footer .grid-child > * .mod-menu li.divider {
    margin-bottom: 1rem;
  }
}
html body footer .grid-child > * .mod-menu a {
  font-size: 14px;
  font-weight: 300;
  color: var(--ms-light-font-color);
}
html body footer .grid-child .mod-custom {
  text-align: center;
}
@media (min-width: 992px) {
  html body footer .grid-child .mod-custom {
    text-align: unset;
  }
}
html body footer .grid-child .mod-custom img {
  margin-top: 3px;
  margin-bottom: 3px;
}
html body footer .copyright p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5019607843);
}
html body footer .footer-bottom {
  background-color: var(--ms-primary-color-6);
  position: relative;
}
html body footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--ms-footer-bottom-border-color-1) 0%, var(--ms-footer-bottom-border-color-2) 15%, var(--ms-footer-bottom-border-color-3) 50%, var(--ms-footer-bottom-border-color-2) 85%, var(--ms-footer-bottom-border-color-1) 100%);
}
html body.layout-blog h3, html body.layout-pagination h3 {
  padding: 20px 15px;
}
html body.layout-blog .blog .cat-title, html body.layout-pagination .blog .cat-title {
  padding-left: 5px;
}
html body.layout-blog .blog .blog-items, html body.layout-pagination .blog .blog-items {
  justify-content: center;
}
@media (min-width: 1400px) {
  html body.layout-blog .blog .blog-items, html body.layout-pagination .blog .blog-items {
    justify-content: flex-start;
  }
}
html body.layout-blog .blog .blog-items .blog-item, html body.layout-pagination .blog .blog-items .blog-item {
  border-radius: 10px;
  max-width: 400px;
}
@media (min-width: 576px) {
  html body.layout-blog .blog .blog-items .blog-item, html body.layout-pagination .blog .blog-items .blog-item {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  html body.layout-blog .blog .blog-items .blog-item, html body.layout-pagination .blog .blog-items .blog-item {
    max-width: 400px;
  }
}
@media (min-width: 1400px) {
  html body.layout-blog .blog .blog-items .blog-item, html body.layout-pagination .blog .blog-items .blog-item {
    max-width: unset;
  }
}
html body.layout-blog .blog .blog-items .blog-item .item-wrapper, html body.layout-pagination .blog .blog-items .blog-item .item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
html body.layout-blog .blog .blog-items .blog-item .item-wrapper .item-content, html body.layout-pagination .blog .blog-items .blog-item .item-wrapper .item-content {
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}
html body.layout-blog .blog .blog-items .blog-item .item-image, html body.layout-pagination .blog .blog-items .blog-item .item-image {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
html body.layout-blog .blog .blog-items .blog-item .item-image img, html body.layout-pagination .blog .blog-items .blog-item .item-image img {
  height: auto;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
html body.layout-blog .countdown-promo .custom, html body.layout-pagination .countdown-promo .custom {
  position: relative;
  border-radius: 10px;
  max-width: 385px;
  margin: auto;
  background-repeat: no-repeat;
  border: 1px solid var(--ms-border-color);
  background: linear-gradient(90deg, var(--ms-secondary-color-3) 3.29%, var(--ms-secondary-color-2) 100%);
}
@media (min-width: 768px) {
  html body.layout-blog .countdown-promo .custom, html body.layout-pagination .countdown-promo .custom {
    background-image: url("/images/countdown-bg.png");
    background-position: center;
    max-width: none;
    padding: 1rem;
  }
}
html body.layout-blog .countdown-promo .custom p, html body.layout-pagination .countdown-promo .custom p {
  margin: 1rem 0;
  text-transform: uppercase;
}
html body.layout-blog .countdown-promo .custom p:first-of-type, html body.layout-pagination .countdown-promo .custom p:first-of-type {
  color: var(--ms-primary-color-3);
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  html body.layout-blog .countdown-promo .custom p:first-of-type, html body.layout-pagination .countdown-promo .custom p:first-of-type {
    margin: 1rem;
  }
}
html body.layout-blog .countdown-promo .custom p:nth-of-type(2), html body.layout-pagination .countdown-promo .custom p:nth-of-type(2) {
  color: var(--ms-primary-color-3);
}
html body.layout-blog .countdown-promo .custom p:not(:first-child), html body.layout-pagination .countdown-promo .custom p:not(:first-child) {
  margin: 1rem;
}
html body.layout-blog .countdown-promo .custom div, html body.layout-pagination .countdown-promo .custom div {
  font-family: var(--ms-font-family-secondary);
  font-weight: var(--ms-font-weight-black);
  font-size: 2.3rem;
  line-height: 2.3rem;
  margin: 1rem;
}
@media (min-width: 768px) {
  html body.layout-blog .countdown-promo .custom div, html body.layout-pagination .countdown-promo .custom div {
    max-width: 50%;
    font-size: 2.7rem;
  }
}
@media (min-width: 768px) {
  html body.layout-blog .countdown-promo .custom img, html body.layout-pagination .countdown-promo .custom img {
    display: none;
  }
}
html body.layout-blog .countdown-promo .custom .btn, html body.layout-pagination .countdown-promo .custom .btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 5px 44px;
}
@media (min-width: 768px) {
  html body.layout-blog .countdown-promo .custom .btn, html body.layout-pagination .countdown-promo .custom .btn {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
html body.layout-blog.details .blog-item .fields-container, html body.layout-pagination.details .blog-item .fields-container {
  padding: 0;
}
html body.layout-blog.details .blog-item .fields-container .field-entry, html body.layout-pagination.details .blog-item .fields-container .field-entry {
  list-style: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 21px;
  margin-bottom: 1rem;
  text-align: left;
}
html body.layout-blog.details .blog-item .fields-container .field-entry .field-label, html body.layout-pagination.details .blog-item .fields-container .field-entry .field-label {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ms-primary-color-5);
}
html body.layout-blog.details .blog-item .fields-container .field-entry .field-value, html body.layout-pagination.details .blog-item .fields-container .field-entry .field-value {
  color: var(--ms-primary-color-4);
  font-size: 26px;
  font-family: "Lubre Franklin", sans-serif;
  font-weight: 900;
}
html body.layout-blog.details .icon-chevron-right::before, html body.layout-pagination.details .icon-chevron-right::before {
  content: none;
}
html body .item-card ul {
  list-style: none;
  padding: 0;
}
html body .item-card ul img {
  float: right;
}
html body .item-styling {
  background: linear-gradient(90deg, var(--ms-secondary-color-3) 0%, var(--ms-secondary-color-2) 100%);
  border-radius: 10px;
  border: 1px solid #08518F;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
}
html body .item-styling.hasIntroImg {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
html body .item-styling .item-content p {
  font-size: 0.75rem;
}
html body .item-styling h2 {
  font-family: var(--ms-font-family-secondary);
  font-weight: var(--ms-font-weight-black);
  letter-spacing: 0px;
  line-height: 31px;
  padding-bottom: 8px;
}
html body .item-styling .buttons .readmore a {
  background-color: transparent;
  border: solid 3px var(--ms-primary-color-3);
  color: var(--ms-primary-color-3);
  padding: 5px 14px;
}
html body .item-styling .buttons .readmore a:hover {
  background: linear-gradient(var(--ms-primary-color-1), var(--ms-primary-color-1)) padding-box, linear-gradient(0deg, var(--ms-primary-color-5) 0%, var(--ms-primary-color-3) 100%) border-box;
  color: var(--ms-primary-color-5);
}
html body .item-styling .buttons .custom-btn {
  width: 78%;
  text-transform: uppercase;
  padding: 8px 10px;
}
html body span#countdown {
  color: transparent;
  display: inline-flex;
  gap: 1em;
  text-align: center;
}
html body span#countdown.ready {
  color: var(--main-text-color);
}
html body span#countdown span.countdown-value {
  font-weight: 700;
  line-height: 1;
}
html body span#countdown span.countdown-value span.countdown-label {
  font-weight: 400;
  font-size: 0.75rem;
}
html body .sticker {
  position: absolute;
  right: 0;
  top: -12px;
  color: #000;
  background-color: var(--ms-sticker-color);
  display: block;
  padding: 2px 20px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  text-transform: uppercase;
  font-size: 0.563rem;
  font-weight: 700;
  line-height: 18px;
  width: auto;
  z-index: 2;
}
html body .article .backlink small {
  color: var(--ms-primary-color-4);
}
html body .article h1, html body .article h2, html body .article h3 {
  padding-bottom: 1rem;
  color: var(--ms-primary-color-4);
}
html body .article .item-image img {
  object-fit: cover;
  object-position: center center;
}
html body .article aside {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  html body .article aside {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  html body .article aside > article:first-child {
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  html body .article aside > p:last-child {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  html body .article aside > p:first-child {
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  html body .article aside > article:last-child {
    padding-left: 10px;
  }
}
html body .article aside article {
  order: 1;
}
@media (min-width: 992px) {
  html body .article aside article {
    order: unset;
    flex: 0 0 50%;
  }
}
html body .article aside p {
  order: 2;
}
@media (min-width: 992px) {
  html body .article aside p {
    order: unset;
    flex: 0 0 50%;
  }
}
html body .article .btn {
  margin: 10px 0;
}
html body:has(.navbar-collapse.show) {
  overflow: hidden;
}
html body .mod-winners li {
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(var(--mw-backgroundcolor)) padding-box, linear-gradient(62.82deg, #002646 68.5%, #08E8E8 99.64% 99.64%) border-box;
}
html body .mod-winners li .single-winner .winner, html body .mod-winners li .single-winner .gamedescription {
  font-size: 10px;
  font-weight: 300;
}
html body .mod-winners li .single-winner .price {
  font-size: 17px;
}
html body .mod-winners .scroller[data-animated=true] {
  -webkit-mask: linear-gradient(90deg, transparent, white 1%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 1%, white 80%, transparent);
}
html body .mod-rtggames .games-main-cta .btn:not(.classChanged) {
  font-size: 10px;
}
@media (min-width: 1200px) {
  html body .mod-rtggames .slider-container .slider .slide .slide-inner-container {
    max-width: 163px;
  }
}
html body .mod-rtggames .slider-container .slider .slide .slide-inner-container .overlay-content, html body .mod-rtggames .slider-container .slider .slide .slide-inner-container img {
  border-radius: 3.55px;
}
html body .mod-rtggames .slider-container .slider .slide .slide-inner-container .overlay-content .game-name, html body .mod-rtggames .slider-container .slider .slide .slide-inner-container img .game-name {
  top: 72%;
}
html body .mod-rtggames .nav-button svg {
  display: none;
}
@media (min-width: 768px) {
  html body .mod-rtggames .nav-button svg {
    display: block;
  }
}
html body .section-headline .accordion-headline {
  margin-bottom: 0;
}
html body .section-headline img {
  margin-right: 5px;
}
html body .accordion-wrapper .accordion-item {
  border: 1px solid #08518F;
  font-weight: 300;
}
html body .accordion-wrapper .accordion-item .accordion-header .accordion-button {
  font-weight: 400;
}
html body .mod-blocks.style-2 .mod-blocks__block {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
  margin-top: 0;
}
html body .mod-blocks.style-2 .mod-blocks__block h2, html body .mod-blocks.style-2 .mod-blocks__block h4 {
  font-family: var(--ms-font-family-secondary);
}
html body .mod-blocks.style-2 .mod-blocks__block p, html body .mod-blocks.style-2 .mod-blocks__block a, html body .mod-blocks.style-2 .mod-blocks__block span {
  font-size: 10px;
}
html body .mod-blocks.style-2 .mod-blocks__block .mod-blocks__image {
  margin-top: calc(-1 * var(--mod-blocks-block-padding));
  margin-bottom: calc(-1 * var(--mod-blocks-block-padding));
  height: auto;
  max-width: 40%;
  align-self: center;
}
html body .mod-blocks.style-2 .mod-blocks__block .mod-blocks__body {
  width: 60%;
}
html body .mod-articles-item .item-styling {
  border-radius: 10px;
}
html body .mod-articles-item .item-styling h2 {
  margin-bottom: 0;
}
html body .mod-articles-item .item-styling .buttons {
  bottom: 5px;
}
html body .mod-articles-item .article-content .coupon-wrapper {
  flex-direction: column;
}
html body .content-group .service-text h2 {
  display: flex;
}
html body .content-group .service-text h2 img {
  margin-right: 5px;
}
html body .content-group .service-text .btn {
  margin: 10px 0;
  font-weight: 400;
}
html body .blog-item .coupon-wrapper {
  flex-direction: column;
}
html body .container.mod-progressivejackpots .headline-section .headline-text {
  font-weight: 300;
  font-size: 24px;
  text-transform: none;
}
@media (max-width: 576px) {
  html body .container.mod-progressivejackpots .headline-section .jackpots-price {
    font-size: 35px;
  }
}
html body .container.mod-progressivejackpots .headline-section .headline-img {
  height: auto;
}
html body .pagination__wrapper {
  background-color: var(--ms-primary-color-2);
}
html body .pagination__wrapper .pagination {
  display: flex;
  justify-content: space-between;
}
html body .pagination__wrapper .pagination .page-item.active .page-link {
  background-color: var(--ms-primary-color-2);
  color: var(--ms-primary-color-3);
  border: none;
}
html body .pagination__wrapper .pagination .page-item.disabled span {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}
html body .pagination__wrapper .pagination .page-item .page-link:focus {
  box-shadow: none;
}
html body .pagination__wrapper .pagination .page-item .btn-secondary {
  border-radius: 20px;
}
html body .pagination__wrapper .pagination .page-item .prev-cta {
  background-color: rgba(0, 0, 0, 0);
  border: solid 3px var(--ms-primary-color-3);
  color: var(--ms-primary-color-3);
  padding: 5px 14px;
}
html body .pagination__wrapper .pagination .page-item .num-cta {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: var(--ms-primary-color-4);
}
@media (min-width: 992px) {
  html body .mod-languages {
    margin-top: auto;
    margin-right: 1rem;
  }
}
html body .mod-languages .mod-languages__select {
  justify-content: center;
}
html body .mod-languages .dropdown-menu {
  left: unset;
}

/*# sourceMappingURL=template.css.map */
