﻿:root {
    --color-primary: #a52116;
    --font-body: "Roboto", sans-serif;
    --font-title: "Raleway", sans-serif;
}

@font-face {
    font-family: "Roboto";
    src: url('/wp-content/themes/gambling-park/asset/fonts/roboto/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url('/wp-content/themes/gambling-park/asset/fonts/raleway/Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url('/wp-content/themes/gambling-park/asset/fonts/raleway/Raleway-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('/wp-content/themes/gambling-park/asset/fonts/roboto/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('/wp-content/themes/gambling-park/asset/fonts/roboto/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('/wp-content/themes/gambling-park/asset/fonts/roboto/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url('/wp-content/themes/gambling-park/asset/fonts/raleway/Raleway-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-title);
}

body {
    margin: 0;
    padding: 0;
    padding-top: 165px;
    z-index: -99;
    position: sticky;
    color: var(--color-text);
    font-family: var(--font-body);
    background-color: var(--color-bg);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    transition: transform .3s ease;
    z-index: 1000;
}

header.hidden {
    transform: translateY(-100%);
}

.bg {
    background-color: var(--color-bg);
}

.flex-switch {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.switcher {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-switcher);
    border-radius: 20px;
}

.switcher__icon {
    cursor: pointer;
    font-size: 16px;
    margin: 7px;
}

.switcher__slider {
    width: 50px;
    height: 15px;
    border-radius: 10px;
    position: absolute;
    left: 3px;
    transition: background 0.3s;
    cursor: pointer;
}

.switcher__slider__thumb {
    width: 24px;
    height: 24px;
    background: #0E2038;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: -5px;
    transition: transform 0.3s;
}

.switcher__icon--light + .switcher__slider {
    background: #d4003000;
}

.switcher__icon--dark + .switcher__slider {
    background: #d4003000;
}

.switcher__slider__thumb {
    transform: translateX(0);
}

.switcher__slider--light .switcher__slider__thumb {
    transform: translateX(0);
}

.switcher__slider--dark .switcher__slider__thumb {
    transform: translateX(27px);

}

.switcher .fas {
    color: #fff;
}

.switcher .fas.fa-moon {
    color: #0E2038;
}

button {
    border: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.conteiner {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.flex-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

.flex-center {
    align-items: center;
}

.logo {
    display: block;
    width: 260px;
    height: 29px;
    background-image: var(--logo-img);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 3px;
}

.footer-logo {
    width: 270px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 35px;
}

*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.search {
    float: right;
    padding: 30px;
}

input {
    border: none;
    padding: 10px;
    border-radius: 20px;
}

nav {
    display: block;
}

nav {
    position: static;
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-right: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #070707;
    line-height: 22px;
    transition: .3s;
}

nav li a {
    transition: .3s;
}

nav li a:hover {
    color: #a52116
}

#menu-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    margin-right: 30px;
    display: none;
}

#menu-icon span {
    border: 1px solid var(--color-text);
    width: 20px;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all .2s;
    transition: all .1s;
}

@media only screen and (max-width:1170px) {
    nav > ul > li > a {
        padding: 35px 15px;
    }
}

@media only screen and (max-width:990px) {
    nav {
        display: none;
        width: 100%;
        max-height: 400px;
        overflow-y: scroll;
    }

    #menu-icon {
        display: inline;
        top: 35px;
        right: -10px;
        cursor: pointer;
    }

    nav {
        padding: 10px;
    }
}

.btn {
    border-radius: 5px;
    background-color: #a52116 padding: 11px 45px;
    color: #fff !important;
    transition: all .3s;
}

.gap40 {
    gap: 40px;
}

.s-bon-plasch-title {
	color: #a52116;
}

.fa-magnifying-glass {
    font-weight: 100;
    color: var(--drop-col);
    padding: 16px;
}

.fas .fa-search {
    color: #000;
}

.fan {
    font-weight: 100;
    width: 40px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
}

.active-drop {
    display: block;
}

.gap60 {
    gap: 60px;
}

.jost {
    font-family: Jost, sans-serif;
    line-height: 1.3;
}

.gap20 {
    gap: 20px;
}

.date {
    font-size: 14px;
    align-items: center;
    margin: 5px 0;
    color: #65676d;
    font-weight: 400;
}

.date i {
    padding: 7px;
    font-size: 12px;
    color: #a52116
}

.autor-news {
    padding-right: 1px;
    margin-right: 3px;
    align-items: center;
}

.autor-news::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #fff;
}

.autor-avatar20 {
    width: 20px !important;
    height: 20px !important;
    object-fit: cover;
    border-radius: 50%;
}

.autor-none-date {
    padding-top: 15px;
    border-right: none;
}

.display-none {
    display: none;
}

.h-center {
    border-bottom: none;
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.autor-livehuck p {
    font-size: 14px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.autor-livehuck .autor-news::after {
    background-color: #a3a3a3;
}

.autor-livehuck div {
    margin: 0;
}

.autor-livehuck i {
    margin-left: 3px;
}

.gap10 {
    gap: 10px;
}

footer {
    position: sticky;
    bottom: 0;
    z-index: -98;
    background-color: #04060a;
    padding: 70px 0 40px;
    color: #fff;
}

footer .jost {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 30px;
}

.footer__links a {
    color: #cdcdcd !important;
    transition: all .5s;
}

.footer__links a:hover {
    color: #a52116 !important;
    transition: all .5s;
}

.footer__links-befor::after {
    content: "|";
    color: #fff !important;
    top: 0;
    right: 0;
    padding: 0 8px 0 10px;
}

.footer-flex {
    justify-content: space-between;
}

.footer-news {
    color: #fff;
    margin: 0;
    width: 100%;
    max-width: 550px;
}

.footer-news .news-content a {
    color: #fff;
}

.nav-footer .footer-nav {
    margin: 0;
    width: 270px;
}

.footer-nav {
    flex-direction: column;
    width: 100%;
    max-width: 150px;
}

.nav-footer a {
    color: #929292;
    padding: 5px 15px;
    font-size: 18px;
}

.footer-nav li {
    position: relative;
    height: 40px;
    display: block;
    list-style: none;
}

.footer-nav li span {
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 27px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.footer-nav > ul {
    position: relative;
    padding-bottom: 60px;
}

.footer-nav .dropdown {
    position: relative;
}

.footer-nav li a:hover {
    color: #a52116
}

.footer-nav li ul {
    display: none;
}

.footer-nav li:hover ul {
    display: inline;
}

.footer-form {
    width: 100%;
    max-width: 500px;
    padding-bottom: 15px;
}

.footer-form input,
.footer-form textarea {
    border-radius: 5px;
    width: 100%;
    margin: 2px 0;
    padding: 7px 15px;
    font-size: 17px;
    font-family: var(--font-title);
}

.footer-form label {
    color: #929292;
    font-family: var(--font-title);
    font-size: 20px;
}

.footer-form textarea {
    height: 100px;
    margin-bottom: 30px;
}

.footer-form .btn {
    display: block;
    text-align: center;
    transition: all .5s;
    width: 100%;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
}

.footer-form .btn:hover {
    background-color: #ededeb;
    color: #000 !important;
}

.footer-logo-content {
    width: 100%;
    max-width: 300px;
}

.footer-logo-content .flex {
    flex-wrap: wrap;
}

.footer-logo-content p {
    margin: 20px 0 35px;
    line-height: 1.5;
}

.lost-footer {
    border-top: 1px solid #bdc3c752;
    margin-top: 30px;
    padding: 50px 0 0;
    align-items: center;
}

.lost-footer .fa-x-twitter,
.lost-footer .fa-youtube {
    padding: 15px;
}

.gap30 {
    gap: 30px;
}

.single-page {
    justify-content: space-between;
    margin: 30px auto;
}

.single-page .fa-calendar-days,
.single-page .fa-comments {
    color: #989090;
}

.single-page .autor-livehuck p {
    font-size: 15px;
}

.flex-center {
    align-items: center;
}

.flex-center p {
    font-size: 23px;
}

.black-gray {
    background-color: var(--black-gray);
}

.befor-img {
    position: relative;
}

.befor-img::before {
    position: absolute;
    right: 3px;
    top: 17px;
    width: 30px;
    height: 30px;
    content: "";
    background-color: #f4e2e4;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    z-index: 1;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

@media screen and (max-width:1050px) {
    .befor-img::before {
        left: 13px;
        top: 17px;
    }
}

@media screen and (max-width:1410px) {
    header {
        width: 100%;
        max-width: 1410px;
        margin: 0 auto;
    }
}

@media screen and (max-width:1310px) {
    nav > ul > li > a {
        padding: 35px 15px;
    }
}

@media screen and (max-width:1230px) {
    header {
        max-width: 1230px;
    }
}

@media screen and (max-width:1150px) {
    header {
        max-width: 1150px;
    }

    footer {
        position: static;
    }

    .footer-flex {
        flex-wrap: wrap;
    }

    .footer-form,
    .footer-logo-content,
    .footer-news,
    .nav-footer {
        max-width: 506px;
    }
}

.single-bonus-page {
    padding-top: 0;
}

.single-bonus-head {
    background-color: #0e2038;
    padding: 20px 0;
}

.single-bonus-nav ul {
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 40px;
    margin-bottom: 30px;
}

.single-bonus-nav ul .fa-magnifying-glass {
    padding: 0;
    width: 100%;
    color: #7a7a7a;
    font-size: 16px;
    transition: all .5s;
}

.single-bonus-nav ul .fa-magnifying-glass:hover {
    color: #a52116
}

.single-bonus-nav .close {
    font-size: 34px;
    color: #fff;
}

.single-bonus-nav .close:hover {
    color: #fff;
}

.single-bonus-nav li a {
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 500;
    transition: all .5s;
}

.single-bonus-nav li a:hover {
    color: #a52116
}

.single-bonus .footer-nav ul {
    display: flex;
}

.single-bonus .footer-nav {
    width: 100%;
    max-width: 500px;
}

.bonus-logo-btn {
    text-align: center;
}

.bonus-logo-btn button {
    width: 240px;
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
}

.s-bon-cont p {
    margin-bottom: 30px;
    color: var(--single-p);
    line-height: 1.5;
    font-size: 18px;
}

.s-bon-cont h2 {
    color: #a52116 font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.bonus-logo-btn p,
.click-p {
    color: #7a7a7a;
    font-size: 13px;
    padding-top: 10px;
}

.s-bon-cont .click-p {
    font-size: 14px;
    margin: 5px 0 30px;
}

.single-bonus-head .flex {
    gap: 0;
    justify-content: space-between;
    padding-bottom: 10px;
    align-items: center;
}

.single-bonus-head .flex:last-child {
    align-items: start;
}

.single-bonus-head .flex div {
    width: 65vh;
}

.single-bonus-head .flex .bonus-logo-btn {
    width: 280px;
}

.single-bonus-head .flex h1 {
    font-size: 39px;
    color: #fff;
	font-weight: 400;
}

.price {
    display: flex;
    font-size: 19px;
    font-weight: 700;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    margin: 20px 0 15px;
}

.af-doted {
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #fff;
}

.dots {
    flex-grow: 1;
    border-bottom: 2px dotted #54595f;
    margin: 0 10px;
}

.price p:last-child {
    color: #a52116
}

.s-bon-cont,
.single-bonus .conteiner,
.single-bonus-head .conteiner {
    max-width: 1200px;
}

.s-bon-cont .flex {
    gap: 30px;
    margin-bottom: 30px;
}

.s-bon-cont ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.s-bon-cont li {
    position: relative;
    padding-left: 30px;
    color: var(--single-p);
    line-height: 1.5;
    font-size: 18px;
}

.single-page h2 {
    margin-bottom: 20px;
}

.single-page li {
    padding-left: 10px;
    color: var(--single-p);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.s-bon-cont li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;utf8,SVG_REPLACED);
}

.single-page-content table {
    background-color: #a52116 color: #fff;
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
}

.single-page-content .wp-block-table {
    margin-bottom: 30px;
}

.single-page-content td {
    border: var(--color-border-td) 1px solid;
    border-collapse: collapse;
    text-align: center;
    padding: 20px 10px;
    font-size: 18px;
}

.single-page-content tr:first-child td {
    border-top: none;
}

.single-page-content td:last-child {
    border-right: none;
}

.single-page-content td:first-child {
    border-left: none;
}

.single-page-content tr:last-child td {
    border-bottom: none;
}

.s-bon-cont-table table {
    background-color: #0e2038;
    color: #fff;
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
}

.s-bon-cont-table {
    margin-bottom: 30px;
}

.s-bon-cont .date .flex {
    margin-bottom: 0;
}

.s-bon-cont-table td {
    border: #fff 1px solid;
    border-collapse: collapse;
    text-align: center;
    padding: 20px 10px;
    font-size: 18px;
}

.win_table tr:first-child td {
    border-top: none;
}

.win_table td:last-child {
    border-right: none;
}

.win_table td:first-child {
    border-left: none;
}

.win_table tr:last-child td {
    border-bottom: none;
}

.s-bon-cont .flex img {
    border-radius: 8px;
}

blockquote {
    background-color: #a52116 border-radius: 8px;
    padding: 10px 30px;
    margin: 30px 0;
}

.single-page blockquote {
    background-color: var(--bg-blockqont);
    border-radius: 0;
    padding: 10px 50px 20px;
    margin: 30px 0;
    border-left: solid 3px #a52116
}

.s-bon-cont blockquote p {
    color: #fff;
    margin-bottom: 0;
    padding: 20px;
}

.s-bon-cont blockquote {
    margin: 0 0 30px;
}

.s-bon-cont .blockquote2 p {
    color: var(--color-text);
}


.single-page ul,
.wp-block-list {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 20px;
}

.wp-block-list li {
    list-style: disc;
    line-height: 1.8;
    margin-bottom: 15px;
}

pre {
    display: block;
    background: #f5f5f5;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 16px;
    line-height: 1.7142857143;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 30px;
    color: var(--color-black);
    white-space: pre-wrap;
    margin: 20px 0;
}

.blockquote2 {
    background-color: var(--bg-blockqont);
    border-radius: 0;
    padding: 20px 50px;
    margin: 30px 0;
    border-left: solid 3px #a52116
}

.fuul-img-bon {
    margin: 0 0 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 1370px;
}

.single-bonus-page iframe {
    width: 100%;
    height: 661px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.s-bon-plasch {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.s-bon-plasch div {
    width: 100%;
    max-width: 370px;
    text-align: center;
    border: 3px solid #7a7a7a;
    border-radius: 8px;
    padding: 0 30px;
}

.s-bon-plasch div p:first-child {
    font-weight: 600;
    margin-top: 30px;
}

.s-bon-plasch .fa-check {
    color: #fff;
    background-color: #a52116 padding: 1px 2px;
    border-radius: 50%;
    margin-right: 5px;
}

.faq {
    width: 100%;
    padding: 0 0 15px;
}

.faq-item {
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--faq-bg);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    padding: 20px 30px;
    color: var(--color-text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    background-color: var(--faq-bg);
    transition: max-height .5s ease-out, padding .5s ease-out;
    color: var(--single-p);
    font-size: 18px;
}

.s-bon-cont .date {
    gap: 0;
    margin: 0;
    padding-bottom: 30px;
}

.s-bon-cont .gap10 {
    gap: 10px;
}

.s-bon-cont .date p {
    margin: 0;
    font-size: 16px;
}

.s-bon-cont .date img {
    border-radius: 50%;
}

.s-bon-cont .contact-form input,
.s-bon-cont .contact-form textarea {
    background-color: #f8f8fb;
}

.single-bonus-head .flex .pod-cnopkami {
	font-size: 11px; 
	color: #7a7a7a; 
	width: 280px;
	
}

@media screen and (max-width:1390px) {
    .s-bon-plasch div {
        width: 30%;
        max-width: 435px;
        text-align: center;
        border: 3px solid #7a7a7a;
        border-radius: 8px;
        padding: 0 30px;
    }
}

@media screen and (max-width:1100px) {
    .single-bonus-head .flex {
        gap: 50px;
    }

    .single-bonus-head .flex div {
        width: 100%;
    }
}

@media screen and (max-width:890px) {
    .s-bon-plasch div {
        width: 45%;
    }

    .wrap-flex {
        flex-direction: column;
    }

    .s-bon-cont .flex img {
        width: 100%;
        max-width: 100%;
    }

    .s-bon-cont .comments-avatar img {
        width: 60px;
        max-width: 60px;
        height: 60px;
        max-height: 60px;
    }
}

@media screen and (max-width:750px) {
    .single-bonus-head .flex {
        gap: 10px;
        flex-direction: column;
    }
	
	.single-bonus-head .flex .bonus-logo-btn {
		width: 280px;
	}
	
	.single-bonus-head .flex .pod-cnopkami {
		text-align: center; 
		width: 280px;
	}
	
	.single-bonus-head .flex:last-child {
		align-items: center;
	}
}

@media screen and (max-width:520px) {
    .s-bon-plasch div {
        width: 100%;
    }

    .single-bonus-page iframe {
        height: 265px;
    }

    .single-bonus-head .flex .bonus-logo-btn {
        margin-bottom: 10px;
    }

    .single-bonus-head .flex {
        text-align: center;
    }

    .s-bon-cont .date p {
        font-size: 12px;
    }

    .s-bon-cont .contact-form .flex {
        gap: 0;
    }

    .single-bonus {
        text-align: center;
    }

    .single-bonus .footer-logo {
        margin-right: 0;
    }

    .single-bonus .footer-nav ul {
        justify-content: center;
    }

    .single-bonus .lost-footer div {
        margin-bottom: 30px;
    }

    .single-bonus .lost-footer div:last-child {
        margin-bottom: 0;
    }

    .single-bonus .lost-footer .flex {
        gap: 20px;
    }
}

@media screen and (max-width:750px) {
    .s-bon-cont-table td {
        font-size: 14px;
    }
}

.img-size-news-l {
    width: 125px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.h-black {
    color: var(--color-text);
}

.news-too-lost .news-teg {
    display: inline-block;
    font-size: 11px;
    text-transform: none;
    background-color: #1157a2;
    color: #fff;
    padding: 5px 13px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: 500;
}

.teg-hov:hover {
    background-color: #cdcdcf;
    color: #000 !important;
}

.w600 {
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.modal.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    position: relative;
    margin: 22% auto;
    padding: 15px 25px;
    background: #fff;
    width: 80%;
    max-width: 600px;
    border-radius: 3px;
    transform: translateY(-30px);
    transition: transform .5s;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    position: absolute;
    top: -140px;
    left: 43%;
    width: 57px;
    height: 57px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #a52116 display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
}

.close:hover {
    color: #000 !important;
    background-color: #CDCDCF;
}

.modal-body .fa-magnifying-glass {
    padding: 0;
    color: #000;
}

.modal-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:990px) {

    body {
        margin: 0;
        padding: 0;
        padding-top: 120px;
    }

    nav a {
        padding: 10px 0;
    }

    nav li {
        margin-right: 0;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-text);
        padding: 13px 0;
        display: block;
        border-bottom: 1px solid var(--color-border-nav);
    }

    .footer-icon {
        margin: 30px 0;
    }

    header .conteiner {
        margin-top: 0;
    }

    .logo {
        margin-right: 5px;
    }

    .flex-head {
        margin-top: 20px;
        height: 62px;
    }

    .gap60 {
        gap: 0;
    }


    .nav-footer {
        width: 100%;
        max-width: 990px;
    }

    .nav-footer .footer-nav {
        width: 100%;
        max-width: 990px;
    }

    .gap40 {
        gap: 0;
    }

    .no-scroll {
        overflow: hidden;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 330px;
        height: 100vh;
        max-height: 1000px;
        background-color: var(--black-gray);
        z-index: 1020;
        padding: 20px;
        transition: left .3s ease;
    }
}

#close-icon {
    position: absolute;
    top: 0;
    right: -1px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    color: #fff;
    background-color: #000;
    padding: 4px 13px 6px;
}


@media screen and (max-width:560px) {

    .switch {
        bottom: 55vh;
    }

    .conteiner {
        padding: 0 10px;
    }

    .footer-logo-content {
        margin-bottom: 30px;
    }

    .footer-nav > ul {
        padding-bottom: 10px;
    }

    .footer-logo,
    .logo {
        width: 287px;
        height: 33px;
    }

    .modal-dialog {
        margin: 62% auto;
        padding: 20px;
    }

    footer {
        padding: 30px 0 40px;
    }

    .lost-footer {
        justify-content: center;
    }
}

@media screen and (max-width:375px) {
    .logo {
        width: 200px;
    }
}

.serch-text {
    color: #000;
}

.wrap-content-page {
    padding-bottom: 30px;
}

.wrap-content-page h3,
.wrap-content-page p {
    margin-bottom: 30px;
}

.wrap-content-page h1 {
    margin-bottom: 30px;
    line-height: 1.3;
}

.wrap-content-page ul li {
    margin-left: 17px;
}

.search-form .search-field {
    outline: 0;
    border: none;
    background: 0 0;
    padding: 10px;
    font-size: 16px;
    color: #000;
    visibility: visible;
}

.search-form .search-field::-moz-search-cancel-button,
.search-form .search-field::-ms-clear,
.search-form .search-field::-webkit-search-cancel-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
    width: 0;
    height: 0;
}

.search-form .search-field:focus {
    outline: 0;
    box-shadow: none;
}

.search-form .search-submit {
    display: none;
}

input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type=search]::-moz-search-cancel-button {
    -moz-appearance: none;
    appearance: none;
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search] {
    width: 100%;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none;
}

.search-form .search-field::placeholder {
    color: #757575;
    opacity: 1;
}

.search {
    float: none;
    padding: 0;
    padding-top: 165px;
}

@media screen and (max-width:990px) {
    .search {
        padding: 0;
        padding-top: 120px;
    }
}

.comments-form input,
.comments-form textarea {
    height: 60px;
    margin-bottom: 20px;
    padding: 0 30px;
    width: 100%;
    font-size: 15px;
    color: #000;
    border-radius: 8px;
    border: 1px solid var(--color-border-2);
    background-color: #f8f8fb;
}

.comments-form textarea {
    padding: 20px 30px;
    margin-bottom: 15px;
    height: 150px;
    font-family: Roboto, sans-serif
}

.comments-form input:focus,
.comments-form textarea:focus {
    border: 1px solid #a52116 !important;
    outline: 0 !important;
}

.field-item {
    margin-bottom: 10px;
}

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

.col-md-6 {
    flex: 1;
}

.comment-form .form-submit {
    margin-top: 10px;
}

.form-revers {
    display: flex;
    flex-direction: column-reverse;
}

.comment-reply-title {
    margin: 40px 0 20px;
}

.comment-form {
    padding-bottom: 30px;
}

.comment-form .btn {
    font-size: 16px;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    cursor: pointer;
}

.comment-form .form-submit {
    margin-top: 0;
    margin-bottom: 50px;
}

.comment-reply-title {
    font-size: 26px;
    font-family: Jost;
}

#comments {
    margin: 0 0 30px 0;
}

.comment-list {
    margin: 30px 0 60px 0;
    padding-left: 0;
}

.comment-list li {
    list-style-type: none;
}

.comments-avatar img {
    border-radius: 50%;
}

.s-bon-cont .comments-avatar img {
    border-radius: 50%;
}

.comments-text {
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-2);
    margin-bottom: 20px;
    color: var(--single-p);
    width: 100%;
    max-width: 1113px;
}

.comment-list .depth-1:last-child > .comments-text {
    border-bottom: none;
}

.comments-text p {
    margin-bottom: 10px;
}

.avatar-name {
    padding-bottom: 20px;
    width: 100%;
    max-width: 1113px;
}

.comments-box .avatar-name {
    padding-bottom: 0;
}

.avatar-name .flex {
    justify-content: space-between;
    color: var(--color-text);
    margin-bottom: 0;
}

.avatar-name h5 {
    padding-bottom: 0;
    font-size: 20px;
}

.comment-date {
    font-size: 16px;
}

.comments-box {
    align-items: center;
    margin-bottom: 10px !important;
}

.comments-avatar {
    height: 80px;
}

@media (max-width:990px) {
    #comments .gap40 {
        gap: 20px;
    }

    #comments {
        margin: 60px 0 0 0;
    }

    #commentform {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        resize: none;
        font-size: 16px;
    }

    .comments-form input,
    .comments-form textarea {
        height: 60px;
        margin-bottom: 20px;
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        color: #000;
        border-radius: 8px;
        border: 1px solid var(--color-border-2);
        background-color: #f8f8fb;
        resize: none;
        overflow-wrap: break-word;
        -webkit-text-size-adjust: 100%;
        -webkit-appearance: none;
        overflow-x: hidden;
    }

    .comments-form textarea {
        padding: 20px 30px;
        height: 150px;
        font-family: Roboto, sans-serif;
    }

    .comment-form {
        padding-bottom: 0;
    }

    .comment-date {
        font-size: 12px;
    }
}

