* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif
}

h1,
h2,
h3,
h5,
.title,
.logo {
    font-family: "Montserrat", sans-serif
}

a {
    text-decoration: none
}

.flex {
    display: flex
}

.f-al-center {
    align-items: center
}

.f-jc-between {
    justify-content: space-between
}

.f-jc-center {
    justify-content: center
}

.f-gap-12 {
    gap: 12px
}

.f-gap-24 {
    gap: 24px
}

.f-wrap {
    flex-wrap: wrap
}

.f-jc-end {
    justify-content: flex-end
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: bolder;
    transition: .3s opacity;
    border: none;
    width: 100%;
    max-width: 180px;
    cursor: pointer;
    white-space: nowrap
}

.btn:hover {
    opacity: .75
}

.section {
    padding: 24px
}

.page__section {
    padding: 64px 24px 0 24px
}

aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    max-width: 220px;
    height: 100vh;
    padding: 100px 0 0 0
}

.logo,
.custom-logo-link {
    height: 100px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    padding: 19px 0;
    width: 100%;
    max-width: 240px;
    font-size: 18px;
    z-index: 200;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.logo img,
.custom-logo-link img {
    object-fit: contain;
    width: 100%;
    height: 100%
}

.current__lang {
    cursor: pointer
}

.langs_dropped {
    position: absolute;
    top: 100%;
    padding: 12px;
    right: -9999px;
    transition: .3s right
}

.langs_dropped a img {
    width: 16px;
    height: 16px;
    object-fit: contain
}

.langs_dropped_active {
    right: 0
}

.menu {
    list-style: none
}

.menu a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s opacity
}

.menu a:hover {
    opacity: .75
}

.menu .current-menu-item a {
    opacity: .75
}

.tags-flex {
    position: relative
}

.tags {
    margin-bottom: 18px
}

.dropped-providers {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 24px;
    border-radius: 12px;
    z-index: 500;
    display: none
}

.dropped-providers_active {
    display: flex
}

.single__provider {
    width: 100%;
    font-size: 12px;
    max-width: 120px
}

.main {
    width: 100%;
    padding-left: 222px
}

.header {
    padding: 12px;
    width: 100%;
    padding-left: 240px;
    position: fixed;
    top: 0;
    z-index: 155;
    left: 0
}

.header__search {
    background: rgba(34, 34, 34, .6901960784);
    padding: 12px 24px;
    border-radius: 12px
}

.swiperTopParalax {
    width: 100%;
    height: 560px
}

.swiperTopParalax .swiper-slide {
    position: relative
}

.swiperTopParalax .swiper-slide .caption {
    width: 100%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%)
}

.swiperTopParalax .swiper-slide .title {
    font-size: 24px;
    font-family: "Roboto", sans-serif
}

.swiperTopParalax .swiper-slide .subtitle {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bolder;
    font-family: "Montserrat", sans-serif
}

.swiperTopParalax .swiper-slide p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px
}

.tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase
}

.dropdown {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px
}

.section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: bolder;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 24px 0
}

.section__description {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
    font-size: 14px
}

.big-section__title {
    font-size: 24px
}

.archive__games {
    margin: 24px 0
}

.looped__game {
    width: 100%;
    max-width: calc(12.5% - 12px);
    height: 180px;
    border-radius: 12px;
    position: relative
}

.looped__game:hover .game__overlay {
    opacity: .75
}

.looped__game:hover .game__caption {
    opacity: 1
}

.label {
    position: absolute;
    top: 3%;
    right: 3%;
    padding: 6px 12px;
    border-radius: 12px 0 12px 0;
    font-size: 12px;
    font-weight: bolder
}

.game__overlay {
    position: absolute;
    border-radius: 12px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s opacity
}

.game__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: .3s opacity
}

.game__caption .title {
    font-weight: bolder;
    font-size: 12px;
    margin-bottom: 12px;
    color: #fff
}

.game__caption .demo {
    display: block;
    margin: 12px 0 0 0;
    font-size: 12px;
    color: #bababa
}

