/*
Theme Name: Template NEW
Author: Template
Version: 3
Description: Required plugins: Yoast SEO, ACF
*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
:root {
    --text-color: #FFFFFF;
    --grey: #8F99BC;
    --bg-1: #17181c;
    --bg-2: #1b1d21;
    --h1-color: #FFFFFF;
    --advantages_color: #1AE316;
    --disadvantages_color: #F50305;
    --button-color: #3474ba;
    --accent: #3474ba;
    --accent-hover: #154c88;
    --button-color-hover: #154c88;
	--review: #8F99BC;
    --h1: 800 50px/110% 'Inter';
    --h2: 700 40px/120% 'Inter';
    --h3: 700 30px/120% 'Inter';
    --h4: 700 24px/116% 'Inter';
    --h5: 700 16px/110% 'Inter';
    --h6: 500 14px/120% 'Inter';
    --text1: 400 16px/130% 'Inter';
    --text2: 400 14px/120% 'Inter';
    --text3: 400 12px/100% 'Inter';
    --button1: 700 16px/110% 'Inter';
    --button2: 600 22px/110% 'Inter';
}
body {
    font-family: 'Inter', 'Arial';
    font: var(--text1);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-weight: 400;
    background-color: var(--bg-1);
}

.wp-block-list li {
    margin: 10px 0;
}

main {
    padding-top: 50px;
    padding-bottom: 80px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 10px;
}
.site-logo img {
    display: block;
    height: 50px;
    object-fit: contain;
}
.header {
    background-color: var(--bg-2);
}

.header .container {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    max-width: 1280px;
    margin: auto;
}
.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.header-menu {
    display: flex;
    gap: 44px;
    list-style-type: none;
    margin: 0;
}
.header-menu a {
    font: var(--h5);
    color: #ffffff;
    text-decoration: none;
}
.header-menu a:hover {
    color: var(--accent);
    text-decoration: none;
}
.menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.menu-button div {
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background-color: #ffffff;
}
.header-buttons {
    display: flex;
    gap: 25px;
}

.button {
    border-radius: 8px;
    height: 44px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font: var(--button1);
    position: relative;
    background-color: var(--button-color);
}

.button:hover {
    background-color: var(--button-color-hover);
}

.button1 {
    color: black;
    background-color: white;
}

h1 {
    margin-top: 0;
    margin-bottom: 24px;
    font: var(--h1);
    color: var(--h1-color)
}
h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font: var(--h2);
    display: inline-block;
}
h2::after {
    content: '';
    display: block;
    width: 158px;
    height: 5px;
    background-color: var(--accent);
    border-radius: 3px;
    margin-top: 8px;
}
h3 {
    margin-top: 36px;
    margin-bottom: 20px;
    font: var(--h3);
}
p {
    margin: 1em 0;
}
.footer {
    display: flex;
    clear: both;
    color: #ffffff;
    background-color: var(--bg-2);
}
.footer {
    background-color: var(--bg-1);
    color: #ffffff;
    min-height: 110px;
    display: flex;
    clear: both;
    flex-flow: column nowrap;
    padding: 50px 0;
    gap: 20px;
}
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
}
.disclaimer {
    text-align: center;
}

#footer-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

#footer-menu li a {
    color: white;
    text-decoration: none;
}

#footer-menu li a:hover {
    color: var(--accent);
    text-decoration: none;
}

.copyright::before {
    content: '18+';
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid var(--grey);
    line-height: 32px;
    text-align: center;
}
.toc {
    margin-bottom: 40px;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    border-radius: 0 0 20px 20px;
    background-color: var(--bg-2);
    padding: 35px;
    font-size: 20px;
}
.toc a {
    color: #ffffff;
    text-decoration: none;
}
.toc a:hover {
    color: var(--accent-hover);
}
.toc.toc-open {
    display: flex;
}

.toc-btn {
    margin: 40px 0;
    width: 100%;
    height: 69px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    border: 1px solid var(--accent);
    background-color: var(--bg-2);
    padding-left: 35px;
    padding-right: 35px;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    user-select: none;
    color: white;
}

.toc-btn:hover {
    background-color: var(--accent-hover);
}

.toc-btn::after {
    content: '';
    position: absolute;
    right: 35px;
    display: block;
    padding: 5px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    rotate: 135deg;
}
.toc-btn.toc-btn-open {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}
.toc-btn.toc-btn-open::after {
    rotate: -45deg;
}
.tocH3 {
    margin-left: 20px;
    font-size: 18px;
}
.block3 {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    clear: both;
}
.block3item, .block3 > div {
    border-radius: 20px;
    padding: 20px;
    min-height: 300px;
    background-color: var(--bg-2);
    color: #ffffff;
    box-shadow: 0 0 8px 0 var(--accent);
    border: 2px solid var(--accent);
}
.block3item__title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}
.block3item__table {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 14px;
    line-height: 34px;
}
.block3item__table-column1 {
    grid-template-columns: 1fr;
}
.block3item__table div:nth-of-type(even) {
    font-weight: 600;
    text-align: right;
}
.block3item__table-column1 div:nth-of-type(even) {
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
}
article img {
    border-radius: 13px;
}
.alignright {
    display: inline-block;
    float: right;
    margin: 10px 0 30px 20px;
}
.alignleft {
    display: inline-block;
    float: left;
    margin: 10px 20px 30px 0;
}
.aligncenter {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: auto;
}
ul {
    margin: 20px;
}

ol {
    margin-left: 20px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
    counter-reset: ol-counter;
    margin: 30px 0;
}
.steps li {
    position: relative;
    padding-left: 90px;
    padding-top: 6px;
    min-height: 70px;
}
.steps li::before {
    content: counter(ol-counter, decimal-leading-zero);
    counter-increment: ol-counter;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    font: var(--h3);
    background-color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: var(--bg-1);
}
.steps li::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--accent);
    top: 35px;
    left: 35px;
}

.steps li:last-child::after {
    content: none;
}

.steps-without li::after {
    display:none;
}

.steps li strong {
    font: var(--h4);
    margin-bottom: 6px;
}

article ul, article ol {
    list-style: none;
    margin: 1em 0;
}

article li {
    padding: 8px 16px 8px 30px;
    position: relative;
    font: var(--text1);
}

article ul li::before {
    content: '';
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    border: none;
    left: 0;
    top: calc(50% - 6px);
    border-radius: 50%;
    padding: 0;
    background-color: var(--accent);
}

.wp-block-table {
    margin: 20px auto;
    overflow-x: auto;
}
.wp-block-table .has-fixed-layout, .wp-block-table table {
    border-collapse: separate;
}
.wp-block-table table {
    border-collapse: separate;
    border-radius: 6px;
    border-spacing: 0;
    border: 1px solid var(--accent);
    overflow: hidden;
    margin: auto;
}
.wp-block-table th {
    border: none;
    background-color: var(--accent);
    padding: 20px 30px;
    color: black;
    font: var(--h5);
    font-weight: 800;
}

.wp-block-table td {
    border: none;
    padding: 20px 30px;
}
.wp-block-table tr:nth-of-type(odd) td {
    background-color: var(--bg-1);
}
.wp-block-table tr:nth-of-type(even) td {
    background-color: var(--bg-2);
}
.bottom-logo div {
    margin-bottom: 10px;
}
.wp-block-table, .wp-block-table.is-style-stripes {
    border: none;
}
.wp-block-table thead {
    border: none;
}
.wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th {
    word-break: unset;
}
blockquote {
    border-radius: 8px;
    background-color: var(--grey);
    color: #ffffff;
    padding: 20px 50px;
    font: var(--h4);
    display: inline-block;
}
.bonus {
    border-radius: 8px;
    margin: 30px auto;
    background-image: url(images/bonus-img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 960px;
    height: 396px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bonus-1 {
    background-image: url(images/bonus-1-img.webp);
}

.bonus > div {
    width: 100%;
    width: 590px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(5px) brightness(0.6);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    margin-left: 40px;
}


.bonus img {
    border-radius: 0;
}

.bonus__button {
    background-color: var(--button-color);
    font: var(--h4);
    height: 60px;
}


.bonus__text {
    font-size: 40px;
    font-weight: 400;
    /* font-style: italic; */
    line-height: 1.1;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
}