.replying-to-author {
    display: block;
}

.fa-users {
    font-size: 20px;
    color: #5d6273;
    padding-right: 15px;
}

.text-btn-bonus {
    color: #000;
}

#comments .children {
    padding-left: 120px;
}

@media (max-width: 990px) {
    #comments .children {
        padding-left: 30px;
    }
}

#comments .children ul {
    padding-left: 0;
}

@media (max-width:670px) {
    .single-bonus-page .comment-form .form-submit {
        margin-bottom: 100px;
    }
}

.screen-reader-text {
    display: none;
}

#comments-error-popup {
    display: none;
}

#comments-empty-popup {
    display: none;
}

#comments-success-popup {
    display: none;
}

.comments-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5);
}

.comments-popup-content {
    background-color: var(--day-today);
    padding: 20px;
    max-width: 80%;
    width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    position: relative;
    border-radius: 8px;
    color: var(--color-black);
}

.comments-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--color-black);
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}

.comments-close-btn:focus,
.comments-close-btn:hover {
    color: #a52116 text-decoration: none;
    cursor: pointer;
}

.s-bon-cont .date i {
    padding: 0 5px 0 10px;
    color: var(--single-p);
}

.content_calc table td {
    color: #000;
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #5d627300;
    border: 2px solid #5D6273;
    z-index: 99;
    background-color: #E0E4E8;
}

#scrollToTop::after {
    position: absolute;
    content: '↑';
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    color: #5D6273;
    left: -1px;
    top: 3px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.page-template-terms-and-conditions ul {
    padding-bottom: 30px;
}

.switch,
header {
    transition: padding-right .2s ease, right .2s ease;
}

.single-bonus-page .s-bon-cont a {
    color: #a52116 !important;
}

.single-bonus-page .s-bon-cont a:hover {
    color: #3a3a3a !important;
}

.s-bon-cont .wrap-flex h2 {
    line-height: .9;
}

.pc-burger-menu {
    display: none;
}

@media (max-width:768px) {
    .single-bonus-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #111;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
        text-align: center;
        padding: 30px;
        gap: 15px;
    }

    .single-bonus-nav #pcMenu.pc-active {
        display: flex;
    }

    .pc-burger-menu {
        display: block;
        background: 0 0;
        border: none;
        cursor: pointer;
        margin: 0 auto 10px;
        text-align: center;
    }

    .pc-burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: #7a7a7a;
    }

    .single-bonus-nav li a {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        transition: all .5s;
    }
}

.single-page-content .date {
    margin-bottom: 25px;
}

.single-page-content .single-first-img {
    margin: -15px 0 20px;
    border-radius: 15px;
}

.single-page .single-page-content li {
    margin-bottom: 0;
}

.wp-block-image {
    margin-bottom: 30px;
}

@media (max-width:600px) {
    nav ul li.active a {
        color: #50c878 !important;
    }

    .fs-20 {
        font-size: 20px;
    }

    .comments-avatar {
        height: 60px;
    }
}

.wp-block-image img {
    border-radius: 8px;
}

@media (max-width:425px) {
    .single-page .autor-livehuck p {
        font-size: 13px;
    }
}

.wp-block-media-text img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.s-bon-cont li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" class="e-font-icon-svg e-fas-check" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" fill="%23a52116"></path></svg>');
}

.faq-answer.expanded {
    padding: 10px 30px 30px;
    max-height: 200px;
}

ol {
    padding-left: 20px;
}

.s-bon-cont ol li {
    padding-left: 10px;
}

.s-bon-cont ol li::before {
    transform: translateY(0%);
    width: 0px;
    height: 0px;
    background-image: none;
}

.s-bon-cont ol {
    margin-bottom: 30px;
}

.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Pro");
    font-weight: var(--fa-style, 900);
}

.fa,
.fa-brands,
.fa-classic,
.fa-light,
.fa-regular,
.fa-sharp,
.fa-sharp-solid,
.fa-solid,
.fas,
.fat,
.fal {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-classic,
.fa-light,
.fa-regular,
.fa-solid,
.fas,
.fat,
.fal {
    font-family: "Font Awesome 6 Pro";
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands";
}

.fa-sharp {
    font-family: "Font Awesome 6 Sharp";
}

.fa-sharp {
    font-weight: 900;
}

.fa-reply:before {
    content: "\f3e5";
}

.fa-user:before {
    content: "\f007";
}

.fa-check:before {
    content: "\f00c";
}

.fa-comments:before {
    content: "\f086";
}

.fa-xmark:before {
    content: "\f00d";
}

.fa-desktop:before {
    content: "\f390";
}

.fa-calendar:before {
    content: "\f133";
}

.fa-calendar-days:before {
    content: "\f073";
}

.fa-moon::before {
    content: "\f186";
}

.fa-sun:before {
    content: "\f185";
}

.fa-magnifying-glass:before,
.fa-search:before {
    content: "\f002";
}

:host,
:root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://sportclan.ru/wp-content/themes/gambling-park/asset/fonts/fontawesome-pro-6.5.2-web/webfonts/fa-brands-400.woff2);
}

