:root {
    --primary: #dc1f00;
    --secondary: #00cfa6;
    --header: #13131c;
    --footer: #13131c;
    --background: #39393a;
    --links: #ffffff;
    --content-text: #f1f1f1;
    --content-links: #ffffff;
    --button-text: #ffffff;
    --border-radius: 4px;
    --grey: #575656
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    overflow-x: hidden;
    font-family: Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    background: var(--background);
    color: var(--content-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

footer {
    margin-top: auto
}

a {
    color: var(--links);
    text-decoration: none;
    transition: 0.3s
}

input, button {
    border: none;
    box-shadow: none;
    outline: none;
    transition: 0.3s
}

h1, h2, h3, h4, h5, h6 {
    padding-bottom: 20px
}

h1 {
    font-size: 36px;
    line-height: 46px
}

h2 {
    font-size: 30px;
    line-height: 40px;
    position: relative;
    padding-left: 35px
}

h3 {
    font-size: 26px;
    line-height: 36px
}

h2:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 25px;
    height: 5px;
    background: var(--secondary)
}

h2 span {
    font-size: 30px;
    line-height: 40px
}

h3 span {
    font-size: 26px;
    line-height: 36px
}

p, span, li, b, i, tr, td {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 15px
}

blockquote {
    background: var(--grey);
    padding: 20px 30px;
    margin: 20px 0;
    border-left: 5px solid #84777e
}

blockquote p {
    margin-bottom: 0
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer
}

.mainBanner {
    height: 300px;
    margin-top: 60px
}

.mainBannerText {
    padding-top: 50px
}

.mainBanner button {
    font-size: 18px;
    padding: 10px 25px;
    text-transform: uppercase;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    animation: pulse 1.5s infinite
}

.mainBanner .textFirst {
    font-size: 24px;
    font-weight: 600
}

.mainBanner .textSecond {
    border-bottom: 3px #fff dotted;
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    line-height: 20px
}

.mainBanner .textThird {
    font-size: 24px;
    font-weight: 800;
    padding-top: 10px
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.container {
    display: block;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1180px;
    width: 100%
}

.content_page {
    margin-top: 35px;
    margin-bottom: 20px
}

.content_page a {
    color: var(--content-links)
}

.mt-0 {
    margin-top: 62px
}

.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: calc(50% - var(--wp--style--block-gap, .5em) * 0.5) !important
}

.wp-block-button__link {
    border-radius: var(--border-radius) !important;
    white-space: nowrap
}

.wp-block-button__link:hover {
    filter: drop-shadow(1px 1px 6px red);
    transition: .3s
}

.wp-block-separator {
    margin-bottom: 20px
}

.lwptoc-light .lwptoc_i {
    color: #fff !important;
    background: var(--grey) !important
}

.lwptoc-light .lwptoc_i a {
    color: #fff !important
}

.slots_gallery {
    box-shadow: var(--shadow);
    border-radius: var(--border);
    padding: 5px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.slots_gallery .slot {
    position: relative;
    margin: 8px
}

.slots_gallery .slot img {
    width: 150px;
    height: 113px;
    border-radius: var(--border)
}

.slots_gallery .slot .slotButton {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5px 0
}

.slots_gallery .slot .slotButton:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ''
}

.slots_gallery .slot:nth-child(1n) .slotButton:before {
    background: linear-gradient(45deg, var(--primary), #f90, var(--secondary), #000);
    animation: glowing 100s linear infinite;
    background-size: 500%
}

.slots_gallery .slot:nth-child(2n) .slotButton:before {
    background: linear-gradient(65deg, #f90, var(--secondary), var(--primary), #000);
    animation: glowing 80s linear infinite;
    background-size: 600%
}

.slots_gallery .slot:nth-child(3n) .slotButton:before {
    background: linear-gradient(85deg, var(--secondary), var(--primary), #f90, #000);
    animation: glowing 100s linear infinite;
    background-size: 800%
}

.slots_gallery .slot:nth-child(4n) .slotButton:before {
    background: linear-gradient(145deg, #f90, var(--secondary), var(--primary), #000);
    animation: glowing 120s linear infinite;
    background-size: 600%
}

.slots_gallery .slot button {
    color: #fff;
    font-size: 16px;
    padding: 6px 10px;
    border: none;
    background: none;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px
}

.slots_gallery .slot:hover .slotButton {
    height: 100%;
    align-items: center
}

.slots_gallery .slot:hover button {
    font-size: 20px
}

@keyframes glowing {
    0% {
        background-position: 0 0
    }
    50% {
        background-position: 600% 0
    }
    100% {
        background-position: 0 0
    }
}

.wp-block-image {
    background: url(/wp-content/uploads/2022/11/back.png) repeat;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px !important
}

.wp-block-image figcaption {
    width: 100%;
    text-align: center;
    color: #959595;
    font-size: 14px
}

.wp-block-image img {
    margin-bottom: 20px;
    max-width: 800px !important;
    box-shadow: 5px 5px 0 #84777e
}

.wp-block-columns {
    display: flex !important;
    align-items: center !important;
    background: url(/wp-content/uploads/2022/11/back.png) repeat
}

.wp-block-columns .wp-block-image {
    background: transparent !important
}

.wp-block-columns img {
    max-height: 500px !important;
    width: auto;
    box-shadow: 5px 5px 0 #84777e;
    max-width: 100% !important
}

.wp-block-columns p {
    font-size: 20px;
    line-height: 30px
}

.wp-block-columns .wp-block-image amp-img:not(#_#_#_#_#_#_#_#_) {
    max-width: 200px !important
}

.wp-block-image .aligncenter, .wp-block-image.aligncenter {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important
}

header ul {
    list-style: none
}

.content_page ul, .content_page ol {
    padding-left: 25px;
    margin: 20px 0;
}

.content_page ul li {
    padding-left: 30px
}


.content_page ol {
    counter-reset: num
}

.content_page a {
    color: var(--secondary)
}

.content_page a:hover {
    text-decoration: underline
}

.wp-block-table {
    margin: 0px !important
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.scrollToTop {
    background: var(--grey);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    border: 1px solid var(--background)
}

.scrollToTop img {
    width: 15px;
    height: 15px
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header);
    z-index: 10;
    padding: 10px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%
}

.menu-wrapper {
    display: flex;
    gap: 10px
}

.header .logo {
    display: block;
    height: 48px;
    width: 123px
}

.header .logo img {
    display: block;
    width: 100%;
    height: 100%
}

.header .menu {
    height: 100%;
    display: flex;
    justify-content: center
}

.header .menu li {
    height: 100%;
    padding-bottom: 0
}

.header .menu li a {
    text-transform: uppercase;
    color: var(--links);
    font-weight: 600;
    font-size: 15px;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center
}

.header .menu a[aria-current] {
    background: var(--secondary) !important;
    color: #000
}

.enter-button, .reg-button {
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px
}

.reg-button {
    background: var(--primary);
    color: #fff
}

.enter-button {
    background: var(--secondary)
}

.header.mainContentMobile .logo {
    background: transparent !important
}

.burger {
    display: none
}

.menu_mobile {
    background: var(--header);
    box-shadow: 0 2px 7px rgba(0, 0, 0, .6);
    width: 100%;
    padding: 0 30px;
    max-width: 350px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    transition: right 0.8s
}

.menu_mobile.show {
    right: 0;
    transition: right 0.8s
}

header .overlay {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

header .overlay.active {
    display: block
}

.close {
    display: flex;
    justify-content: center;
    padding: 20px 0
}

.menu_mobile .menu-header-menu-container ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column
}

.menu_mobile .menu-header-menu-container ul li::before {
    content: none
}

.menu_mobile .menu-header-menu-container li {
    padding: 10px
}

.menu_mobile .menu-header-menu-container li a {
    color: #FFF
}

button.burger {
    display: flex;
    background: transparent
}

amp-sidebar {
    width: 100%;
    max-width: 350px;
    background: var(--header)
}

.closeButton {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 20px 0;
    margin: auto
}

.closeButton img {
    width: 24px;
    height: 24px
}

.pinup-menu ul {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 0 20px;
    width: 100%
}

.pinup-menu ul li {
    padding: 10px 0
}

.copyBlock {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
    background: var(--secondary)
}

.copyBlock #inputText {
    padding: 0 7px;
    font-size: 15px;
    color: #000;
    text-align: center;
    height: 30px;
    border-radius: 4px 0 0 4px;
    outline: none
}

.copyBlock button {
    padding: 0 11px;
    font-size: 15px;
    font-weight: 700;
    background: var(--primary) !important;
    color: #fff;
    border-radius: 0 4px 4px 0;
    height: 30px;
    cursor: pointer
}

.promoTitle {
    width: 100%;
    font-weight: 800;
    padding: 0 10px 20px 10px;
    text-align: center;
    color: #000
}

.code-copy {
    width: 100%;
    max-width: 320px;
    margin: auto auto 20px auto;
    text-align: center;
    position: relative;
    padding: 20px
}

.code-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border: 10px dotted #ffc800;
    filter: blur(2px)
}

.code-copy-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 10px !important
}

.code-copy-btn {
    margin-top: 10px;
    margin-bottom: 20px !important;
    position: relative;
    width: 250px;
    height: 50px;
    display: block;
    margin: 0 auto
}

.hover-block {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: 250px;
    height: 40px;
    color: #fff;
    font-weight: 700;
    top: -50px;
    left: 0;
    background: #bc2502;
    border-radius: 15px
}

#copy:hover ~ .hover-block {
    display: flex;
    z-index: 9999
}

#copy {
    border: none;
    color: #fff;
    padding: 6px 8px;
    font-size: 25px;
    line-height: 22px;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    background: #00bd9d;
    border-radius: 50px;
    width: 250px;
    height: 50px
}