.bonus__caption {
    margin-bottom: -20px;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    /* font-style: italic; */
}
.bottom {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    height: 330px;
    background: url(images/bottom.webp), var(--bg-2);
    background-position: right top;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: #ffffff;
    padding: 0 30px 30px 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 0 8px 0 var(--accent);
    border: 2px solid var(--accent);
}
.bottom2 {
    height: 408px;
    background-image: url(images/bottom2.webp);
}
.bottom2 ul {
    gap: 8px !important;
}
.bottom div {
    width: 100%;
}
.bottom3 {
    background-image: url(images/list-image3.webp);
}
.bottom4 {
    background-image: url(images/image4.webp);
}
.bottom5 {
    background-image: url(images/image5.webp);
}
.bottom7 {
    background-image: url(images/image7.webp);
}
.bottom ul {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 15px 20px 20px;
    min-width: 50%;
    max-width: 50%;
}
.bottom ul li {
    font: var(--text1);
}
.bottom ul li strong {
    color: var(--accent);
}
.fairgame {
    flex-grow: 1;
}
.schema-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px auto;
}
.schema-faq-section {
    background-color: var(--bg-2);
    border-radius: 20px;
    padding: 20px;
}
.schema-faq-section h3 {
    font: var(--h4);
    margin-top: 0;
}
.schema-faq-section h3::after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
}
.schema-faq-section p:last-child {
    margin-bottom: 0;
}
.plus {
    margin: 20px 0 20px 0;
    line-height: 24px;
    font-size: 20px;
    font-weight: bold;
}
.plus::before {
    content: '+';
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--advantages_color);
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.minus {
    margin: 20px 0 20px 0;
    line-height: 24px;
    font-size: 20px;
    font-weight: bold;
}
.minus::before {
    content: '-';
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--disadvantages_color);
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.greyblock {
    background-color: var(--bg-2);
    border-radius: 10px;
    padding: 20px;
}
.greyblock p {
    margin: 0;
}
.greyblock hr {
    margin: 10px 0;
}
.greyblock table {
    border: none;
    width: 100% !important;
}
.greyblock .wp-block-table {
    margin: 0;
}
.greyblock td {
    background: transparent !important;
    padding: 5px 0;
    font: var(--text2);
}
.greyblock tr td:nth-of-type(n+2) {
    text-align: right;
}
.greyblock hr {
    border-color: var(--accent);
}
.greyblock p {
    font: var(--h5);
}
.greyblock td a {
    color: var(--accent);
}
.greyblock td a:hover {
    text-decoration: none;
}

.listimage__block {
    width: 100%;
    background-size: cover;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    height: auto;
    min-height: 420px;
    padding: 50px;
    display: flex;
    align-items: center;
}

.listimage__block div {
    width: 100%;
}

.listimage__block1 {
    background-image: url(images/list-image1.webp);
    background-position: bottom;
}

.listimage__block2 {
    background-image: url(images/list-image2.webp);
}

.listimage__block3 {
    background-image: url(images/list-image3.webp);
    min-height: 410px;
    background-position: bottom;
}

.listimage__block ul {
    width: 50%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px) brightness(0.6);
    padding: 30px 50px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    margin: 0!important;
}

.image__list {
    width: 70%;
    margin: 0 auto;
}

.image__list > div {
    display: flex;
    justify-content: center;
}

.image__list ul {
    width: 50%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px) brightness(0.6);
    padding: 70px 50px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    margin: 0 !important;
}

.wp-block-image img {
    width: 100%;
}

.casinolist {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    margin: 40px 0;
}

.casinoitem {
    border-radius: 6px;
    overflow: hidden;
}

.casinoitem__body {
    display: flex;
    justify-content: space-between;
    background: var(--bg-2);
    padding: 20px;
    gap: 50px;
}

.casinoitem__more {
    background: #212328;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    gap: 10px;
    display: flex;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    align-items: center;
}

.casinoitem__more::after {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--accent);
}

.casinoitem.active .casinoitem__more::after {
    transform: rotate(180deg);
}

.casinoitem__footer {
    padding: 12px 24px;
    background: #212328;
    flex-flow: column nowrap;
    gap: 20px;
    display: none;
}