.bonus__grid {
    width: 100%;
    max-width: calc(50% - 12px);
    padding: 42px 24px;
    border-radius: 12px;
    background-position: center;
    color: #fff
}

.bonus__grid p {
    margin: 0 0 12px 0
}

.bonus__grid.full {
    width: 100%;
    max-width: 100%
}

.cs__like {
    max-width: calc(33.3333333333% - 12px)
}

.cs__like img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 240px
}

.cs__like p {
    line-height: 1.5;
    font-size: 14px
}

.see__all {
    font-size: 12px;
    padding: 6px 12px;
    max-width: 100px
}

.big-section {
    padding: 48px 24px
}

.mystery img {
    width: 100%;
    max-width: 50%;
    border-radius: 12px;
    object-fit: cover;
    height: 300px
}

.mystery__caption {
    width: 100%;
    padding: 0 48px;
    max-width: 550px
}

.entry-content {
    text-align: justify
}

.entry-content .faq-items {
    display: block
}

.entry-content .faq-items .drop-top {
    padding: .5rem;
    cursor: pointer;
    border: 1px solid #efefef;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.entry-content .faq-items .drop-top:after {
    content: "";
    background: url(images/down.svg) no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain
}

.entry-content .faq-items .drop-top p {
    margin-bottom: 0
}

.entry-content .faq-items .drop-content {
    padding: .5rem;
    font-size: .875rem;
    line-height: 1.5;
    display: none
}

.entry-content .faq-items .drop-content__active {
    display: block
}

.entry-content .faq-items .drop-top__active {
    background: #fff;
    color: #222
}

.entry-content .faq-items .drop-top__active a {
    color: #222
}

.entry-content a {
    color: #fff
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    margin-bottom: 18px
}

.entry-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 18px
}

.entry-content ul,
.entry-content ol {
    padding: 0 0 0 1rem;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    opacity: .85
}

.entry-content li {
    font-size: 16px;
    line-height: 2
}

.entry-content img {
    border-radius: 12px
}

.entry-content .alignleft {
    float: left;
    margin: 1rem 1rem 1rem 0
}

.entry-content .alignright {
    float: right;
    margin: 1rem 0 1rem 1rem
}

.slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #222;
    opacity: .55;
    width: 100%;
    height: 100%
}

.bonusSwiper .swiper-slide {
    position: relative;
    height: 450px;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.bonusSwiper .swiper-slide p {
    font-size: 14px;
    margin: 0 0 24px 0;
    line-height: 1.5
}

.slider__bonus_pic {
    width: 100%;
    max-width: 227px;
    height: 100%;
    max-height: 380px;
    object-fit: contain;
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0
}

.upper {
    font-size: 14px
}

.bonus-title {
    font-weight: bolder;
    font-size: 32px;
    margin: 24px 0;
    text-transform: uppercase;
    width: 100%;
    max-width: 320px;
    font-weight: bolder;
    font-family: "Montserrat", sans-serif
}

.support-form {
    display: flex;
    flex-direction: column
}

.form__input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    margin: 12px 0
}

.form__checker {
    display: none
}

.section-subtitle {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    text-align: center
}

.container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto
}

.provs .swiper-slide,
.payments .swiper-slide {
    padding: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px
}

.provs .swiper-slide img,
.payments .swiper-slide img {
    object-fit: contain;
    width: 122px;
    height: 45px
}

.payments .swiper-slide img {
    width: 60px;
    height: 32px
}

.preloader {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.frame__heading {
    font-size: 16px;
    padding: 12px
}

.game-h1 {
    font-size: 16px;
    font-family: "Montserrat", sans-serif
}

.single__frame {
    width: 100%;
    height: 460px;
    position: relative;
    background: #000;
    border-radius: 12px
}

.single__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    object-fit: cover
}

.copyright {
    width: 100%;
    max-width: 320px
}

.text p {
    font-size: 10px;
    line-height: 1.5;
    margin: 0 0 6px 0
}

.menu-title {
    font-weight: bolder;
    font-family: "Montserrat", sans-serif;
    display: block;
    margin-bottom: 12px
}

.menu-row {
    width: 100%;
    max-width: 600px
}

.footer__menu-item {
    width: 100%;
    max-width: 360px
}

.footer__menu-item ul {
    list-style: none
}

.footer__menu-item a {
    font-size: 14px;
    line-height: 1.5;
    display: block
}

.lang img {
    border-radius: 12px;
    display: block
}

.button-85 {
    padding: .6em 2em;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation
}

.button-85:before {
    content: "";
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 12px
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0
    }
    50% {
        background-position: 400% 0
    }
    100% {
        background-position: 0 0
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 12px
}

.all_com_pr span:before {
    color: #fb9c30
}

.com_block_star {
    margin: 10px 0
}

.comments-rating {
    border: none;
    padding: 0;
    margin-left: 0
}

.comments-rating label {
    display: inline-block;
    font-size: 14px
}

.com_block_star label {
    font-size: 14px
}

.rating-container {
    font-size: 0;
    unicode-bidi: bidi-override;
    direction: rtl
}

.rating-container * {
    font-size: 1.4rem
}

.rating-container>input {
    display: none
}

.rating-container>input+label {
    font-family: "dashicons";
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 1em;
    white-space: nowrap;
    cursor: pointer;
    margin: 0
}

.rating-container>input+label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "";
    color: #888
}

.rating-container>input:checked~label:before,
.rating-container>input+label:hover~label:before,
.rating-container>input+label:hover:before {
    content: "";
    color: #fb9c30;
    text-shadow: 0 0 1px #888
}

.rating-container>.star-cb-clear+label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -0.5em
}

.rating-container>.star-cb-clear+label:before {
    width: .5em
}

.rating-container:hover>input+label:before {
    content: "";
    color: #888;
    text-shadow: none
}

.rating-container:hover>input+label:hover~label:before,
.rating-container:hover>input+label:hover:before {
    content: "";
    color: #fb9c30;
    text-shadow: 0 0 1px #888
}

.comment-respond {
    margin: 1.5rem 0 0 0
}

.comment-respond h3 {
    margin-bottom: .75rem
}

.comments-area .comment-form .comment-form-author label,
.comments-area .comment-form .comment-form-email label,
.comments-area .comment-form .comment-form-comment label {
    display: block;
    margin-bottom: .5rem
}

.comments-area .comment-form input,
.comments-area .comment-form textarea {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #efefef
}

.comments-area .comment-form input::placeholder,
.comments-area .comment-form textarea::placeholder {
    color: rgba(255, 255, 255, .4)
}

.comments-area .comment-form textarea {
    width: 50%;
    height: 100px
}

.comments-area .comment-form input {
    width: 50%
}

.comments-area .comment-form .submit {
    background: #ff8159;
    background-color: #fff;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    padding: .75rem;
    cursor: pointer
}

.comments-area .comment-notes {
    display: none
}

.comments-area .comment-list {
    list-style: none;
    padding: 0
}

.comments-area .comment-list li {
    padding: .5rem;
    margin-bottom: .5rem
}

.comments-area .comment-list li time {
    display: none
}

.comments-area .comment-list li p {
    margin: 1rem 0;
    font-size: 14px;
    line-height: 22px
}

.commentmetadata {
    display: none
}

.reply {
    display: none
}

.comment-form-email {
    display: none
}

#reply-title {
    color: #fff;
    font-weight: bolder;
    font-size: 18px;
    display: block;
    margin-bottom: 12px
}

.required-field-message {
    color: #efefef
}

.button-85 {
    color: #fff !important
}

.logo,
.custom-logo-link {
    display: block
}

.logo,
.custom-logo-link img {
    object-fit: contain;
    object-fit-width: 100%;
    object-fit-height: 100px
}

.bonuses-flex {
    margin-right: -10px;
    gap: 10px
}

.bonuses-flex .swiper-slide {
    max-width: calc(25% - 10px);
    padding: 1rem;
    border-radius: .5rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center
}

.bonuses-flex .swiper-slide::after {
    content: "";
    background: #222;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2
}

.bonuses-flex .swiper-slide a {
    margin: 0 auto
}

.bonuses-flex .bonus-title {
    height: 100px;
    font-size: 1.5rem
}

.bonuses-flex .swiper-slide div,
.bonuses-flex .swiper-slide a,
.bonuses-flex .swiper-slide p {
    position: relative;
    z-index: 5;
    margin: 0 auto
}

.bonuses-flex .swiper-slide p {
    height: 30px
}

.bonuses-flex .btn {
    background: #fff !important
}

.slider__bonus_pic {
    z-index: 1;
    max-width: 400px;
    object-fit: cover;
    opacity: .85;
    height: 400px;
    top: 0;
    left: 0;
    transform: translate(0)
}

.error-404 {
    position: relative;
    height: 80vh
}

.error-404__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.error-404__code {
    font-size: 6rem;
    font-weight: bolder
}

.error-404__description {
    font-size: 2rem;
    font-weight: normal;
    margin: 1.5rem 0
}

@media(max-width: 1280px) {
    .bonuses-flex .swiper-slide {
        max-width: calc(33.3333333333% - 10px)
    }
}

@media(max-width: 1024px) {
    .bonuses-flex .swiper-slide {
        max-width: calc(50% - 10px)
    }
}

@media(max-width: 600px) {
    .bonuses-flex .swiper-slide {
        max-width: 100%
    }
}

@media(max-width: 1610px) {
    .looped__game {
        max-width: calc(14.2857142857% - 12px)
    }
}

@media(max-width: 1440px) {
    .cs__like {
        max-width: calc(50% - 12px)
    }
    .looped__game {
        max-width: calc(16.6666666667% - 12px)
    }
}

@media(max-width: 1240px) {
    .looped__game {
        max-width: calc(25% - 12px)
    }
}

@media(max-width: 1100px) {
    .entry-content .alignleft,
    .entry-content .alignright {
        width: 100%;
        margin: 1rem auto;
        float: none;
        text-align: center
    }
    .tags-container {
        flex-wrap: wrap
    }
    .tag {
        font-size: 12px;
        white-space: nowrap
    }
    .mySwiper {
        height: 420px
    }
    .swiperTopParalax .swiper-slide .subtitle {
        font-size: 36px;
        line-height: 1.3
    }
    .bonus__grid {
        max-width: 100%
    }
}

@media(max-width: 900px) {
    .looped__game {
        max-width: 48%;
        height: 150px
    }
}

@media(max-width: 760px) {
    aside {
        left: -9999px
    }
    .main {
        padding-left: 0;
        overflow-x: hidden
    }
    .header {
        padding-left: 0
    }
    .swiperTopParalax .swiper-slide p {
        font-size: 12px;
        margin: 12px 0
    }
    .swiperTopParalax .swiper-slide .caption {
        max-width: 280px
    }
    .swiperTopParalax .swiper-slide .subtitle {
        font-size: 22px;
        line-height: 1.3
    }
    .tags-flex {
        flex-wrap: wrap
    }
    .tags-container {
        width: 100%;
        max-width: 100%
    }
    .providers {
        margin: 24px 0 0 0;
        width: 100%
    }
    .dropdown {
        justify-content: center
    }
    .mystery-flex {
        flex-wrap: wrap
    }
    .mystery img {
        width: 100%;
        max-width: 100%
    }
    .mystery .caption {
        max-width: 100%
    }
    .container {
        max-width: 100%
    }
    .footer-flex {
        flex-direction: column-reverse
    }
    .menu-item {
        width: 100%;
        max-width: 100%
    }
    .menu-title {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #fff;
        padding: 6px
    }
    .menu-row {
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 24px
    }
}

.upper,
.bonus-title {
    color: #fcb52c;
}

.see__all {
    max-width: 140px;
    padding: 15px 20px;
}

.entry-content table img {
    max-width: 80px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.entry-content table {
    border-collapse: collapse;
    margin-bottom: 15px;
}

.entry-content table,
th,
td {
    border: solid 1px white;
    padding: 10px;
}