.casinoBlock {
    display: grid;
    justify-content: space-between;
    align-items: center;
    background: var(--header);
    padding: 30px 40px;
    margin-top: 10px;
    margin-bottom: 30px;
    grid-template-columns:repeat(4, auto)
}

.casinoBlock img {
    width: 123px;
    height: 48px;
    display: inline-block;
    margin: 0 auto
}

.casinoBlock .stars {
    display: flex;
    justify-content: center
}

.casinoBlock .star {
    width: 20px;
    height: 20px;
    margin: 0 4px
}

.casinoBlock .bonus {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 0;
    text-align: center
}

.casinoBlock button {
    background: var(--secondary);
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    animation: pulse 1.5s infinite
}

@media (max-width: 800px) {
    .casinoBlock {
        grid-template-columns:repeat(2, auto);
        justify-content: center;
        gap: 25px
    }
}

@media (max-width: 500px) {
    .casinoBlock {
        grid-template-columns:repeat(1, auto);
        gap: 15px
    }
}

.wp-block-table table {
    background: var(--grey)
}

th, td {
    padding: 15px;
    text-align: left
}

tr {
    border-bottom: 1px solid #eee
}

tr:last-child {
    border-bottom: none
}

.footer-wrap {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-footer-menu-container ul li:before {
    content: none
}

.footer-menu {
    text-align: right;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0
}

.left-wrap {
    display: flex;
    flex-direction: column
}

.footer-menu ul li:before {
    content: none
}

.footer-menu a {
    color: #fff;
    font-size: 14px
}

.dmca-badge {
    margin-top: 20px
}

.footer-bg {
    background: var(--footer);
    color: #fff;
    width: 100%
}

.footerButtons {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: var(--header);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 5
}

.footerButtons button {
    background: var(--primary);
    padding: 7px 0;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    border-radius: 15px 15px 0 0;
    color: #fff;
    font-weight: 600
}

.footerButtonsDesktop {
    opacity: 0;
    justify-content: center;
    align-items: center;
    transition: .4
}

.footerButtonsDesktop.active {
    opacity: 1
}

.error-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    font-size: 100px;
    font-weight: 600
}

.error-page p {
    font-size: 18px;
    font-weight: 400;
    text-align: center
}

.rank-math-answer {
    display: none
}

.rank-math-answer.active {
    display: block
}

.rank-math-list-item {
    background: var(--grey) url(/wp-content/uploads/2022/11/close-rotate.png) no-repeat;
    background-size: 15px;
    background-position: 96% 19px;
    cursor: pointer;
    position: relative;
    padding: 15px 50px 15px 15px;
    margin-bottom: 20px;
    border-left: 5px solid #84777e
}

.rank-math-list-item.minus {
    background: var(--grey) url(/wp-content/uploads/2022/11/close.png) no-repeat;
    background-size: 15px;
    background-position: 96% 19px
}

.rank-math-question {
    text-align: left;
    padding-bottom: 0
}

.rank-math-question span {
    font-size: 20px !important;
    line-height: 30px !important;
    padding-bottom: 0
}

.casino__counter {
    display: flex;
    justify-content: space-between;
    margin: 64px 0;
    max-width: 95%;
    flex-wrap: wrap
}

.casino__counter_items {
    display: flex;
    flex-wrap: wrap
}

.casino__counter_items .item {
    width: 200px;
    height: 160px;
    border: 4px var(--secondary) solid;
    border-radius: 8px;
    margin-right: 24px;
    position: relative
}

.casino__counter_items .img {
    max-width: 84px;
    padding: 10px;
    background: var(--background);
    position: absolute;
    top: -42px;
    left: calc(50% - 42px)
}

.casino__counter_items img {
    max-width: 100%
}

.casino__counter_items .item p {
    position: absolute;
    bottom: 0;
    left: 18px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 85%
}

.casino__counter_items .item p span {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: yellow;
    line-height: 1.2
}

.casino__counter_number span {
    color: yellow;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    display: block
}

.casino__counter_number span:before {
    content: url(/wp-content/uploads/2023/01/curve.svg);
    position: absolute;
    top: 12px;
    left: -52px
}

.casino__counter_number p {
    margin-top: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #fff6a9;
    font-size: 44px
}

.casino__counter_number b {
    position: relative;
    width: 54px;
    height: 54px;
    line-height: 54px;
    overflow: hidden;
    display: inline-block;
    border: 3px #fff solid;
    border-radius: 9px;
    margin-bottom: 12px;
    margin-right: 4px
}

.casino__counter_number b:after {
    content: "0 \A  1 \A  2 \A  3 \A  4 \A  5 \A  6 \A  7 \A  8 \A  9 \A";
    font-size: 28px;
    font-style: normal;
    white-space: pre;
    position: absolute;
    top: 0;
    left: 30%
}

.casino__counter_number .num {
    position: relative;
    max-width: 394px;
    display: inline-flex
}

.casino__counter_number b:nth-child(1):after {
    content: "2 \A  3 \A  4 \A  5 \A  6 \A  7 \A  8 \A   9 \A"
}

.casino__counter_number b:nth-child(2):after {
    content: "5 \A  5 \A  6 \A  7 \A  8 \A  9 \A"
}

.casino__counter_number button {
    padding: 10px 40px;
    background: var(--primary);
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    border-radius: 8px;
    max-width: 160px
}

.casino__counter_number b:nth-child(1):after {
    animation: animate 100000s steps(10) infinite
}

.casino__counter_number b:nth-child(2):after {
    animation: animate 10000s steps(10) infinite
}

.casino__counter_number b:nth-child(3):after {
    animation: animate 1000s steps(10) infinite
}

.casino__counter_number b:nth-child(4):after {
    animation: animate 100s steps(10) infinite
}

.casino__counter_number b:nth-child(5):after {
    animation: animate 10s steps(10) infinite
}

.casino__counter_number b:nth-child(6):after {
    animation: animate 1s steps(10) infinite
}

.casino__counter_number .num:before {
    content: "₸";
    position: absolute;
    width: 24px;
    height: 24px;
    background: yellow;
    color: #333;
    transform: rotate(8deg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    bottom: 12px;
    right: -12px;
    font-weight: 700;
    z-index: 9;
    font-size: 22px
}

@keyframes animate {
    0% {
        top: 0
    }
    100% {
        top: -540px
    }
}

.newsPage {
    margin-top: 80px
}

.news-wrapper {
    display: grid;
    justify-content: space-between;
    grid-template-columns:repeat(3, 350px);
    padding: 25px 0;
    gap: 25px
}

.news {
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 25%)
}

.news .newsImg {
    height: 300px;
    margin-bottom: 20px;
    position: relative
}

.newsImg a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.newsImg a:hover {
    background: rgba(0, 0, 0, .5)
}

.news h2 {
    font-size: 18px;
    line-height: 28px
}

.news a {
    color: #fff
}

.news a:hover {
    color: #24ba9d;
    text-decoration: none
}

.newsInner {
    padding: 0 15px 20px 15px
}

.singleNews {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.singleNewsImg, .singleNewsText {
    width: 48%
}

@media (max-width: 1260px) {
    .news-wrapper {
        justify-content: center;
        grid-template-columns:repeat(2, 350px)
    }
}

@media (max-width: 1000px) {
    .singleNewsImg, .singleNewsText {
        width: 100%
    }

    .singleNewsImg {
        margin-bottom: 20px
    }

    .singleNewsImg img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto
    }
}

.wp-container-1 {
    justify-content: center;
    margin-bottom: 20px
}

.mainContentMobile .lwptoc {
    display: none
}