.casinoitem.active .casinoitem__footer {
    display: flex;
}

.casinoitem__footer-bonus {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.casinoitem__footer-bonus > div {
    display: flex;
    padding: 10px;
    gap: 20px;
    background: #25272C;
    font-weight: bold;
    color: var(--accent);
    align-items: center;
    border-radius: 6px;
}

.casinoitem__footer-bonus  span {
    color: white;
}

.casinoitem__footer-payments, .casinoitem__footer-games {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
    gap: 20px;
    background: #25272C;
    padding: 18px 24px;
    padding-top: 10px;
    border-radius: 6px;
}

.payment-methods {
    display: flex;
}

.payment-method,
.game-type{
    width: 130px;
    height: 70px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 10px;
}

.payment-method-image {
    width: 60px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.applepay {
    background: url(images/pay/ApplePay.png);
}

.banktransfer {
    background: url(images/pay/BankTransfer.png);
}

.binancepay {
    background: url(images/pay/BinancePay.png);
}

.bitcoin {
    background: url(images/pay/Bitcoin.png);
}

.ethereum {
    background: url(images/pay/Ethereum.png);
}

.funid {
    background: url(images/pay/FunID.png);
}

.googlepay {
    background: url(images/pay/GooglePay.png);
}

.jeton {
    background: url(images/pay/Jeton.png);
}

.mastercard {
    background: url(images/pay/Mastercard.png);
}

.mifinity {
    background: url(images/pay/Mifinity.png);
}

.neteller {
    background: url(images/pay/Neteller.png);
}

.paysafecard {
    background: url(images/pay/Paysafecard.png);
}

.revolut {
    background: url(images/pay/Revolut.png);
}

.skrill {
    background: url(images/pay/Skrill.png);
}

.tether {
    background: url(images/pay/Tether.png);
}

.twint {
    background: url(images/pay/Twint.png);
}

.visa {
    background: url(images/pay/Visa.png);
}

.game-type-image {
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}

.slots {
    background: url(images/game/slots.png);
}

.roulette {
    background: url(images/game/roulette.png);
}

.baccarat {
    background: url(images/game/baccarat.png);
}

.poker {
    background: url(images/game/poker.png);
}

.gameshows {
    background: url(images/game/gameshows.png);
}

.crashgames {
    background: url(images/game/crash.png);
}

.jackpot {
    background: url(images/game/jackpot.png);
}

.sport {
    background: url(images/game/sport.png);
}


.casinoitem__footer-payments span,
.casinoitem__footer-games span{
    font-weight: bold;
    color: var(--accent);
}

.payment-methods-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.payment-methods-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.payment-methods, .games-type {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    -ms-overflow-style: none;
}

.payment-methods::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.payment-method {
    flex: 0 0 calc((100% - 7 * 15px) / 8);
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-weight: bold;
}

.payment-nav {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #555;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.payment-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: #888;
}

.payment-nav:disabled {
    cursor: not-allowed;
    pointer-events: none;
    display: none;
}

.gold-wrapper .casinoitem {
    border-bottom: 5px solid var(--second);
}

.casinolist-header {
    display: flex;
    background-color: var(--accent);
    gap: 50px;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    height: 50px;
    border-radius: 4px;
}

.casino_advantages {
    padding: 0 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 230px;
    justify-content: center;
}

.casino_bonus {
    display: flex;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--second);
    font-size: 18px;
    padding: 0 10px;
    width: 250px;
    text-align: center;
}

.casinolist-2 .casino_bonus {
    flex: 1;
    font-size: 25px;
}

.casino_content {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    gap: 10px;
}
.casino_brand {
    display: flex;
    align-items: center;
    gap: 30px;
}

.casino_content a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
}

.casino_content-name {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 700;
}

.casino_content-rating {
    color: white;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}
.casino_content-rating span {
    height: 25px;
    font-weight: 400;
    font-size: 12px;
    display: flex;
    align-items: flex-end;
}

.stars {
    background-image: url(images/star.svg);
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-position: center;
    background-repeat: no-repeat;
}

.casino_advantages ul {
    margin: 0;
}

.casino_advantages li {
    font-size: 12px;
}

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

