@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --body-bg: #1a1a1a;
    --body-font-color: #f5f5f5;
    --heading-color: #ffffff;
    --link-color: #e60000;
    --default-color: #e60000;
    --default-header-color: #1a1a1a;
    --faq-title-color: #ffffff;
    --faq-bloc-header-color: #2a2a2a;
    --table-border-color: #444;
    --table-header-bg: #2a2a2a;
    --table-header-color: #fff;
    --table-even-row-bg: #333;
    --table-hover-bg: #444;
}

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

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed
}

body.-toggle,
html.-toggle {
    overflow: hidden
}

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body {
    background: var(--body-bg);
    color: var(--body-font-color);
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width:1390px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header {
    background: var(--default-header-color);
    padding: 24px 0;
}

.header-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
}

.header-logo__img {
    height: auto;
    width: 132px;
}

.menu-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content;

}

/* Стили для Chrome, Safari и других */
.menu-wrap::-webkit-scrollbar {
    height: 8px;
    background-color: var(--scrollbar-track-color);
}

.menu-wrap::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color);
    border-radius: 4px;
}

.main-nav {
    padding-right: 45px;
    text-align: right;
    /* Поддержка для прокрутки */
    overflow-x: auto;
    white-space: nowrap; /* Запрещаем переносы на новую строку */
    /* Добавляем стили для подсказки */
    scrollbar-width: thin; /* Для Firefox */
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
    -ms-overflow-style: -ms-autohiding-scrollbar; /* Для Edge и IE */
}

.main-nav__list {
    display: inline-flex;
    flex-wrap: nowrap; /* Запрещаем перенос на новую строку */
    gap: 32px;
    margin: 0; /* Убедитесь, что margins по умолчанию не мешают */
    padding: 0; /* Убедитесь, что paddings по умолчанию не мешают */
}

.nav-item {
    font-size: 16px;
    position: relative;
    font-weight: bold;
    white-space: nowrap; /* Запрещаем перенос на новую строку */
}

.nav-item__link {
    color: #fff;
}

.main-nav__list li:hover > a {
    color: var(--default-color);
}

/* Медиазапрос для экранов меньше 800px */
@media (max-width: 800px) {
    .menu-wrap {
        justify-content: flex-start; /* Выравниваем элементы по левому краю */
    }

    .main-nav {
        padding-right: 15px; /* Уменьшаем padding для лучшего отображения */
    }

    .main-nav__list {
        gap: 20px; /* Можно уменьшить расстояние между элементами */
    }

    .nav-item {
        font-size: 14px; /* Можно уменьшить размер шрифта */
    }
}

/* Подсказка для прокрутки */
.scroll-hint {
    position: absolute;
    bottom: 5px; /* Позиция подсказки */
    right: 5px; /* Позиция подсказки */
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    display: none; /* Скрываем по умолчанию */
}

.menu-wrap:hover .scroll-hint {
    display: block; /* Показываем при наведении */
}

.header-lang {
    display: flex;
    align-items: center;
    color: #fff;
}

.btn {
    background: var(--default-color);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
	width: fit-content;
}

.btn a {
    color: var(--btn-text);
    display: block;
    padding: 0 42px;
    font-weight: bold;   
}

.btn:hover {
    opacity: .86
}

.btn-log {
    background: transparent;
    border: 1px solid #ccc;
}

.menu-mob-btn {
    background: var(--default-color) url(../assets/img/mob-menu-icon.svg) no-repeat 50%;
    background-size: 15px;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px;
}

.menu-mob-btn.-toggle {
    background: var(--default-color) url(../assets/img/mob-menu-close-icon.svg) no-repeat 50%;
    background-size: 15px
}

/* Main Content Styles */
.main {
    padding: 40px 0;
}

.entry-content {
    line-height: 1.6;
}

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4, 
.entry-content h5, 
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--heading-color);
}

.entry-content h1 {
    font-size: 32px;
}

.entry-content h2 {
    font-size: 28px;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content h4 {
    font-size: 20px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content a {
    color: var(--link-color);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Table Styles */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    border: 1px solid var(--table-border-color);
}

.entry-content table th,
.entry-content table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--table-border-color);
}

.entry-content table th {
    background-color: var(--table-header-bg);
    color: var(--table-header-color);
    font-weight: 700;
}

.entry-content table tr:nth-child(even) {
    background-color: var(--table-even-row-bg);
}

.entry-content table tr:hover {
    background-color: var(--table-hover-bg);
}

/* Responsive Table */
@media (max-width: 768px) {
    .entry-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}

.post-entry h1 {
    font-size: 32px
}

.post-entry h2 {
    font-size: 28px
}

.post-entry h3 {
    font-size: 24px
}

.post-entry h4 {
    font-size: 20px
}

.post-entry a {
    color: var(--post-link-color);
}

.post-entry a:hover {
    color: var(--post-link-color_hover);
}

.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%
}

.post-entry table tr:first-child {
    background: var(--default-color) !important
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700
}

.post-entry table tr:nth-child(odd) {
    background: var(--default-lighten-color)
}

.post-entry table tr td,
.post-entry table tr th{
    padding: 16px 12px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol,
.post-entry ul{
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li,
.post-entry ul li{
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry ul li:before{
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: "✔";
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry .btn {
	margin-bottom: 25px;
}

.post-entry .btn a {
	color: #fff;
}

.post-entry blockquote {
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
.post-entry blockquote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px){
    .post-entry blockquote {
        padding:24px;
        padding-left:56px;
    }
    .post-entry blockquote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}


@media(max-width:580px){
    .wp-block-quote{
        padding:24px;
        padding-left:56px;
    }
    .wp-block-quote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    color: #2d2d2c;
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    color: #2d2d2c;
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

/*FAQ*/
.faq-block {
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-block .faq-block--title {
    color: var(--faq-title-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: var(--faq-bloc-header-color);
    border: 1px solid var(--default-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    position: relative;
    cursor: pointer;
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 80%;
    width: 80%;
}

.faq-block--items__item--header--icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.faq-block--items__item--header--icon:before,
.faq-block--items__item--header--icon:after {
    content: '';
    position: absolute;
    background-color: var(--default-color);
    transition: transform 0.3s ease;
}

.faq-block--items__item--header--icon:before {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.faq-block--items__item--header--icon:after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-block--items__item--header.active .faq-block--items__item--header--icon:before {
    transform: rotate(90deg);
}

.faq-block--items__item--content {
    display: none;
    padding: 15px;
    border: 1px solid var(--default-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

/* Reviews Block Styles */
.reviews-block {
    margin-top: 40px;
    margin-bottom: 40px;
}

.reviews-block--title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reviews-block--items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-item__header {
    margin-bottom: 15px;
}

.review-item__author {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.review-item__date {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.review-item__rating {
    display: flex;
    gap: 5px;
}

.star {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
}

.star.filled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700' stroke='%23FFD700' stroke-width='1'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'%3E%3C/path%3E%3C/svg%3E");
}

.review-item__content {
    font-size: 16px;
    line-height: 1.5;
}

/*WP STYLE*/
.wp-block-media-text .wp-block-media-text__media {
    float: right;
    max-width: 50%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .alignright {
        max-width: 100%;
        margin: 16px auto 24px auto;
        float: none;
        order: 2;
    }
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.footer {
    background: var(--default-footer-color);
    padding: 42px 0;
    color: #fff;
}

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

.footer-left {
    width: 40%;
}

.footer-logo {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-left__text {
    font-size: 14px;
    opacity: .5;
    line-height: 150%;
}

.footer-right {
    width: 55%;
}

.footel-menu__list {
    display: block;
    columns: 2;
    margin-bottom: 30px;
}

.footel-menu__list li {
    display: block;
    margin-bottom: 10px;
}

.footel-menu__list li a {
    color: #fff;
    font-size: 15px;
}

.footel-menu__list li a:hover {
    text-decoration: underline;
}

.footer-info {
	display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
}

.footer-info__img {
	margin: 0 auto;
    object-fit: contain;
}

/*Footer menu*/
.footer_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.footer_link a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 36px;
    width: 100%;
    border-radius: 5px;
    padding: 0 8px;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    transition: background-color .15s linear, transform .15s linear;
}

.footer_link a:focus, .footer_link a:hover {
    background-color: #252536;
}

/*Footer license*/
.site-info {
    padding: 0px 10px;
    display: flex;
    margin-top: 25px;
}

.site-info__wrap {
    display: flex;
    justify-content: flex-start;
    max-width: 480px;
    margin-right: 25px;
    margin-top: 15px;
    width: 50%;
    box-sizing: border-box;
}

.lice-icon {
    display: flex;
    margin-right: 10px;
    min-width: 40px;
    align-items: flex-start;
}

.lice-text {
    font-size: 9px;
    color: #fff;
    text-align: left;
}

.age-text {
    font-size: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
}

.age-img {
    width: 40px;
    display: flex;
    margin-right: 10px;
    height: 58px;
}

@media (max-width: 730px) {
    .site-info {
        justify-content: center;
        flex-direction: column;
    }
    
    .site-info__wrap {
        width:100%;
    }
}

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


/*MOBILE*/
@media (max-width:768px) {
    .menu-mob-btn {
        display: block
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        /*width: auto;*/
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #000;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100% - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
        z-index: 10;
        justify-items: start;
    }

    .menu-wrap.-toggle {
        display: grid
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left;
        padding-right: 44px;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
    }

    .header .btn a {
        padding: 0 10px;
    }
    
    .header-right_wrap {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }
}

/*SLOTS STYLE*/
.game-title {
    font-size: 34px;
    margin: 15px 0 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
}
.game-title span {
    color: #4caf50;
}
.game__code {
    max-width: 750px;
    width: 100%;
    flex-grow: 1;
    height: 100%;
    position: relative;
}
.star-rating {
    position: relative;
    width: 95px;
}
.star-rating--inner,
.star-rating--outer {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
}
.star-rating--outer {
    overflow: hidden;
}
.screen-reader-text {
    display: inline-block;
    margin-left: 5px;
    height: 18px;
    font-size: 18px;
    line-height: 21px;
    font-weight: normal !important;
    color: #faab00;
}
.game-rating {
    display: flex;
    flex-wrap: wrap;
    top: 15px;
    left: 15px;
    position: absolute;
    z-index: 1;
}
.game-rating-title {
    width: 100%;
}
.box__game-main {
    position: relative;
    height: 508px;
    z-index: 1;
}
.body__fullscreen .wrapper__container {
    z-index: 30;
}
.body__fullscreen .box__game-main {
    z-index: 10;
}
.box__game {
    position: relative;
}
.box__game-main:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 45, 0.7);
    width: 100%;
    height: 100%;
}
.box__game {
    background: #000;
    border-radius: 7px;
    padding: 10px;
}
.box__game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
}
.share-text {
    margin-right: 15px;
}
.share-text span {
    display: block;
    font-size: 15px;
    line-height: 18px;
}
.share-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.share__toggle {
    flex-shrink: 0;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: #2f8f41;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m19.823 8.666-7.348-6.874c-.088-.083-.171-.13-.291-.125-.23.01-.521.172-.521.417V5.53a.222.222 0 0 1-.187.213C4.17 6.864 1.092 12.332.004 18.008c-.042.224.26.432.4.255 2.667-3.359 5.911-5.551 11.04-5.593.115 0 .219.136.219.25v3.385c0 .364.484.526.755.276l7.4-6.994A.575.575 0 0 0 20 9.15c-.005-.167-.047-.36-.177-.484Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    border-radius: 4px;
    cursor: pointer;
}
.share__toggle:hover {
    background-color: #39833c;
}
.share__content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    margin-right: calc(-50% - -14px);
    padding: 10px 3px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 5;
}
.share__content:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.share__content--visible {
    display: block;
    -webkit-animation: fadein 0.2s;
    -moz-animation: fadein 0.2s;
    -ms-animation: fadein 0.2s;
    -o-animation: fadein 0.2s;
    animation: fadein 0.2s;
}
.report-problem,
.expand-wrap {
    display: flex;
    cursor: pointer;
    font-size: 15px;
}
.actions-btns .favorites-button,
.actions-btns .report-problem,
.actions-btns .expand-wrap {
    margin: 0 0 0 5px;
}
.report-problem:hover,
.expand-wrap:hover {
    opacity: 0.8;
}
.report-problem:before,
.expand-wrap:before {
    content: "";
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.report-problem:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMTIgMjJjNS41IDAgMTAtNC41IDEwLTEwUzE3LjUgMiAxMiAyIDIgNi41IDIgMTJzNC41IDEwIDEwIDEwWk0xMiA4djUiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNMTEuOTk1IDE2aC4wMDkiLz48L3N2Zz4=);
}
.expand-wrap:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNOSAyMmg2YzUgMCA3LTIgNy03VjljMC01LTItNy03LTdIOUM0IDIgMiA0IDIgOXY2YzAgNSAyIDcgNyA3Wk0xOCA2IDYgMTgiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0xOCAxMFY2aC00TTYgMTR2NGg0TTYgNmwxMiAxMk02IDEwVjZoNE0xOCAxNHY0aC00Ii8+PC9zdmc+);
}
.expand-wrap svg {
    margin-right: 10px;
}
.actions-btns {
    display: flex;
    flex-direction: row;
}
.play-btn {
    width: 128px;
    height: 128px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin-left: -64px;
    margin-top: -64px;
    cursor: pointer;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 455 455'%3E%3Cpath d='M227.5 0C101.855 0 0 101.855 0 227.5S101.855 455 227.5 455 455 353.145 455 227.5 353.145 0 227.5 0zm-61.438 321.575v-188.15L328.938 227.5l-162.876 94.075z' fill='%23ffffff' /%3E%3C/svg%3E");
}
.play-btn:hover {
    opacity: 0.8;
}
.box__game-iframe {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}
.box__game-iframe.fullscreen {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    background: #000;
}
.game__info {
    float: right;
    clear: right;
    width: 340px;
}
.list__dotted {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.list__dotted li {
    border-bottom: 1px dashed #475158;
    position: relative;
    padding: 0;
    margin-bottom: 18px;
    line-height: normal;
}
.list__dotted li span {
    background-color: #000;
    margin: 0;
}
.list__dotted li span.list-label,
.list__dotted li span.list-value {
    bottom: -5px;
    font-size: 18px;
    line-height: 16px;
}
.list__dotted span.list-label {
    position: relative;
    margin-right: 7em;
    padding-right: 2px;
}
.list__dotted span.list-value {
    position: absolute;
    right: 0;
    padding-left: 2px;
}
.list__dotted a {
    color: #fff;
}
.item__header .heading__section {
    color: #fff;
}
.list-rhombus {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-rhombus li {
    padding-left: 20px;
    position: relative;
}
.list-rhombus li + li {
    margin-top: 10px;
}
.list-rhombus li:not(.nostyle):before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}
.list-rhombus a {
    color: #fff;
}
.table-contents {
    padding: 20px 15px;
    border: solid 1px #e0e0e0;
    background: #fff;
}
.table-contents p {
    margin: 0;
}
.exit__fullscreen {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    fill: #fff;
    padding: 0;
    display: none;
    cursor: pointer;
    z-index: 1;
}
.exit__fullscreen svg {
    width: 32px;
    height: 32px;
}
.box__game-iframe.fullscreen .exit__fullscreen {
    display: block;
}
@media (min-width: 576px) {
    .actions-btns .favorites-button,
    .actions-btns .report-problem,
    .actions-btns .expand-wrap {
        margin: 0 0 0 13px;
    }
    .actions-btns .expand-wrap:before {
        margin-right: 10px;
    }
}
@media (min-width: 1140px) {
    .item__header {
        margin-left: -30px;
        margin-right: 30px;
        width: calc(100% + 60px);
    }
}
@media (max-width: 1140px) {
    .box__game-main {
        height: initial;
    }
}
@media (min-width: 768px) and (max-width: 1140px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    .game__code {
        max-width: 100%;
    }
    .box__game-main img {
        width: 100%;
        object-fit: cover;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767.8px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
        padding: 0 15px 30px;
    }
    .game__code {
        max-width: 100%;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .play-btn {
        width: 64px;
        height: 64px;
        margin-left: -32px;
        margin-top: -32px;
    }
    .play-btn svg {
        width: 64px;
        height: 64px;
    }
    .game-title {
        font-size: 25px;
    }
    .list__dotted span.list-label {
        white-space: nowrap;
    }
    .game__code {
        height: inherit;
    }
    .box__game-iframe {
        padding-top: 56.25%;
    }
    .box__game-iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}
.game__died {
    position: absolute;
    background: rgba(36, 37, 38, 0.85);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}
.game__died-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 22px;
}
.game__died-text:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQ0NjFfMjgxNTg0KSI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS4wMDIgMTEuOTljMCA2LjU0NyA1LjM2NCAxMS45OSAxMS45ODkgMTEuOTkgNi41NDYgMCAxMS45ODktNS40NDMgMTEuOTg5LTExLjk5QzIzLjk4IDUuMzY3IDE4LjUzNy4wMDMgMTEuOTkuMDAzIDUuMzY3LjAwMi4wMDMgNS4zNjYuMDAzIDExLjk5MVptMTYuMTY5IDYuNjI2LTQuMTgtNC4xOC00LjE4IDQuMTgtMi40NDYtMi40NDUgNC4xMDItNC4xOC00LjEwMi00LjE4TDcuODEgNS4yODdsNC4xOCA0LjE4IDQuMTAyLTQuMTggMi41MjQgMi41MjQtNC4xOCA0LjE4IDQuMTggNC4xOC0yLjQ0NSAyLjQ0NVoiIGZpbGw9IiNEODIxM0YiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwMF80NDYxXzI4MTU4NCI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
}
@media (min-width: 768px) {
    .game__died-text {
        font-size: 34px;
        line-height: 36px;
        font-weight: bold;
    }
    .game__died-text:before {
        width: 32px;
        height: 32px;
    }
}
.box__subpage {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: -30px;
}
.page-list {
    list-style: none;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}
.page-list li a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #3f4143;
    background: #e3e4e5;
    border-right: 1px solid #b2b7ba;
    border-bottom: 1px solid #b2b7ba;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    white-space: nowrap;
}
.page-list li a:hover {
    background: #cccdce;
}
.page-list li.active a {
    height: 41px;
    background: #fff;
    color: #4caf50;
    border-top: 3px solid #4caf50;
    border-left: 1px solid #4caf50;
    border-right: 1px solid #4caf50;
    border-bottom: 0;
}
@media (max-width: 768px) {
    .page-list {
        overflow-x: scroll;
    }
    .page-list li a {
        width: auto;
        padding: 0 30px;
    }
    .page-list::-webkit-scrollbar {
        height: 5px;
        margin-top: 1px;
        background: #fff;
    }
    .page-list::-webkit-scrollbar-track {
        background: #fff;
        height: 5px;
    }
    .page-list::-webkit-scrollbar-thumb {
        border-radius: 2px;
        height: 5px;
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.3);
    }
}

/*TOC*/
div#toc_container ul li {
	margin-bottom: 15px;
}
#toc_container {
  border-radius: 15px;
}
#toc_container p.toc_title+ul.toc_list {
	padding-left: 25px;
}

/*ONLINE*/
.online_box {
    display: flex;
    position: relative;
    align-items: center;
}

.online_link {
    text-decoration: none;
    height: 24px;
    border-bottom: 2px solid #ccc;
    white-space: nowrap;
	color:#ccc;
}

.online_value {
    margin-left: 5px;
    font-weight: 600;
}

.online_notificator {
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

#online {
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 15px;
}

.online_notificator > div {
    background-color: #2ac120;
    border-radius: 20px;
    width: 10px;
    height: 10px;
}

.online_auth_wrap {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
/*HOME Slots Block*/
.main_tabs_list{display:flex;flex-wrap:wrap;justify-content:center;background-color:#342b39;border-radius:10px;width:100%;}
@media (min-width: 668px){
.main_tabs_list{box-sizing:border-box;}
}
@media (max-width: 855px){
.games_navigation_container{margin-bottom:10px;}
}
.main_tabs_listitem{position:relative;display:flex;align-items:center;padding:0px 5px;}
.main_tabs_listitem:nth-child(odd):after{display:block;}
.search_controls_list_item{min-width:300px;width:100%;}
.main_tabs_listitem:after{display:none;content:"";width:1px;position:absolute;height:30px;right:0;top:5px;z-index:-1;}
.main_tabs_listitem_active .main_tabs_listitem_text{color:#f3b6ff;border-bottom:2px solid #e45eff;margin-bottom:10px;}
@media (min-width: 669px){
.main_tabs_listitem:after{display:block;}
}
@media (min-width: 669px){
.main_tabs_listitem:after{top:10.5px;height:34px;}
}
@media (min-width: 669px){
.main_tabs_listitem{position:relative;}
}
.main_tabs_listitem_link{box-sizing:border-box;display:block;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-decoration:none;cursor:pointer;position:relative;}
.slots_link{color:#e8e6ff!important;}
.slots_link:hover{text-decoration: underline;}
.main_tabs_listitem_content{justify-content:center;height:50px;max-height:50px;border-radius:8px;padding:0;display:flex;align-items:center;}
@media (min-width: 669px){
.main_tabs_listitem_content{justify-content:center;height:55px;max-height:55px;padding:0 5px;}
}
.main_tabs_listitem_text{overflow:hidden;text-overflow:ellipsis;display:inline-block;box-sizing:border-box;max-height:100%;white-space:nowrap;font-weight:600;font-size:16px;}
@media (max-width: 669px){
.main_tabs_list{padding:0;}
}
.games_navigation_container{justify-content:center;padding:10px;display:flex;box-sizing:border-box;width:100%;max-width:1200px;background:linear-gradient(138deg, rgba(52, 43, 57, 1) 0%, rgb(44 36 48) 65%);border-radius:10px;}
.form_search{display:flex;flex-direction:column;align-items:flex-start;}
.games_navigation .form_search{width:100%;}
@media (max-width: 1024px){
.games_navigation .form_search{width:100%;}
}
.box_input_text{position:relative;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;}
.box_input_text input:focus,.box_input_text input:hover{outline:none;box-shadow:0 0 0 2px #9d87b3;}
.box_input_text select:focus,.box_input_text select:hover{outline:none;box-shadow:0 0 0 2px #9d87b3;}
.box_input_text.search{width:100%;}
.box_input_text input{height:35px;padding:0 18px;font-size:16px;}
.box_input_text select{height:35px;padding:0 8px;font-size:16px;}
.box_input_text input,.box_input_text select{box-sizing:border-box;width:100%;border:2px solid transparent;border-radius:5px;font-weight:500;color:#fff;background-color:#221d25;transition:box-shadow .25s ease;}
.input_select{display:flex;width:100%;}
.input_select:before{content:"";position:absolute;top:12px;right:4px;z-index:1;height:15px;width:15px;background-size:contain;background-repeat:no-repeat;background-image:url(../assets/img/dropdown.svg);pointer-events:none;}
.box_input_text select option{color:#fff;background-color:#191929;}
.box_input_text.search [type=search]{border-radius:10px;padding-left:7px;padding-right:50px;}
.box_input_text input::placeholder{font-style:italic;color:#ccc;}
.search_submit{position:absolute;top:0;right:10px;height:35px;width:35px;background:transparent url('../assets/img/search.svg') no-repeat 50%;background-size:18px;cursor:pointer;}
.input_suggestion{visibility:hidden;position:absolute;}
button{margin:0;border:0;border-radius:0;padding:0;font-size:100%;font:inherit;vertical-align:initial;}
.games_search_panel{width:100%;}
.providers_select{width:100%;max-width:250px;min-width:240px;margin-right:15px;}
@media (max-width: 725px){
.games_navigation_container{flex-wrap:wrap;justify-content:center;margin-bottom:10px;}
.providers_select{height:45px;margin-right:0;width:100%;max-width:unset;}
.games_search_panel{width:100%;}
}
@media (max-width: 1050px){
.games_navigation_container{padding:10px;margin-bottom:unset;}
.main_tabs_list:first-child > li{padding:0px 10px;}
.filters_wrap{flex-wrap:wrap;}
}
.search_controls_tabs{background-color:unset;}
.search_controls_tabs .box_input_text input,.search_controls_tabs .box_input_text select{background-color:#1f1a22;}
.main_menu_list{background:linear-gradient(138deg, rgb(62 50 68) 0%, rgb(44 36 48) 65%);}
.main_menu_list .main_tabs_listitem{padding:0px 10px;}
.sub_categories_tags .main_menu_list{flex-wrap:nowrap;}
@media (max-width: 610px){
.main_menu_list{flex-wrap:wrap;}
.sub_categories_tags .main_menu_list{flex-wrap:wrap;}
}
.filters_wrap{display:flex;width:100%;flex-wrap:nowrap;}
.sub_categories_tags{display:flex;width:50%;margin-top:0;}
.sub_categories_tags .main_menu_list{margin-top:0;}
@media (max-width: 1050px){
.filters_wrap{flex-wrap:wrap;justify-content:center;}
.sub_categories_tags{width:100%; margin-bottom:20px;}
.main_tabs_listitem{padding:unset;}
.main_tabs_list{padding:unset;}
.search_controls_tabs{margin-top:10px;}
}
.main_menu_list{margin-top:15px;}


.btn_register_small{overflow:hidden;display:flex;justify-content:center;align-items:center;box-sizing:border-box;height:40px;border:none;border-radius:5px;padding:0 20px;background-color:#4d5a85;outline:none;text-align:center;text-decoration:none;line-height:22px;font-size:14px;font-weight:800;white-space:nowrap;color:#fff;cursor:pointer;transition:background-color .2s ease;}
.button_moregames_active{height:30px;font-weight:bold;box-shadow:0 3px 0 0 #2d3048, 0 4px 4px 0 #000;background-color:#3c405c;filter:drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.6));-webkit-filter:drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.6));padding:18px 30px;font-size:16px;}
.button_moregames_active:hover{background-color:#4f5478;}
.games_list_content{display:flex;width:100%;justify-content:center; margin-top:20px; margin-bottom:25px;}
.main_games_list{z-index:2;display:flex;flex-direction:column;align-items:center;margin-bottom:5px;overflow-anchor:none;justify-content:space-between;max-width:1390px;width:100%;box-sizing:border-box;padding-left:0px;padding-right:0px;margin-top:5px;margin-bottom:5px;}
@media (max-width: 668px){
.main_games_list{padding-right:0;padding-left:0;}
}
.games_list{display:flex;flex-wrap:wrap;align-content:center;box-sizing:border-box;width:100%;padding:0 10px;}
.games_list_title{font-size:18px;font-weight:600;margin:10px 0;color:white;padding:0 10px;box-sizing:border-box;}
@media (min-width: 0px){
.games_list{max-width:450px;}
}
@media (min-width: 669px){
.games_list{max-width:100%;}
}
.games_list_item{position:relative;box-sizing:border-box;margin:0 15px 35px 0;}
.games_list_item_no_mar{margin:0 15px 0 0;}
@media (min-width: 0px){
.games_list_item{width:calc(50% - 7.5px);padding-top:calc(38% - 7.5px);}
.games_list .games_list_item:nth-child(2n){margin-right:0;}
}
@media (min-width: 669px){
.games_list .games_list_item{width:calc(25% - 11.25px);padding-top:17%;}
.games_list .games_list_item:nth-child(2n){margin-right:15px;}
.games_list .games_list_item:nth-child(4n){margin-right:0;}
}
@media (min-width: 1025px){
.games_list{max-width:100%;}
.games_list .games_list_item:nth-child(4n){margin-right:15px;}
.games_list .games_list_item:nth-child(5n){margin-right:0;}
.games_list .games_list_item{width:calc(20% - 12px);padding-top:calc(15% - 10px);}
}

/* Кнопка Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--default-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
/* Стили для изображений */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .entry-content img {
        width: 100%;
        margin: 15px 0;
    }
    
    /* Изображения в тексте */
    .entry-content .alignleft,
    .entry-content .alignright {
        float: none;
        display: block;
        margin: 15px auto;
    }
    
    /* Галереи */
    .wp-block-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .wp-block-gallery .blocks-gallery-item {
        width: calc(50% - 5px) !important;
        margin: 0 !important;
    }
}
    height: 50px;
    background-color: var(--default-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
/* Стили для списков */
.entry-content ul {
    list-style: none;
    padding-left: 20px;
}

.entry-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--default-color);
    border-radius: 50%;
}

.entry-content ol {
    padding-left: 20px;
    counter-reset: item;
}

.entry-content ol li {
    position: relative;
    padding-left: 5px;
    margin-bottom: 10px;
    counter-increment: item;
}

.entry-content ol li::marker {
    color: var(--default-color);
    font-weight: bold;
}
.game_card{position:relative;display:flex;flex-direction:column;box-sizing:border-box;height:100%;width:100%;border-radius:10px;color:#fff;transform:translateZ(0);transition:transform .15s linear;}
@media (min-width: 669px){
.games_list .game_card:hover{transform:scale(1.1);z-index:4;}
.games_list .game_card:hover .game_card_controls{pointer-events:auto;opacity:1;}
.top_win_link:hover .top_win_front{pointer-events:auto;opacity:1;}
.top_win_link:hover .top_win_front > a.play{transform:scale(1);}
.games_list .game_card:hover a.game_card_play{transform:scale(1);}
.games_list .game_card:hover .game_card_img{border-bottom-right-radius:0;border-bottom-left-radius:0;}
.games_list .game_card:hover .game_card_top{border:0;}
.games_list .game_card:hover .game_card_flags{opacity:0;}
}
.game_card_top{position:relative;height:100%;border-bottom:none;border-radius:10px;}
.game_card_vendor{z-index:2;position:absolute;right:0;font-size:80%;padding:2px 10px;margin-right:4px;padding-top:4px;padding-left:0;padding-right:0;box-sizing:border-box;text-align:right;text-shadow:1px 1px 2px black;pointer-events:none;user-select:none;user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;}
.game_card_vendor > div{background-color:#3636364d;border-radius:5px;display:inline-block;padding:2px 10px;font-weight:600;}
.games_list_item .game_card{position:absolute;top:0;left:0;}
.game_card_title{overflow:hidden;text-overflow:ellipsis;display:flex;justify-content:center;flex:none;box-sizing:border-box;border-top:none;font-size:12px;text-align:center;word-wrap:break-word;overflow-wrap:break-word;bottom:0;align-items:center;font-weight:600;color:#fff;padding:0px 30px;}
@media (max-width: 668px){
.game_card_title{line-height:12px;}
}

.game_card_flags{position:absolute;width:100%;z-index:2;display:flex;transition:opacity .15s linear;transition-delay:20ms;}
.game_card_flags li:last-child{margin-right:0;}
@media (max-width: 668px){
.game_card_flags li{margin-right:5px;}
}
.game_card_flags_new,.game_card_flags_pre{position:relative;display:flex;-webkit-filter:drop-shadow(0 2px 2px rgba(0, 0, 0, 1));filter:drop-shadow(0 2px 2px rgba(0, 0, 0, 1));-webkit-filter:drop-shadow(0 2px 2px rgba(0, 0, 0, 1));filter:drop-shadow(0 2px 2px rgba(0, 0, 0, 1));}
.game_card_flags_new{width:35%;line-height:1.7em;}
.game_card_flags_pre{width:20%;line-height:1.7em;}
.game_card_img{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;border-radius:10px;object-fit:contain;margin:0;border:0;padding:0;}
.game_card_picture_container_tmp{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;border-radius:10px;background:url(../assets/img/dice.png) #202233 center no-repeat;background-size:64px;}
@media (min-width: 669px){
.game_card_img{object-fit:cover;}
}
.game_card_flags_new_decor,.game_card_flags_pre_decor{border-top-left-radius:10px;border-bottom-right-radius:10px;padding:2px 10px;display:flex;font-size:min(3vw, 14px);height:90%;}
.game_card_flags_new_decor{background-color:#f42a4ec4;text-shadow:1px 1px 2px #000000ab;}
.game_card_flags_pre_decor{background-color:#f58e00c4;text-shadow:1px 1px 2px #000000ab;}
.game_card_controls{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;height:160%;width:100%;pointer-events:none;opacity:0;will-change:opacity;transition:opacity .15s linear;transition-delay:20ms;border-radius:10px 10px 10px 10px;background-color:#220d2680;overflow:hidden;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);}
.game_card_controls_play_wrap{display:flex;width:100%;height:100%;align-items:center;justify-content:space-evenly;flex-direction:column;}
.game_card_demo{margin-top:10px;font-weight:600;background-color:#ffffff29;padding:10px;border-radius:15px;}
a.game_card_demo{text-decoration:none;color:#fff;}
a.game_card_play{display:flex;width:60px;height:60px;background-color:#ffffff47;border-radius:30px;justify-content:center;align-items:center;transition:transform .2s linear;transform-origin:center center;transform:scale(0.3);}
.game_card_play > img{width:40px;height:40px;position:relative;left:2px;}
.top_win_front > a.play{display:flex;width:60px;height:60px;background-color:#ffffff47;border-radius:30px;justify-content:center;align-items:center;will-change:transform;transition:transform .2s linear;transform-origin:center center;transform:scale(0.3);}
.top_win_front > a.play > img{width:40px;height:40px;position:relative;left:2px;}
.games_list_footer{display:flex;width:100%;padding-top:0px;padding-bottom:40px;justify-content:center;}
.games_list_wrapper{display:flex;flex-direction:column;width:100%;align-items:center;background-color:#1a161d;border-radius:10px;padding:10px;background-image:url(../assets/img/pattern.png);}
.games_list_title{display:flex;width:100%;font-size:18px;font-weight:600;margin:10px 0;color:white;}
.top_win_link .top_win_game_img_wrap:hover .top_win_front > a.play{transform:scale(1);}
.player{color:#6ae4ef;}
.wins_info{display:flex;width:100%;box-sizing:border-box;justify-content:center;}
.main_header_bottom_header{display:flex;width:100%;height:220px;}
@media (max-width: 640px){
.main_header_bottom_header{height:195px;}
.wins_info_wrap{justify-content:flex-start;}
}
.wins_info_wrap{width:100%;align-items:center;margin-top:10px;display:flex;flex-direction:column;align-items:flex-start;height:100%;}
.top_wins_swipe_wrap{width:100%;box-sizing:border-box;height:100%;padding:10px;}
.wins_info_wrap_title{font-size:18px;font-weight:600;color:white;margin-top:10px;padding:0 10px;box-sizing:border-box;}
.top_win_game_img_wrap{display:flex;flex-direction:column;align-items:center;position:relative;height:100%;width:100%;}
.top_win_game_img_wrap > .game_img{display:flex;flex-direction:column;align-items:center;position:absolute;width:100%;height:100%;}
.top_win_game_img{display:flex;width:100%;height:100%;}
.top_win_game_img_fg{position:absolute;z-index:1;background:linear-gradient(180deg, rgba(33, 28, 37, 0) 74%, rgba(33, 28, 37, 1) 86%, rgba(33, 28, 37, 1) 100%);left:0;right:0;height:20px;background-color:#211c25;bottom:0;}
.top_win_swiper{height:100%;padding-bottom:15px!important;box-sizing:border-box;}
.top_win_game_win{position:absolute;z-index:2;display:flex;width:100%;height:100%;justify-content:center;align-items:flex-end;bottom:0;box-sizing:border-box;width:100%;}
.top_win_game_win_text{background-color:#211c25d4;padding:5px 5px;color:#ffffff;font-weight:800;justify-content:center;border-radius:10px;font-family:"Graphik LC Web", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;}
.much_win{color:#ffc675;font-size:140%;}
.top_win_game_img img{width:100%;height:100%;align-self:center;object-fit:cover;border-top-right-radius:10px;border-top-left-radius:10px;filter:saturate(0.7);}
.top_win_link{text-decoration:none;text-transform:none;appearance:none;user-select:none;flex-direction:column;width:160px;display:flex;height:100%;position:relative;border-radius:10px;background-color:rgb(60 49 67);}
.top_win_link a{text-decoration:none;}
.top_win_swipe{width:160px!important;padding-right:10px;}
@media (max-width: 500px){
.top_win_link{width:130px;}
.top_win_swipe{width:130px!important;}
}
.top_win_link_body{display:flex;width:100%;position:absolute;border-radius:10px;height:100%;}
.top_win_front{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;height:calc(100% - 5px);width:100%;pointer-events:none;opacity:0;will-change:opacity;transition:opacity .15s linear;transition-delay:20ms;border-radius:10px 10px 10px 10px;background-color:#220d2680;overflow:hidden;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);align-items:center;justify-content:center;}
.top_win_link_body_delim{display:flex;width:100%;box-sizing:border-box;background-color:#211c25;flex-direction:column;border-radius:10px;justify-content:space-between;position:absolute;height:100%;}
.top_win_link:hover{color:#ccc;}
.top_win .details{width:100%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;height:30px;}
.top_win .details > img{width:12px;height:12px;margin-right:4px;transform:scale(1);transition:transform .15s ease-out;}
.top_win .player{font-size:12px;color:white;}
.top_win{width:100%;background-color:#2c2430;border-radius:10px;}
.top_win:hover{background-color:#382e3d;}
.top_win:hover .details > img{transform:scale(1.2);}
@media (max-width: 720px){
.wins_info_wrap{justify-content:flex-start;}
}
@media (max-width: 500px){
.wins_info{padding:unset;}
}
.main_header_bottom_header{display:flex;width:100%;}
a.game_card_play:hover{transform:scale(1.2);border-radius:40px;}
.top_win_swiper{width:100%;}
/*! CSS Used from: Embedded */
.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block;}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box;}
.swiper-wrapper{transform:translate3d(0px, 0, 0);}
.swiper-horizontal{touch-action:pan-y;}
.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block;}

/*Corusel*/
.banner_simple_container {
    display: flex;
    width: 100%;
    color: #fff;
    height: 270px;
    box-sizing: border-box;
    user-select: none;
}

.banner_simple_container.register_banner {
    background: url("");
}

.banner_simple_container.first_bonuses {
    background: url("");
}

.banner_list {
    display: flex;
    width: 100%;
}

.static_banner {
    display: flex;
    width: 100%;
    position: relative;
}

.static_banner.pointer {
    cursor: pointer;
}

.racing_banner {
    flex-direction: column;
}

.racing_banner .background_container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(0deg, rgba(67, 42, 83, 1) 0%, rgba(253, 29, 29, 1) 50%, rgb(44 35 58) 100%);
    overflow: hidden;

}

.racing_banner .levelup_background_container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(0deg, rgb(125 84 134) 0%, rgba(33, 59, 138, 1) 38%, rgba(23, 36, 77, 1) 100%);
}

.background_container_outer {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.static_banner_internal {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-left: 30px;
    z-index: 1;
}

.static_banner_internal.bonuses {
    width: unset;
}

.static_banner_internal_title {
    margin-top: 50px;
    text-transform: uppercase;
    font-size: 32px;
}


.static_banner_internal_title2 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 32px;
    display: flex;
    padding: 5px;
    font-weight: 800;
    flex-direction: column;
}

.static_banner_internal_bonus {
    margin-top: 30px;
    font-size: 22px;
}

.static_banner_internal_bonus2 {
    font-size: 22px;
    margin-top: 10px;
    font-weight: normal;
}

.static_banner_top {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    position: relative;
}

.static_banner_top_img {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 30%;
    min-width: 200px;
    justify-content: flex-end;
}

.static_banner_top_bonuses_img {
    display: flex;
    align-items: center;
    position: relative;
    top: -20px;
}

.static_banner_top_img img {
    width: 100%;
    height: auto;
    align-self: flex-end;
    max-width: 300px;

}

.static_banner_internal.bonuses .static_banner_internal_title {
    margin-top: 25px;
}

.static_banner_top_bonuses_img img {
    width: 500px;
    opacity: 0.5;
}

.static_banner_internal_register .button_red_active_small {
    width: 250px;
    margin-top: 20px;
    height: 40px;
    font-size: 20px;
}

.register_money_girl_banner .register_girl_img {
    transform: translate3d(-600px, 0px, 0px);
    transition: transform 0.5s ease;
    will-change: transform;
    width: 540px;
}

.register_money_girl_banner .register_girl_img img {
    width: 540px;
    height: auto;
    align-self: flex-end;
}


.racing_root .racing_girl_img {
    transform: translate3d(0px, 260px, 0px);
    transition: transform 0.5s ease;
    will-change: transform;
}

.racing_root .racing_cars_img {
    transform: scale(0);
    transition: transform 0.5s ease;
    will-change: scale;
}

.register_money_girl_banner .register_girl_img.activate {
    transform: translate3d(115px, 0px, 0px);
}

.racing_root .racing_girl_img.activate {
    transform: translate3d(0px, 0px, 0px);
}

.racing_root .racing_cars_img.activate {
    transform: scale(1);
}

.levelup_banner .wolf_img {
    transform: translate3d(0px, 280px, 0px);
    transition: transform 0.5s ease;
    will-change: transform;
}

.cashback_banner .cashback_img {
    transform: translate3d(45px, 280px, 0px);
    transition: transform 0.5s ease;
    will-change: transform;
}

.levelup_banner .wolf_img.activate {
    transform: translate3d(0px, 0px, 0px);
}

.cashback_banner .cashback_img.activate {
    transform: translate3d(45px, 0px, 0px);
}

.money_girl_banner .static_banner_internal {
    padding-left: 20%;
}

.register_money_girl_banner {
    overflow: hidden;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}

.register_money_girl_banner .background_container {
    background-image: url("../assets/slider/register_girl_bg-png.webp");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.cashback_banner .background_container {
    background-image: url("../assets/slider/bg-1-png.webp");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.racing_root .background_container {
    background-image: url("../assets/slider/bg-2-png.webp");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    justify-content: center;
}

.levelup_banner .background_container {
    background-image: url("../assets/slider/bg-png.webp");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.register_girl_img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.cashback_img {
    position: absolute;
    right: 20%;
    bottom: 0;
    width: 420px;
    height: 100%;
    display: flex;
}

.cashback_img img {
    align-self: flex-end;
    width: 420px;
    height: auto;
}

.register_money_girl_banner .static_banner_internal {
    position: absolute;
    width: unset;
    right: 10%;
}

.levelup_banner .wolf_img {
    position: absolute;
    right: 20%;
    bottom: 0;
    height: 100%;
    display: flex;
    width: 440px;
}

.levelup_banner .wolf_img img {
    width: 440px;
    height: auto;
    align-self: flex-end;
}

.levelup_banner .static_banner {
    flex-direction: column;
}

.cashback_banner .static_banner {
    flex-direction: column;
}

.static_banner_hourse_title {
    font-size: 50px;
}

.static_banner_hourse_bonus {
    margin-top: 10px;
    font-size: 30px;
}

@media (max-width: 1200px) {
    .static_banner_internal_title {
        margin-top: 60px;
        text-transform: uppercase;
        font-size: 28px;
    }

    .static_banner_internal_bonus {
        margin-top: 30px;
        font-size: 18px;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(-115px, 0px, 0px);
    }

    .register_money_girl_banner .static_banner_internal {
        right: 2%;
    }

    .racing_girl_img {
        width: 30%;
    }
}


@media (max-width: 1000px) {
    .static_banner_internal_title {
        margin-top: 50px;
        text-transform: uppercase;
        font-size: 24px;
    }

    .static_banner_internal_bonus {
        margin-top: 30px;
        font-size: 16px;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(-130px, 0px, 0px);
    }

    .register_money_girl_banner .static_banner_internal {
        position: absolute;
        width: unset;
        right: 2%;
    }

    .levelup_banner .wolf_img {
        right: 10%;
    }
}

@media (max-width: 800px) {
    .levelup_banner .wolf_img {
        width: 300px;
    }

    .levelup_banner .wolf_img img {
        width: 300px;
        height: auto;
    }

    .cashback_img {
        width: 300px;
    }

    .cashback_img img {
        width: 300px;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(0px, 0px, 0px);
    }

    .register_money_girl_banner .register_girl_img {
        width: 400px;
    }

    .register_money_girl_banner .register_girl_img img {
        width: 400px;
    }
}

@media (max-width: 645px) {
    .money_girl_banner .static_banner_internal_register {
        display: none;
    }

    .money_girl_banner .static_banner_internal {
        justify-content: end;
    }
}

@media (max-width: 580px) {

    .static_banner_top_bonuses_img img {
        width: 300px;
    }

    .static_banner_internal_title {
        margin-top: 30px;
        text-transform: uppercase;
        font-size: 24px;
    }

    .static_banner_internal_bonus {
        margin-top: 30px;
        font-size: 16px;
    }

    .static_banner_internal_register {
        display: none;
    }

    .static_banner_top_bonuses_img {
        position: absolute;
        left: 90px;
        top: 0;
        bottom: 0;
    }

    .static_banner_top_bonuses_img img {
        width: 300px;
        opacity: 0.3;
    }

    .money_girl_banner .static_banner_top_img img {
        width: 450px;
        height: auto;
        align-self: flex-end;
        max-width: unset;
    }

    .money_girl_banner .static_banner_top_img {
        bottom: -34px;
    }

    .static_banner_internal_title2 {
        font-size: 25px;
        background-color: #677378;
    }

    .static_banner_internal_bonus2 {
        font-size: 18px;
    }

    .money_girl_banner .static_banner_internal {
        justify-content: end;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(0px, 0px, 0px);
    }

    .levelup_banner .wolf_img {
        right: 10%;
    }
}

@media (max-width: 450px) {

    .static_banner_top_bonuses_img {
        position: absolute;
        left: 90px;
        top: 0;
        bottom: 0;
    }

    .background_container {
        border-radius: 10px;
    }

    .static_banner_top_bonuses_img img {
        width: 300px;
        opacity: 0.3;
    }

    .static_banner_internal_title {
        margin-top: 20px;
        text-transform: uppercase;
        font-size: 20px;
    }

    .static_banner_internal_bonus {
        margin-top: 30px;
        font-size: 16px;
    }

    .static_banner_top_img {
        min-width: 150px;
    }

    .static_banner_top {
        margin-left: 10px;
    }

    .static_banner_internal_title2 {
        font-size: 22px;
        background-color: #677378;
    }

    .static_banner_internal_bonus2 {
        font-size: 15px;
    }

    .money_girl_banner .static_banner_top_img img {
        width: 430px;
        height: auto;
        align-self: flex-end;
        max-width: unset;
    }

    .money_girl_banner .static_banner_top_img {
        bottom: -53px;
        left: -85px;
    }

    .money_girl_banner .static_banner_internal {
        justify-content: end;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(0px, 0px, 0px);
    }

    .levelup_banner .wolf_img {
        right: 0%;
        width: 320px;
    }

    .levelup_banner .wolf_img img {
        width: 320px;
        height: auto;
    }

    .cashback_img {
        width: 300px;
    }

    .cashback_img img {
        width: 300px;
    }

    .register_money_girl_banner .register_girl_img {
        width: 370px;

    }

    .register_money_girl_banner .register_girl_img img {
        width: 370px;
    }

    .racing_cars_img img {
        object-fit: cover !important;
    }
}

@media (max-width: 320px) {

    .money_girl_banner .static_banner_internal {
        justify-content: end;
    }

    .static_banner_internal_title2 {
        font-size: 16px;
        background-color: #677378;
    }

    .static_banner_internal_bonus2 {
        font-size: 12px;
    }

    .money_girl_banner .static_banner_top_img img {
        width: 430px;
        height: auto;
        align-self: flex-end;
        max-width: unset;
    }

    .money_girl_banner .static_banner_top_img {
        bottom: -53px;
        left: -85px;
    }

    .register_money_girl_banner .register_girl_img.activate {
        transform: translate3d(-50px, 0px, 0px);
    }

    .levelup_banner .wolf_img {
        right: 0;
    }

    .racing_cars_img img {
        object-fit: cover !important;
    }
}

.static_banner_hourse_bonus {
    margin-top: 10px;
    font-size: 30px;
}

.banner_footer {
    display: none;
}

@media (max-width: 500px) {
    .first_bonuses {
        height: 240px !important;
    }

    .static_banner_top {
        display: none;
    }

    .banner_footer {
        display: flex;
    }

    .background_container_outer {
        padding: 0 10px;
    }

    .levelup_background_container {
        border-radius: 10px;
    }

    .racing_root .background_container {
    }

    .racing_root .levelup_background_container {
    }

    .hourses_img {
        height: unset;
    }
}

@media (max-width: 800px) {
    
    #carousel {
        padding-top:10px;
    }

    .static_banner_top {
        display: none;
    }

    .banner_footer {
        display: flex;
    }

    .racing_root .background_container {
    }
}

.cashback_title {
    font-size: 50px !important;
}

.cashback_text {
    font-size: 20px !important;
}

.banner_footer {
    width: 100%;
    justify-content: center;
}

.banner_footer_wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.levelup_text_wrap .levelup_banner_bottom_text {
    font-size: 40px;
    font-weight: 800;
}

.levelup_banner_top_text {
    font-size: 24px;
}

.levelup_banner_bottom_text {
    margin-top: 10px;
}

.levelup_banner_footer_wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
}



.footer_banner_title {
    font-size: 18px;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer_banner_bonus {
    color: #ee98ff;
}

.button_red_active_small {
    background-color: #a940be;
    height: 30px;
    font-weight: bold;
    box-shadow: 0 3px 0 0 #7d318d, 0 4px 4px 0 #000;
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
}

.button_green_active_small {
    height: 30px;
    font-weight: bold;
    box-shadow: 0 3px 0 0 #3c7028, 0 4px 4px 0 #000;
    background-color: #53b12f;
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.6));
    -webkit-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.6));
}

/*Отзывы*/
.main_tabs_listitem_text{overflow:hidden;text-overflow:ellipsis;display:inline-block;box-sizing:border-box;max-height:100%;max-width:100%;font-weight:900;text-transform:uppercase;font-size:14px;}
.q-question{padding:1rem 0;}
.icon-star{height:20px;margin-bottom:0px;position:relative;margin-right:4px;top:5px;margin-top:0;width:20px;display: inline-block;}
.q-question-block{border:2px solid var(--default-color);border-radius:1rem;margin-bottom:1rem; padding:10px;}
.q-question{padding:10px 5px;font-weight:bold;}
.q-answer{padding:10px 5px;}

/*БАНЕР*/
.home-baner {
	position: relative;
	padding-top: 5rem;
    padding-bottom: 5rem;
	margin-bottom: 30px;
}

.home-baner__imgwrap {
	z-index: 0;
	inset: 0;
	position: absolute;
}

.home-baner__img {
	opacity: .6;
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
    vertical-align: middle;
	border-radius: 5px;
}

.home-baner__text {
	max-width: 1390px;
	padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
    position: relative;
}

.home-baner__textwrap {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
    margin-right: auto;
}

.home-baner__title {
    font-size: 3.75rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.home-baner__desc {
	font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    color:rgb(209 213 219);
}

.home-baner__btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.home-baner__btn-main {
	color:#fff;
	font-weight: 700;
	font-size: 1.125rem;
    line-height: 1.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: .5rem;
    background-image: linear-gradient(to right, #facc15, #f97316);
}

.home-baner__btn-blank {
	color:#fff;
	font-weight: 600;
	padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: .5rem;
    border: 2px solid #fff;
}

.home-baner__btn-main:hover {
	background-image: linear-gradient(to right, #fbc900, #ff6800);
    transition: background-image 0.3s ease; /* Плавный переход */
}

.home-baner__btn-blank:hover {
	background-color: #ffffff1a;
}
/*HOME PANEL*/
.space-content-section img{border-radius:5px;}
.space-page-content img{border-radius:5px!important;}
.space-page-content p{padding-bottom:1.45em;}
.space-page-content p:last-child{padding-bottom:0;}
.space-page-content h3{margin:10px 0;}
.custom-panel{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;border-radius:10px; margin-bottom:30px;}
.panel-item{background:#252525;padding:12px 20px;border-radius:10px;text-align:left;width:calc(25% - 15px);height:80px;display:flex;align-items:center;gap:10px;}
.panel-item .panel-text{display:flex;flex-direction:column;justify-content:center;}
.panel-item h3{margin:0;color:#fff;font-size:16px;}
.panel-item p{margin:3px 0 0;color:#aaa;font-size:12px;}
@media (max-width:768px){
.custom-panel{flex-direction:column;align-items:center;}
.panel-item{width:100%;height:auto;padding:15px;}
.panel-item img{max-width:50px;}
.panel-item h3{font-size:18px;}
.panel-item p{font-size:14px;}}