.slots-list {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.slot {
    position: relative;
    border-radius: 4px;
    width: 270px;
    margin: 5px
}

.slot-img {
    overflow: hidden;
    border-radius: 4px;
    position: relative
}

.slot-buttons {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 70%;
    width: 100%;
    z-index: 3;
    opacity: 0
}

.slot:hover .slot-buttons {
    opacity: 1
}

.slot-img img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: .3s
}

.slot-img amp-img {
    object-fit: cover !important
}

.slot:hover .slot-img img {
    transform: scale(1.1)
}

.slot-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .3s;
    z-index: 2
}

.slot:hover .slot-back {
    opacity: 1
}

.slot-back-title {
    display: flex;
    align-items: center;
    flex-direction: column
}

.slot-back-title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px
}

.slot-review {
    background-color: #dc1f00;
    padding: 7px 8px;
    font-size: 16px;
    border-radius: 4px;
    line-height: 22px;
    position: relative;
    display: block;
    width: 100px;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    transition: .3s
}

.slot-review:hover {
    background-color: #c30700;
    color: #fff !important
}

.slot-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
    display: flex;
    flex-direction: column;
    padding: 5px;
    z-index: 2
}

.slot:hover .slot-top {
    opacity: 1
}

.slot-top-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

.slot-top-item:last-child {
    margin-bottom: 0
}

.slot-top-item span:first-child {
    font-size: 12px;
    color: #fff
}

.slot-top-item span:last-child {
    color: #24ba9d;
    font-size: 15px;
    text-align: right
}

.slot-bottom {
    position: absolute;
    background: #000;
    transition: .3s;
    display: none;
    flex-direction: column;
    padding: 5px;
    z-index: 2
}

.slots-list span {
    padding-bottom: 0;
    line-height: 1
}

.slot:hover .slot-bottom {
    display: flex
}

.slot-provider {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 62px;
    height: 17px
}

.slots-list .hidden {
    display: none
}

.showMore {
    padding: 10px 10px;
    background: var(--primary);
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 8px;
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    transition: 0.4s
}

.showMore:hover {
    background: #000
}

.slots-list .hidden.show, .mainContentMobile .hidden {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%
}

.showMore.hide {
    display: none
}

@media (max-width: 1200px) {
    .mainBanner {
        height: auto;
        margin-top: 60px;
        padding: 20px 0
    }

    .mainBannerText {
        padding-top: 0
    }

    .mainBanner button {
        font-size: 16px
    }

    .casino__counter {
        max-width: 100%;
        justify-content: center
    }

    .casino__counter_number {
        width: 100%;
        margin-top: 32px
    }

    .casino__counter_number span::before {
        display: none
    }

    .casino__counter_items {
        justify-content: space-between;
        width: 100%
    }

    .casino__counter_items .item {
        width: 33%;
        height: 120px
    }

    .casino__counter_items .item {
        margin-right: 0
    }

    h1 {
        font-size: 24px;
        line-height: 34px
    }

    h2, h2 span {
        font-size: 22px;
        line-height: 32px
    }

    h3, h3 span, .rank-math-question span {
        font-size: 18px;
        line-height: 28px
    }

    blockquote {
        padding: 10px 15px
    }

    tr, td {
        font-size: 15px;
        line-height: 25px
    }

    th, td {
        padding: 8px
    }

    .slot {
        border: 1px dashed #24BA9D
    }

    .slot-back {
        opacity: 1
    }

    .slot-top {
        opacity: 1
    }

    .slot-bottom {
        display: block;
        width: 100%;
        position: relative
    }

    .slot-buttons {
        opacity: 1;
        top: 44%
    }

    .mobile-button {
        display: flex
    }

    .mobile-wrap {
        display: flex;
        align-items: center
    }

    .desctop-button {
        display: none
    }

    .burger {
        display: flex;
        align-items: center
    }

    .header .menu {
        margin: 10px;
    }
}

@media (max-width: 850px) {
    .wp-block-image img {
        max-width: 100% !important
    }

    .content_page ol li:not(.lwptoc_item) {
        width: 100%
    }

    .content_page li {
        width: 100%
    }

    .content_page ul {
        margin-left: 0
    }

    .wp-block-image amp-img {
        max-width: 300px;
    !important
    }

    .casino__counter_items .img {
        max-width: 64px
    }

    .casino__counter_items .item p span {
        font-size: 14px
    }

    .casino__counter_items .item p {
        font-size: 12px;
        bottom: -6px
    }
}