.fa-x-twitter:before {
    content: "\e61b";
}

.fa-youtube:before {
    content: "\f167";
}


.fa-facebook-f:before {
    content: "\f39e";
}

.fa-x-twitter:before {
    content: "\e61b";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-youtube:before {
    content: "\f167";
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Pro";
    --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://sportclan.ru/wp-content/themes/gambling-park/asset/fonts/fontawesome-pro-6.5.2-web/webfonts/fa-light-300.woff2) format("woff2");
}

.fa-light,
.fal {
    font-weight: 300;
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Pro";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://sportclan.ru/wp-content/themes/gambling-park/asset/fonts/fontawesome-pro-6.5.2-web/webfonts/fa-regular-400.woff2) format("woff2");
}

.fa-regular {
    font-weight: 400;
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Pro";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://sportclan.ru/wp-content/themes/gambling-park/asset/fonts/fontawesome-pro-6.5.2-web/webfonts/fa-solid-900.woff2) format("woff2");
}

.fa-solid,
.fas {
    font-weight: 900;
}

.avatar-name h5 .replying-to-author {
    font-size: 14px;
    font-weight: 400;
}

.comment-reply-title {
    color: #a52116 font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

#cookie-notice .flex {
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cookie-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media screen and (max-width: 700px) {
    #cookie-notice .flex {
        gap: 0;
        flex-wrap: wrap;
    }

    .cookie-flex {
        margin-top: 15px;
    }
}

.imho a:hover {
    /*filter: hue-rotate(90deg);*/
    filter: grayscale(100%);
    cursor: pointer;
    transition: all .7s;
}

.modal-body .lupa {
    cursor: pointer;
}

footer.single-bonus .fa-brands {
    color: #fff;
    padding: 15px 18px;
    background-color: #181a1d;
    border-radius: 50px;
    margin: 0 5px;
    transition: all .3s;
}

@media screen and (max-width: 990px) {
    .single-bonus .footer-icon {
        width: 100%;
    }

    .single-bonus .nav-footer li:last-child a {
        padding: 5px 0px 5px 15px;
    }
}

.single-bonus .footer-nav li {
    height: 100%;
}

.single-bonus .footer-nav li span {
    bottom: 10px;
}

.single-bonus .footer-flex {
    align-items: center;
}

.single-bonus .footer-nav ul {
    padding-bottom: 0;
}

.single-bonus-nav ul {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pc-burger-menu {
        margin: 0;
    }

    .single-bonus-nav {
        display: flex;
        justify-content: space-between;
        padding: 0 30px 30px;
    }

    .flex-switch {
        margin-bottom: 0;
    }
}

.switcher * {
    -webkit-tap-highlight-color: transparent;
}

.s-bon-cont:has(> .fuul-img-bon) + .s-bon-cont > p:empty:first-child {
    margin-top: -30px;
}



    .bonus-logo-btn button.promo-btn {
      transition: all 0.3s ease;
	  width: 100%;
	  background: linear-gradient(135deg, #a52116 0%, #8a1b12 100%);
	  border: none;
	  padding: 20px;
	  border-radius: 8px;
	  cursor: pointer;
	  margin-bottom: 22px;
	  box-shadow: 0 4px 12px rgba(165, 33, 22, 0.3);
    }
    .bonus-logo-btn button.promo-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(165, 33, 22, 0.5);
      filter: brightness(1.1);
    }
    .bonus-logo-btn button.promo-btn:active {
      transform: translateY(0);
    }
    
    .activate-btn {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .activate-btn:hover {
      background-color: #a52116;
      color: #fff;
      box-shadow: 0 4px 16px rgba(165, 33, 22, 0.5);
      border-color: #a52116;
    }
    .activate-btn .arrow {
      display: inline-block;
      transition: transform 0.3s ease;
    }
    .activate-btn:hover .arrow {
      transform: translate(4px, -4px);
    }


.activate-btn .arrow img.wp-smiley, .activate-btn .arrow img.emoji {
    border-radius: 50px !important;
}

.promo-btn p img.wp-smiley, .promo-btn p img.emoji {
    border-radius: 50px !important;
}

.s-bon-cont .s-bon-plasch-title {
    color: #a52116;
}

.downbg {
    background-color: #04060A;
}


@media (max-width: 768px) {
	.pari-promo-code-block {
		width: clamp(195px, 18vw, 220px) !important;
	}
}


.custom-video-player {
    width: 100%;
    max-width: 1170px;
    height: auto;
	height: 658px;
	margin: 0 auto 30px;
    border-radius: 8px;
}

.custom-video-player:focus {
    outline: none;
}

.custom-video-player::-webkit-media-controls {
    /*background-color: rgba(0,0,0,0.7);*/
    border-radius: 0 0 8px 8px;
}

.wp-video {
    max-width: 100%;
    height: auto;
    text-align: center;
}

@media (max-width: 768px) {
	.custom-video-player {
		height: auto;
		min-height: 219px;
	}
	
	.wp-video {
		padding: 0 10px;
	}
	
		.single-bonus-nav ul {
			z-index: 200;
	}
	
	.wrap-flex div p:last-child, .wrap-flex div ul:last-child , .wrap-flex div ol:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 385px) {
	.custom-video-player {
		min-height: 205px;
	}
}

video {
    object-fit: cover;
}

.custom-video-player {
    object-fit: cover;
}

video[poster] {
    object-fit: cover;
}

.wrap-flex div ul:last-child , .wrap-flex div ol:last-child {
	margin-bottom: 0;
}