.casino_link a::after {
    content: '';
    height: 20px;
    width: 20px;
    margin-left: 10px;
    background-image: url(images/arrow-right-i.svg);
}

.casino_number {
    display: flex;
    align-items: center;
    width: 50px;
}

.casino_number span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--text-color);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 3px solid white;
    box-shadow: 0 0 0 6px var(--second);
}

.casino_image {
    width: 140px;
    height: 90px;
    object-fit: contain;
/*     background: var(--accent); */
    border-radius: 4px;
}

.casinolist-header .casino_image {
    height: unset;
    background-color: unset;
}

.casinolist-header .casino_bonus {
    color: unset;
    background-color: unset;
    font-size: unset;
}

.casinolist-header .casino_advantages {
    background-color: unset;
}

.footer-casino {
    width: 100%;
    margin: 0 auto;
    background-image: url(images/casino_footer_bg.webp);
    border-bottom: 3px solid var(--accent);
}

.offerwallfooter-list {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    width: 1300px;
    margin: 0 auto;
}


.offerwallfooter__item-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid var(--second);
}

.offerwallfooter-item {
    height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offerwallfooter__item-brand {
    display: flex;
    gap: 15px;
    align-items: center;
}

.offerwallfooter__item-content {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.offerwallfooter__item-name {
    color: var(--second);
    font-size: 15px;
    font-weight: 300;
}

.offerwallfooter__item-bonus {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    padding-top: 14px;
    padding-right: 30px;
    padding-bottom: 14px;
    padding-left: 30px;
    background: #FFFFFF1A;
}
.offerwallfooter__item-rate {
    display: flex;
    background-color: white;
    color: var(--accent);
    align-items: center;
    padding: 2px;
    padding-right: 6px;
    padding-left: 4px;
    border-radius: 4px;
    font-weight: bold;
}

.author__block {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author__block-image {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.author__block p {
    margin: 0;
}

.articleauthor {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 2px;
    margin: 60px 0 30px 0;
    padding: 30px;
}

.articleauthor__info {
    display: flex;
    gap: 40px;
}

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

.articleauthor__photo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background-image: url(img/no-image.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.articleauthor__content {
    border-radius: 2px;
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}

.articleauthor__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.articleauthor__description {
    border: 1px solid var(--accent);
    border-radius: 2px;
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-flow: column nowrap;
}

.articleauthor__meta {
    display: flex;
    gap: 30px;
}

.articleauthor__updated, .articleauthor__published {
    position: relative;
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (min-width: 782px) {
    .wp-block-columns {
        margin: 30px 0;
    }
}
@media (max-width: 1600px) {
    .container {
        max-width: 100%;
        padding: 15px;
    }
}
@media (max-width: 1200px) {

    .image__list {
        width: 100%;
    }

    main {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .header .container {
        position: relative;
        height: 82px;
        max-width: 100%;
        gap: 20px;
    }
    .header-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        flex-grow: 0;
        gap: 20px;
        min-width: 300px;
        max-width: 450px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 82px;
        padding: 20px;
        background-color: var(--bg-1);
        border-radius: 0 0 8px 8px;
        z-index: 10;
    }
    .header-nav.open {
        display: flex;
    }
    .header-menu {
        flex-direction: column;
        gap: 20px;
    }
    .menu-button {
        display: flex;
        position: relative;
        order: 2;
        margin-top: 4px;
    }
    .menu-button.open {
        rotate: 45deg;
        margin-top: 12px;
    }
    .menu-button.open div:nth-of-type(1) {
        position: absolute;
        top: 0;
        background-color: var(--accent);
    }
    .menu-button.open div:nth-of-type(2) {
        rotate: 90deg;
        background-color: var(--accent);
    }
    .menu-button.open div:nth-of-type(3) {
        display: none;
    }
    .header-buttons {
        display: flex;
        flex-grow: 1;
        justify-content: flex-end;
    }
    .block3 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .block3item {
        width: 360px;
    }
    .alignright, .alignleft {
        float: unset;
        margin: 10px 0 !important;
        max-width: 100%;
        height: auto;
    }
    h3 {
        margin-top: 20px;
    }
    .bottom {
        height: auto;
        background-position: center bottom;
        padding-bottom: 330px;
        padding-top: 0;
    }
    .bottom2 {
        height: auto;
        background-position: center bottom;
        padding-bottom: 408px;
    }
    .bottom3 {
        height: auto;
        background-position: center bottom;
        padding-bottom: 408px;
    }
    .bottom4 {
        height: auto;
        background-position: center bottom;
        padding-bottom: 300px;
    }
    .bottom ul {
        width: unset;
        min-width: unset;
        max-width: unset;
    }
    .bonus > div {
        padding: 20px 10px;
        margin: 0 auto;
    }
}
@media (max-width: 900px) {
    .casinoitem__body {
        gap: 20px;
        flex-flow: column nowrap;
    }
    .casinoitem__footer-bonus {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .casinoitem__footer-bonus >div {
        width: calc(50% - 5px);
    }
    .casinoitem__footer-bonus >div:first-child {
        width: 100%;
    }
    
    .casinoitem__footer-bonus > div {
        flex-flow: column nowrap;
        align-items: flex-start;
        gap: 10px;
    }
    .payment-methods, .games-type {
        display: flex;
        flex-flow: row wrap;
        gap: 10px;
        justify-content: space-around;
    }
    .payment-nav {
        display: none;
    }
    .casinoitem__footer-payments, .casinoitem__footer-games {
        padding: 5px;
        padding-top: 10px;
    }
    .payment-method-image {
        width: 45px;
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .payment-method, .game-type {
        width: 90px;

    }
    .casinolist-header {
        gap: 0px;
    }
}
@media (max-width: 782px) {
    :where(.wp-block-columns.is-layout-flex) {
        gap: 0;
    }
    .block3item, .block3 > div {
        min-height: 200px;
    }
}
@media (max-width: 600px) {
	
	.articleauthor__info {
        display: flex;
        gap: 10px;
        flex-flow: column nowrap;
        align-items: center;
    }
    
    .articleauthor__meta {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    .articleauthor__updated, .articleauthor__published {

        flex-flow: column nowrap;
    }
	
	table img {
		width: 150px;
		object-fit: contain;
	}
	
    .order-2 {
        order: 1;
    }

    .order-1 {
        order: 2;
    }

    body {
        font: var(--text2);
    }

    .wp-block-list li {
        margin: 5px 0;
    }

    .header .container {
        align-items: flex-start;
        height: auto;
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 12px;
    }
    .site-logo {
        order: 1;
    }

    .header-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .header-buttons .button {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font: var(--h3);
        margin-bottom: 12px;
    }
    h2 {
        font: var(--h4);
        margin-bottom: 4px;
    }
    h2::after {
        margin-top: 4px;
    }
    h3 {
        font: var(--h5);
    }
    .block3item {
        width: 100%;
    }
    .footer .container {
        flex-flow: column nowrap;
    }

    .footer {
        padding: 10px 0;
        gap: 10px;
    }

    .footer .site-logo img {
        height: 100%;
        width: 200px;
    }

    #footer-menu {
        flex-flow: row wrap;
        justify-content: center;
    }



    .copyright {
        gap: 6px;
    }
    .copyright span {
        font-size: 16px;
    }
    .bottom-logo div {
        font-size: 11px;
        line-height: 1;
        margin-bottom: 5px;
    }
    .bottom-logo img {
        width: 79px;
        height: 32px;
    }
    .fairgame {
        order: 2;
        flex-grow: 0;
        align-self: center;
    }
    .copyright {
        font-size: 13px;
        line-height: 1.4;
        order: 3;
        margin-left: 10px;
    }
    blockquote {
        padding: 12px;
        font: var(--h5);
    }
    .steps {
        gap: 16px;
        margin: 20px 0;
    }
    .steps li {
        padding-left: 74px;
        min-height: 58px;
    }
    .steps li::before {
        width: 58px;
        height: 58px;
        font: var(--h4);
    }
    .steps li::after {
        top: 29px;
        left: 29px;
    }
    .steps li strong {
        font: var(--h5);
        margin-bottom: 6px;
    }
    .block3 {
        margin: 20px 0;
    }
    .bonus {
        margin: 20px auto;
        background-image: url(images/bonus-mob.webp);
        width: 100%;
        height: max-content;
        padding: 40px 20px;
        background-position: right;
        border-radius: 20px;
    }
    .bonus-1 {
        margin: 20px auto;
        background-image: url(images/bonus-1-mob.webp);
    }

    .bonus > div {
        width: 100%;
        padding: 20px 10px;
    }
    .bonus__text {
        text-align: center;
        font-size: 20px;
        line-height: 1.2;
    }
    .bonus__caption {
        font-size: 34px;
        line-height: 1;
    }
    .bonus__button {
        margin: auto;
        font: var(--h5);
        height: 50px;
    }
    .bottom {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        background: url(images/bottom-mob.webp);
        background-repeat: no-repeat;
        background-position: center bottom;
        padding: 0 10px 165px 10px;
        background-size: 100% auto;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }
    .bottom2 {
        background: url(images/bottom2-mob.webp);
        background-repeat: no-repeat;
        background-position: center bottom;
        padding: 0 10px 235px 10px;
        background-size: 100% auto;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }
    .bottom3 {
        background: url(images/bottom3-mob.webp);
        background-repeat: no-repeat;
        background-position: center bottom;
        padding: 0 10px 235px 10px;
        background-size: 100% auto;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }
    .bottom4 {
        background: url(images/bottom4-mob.webp);
        background-repeat: no-repeat;
        background-position: center bottom;
        padding: 0 10px 155px 10px;
        background-size: 100% auto;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }
    .bottom ul {
        gap: 10px;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .schema-faq {
        margin: 20px auto;
    }
    .schema-faq-section h3 {
        font: var(--h5);
    }
    .greyblock .wp-block-table table {
        width: 100%!important;
    }


    .listimage__block1 {
        background-image: url(images/list-image1-mob.webp);
        min-height: 480px;
    }

    .listimage__block2 {
        background-image: url(images/list-image2-mob.webp);
        min-height: 650px;
    }

    .listimage__block3 {
        background-image: url(images/list-image3-mob.webp);
        min-height: 390px;
    }

    .listimage__block {
        width: 100%;
        padding: 50px 10px;
        align-items: flex-start;
    }

    .listimage__block ul {
        width: 100%;
        padding: 10px 30px;
    }

    .wp-block-table th {
        font: var(--h5);
        padding: 10px;
    }
    .wp-block-table td {
        font: var(--text2);
        padding: 10px;
    }

    .scroll-table table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .greyblock {
        padding: 10px;
        margin-bottom: 10px;
    }
    .greyblock td {
        padding: 5px 0;
    }
    .casino_image.offerwall__item-image {
        width: 60px;
        height: 60px;
    }
    
    .casinolist .casino_link .button {
		width: 100%;
		font-size: 18px;
		display: flex;
		justify-content: center;
	}
    
    .casinolist .casino_link .button::after{
        display: none;
    }
    .casino_advantages {
        display: none;
    }
    .casino_bonus, .casinolist-2 .casino_bonus {
        font-size: 24px;
        line-height: 1.2;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .casino_content {
        width: 100%;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }
	.casino_brand {
        display: flex;
        justify-content: space-between;
        flex-flow: row wrap;
    }
    .casino_image {
		width: 200px;
		/* height: 64px; */
		object-fit: contain;
	}
    .casino_number span {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    .casino_content-rating {
        color: var(--accent);
    }
    .casino_content-rating span {
        height: 20px;
        color: white;
    }
    .toc.toc-open {
        column-count: 1;
    }
    
    .offerwallalt-list {
        flex-flow: column;
        align-items: center;
        gap: 20px;
    }
    
    .top_b-offerwall .button {
        width: 80px;
        font-size: 14px;
    }
    
    .btn-second {
        font-size: 14px;
    }
    
    .footer-casino {
        width: 100%;
    }
    
    .offerwallfooter-list {
        width: 100%;
        padding: 20px;
    }
    
    .casino_link a::after {
       display: none;
    }
    .offerwallfooter__item-brand {
        display: none;
    }
    .offerwallfooter__item-bonus {
        font-weight: 700;
        font-size: 14px;
    }
    .offerwallfooter-item {
        gap: 20px;
    }
    
}