@media (max-width: 780px) {
    .news-wrapper {
        grid-template-columns:repeat(1, minmax(200px, 350px))
    }
}

@media (max-width: 680px) {
    .wp-block-image .alignleft {
        float: none !important;
        margin: auto !important
    }

    .wp-block-image .alignright {
        float: none !important;
        margin: auto !important
    }

    .wp-block-pullquote {
        margin: 20px 0px !important;
        padding: 20px !important;
        font-weight: 400
    }

    .info-slider-text {
        padding: 0 20px
    }

    .info-slider-text-descr span {
        font-size: 16px
    }

    .main-banner img {
        filter: brightness(.7);
        object-position: right;
        max-height: 250px
    }

    .wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter {
        width: 100% !important
    }

    .footer-wrap {
        flex-direction: column
    }

    .left-wrap {
        align-items: center;
        text-align: center
    }

    .footer-menu {
        text-align: center
    }

    .footer-menu li {
        padding-bottom: 5px
    }

    .header .logo {
        height: 24px;
        width: 57px
    }

    .menu-wrapper {
        gap: 5px;
        margin: 0 5px
    }
}

@media (max-width: 480px) {
    .mainBannerText {
        text-align: center
    }

    .slots_gallery .slot img {
        width: 120px;
        height: 90px
    }

    .copyBlock #inputText {
        width: 120px;
        font-size: 13px
    }

    .copyBlock button {
        font-size: 13px;
        width: 140px
    }

    .mainContentMobile .copyBlock #inputText {
        margin-left: 10px;
        position: relative
    }

    .menu-wrapper .login-button {
        display: none
    }

    .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
        width: 100% !important
    }

    .casinoBlock {
        padding: 30px 20px
    }
}

@media (max-width: 400px) {
    .casino__counter_items .item:last-child {
        display: none
    }

    .casino__counter_items .item {
        width: 48%
    }

    .casino__counter_number b {
        width: 42px
    }

    .casino__counter_number b::after {
        left: 25%
    }

    .casino__counter_number button {
        width: 100%
    }
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

p, span, li, b, i, tr, td {
    font-size: 15px;
    line-height: 1.5;
}

.wp-block-columns p {
    font-size: 15px;
    line-height: 1.5;
}

.columns.align-center .columns__container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -1rem;
}

.columns.col-2 .columns__item {
    width: calc(100% / 2 - 2rem);
}

.columns__item {
    margin: 1rem;
}

.columns__item img {
    display: block;
    margin: 0 auto;
    height: auto;
}

.promocode-new {
    background-color: #47475a;
    display: flex;
    margin: 10px 0;
    max-width: 480px;
}

.promocode-new_left {
    padding: 17px 19px;
    width: 50%;
    background-color: #000;
    border: 1px dashed #47475a;
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.promocode-new__input {
    background-color: transparent;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    border: none;
    outline: 0;
}

.promocode-new__right {
    padding: 7px 15px;
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.promocode-new__right._active .promocode-new__link-wrapper {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.promocode-new__right p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding-bottom: 0;
}

.promocode-new__copy-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    padding: 5px;
    border: none;
    background-color: transparent;
    outline: 0;
    cursor: pointer;
}

.promocode-new__link-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    cursor: pointer;
    border-radius: 4px;
}

.promocode-new__link {
    border: none;
    background-color: transparent;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    outline: 0;
}

.promocode-new__tooltip {
    display: none;
    position: absolute;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.promocode-new_left._active .promocode-new__tooltip {
    display: block;
}


.content-button a, .content-button button, .content-button span {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    padding: 13px 42px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    white-space: nowrap;
    border: 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    background-color: #dc1f00;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 800px) {

    .columns.col-2 .columns__item {
        width: calc(100% - 2rem);
    }

    columns__item .content-button {
        margin: 14px 0;
    }

    .promocode-new_left {
        padding: 10px;
        min-width: auto;
    }

    .content-button__stretch {
        width: 100%;
    }

    .promocode-new__right p {
        font-size: 14px;
        line-height: 17px;
    }

}

@media (max-width: 480px) {

    .promocode-new {
        display: block;
        width: 100%;
    }

    .promocode-new_left {
        width: 100%;
    }

    .promocode-new__right {
        padding: 17px 15px;
    }

}

@media (max-width: 850px) {
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #promo {
        margin-top: 140px;
    }
}

h1, h2, h3 {
    margin-top: 30px !important;
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}
