:root {
  --background: #151d3d;
  --header: #222f66;
  --content: #f3f6fc;
  --hover: #d81a41;
  --text: #080e27;
  --radius: 10px;
  --radius-btn: 8px;
  --border: hsla(0,0%,100%,.1);
  --pluses: #078871;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  color: var(--text);
}

a {
  text-decoration: none;
  color: var(--hover);
}
a:hover {
  text-decoration: underline;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

.wp-block-table {
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}

.wp-block-table table {
  width: 100%;
  background-color: var(--header);
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wp-block-table table::after {
  content: "";
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.wp-block-table table td {
  color: var(--content);
  font-size: 16px;
  line-height: 1.2;
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.wp-block-table table th {
  color: var(--hover);
  font-size: 16px;
  line-height: 1.2;
  padding: 15px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.wp-block-table table td:first-child {
  font-weight: 300;
}

.wp-block-table table tr:last-child td {
  border-bottom: none;
}

@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 300;
  src: url("fonts/Montserrat-Light.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 500;
  src: url("fonts/Montserrat-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 700;
  src: url("fonts/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 800;
  src: url("fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
}

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

h1, h2, h3, h4 {
  padding: 15px 0;
}
@media (min-width: 960px) {
  h1, h2, h3, h4 {
    padding: 20px 0;
  }
}

h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--content);
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 22px;
}
@media (min-width: 960px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 20px;
}
@media (min-width: 960px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 18px;
}
@media (min-width: 960px) {
  h4 {
    font-size: 24px;
  }
}

p {
  line-height: 30px;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 960px) {
  p {
    font-size: 20px;
  }
}

a {
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 960px) {
  a {
    font-size: 20px;
  }
}
a:hover {
  transition: 0.3s ease-out;
  text-decoration: none;
  color: var(--hover);
}

ul li {
  color: var(--text);
}

ol li {
  color: var(--text);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  background: var(--header);
  z-index: 2;
}
@media (min-width: 640px) {
  .header {
    padding: 8px 0;
  }
}
.header .overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.header .overlay.active {
  display: block;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__top .logo-text {
  color: #fff;
  font-weight: 700;
}
.header__top .logo img {
  width: 200px;
}
.header .main_menu {
  display: none;
  position: relative;
}
@media (min-width: 960px) {
  .header .main_menu {
    display: flex;
  }
}
.header .main_menu .menu {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.header .main_menu .menu li {
  margin-right: 20px;
  position: relative;
}
.header .main_menu .menu li:last-child {
  margin-right: 0;
}
.header .main_menu .menu li a {
  font-size: 16px;
  color: var(--content);
  font-weight: 400;
  padding: 10px 0;
}
.header .main_menu .menu li a:hover {
  color: var(--hover);
}
.header .main_menu .menu .current-menu-item.menu-item-object-page a {
  color: var(--hover);
}
.header .main_menu .menu .sub-menu {
  z-index: 999;
  position: absolute;
  left: -25px;
  top: 25px;
  width: 200px;
  height: 500px;
  max-width: none;
  padding: 0 0 0 0;
  border: 0;
  background: var(--header);
  border-radius: var(--radius);
  display: none;
  overflow-y: scroll;
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
.header .main_menu .menu .sub-menu li {
  margin-right: 0;
}
.header .main_menu .menu .sub-menu li:hover {
  background: var(--background);
}
.header .main_menu .menu .sub-menu li a {
  font-size: 16px;
  line-height: 35px;
  padding: 5px 10px;
  color: var(--content) !important;
  display: block;
}
.header .main_menu .menu .sub-menu li a:hover {
  color: var(--hover);
}
.header .main_menu .menu .sub-menu .current-menu-item.menu-item-object-post a {
  color: var(--hover) !important;
}
.header .main_menu .menu .menu-item-has-children:hover .sub-menu {
  display: block;
  transform: translate(0, 0);
}
.header .burger {
  display: block;
}
@media (min-width: 960px) {
  .header .burger {
    display: none;
  }
}
.header .burger img {
  width: 28px;
  height: 28px;
}

.menu_mobile {
  background: var(--header);
  width: 100%;
  padding: 0 20px;
  max-width: 280px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  transition: right 0.8s;
}

.menu_mobile {
  z-index: 11;
}
.menu_mobile .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}
.menu_mobile .close img {
  width: 20px;
  height: 20px;
}
.menu_mobile .menu {
  list-style: none;
}
.menu_mobile .menu li {
  margin-bottom: 20px;
}
.menu_mobile .menu li:last-child {
  margin-bottom: 0;
}
.menu_mobile .menu li a {
  font-size: 16px;
  color: var(--content);
  font-weight: 400;
  padding: 10px 0;
}
.menu_mobile .menu li a:hover {
  color: var(--hover);
}
.menu_mobile .menu .current-menu-item.menu-item-object-page a {
  color: var(--hover);
}
.menu_mobile .menu .sub-menu {
  margin-top: 20px;
  height: 200px;
  overflow-y: scroll;
}
.menu_mobile .menu .sub-menu li a {
  padding: 10px 0;
}
.menu_mobile .menu .sub-menu .current-menu-item.menu-item-object-post a {
  color: var(--hover) !important;
}

.menu_mobile.show {
  right: 0;
  transition: right 0.8s;
}

.wrapper {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 1250px;
}

.btn {
  padding: 0 15px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: var(--radius-btn);
  color: var(--content);
  background-color: var(--hover);
  border: 1px solid var(--hover);
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
}
.btn:hover {
  background-color: unset;
  transition: 0.3s ease-out;
  color: var(--hover);
}

/* Text first */
.text__first {
  background-color: var(--content);
}
.text__first-content {
  padding: 35px 10px;
  background: linear-gradient(rgba(243, 246, 252, 0.7), rgba(243, 246, 252, 0.8)), url(/wp-content/uploads/2025/11/main-banner.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media (min-width: 960px) {
  .text__first-content {
    padding: 60px 10px;
  }
}
.text__first h1 {
  padding: 0;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}
@media (min-width: 960px) {
  .text__first h1 {
    width: 700px;
  }
}
.text__first p {
  font-size: 16px;
}
@media (min-width: 960px) {
  .text__first p {
    width: 850px;
  }
}
.text__first p:last-child {
  padding-bottom: 0;
}

.btn-content {
  text-align: center;
  margin-bottom: 20px;
}
.btn-content .btn {
  width: 250px;
  height: 45px;
  animation: pulse 1.5s infinite;
}

/* Cards */
.offers {
  margin-bottom: 20px;
}
.offers .cards__items-item {
  background-color: var(--header);
}
.offers .cards__items-item::after {
  content: "";
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.offers .cards__items-img {
  border: 2px solid var(--content);
}
.offers .cards__items-title a {
  color: var(--content);
}
.offers .cards__items-bonus span {
  font-size: 16px;
  color: var(--content);
}
.offers .cards__items-buttons .link {
  color: var(--content);
}
.offers .cards__items-buttons .link:hover {
  color: var(--hover);
}

.cards {
  padding: 10px;
}
@media (min-width: 960px) {
  .cards {
    padding: 20px 10px;
  }
}
.cards__items {
  /*background-color: var(--header);
   padding: 15px;
  border-radius: var(--radius);

   @include media-up(lg) {
       padding: 20px;
   }*/
}
.cards__items-item {
  margin-bottom: 15px;
  background-color: var(--content);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
  /* &::after {
       content: "";
       opacity: 0.4;
       top: 0;
       left: 0;
       bottom: 0;
       right: 0;
       position: absolute;
       z-index: -1;
       background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
       background-repeat: no-repeat;
       background-size: cover;
       background-position: center;
   } */
}
@media (min-width: 640px) {
  .cards__items-item {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    padding: 15px 10px;
  }
}
@media (min-width: 960px) {
  .cards__items-item {
    height: 120px;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
    padding: 0 10px;
  }
}
.cards__items-item:last-child {
  margin-bottom: 0;
}
.cards__items-item:first-child .cards__items-img .number {
  background: rgba(216, 26, 65, 0.7);
}
.cards__items-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  height: 105px;
}
@media (min-width: 640px) {
  .cards__items-img {
    margin-bottom: 0;
  }
}
.cards__items-img img {
  width: 150px;
}
.cards__items-img .number {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 30px;
  height: 30px;
  border-radius: var(--radius-btn);
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__items-img .number span {
  font-weight: 700;
  color: var(--content);
  font-size: 14px;
}
.cards__items-rating {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .cards__items-rating {
    margin-bottom: 0;
  }
}
.cards__items-title {
  margin-bottom: 15px;
}
.cards__items-title span {
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
}
.cards__items-title span:hover {
  color: var(--hover);
}
.cards__items-bonus {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .cards__items-bonus {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .cards__items-bonus {
    margin-top: 0;
  }
}
.cards__items-bonus span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .cards__items-bonus span {
    font-size: 18px;
  }
}
.cards__items-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .cards__items-buttons {
    margin-bottom: 0;
  }
}
.cards__items-buttons .btn {
  margin-bottom: 10px;
  width: 180px;
  height: 45px;
}
.cards__items-buttons .link {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .cards__items-buttons .link {
    margin-bottom: 0;
  }
}

.rate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.rate span {
  font-size: 12px;
  font-weight: 700;
}

/* Content */
.content-block {
  padding-bottom: 10px;
}
@media (min-width: 640px) {
  .content-block {
    padding-bottom: 20px;
  }
}
.content-block .main-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .content-block .main-content {
    flex-direction: row;
  }
}
.content-block .content_page {
  width: 100%;
  max-width: 100%;
}
.content-block .content_page h3, .content-block .content_page h4 {
  color: var(--content);
}
.content-block .content_page p {
  font-size: 16px;
  color: var(--content);
}
.content-block .content_page ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 640px) {
  .content-block .content_page ul {
    flex-direction: row;
  }
}
.content-block .content_page ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding-left: 25px;
  font-size: 16px;
  line-height: 30px;
  color: var(--content);
}
@media (min-width: 640px) {
  .content-block .content_page ul li {
    width: 48%;
  }
}
.content-block .content_page ul li::after {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/nordisk/img/icon-casino.svg) no-repeat;
  background-size: cover;
  content: "";
  left: -5px;
  top: 6px;
}
.content-block .content_page ul li ul {
  display: block;
  padding-left: 0;
}
.content-block .content_page ul li ul li {
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  list-style: disc;
}
.content-block .content_page ul li ul li::before {
  display: none;
}
.content-block .content_page ul li ul li::after {
  display: none;
}
.content-block .content_page ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.content-block .content_page ol li {
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  line-height: 30px;
  font-size: 16px;
  color: var(--content);
}
.content-block .content_page ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--hover);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--content);
  font-size: 14px;
  font-weight: 700;
}
.content-block .content_page ol li ul {
  display: block;
  padding-left: 0;
}
.content-block .content_page ol li ul li {
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  list-style: disc;
}
.content-block .content_page ol li ul li::before {
  display: none;
}
.content-block .content_page ol li ul li::after {
  display: none;
}
.content-block .content_page h3 {
  color: var(--content);
}
.content-block .content_page a {
  font-size: 16px;
  color: var(--hover);
}
.content-block .content_page a:hover {
  text-decoration: underline;
}
.content-block .content_page .section-block {
  background-color: var(--content);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 15px;
  position: relative;
  z-index: 1;
  /*&::after {
      content: "";
      opacity: 0.4;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      position: absolute;
      z-index: -1;
      background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  } */
}
@media (min-width: 960px) {
  .content-block .content_page .section-block {
    padding: 20px;
  }
}
.content-block .content_page .section-block p {
  color: var(--text);
}
.content-block .content_page .section-block ul li {
  color: var(--text);
}
.content-block .content_page .section-block ol li {
  color: var(--text);
}
.content-block .content_page .section-block h3, .content-block .content_page .section-block h4 {
  color: var(--text);
}
.content-block .content_page .section-block a {
  font-size: 16px;
  color: var(--hover);
}
.content-block .content_page .section-block a:hover {
  text-decoration: underline;
}

.banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.banner__content-img {
  border-radius: var(--radius);
  width: 900px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 960px) {
  .banner__content-img {
    height: auto;
    width: 1000px;
  }
}
.banner__content-text {
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner__content-text img {
  width: 250px;
  margin-bottom: 15px;
}
.banner__content-text p {
  font-weight: 700;
  line-height: 1.2;
  color: var(--content) !important;
  width: 300px;
}
@media (min-width: 640px) {
  .banner__content-text p {
    width: 370px;
    font-size: 18px !important;
  }
}
@media (min-width: 960px) {
  .banner__content-text p {
    width: 450px;
    font-size: 22px !important;
  }
}
.banner__content-text .banner-btn {
  width: 200px;
}
@media (min-width: 960px) {
  .banner__content-text .banner-btn {
    width: 250px;
    height: 45px;
  }
}

@media (min-width: 960px) {
  .banner__content.hugo-casino .banner__content-text p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 453px;
    height: 100px;
    padding: 0 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/wp-content/uploads/2025/11/title-back-hugo.webp);
    margin-bottom: 20px;
  }
}

.banner__content.wizzspin .banner__content-text img, .banner__content.spinrise .banner__content-text img, .banner__content.oshi .banner__content-text img {
  width: 200px;
}

.banner__content.spinmama .banner__content-text, .banner__content.roman-casino .banner__content-text, .banner__content.betibet .banner__content-text, .banner__content.zotabet .banner__content-text, .banner__content.spinrise .banner__content-text, .banner__content.oshi .banner__content-text {
  align-items: flex-start;
  text-align: left;
  left: 20px;
}
@media (min-width: 960px) {
  .banner__content.spinmama .banner__content-text, .banner__content.roman-casino .banner__content-text, .banner__content.betibet .banner__content-text, .banner__content.zotabet .banner__content-text, .banner__content.spinrise .banner__content-text, .banner__content.oshi .banner__content-text {
    left: 10%;
  }
}

.banner__content.bingobonga .banner__content-text {
  align-items: flex-start;
  text-align: left;
  right: 0;
}
@media (min-width: 960px) {
  .banner__content.bingobonga .banner__content-text {
    right: 8%;
  }
}
.banner__content.bingobonga .banner__content-text .second-logo {
  width: 95px;
  height: 95px;
}

@media (min-width: 640px) {
  .banner__content.rolling-slots .banner__content-text {
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .banner__content.rolling-slots .banner__content-text div {
    margin-left: 10px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .banner__content.rolling-slots .banner__content-text div {
    margin-left: 55px;
  }
}

.banner__content.oshi .banner__content-text div p {
  left: -20px;
  position: relative;
  margin-bottom: 20px;
  padding: 20px 10px;
  background-color: var(--content);
  color: var(--text) !important;
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
@media (min-width: 960px) {
  .banner__content.oshi .banner__content-text div p {
    left: -21%;
  }
}
@media (min-width: 1280px) {
  .banner__content.oshi .banner__content-text div p {
    left: -6%;
  }
}

/* FAQ */
.faq__item {
  background-color: var(--header);
  border-radius: var(--radius);
}
.faq__item h3 {
  color: var(--content) !important;
  font-size: 18px !important;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .faq__item h3 {
    font-size: 20px !important;
  }
}
.faq__item h3:after {
  background-image: url(/wp-content/themes/nordisk/img/faq-icon.svg);
}
.faq__item .faq__answer {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.faq__item .faq__answer p {
  color: var(--content) !important;
  font-size: 16px;
  line-height: 1.2;
}
.faq__item .faq__answer p:last-child {
  padding-bottom: 0;
}

.faq__item.open h3 {
  border-bottom: 1px solid var(--border);
}

/* Footer */
footer .footer__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
}
@media (min-width: 640px) {
  footer .footer__menu {
    flex-direction: row;
    align-items: flex-start;
  }
}
footer .footer__menu-left {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  footer .footer__menu-left {
    text-align: left;
    margin-bottom: 0;
  }
}
footer .footer__menu-left img {
  flex: 0 0 auto;
  max-width: 100%;
  margin-bottom: 10px;
  width: 220px;
}
footer .footer__menu-left span {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--content);
  margin-bottom: 5px;
}
footer .footer__menu-left a {
  display: block;
  color: var(--content);
  font-size: 14px;
  line-height: 1.4;
}
footer .footer__menu-left a:hover {
  color: var(--hover);
}
footer .footer__menu .menu-footer-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 640px) {
  footer .footer__menu .menu-footer-container ul {
    display: block;
  }
}
footer .footer__menu .menu-footer-container ul li {
  margin: 10px;
}
@media (min-width: 640px) {
  footer .footer__menu .menu-footer-container ul li {
    margin: 10px 0;
  }
}
footer .footer__menu .menu-footer-container ul li a {
  color: var(--content);
  font-size: 14px;
}
footer .footer__menu .menu-footer-container ul li a:hover {
  color: var(--hover);
}
footer .footer__menu .menu-footer-container ul li.current-menu-item a {
  color: var(--hover);
}
footer .footer__info {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer__info span {
  font-size: 14px;
  color: var(--content);
  font-weight: 700;
  line-height: 1.2;
}
footer .footer__info p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--content);
  font-weight: 700;
  padding-bottom: 0;
}
footer .footer__info a {
  color: var(--hover);
  font-size: 14px;
}
footer .footer__info a:hover {
  text-decoration: underline;
}
footer .footer__copyright {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer__copyright span {
  font-size: 16px;
  color: var(--content);
  font-weight: 500;
}
footer .footer__logos {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
footer .footer__logos img {
  margin: 10px 15px;
}
@media (min-width: 640px) {
  footer .footer__logos img {
    margin: 5px 15px;
  }
}
@media (min-width: 960px) {
  footer .footer__logos img {
    margin: 5px 25px;
  }
}
footer .footer__logos .eighteen {
  width: 50px;
  height: 50px;
}
footer .footer__logos .spille {
  width: 170px;
}
footer .footer__logos .stop {
  width: 100px;
}
footer .footer__logos .rofus {
  width: 150px;
}
footer .footer.single {
  padding-bottom: 80px;
}
@media (min-width: 640px) {
  footer .footer.single {
    padding-bottom: 100px;
  }
}

/* Single page */
.single {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.single .preview {
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
@media (min-width: 960px) {
  .single .preview {
    padding: 30px;
  }
}
.single .preview__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .single .preview__content {
    flex-direction: row;
  }
}
.single .preview__content-payments {
  margin-top: 20px;
}
.single .preview__content-payments .preview__payments-content p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0;
  line-height: 1;
  justify-content: center;
}
@media (min-width: 640px) {
  .single .preview__content-payments .preview__payments-content p {
    justify-content: flex-start;
    width: auto;
  }
}
.single .preview__content-payments .preview__payments-content img {
  width: auto;
  height: 30px;
  margin: 5px;
  filter: grayscale(1);
}
@media (min-width: 640px) {
  .single .preview__content-payments .preview__payments-content img {
    margin: 10px;
  }
}
.single .preview__content-payments .preview__payments-content .wp-image-131 {
  height: 15px;
}
.single .preview__content-payments .preview__payments-content .wp-image-134 {
  height: 15px;
}
.single .preview__content-left {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .single .preview__content-left {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.single .preview__content-left img {
  width: 200px;
  margin-bottom: 10px;
}
.single .preview__content-rating {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.single .preview__content-rating h1 {
  padding: 0;
  color: var(--content);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
}
.single .preview__content-right {
  flex: 0 0 auto;
  max-width: 100%;
  position: relative;
}
.single .preview__content-right img {
  position: relative;
}
.single .preview__content-right:has(.promocode) {
  display: flex;
  flex-direction: column;
}
.single .preview__content-text {
  margin-top: 10px;
}
.single .preview__content-text .btn {
  width: 200px;
}
.single .preview__content-bonus {
  color: var(--content);
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .single .preview__content-bonus {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.single .preview.roman-casino .preview__content-right img {
  width: 250px;
  bottom: -22px;
}
@media (min-width: 640px) {
  .single .preview.roman-casino .preview__content-right img {
    bottom: -82px;
  }
}
@media (min-width: 960px) {
  .single .preview.roman-casino .preview__content-right img {
    width: auto;
    bottom: -32px;
  }
}
.single .preview.betibet .preview__content-right img {
  bottom: -23px;
}
@media (min-width: 640px) {
  .single .preview.betibet .preview__content-right img {
    bottom: -37px;
  }
}
@media (min-width: 960px) {
  .single .preview.betibet .preview__content-right img {
    bottom: -32px;
  }
}
.single .preview.spinrise .preview__content-right img {
  width: 350px;
  bottom: -23px;
  right: -86px;
}
@media (min-width: 640px) {
  .single .preview.spinrise .preview__content-right img {
    right: -20px;
    bottom: -100px;
  }
}
@media (min-width: 960px) {
  .single .preview.spinrise .preview__content-right img {
    right: -30px;
    bottom: -87px;
    width: 400px;
  }
}
@media (min-width: 1280px) {
  .single .preview.spinrise .preview__content-right img {
    bottom: -50px;
  }
}
.single .preview.rolling-slots .preview__content-right img {
  width: 350px;
}
@media (min-width: 960px) {
  .single .preview.rolling-slots .preview__content-right img {
    width: auto;
  }
}
.single .preview.hugo-casino .preview__content-right img {
  width: 350px;
}
@media (min-width: 960px) {
  .single .preview.hugo-casino .preview__content-right img {
    width: auto;
  }
}
.single .preview.oshi .preview__content-right img {
  width: 350px;
}
@media (min-width: 640px) {
  .single .preview.oshi .preview__content-right img {
    right: -20px;
  }
}
@media (min-width: 960px) {
  .single .preview.oshi .preview__content-right img {
    right: -30px;
  }
}
@media (min-width: 1280px) {
  .single .preview.oshi .preview__content-right img {
    width: auto;
  }
}

.prm-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}
@media (min-width: 640px) {
  .prm-block {
    margin: 10px 0 0 0;
  }
}
.prm-block .promo-title {
  color: var(--content);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: block;
}

.promocode {
  position: relative;
  margin: 10px 0;
  border: 0;
  background-color: unset;
  padding: 0;
}
.promocode__block {
  position: relative;
  z-index: 1;
  background-color: var(--header);
  border: 2px dotted var(--content);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: var(--radius);
}
.promocode__block::after {
  content: "";
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.promocode__block span {
  color: var(--content);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
}

/* Pluses / minuses */
.pluses-minuses {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .pluses-minuses {
    flex-direction: row;
  }
}
.pluses-minuses .col {
  width: 100%;
  border-radius: var(--radius);
  background-color: var(--content);
  padding: 15px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .pluses-minuses .col {
    width: 50%;
  }
}
.pluses-minuses .col::after {
  content: "";
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pluses-minuses .col:first-child {
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .pluses-minuses .col:first-child {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  .pluses-minuses .col:first-child {
    margin-right: 20px;
  }
}
.pluses-minuses .col ul {
  display: block;
  margin-bottom: 0;
}
.pluses-minuses .col ul li {
  width: 100%;
}
.pluses-minuses .col .pluses li::after {
  background-image: url(/wp-content/themes/nordisk/img/plus.svg);
}
.pluses-minuses .col .minuses li::after {
  background-image: url(/wp-content/themes/nordisk/img/minus.svg);
}
.pluses-minuses .col:has(.pluses) {
  background-color: var(--pluses);
}
.pluses-minuses .col:has(.minuses) {
  background-color: var(--hover);
}

/* Scroll */
.scroll-top {
  opacity: 0;
  background: var(--hover);
  transition: 0.3s;
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.scroll-top .scroll-top-bg {
  padding: 8px;
  position: relative;
}
.scroll-top .scroll-top-bg img {
  width: 20px;
  height: 20px;
}

/* 404 Error */
.error__block {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-direction: row;
  justify-content: flex-start;
  height: 75vh;
  padding: 20px 20px 0 20px;
}
@media (min-width: 640px) {
  .error__block {
    padding: 0 128px;
  }
}
.error__block-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 1408px;
}
.error__block-content img {
  margin-bottom: 20px;
}
.error__block-content p {
  font-size: 32px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.error__block-content .btn {
  width: 250px;
  height: 45px;
  color: var(--content) !important;
}
.error__block-content .btn:hover {
  text-decoration: none !important;
  color: var(--hover) !important;
}

.content-block.error {
  margin-top: 30px;
}

.wp-block-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.wp-block-image img {
  border-radius: var(--radius);
}

.rank-math-breadcrumb {
  padding: 20px 0;
}
.rank-math-breadcrumb p {
  padding-bottom: 0;
  font-size: 14px;
  color: var(--content);
}
.rank-math-breadcrumb p a {
  font-size: 14px;
  color: var(--hover);
}
.rank-math-breadcrumb p span {
  color: var(--content);
}

.breadcrumbs {
  padding: 20px 0;
  color: var(--text);
}
.breadcrumbs a {
  font-size: 14px;
  color: var(--hover);
}
.breadcrumbs span {
  font-size: 14px;
  color: var(--text);
}

.card-offer {
  margin-bottom: 20px;
}
.card-offer .cards__items-item {
  background-color: var(--header);
}
.card-offer .cards__items-item::after {
  content: "";
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-image: url(/wp-content/uploads/2025/03/back_texture.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.card-offer .cards__items-img {
  border: 2px solid var(--content);
}
.card-offer .cards__items-title a {
  color: var(--content);
}
.card-offer .cards__items-title a:hover {
  color: var(--hover);
}
.card-offer .cards__items-bonus span {
  font-size: 16px;
  color: var(--content);
}
.card-offer .cards__items-buttons .link {
  color: var(--content);
}
.card-offer .cards__items-buttons .link:hover {
  color: var(--hover);
}

.fixed__block {
  position: fixed;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  background-color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transition: 0.3s;
}
@media (min-width: 640px) {
  .fixed__block {
    padding: 15px;
    height: 100px;
  }
}
.fixed__block-top {
  display: flex;
  align-items: center;
}
.fixed__block-img {
  flex: 0 0 auto;
  max-width: 100%;
  margin-right: 10px;
  overflow: hidden;
  height: 70px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 2px solid var(--content);
}
@media (min-width: 640px) {
  .fixed__block-img {
    width: 200px;
    margin-right: 20px;
  }
}
.fixed__block-img img {
  width: 80px;
}
@media (min-width: 640px) {
  .fixed__block-img img {
    width: 150px;
  }
}
.fixed__block-text {
  width: 100%;
  max-width: 100%;
}
.fixed__block-text .rate {
  margin-top: 10px;
  width: 35px;
  height: 35px;
}
.fixed__block-text .rate span {
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
}
.fixed__block-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--content);
}

#cookie-block {
  position: fixed;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 95%;
  z-index: 9999999;
  border-radius: var(--radius);
  background: var(--content);
  padding: 20px 26px;
  display: none;
  flex-direction: column;
}
#cookie-block .cookie__block-text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 0;
}
#cookie-block .cookie__block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#cookie-block .cookie__block-buttons .cookie__block-accept {
  margin-right: 15px;
}
#cookie-block .cookie__block-buttons .cookie__block-reject {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
#cookie-block .cookie__block-buttons .cookie__block-reject:hover {
  color: var(--hover);
}

#cookie-block.show {
  display: flex;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
/* Slots */
.page-title.page-slots h1 {
  text-align: center;
}

.text__first.single-slots {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.text__first.single-slots .rank-math-breadcrumb span {
  color: var(--text);
}

.slots-block {
  padding: 10px 0 40px 0;
  background-repeat: repeat;
  background-size: contain;
  background-image: url(/wp-content/uploads/2025/05/back-slots.webp);
}

.slots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 10px;
  margin: 40px 0;
}
.slots__item {
  display: block;
  flex: 0 1 285px;
  position: relative;
  overflow: hidden;
  background-color: var(--content);
  border-radius: var(--radius);
  padding: 10px;
}
.slots__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: var(--header);
  border-radius: var(--radius-btn);
  position: relative;
}
.slots__item-img img {
  width: 120px;
}
.slots__item-text {
  text-align: center;
  margin: 20px 0;
}
.slots__item-text a {
  color: var(--header);
  font-weight: 700;
  font-size: 16px;
}
.slots__item-btn {
  text-align: center;
}
.slots__item-btn .btn {
  font-size: 16px;
  width: 100%;
  margin-bottom: 20px;
}
.slots__item-info {
  color: var(--text);
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
}
.slots__item-info a {
  font-size: 13px;
  color: var(--hover);
  text-decoration: underline;
  transition: 0.3s;
}
.slots__item-info a:hover {
  text-decoration: none;
}

.provider {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--text);
  width: 60px;
  height: 25px;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider img {
  width: 40px;
}

.slot {
  position: relative;
}
.slot__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  padding: 20px;
  background-color: var(--header);
  border-radius: var(--radius);
}
@media (min-width: 640px) {
  .slot__content {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 960px) {
  .slot__content {
    padding: 30px;
  }
}
.slot__content-img {
  flex: 0 0 auto;
  max-width: 100%;
}
.slot__content-img img {
  width: 300px;
}
@media (min-width: 960px) {
  .slot__content-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.slot__content-card {
  display: block;
  flex: 0 1 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--content);
  border-radius: var(--radius);
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .slot__content-card {
    width: auto;
    flex: 0 1 300px;
    margin-bottom: 0;
  }
}
.slot__content-card .slot-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: var(--header);
  border-radius: var(--radius-btn);
  position: relative;
}
.slot__content-card .slot-img img {
  width: 120px;
}
.slot__content-card .slot-img .provider img {
  width: 40px;
}
.slot__content-card .slot__row {
  margin-top: 10px;
}
.slot__content-card .slot__row-item {
  display: grid;
  grid-gap: 8px;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
  border-radius: var(--radius-btn);
}
.slot__content-card .slot__row-item:nth-child(2n) {
  background-color: var(--slot);
}
.slot__content-card .slot__row-item div {
  font-size: 13px;
  color: var(--text);
}
@media (min-width: 640px) {
  .slot__content-card .slot__row-item div {
    font-size: 12px;
  }
}

.author {
  background-color: var(--content);
  border-radius: var(--radius);
  padding: 15px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .author {
    padding: 20px;
    flex-direction: row;
  }
}
.author__img {
  flex: 0 0 auto;
  max-width: 100%;
  align-self: center;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .author__img {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.author__img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
@media (min-width: 960px) {
  .author__img img {
    width: 220px;
    height: 220px;
  }
}
.author__content {
  width: 100%;
  max-width: 100%;
  align-self: center;
}
.author__content-title {
  color: var(--text);
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .author__content-title {
    font-size: 24px;
  }
}
.author__content-subtitle {
  font-size: 16p;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  display: block;
}
.author__content p {
  color: var(--text) !important;
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */