
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    padding-bottom: initial;
    line-height: 1.6;
    word-wrap: break-word;
    cursor: default;
    background-color: #131313;
    color: #ffffffb3;
}

body .basaribet-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

body container-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

body .container-outer {
    margin: 50px auto;
    -webkit-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.17);
    -moz-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.17);
    box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.17);
}

@media screen and (max-width: 900px) {
    body .container-outer {
        margin: 0 auto;
        position: relative;
        display: inline-block;
    }
}

body .basaribet-wrapper {
    padding: 25px 50px 50px;
    background: #131313;
}

@media screen and (max-width: 900px) {
    body .basaribet-wrapper {
        padding: 20px;
    }
}

.header {
    background: #000;
}

.header .top-banner {
    width: initial;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .top-banner a {
    display: block;
    width: 100%;
    line-height: 0;
    height: 100%;
}

.header .top-banner img {
    width: 100%;
    height: initial;
}

.basaribet-top_line {
    background: #000000;
    padding: 18px 0;
    font-size: 14px;
}

.basaribet-top_line .text-logo {
    color: white;
    font-size: 20px;
}

@media (max-width: 1110px) {
    .basaribet-top_line .header-logo {
        padding: 0 15px;
    }
}

.basaribet-top_line .header-logo img {
    width: initial;
    max-height: 50px;
    min-width: auto;
    min-height: 50px;
}

@media (max-width: 900px) {
    .basaribet-top_line {
        padding: 18px 20px;
    }
}

.basaribet-top_line .basaribet-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.basaribet-top_line .basaribet-container .item {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .basaribet-top_line .basaribet-container {
        justify-content: center;
        flex-direction: column;
    }

    .basaribet-top_line .basaribet-container .item {
        flex-direction: column;
    }
}

.basaribet-top_line .login, .basaribet-top_line .reg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: 0.2s;
    padding: 10px 40px;
    border-radius: 50px;
}

.basaribet-top_line .btns {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .basaribet-top_line .btns {
        flex-direction: column;
    }

    .basaribet-top_line .btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        transition: 0.2s;
        padding: 10px 20px;
        width: 210px;
    }
}

.basaribet-top_line .btns a:nth-child(2) {
    margin-left: 30px;
}

@media screen and (max-width: 767px) {
    .basaribet-top_line .btns a:nth-child(2) {
        margin-left: 0;
    }
}

.basaribet-top_line .btns .login {
    padding: 10px 40px;
    border: 2px solid #FF2D2D;
    background: transparent;
}

@media (max-width: 767px) {
    .basaribet-top_line .btns .login {
        padding: 10px 20px;
    }
}

.basaribet-top_line .btns .login:hover {
    opacity: .7;
}

@media (max-width: 767px) {
    .basaribet-top_line .btns .login {
        margin: 15px 0;
    }
}

.basaribet-top_line .btns .reg {
    border: 2px solid #a61212;
    background: #a61212;
}

.basaribet-top_line .btns .reg:hover {
    opacity: .7;
}

@media (max-width: 767px) {
    .basaribet-top_line .btns .reg {
        background: #a61212;
    }
}

.burger {
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 25px;
    line-height: 18px;
    font-size: 0;
    position: relative;
    outline: 0;
    margin: 15px auto;
}

@media screen and (max-width: 767px) {
    .burger {
        display: block;
        margin: 10px auto 15px;
    }

    .burger.active_line {
        display: none;
    }

    .burger.active:before {
        top: 50%;
        transform-origin: center center;
        transform: rotate(-45deg);
        display: block;
    }

    .burger.active:after {
        top: 50%;
        transform-origin: center center;
        transform: rotate(45deg);
        display: block;
    }

    .burger.active .burger_line {
        display: none;
    }
}

.burger:before, .burger:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.burger:before {
    top: 0;
}

.burger:after {
    bottom: 0;
}

.burger:before, .burger:after, .burger_line {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 1px;
    transition: all .2s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffffb3;
}

h1 {
    margin-bottom: 1.25rem;
    font-size: 32px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    text-decoration: none;
}

em {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    font-style: italic;
}

strong {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    font-weight: bold;
}

b {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    font-weight: bold;
}

ol {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

footer {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    display: block;
}

menu {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    display: block;
}

nav {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    display: block;
}

.cover-table table {
    background: #131313;
    color: #ffffffb3;
}

.cover-table table td, .cover-table table th {
    background: #131313;
    border-bottom: 1px solid #999;
}

.main-nav {
    background: #000;
    font-size: 14px;
}

.main-nav li a {
    color: #fff;
}

.main-nav li a:hover {
    color: #ff0000;
}

.main-nav .menu > .current-menu-item span {
    color: #ff0000;
}

.main-nav {
    display: flex;
    text-transform: uppercase;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: .3s;
}

.footer_menu {
    justify-content: center;
    margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
    .main-nav .menu {
        display: none;
    }

    .main-nav .menu.active {
        display: block;
    }
}

.main-nav li {
    -webkit-transition: 0.25s ease-out;
    -moz-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
    position: relative;
    font-weight: 700;
}

.main-nav li a, .main-nav li span {
    display: block;
    padding: 10px 50px;
}

.main-nav li a {
    transition: .3s;
}

.main-nav li:first-child a {
    border: none;
}

.main-nav ul li:hover > ul {
    display: block;
    background: #2a2a2a;
    z-index: 9999;
}

.main-nav ul ul {
    display: none;
    position: absolute;
}

.main-nav ul ul li {
    width: 100%;
    min-width: 16em;
}

.main-nav ul ul ul {
    left: 100%;
    top: 0;
}

.breadcrumbs .limiter {
    color: #ff0000;
}

.breadcrumbs li {
    display: inline;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumbs li span span {
    color: #ff0000;
    opacity: .8;
}

.breadcrumbs li a {
    color: #ff0000;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs .limiter {
    padding: 0 7px 0 5px;
}

.basaribet-entry-content p, .basaribet-entry-content a, .basaribet-entry-content span, .basaribet-entry-content em, .basaribet-entry-content b, .basaribet-entry-content i, .basaribet-entry-content ul, .basaribet-entry-content ol, .basaribet-entry-content li, .basaribet-entry-content blockquote, .basaribet-entry-content table {
    font-size: 14px;
}

.basaribet-entry-content a {
    color: #ff0000;
}

.basaribet-entry-content a:hover {
    color: #ff0000;
}

.basaribet-copyright-wrap {
    background: #000;
    padding: 20px;
}

.basaribet-copyright {
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.basaribet-copyright a {
    color: #ff0000;
}

.footer_mobile-btn {
    background-color: #000;
}

@media (max-width: 767px) {
    .footer_mobile-btn {
        background-color: #000;
    }
}

.footer_mobile-btn .download-text {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    margin-left: 9px;
}

.footer_mobile-btn .gradient-box {
    position: relative;
    margin: 20px 10px;
    border-radius: 6px;
    text-align: center;
    padding: 10px 20px 11px;
    display: flex;
    background: #000;
}

@media (max-width: 767px) {
    .footer_mobile-btn .gradient-box {
        margin: 10px 10px;
        width: 210px;
        justify-content: center;
    }
}

.footer_mobile-btn .gradient-box:before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(180deg, #F4988F, #A155F5);
    border-radius: 6px;
    z-index: -1;
    transition: all .3s;
}

.footer_mobile-btn .gradient-box:hover {
    opacity: .8;
}

.footer_mobile-btn .gradient-box:hover:before {
    transition: all .3s;
    background: linear-gradient(180deg, #F4988F, #A155F5);
}

.faq-container .faq-container-btn {
    background: #efefef;
}

.faq-container .faq-container-btn .faq-container-content {
    background: #f5f5f5;
}

#toTop {
    background: #efefef;
}

#toTop.top {
    opacity: 0;
}

#toTop.top.show {
    opacity: 1;
}

#toTop:before {
    color: #000;
}

.post-loop .image-block {
    background-color: #131313;
}

.post-loop .image-block .ref-btn a {
    background-color: #131313;
    color: #ff0000;
}

.post-loop .link {
    color: #ff0000;
}

.post-loop .link:hover {
    color: #ff0000;
}

a.shortcode-btn {
    padding: 15px 10px;
    font-size: 18px;
    background: #a61212;
    color: #ffffff;
}

a.shortcode-btn:hover {
    color: #ffffff;
}

.iframe__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 700;
    padding: 10px 30px;
    min-width: 220px;
    border-radius: 8px;
    border: none;
    background-color: #FF2D2D;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    transition: background-color 0.2s;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.iframe__btn:hover {
    transition: all 0.3s;
    opacity: .8;
}

a.iframe-btn {
    padding: 15px 10px;
    font-size: 14px;
    background: #FF2D2D;
    color: #fff;
}

a.iframe-btn:hover {
    color: #fff;
}

ul.subdir-lang-switcher li {
    font-size: 14px;
    color: #fff;
}

.post-loop .item.image-block .post-title, .post-loop .item.image-block .ref-btn a, .post-loop .item.link-block a {
    font-size: 14px;
}

body .page-404 {
    min-height: 220px;
}

body .casino-card {
    background-color: #fff;
    border-radius: 0;
    outline: 0 solid transparent;
}

body .casino-card__info-name {
    color: #000;
    font-size: 18px;
}

body .casino-card__info-desc {
    color: #000;
    font-size: 14px;
}

body .casino-card__features-name {
    color: #000;
    font-size: 16px;
}

body .casino-card__features-desc {
    color: #000;
    font-size: 14px;
}

body .casino-card__features-card {
    background-color: #bfbfbf;
    box-shadow: 0 6px 30px rgba(191, 191, 191, 1.4);
}

body .casino-card__features-card:hover {
    box-shadow: 0 6px 30px rgba(191, 191, 191, .4);
}

body .casino-card__payments-title {
    font-size: 16px;
    color: #000;
}

body a.casino-card__features-card_btn {
    color: #fff;
    background-color: #FF2D2D;
    font-size: 14px;
}

body a.casino-card__features-card_btn:hover {
    color: #fff;
}

body .casino-card__features-card_desc, body .the_content p.casino-card__features-card_desc {
    color: #fff;
    font-size: 16px;
}

body .casino-card__features-card_bonus, body .the_content p.casino-card__features-card_bonus {
    color: #fff;
    font-size: 52px;
}

body .casino-card__features-card_welcome, body .the_content p.casino-card__features-card_welcome {
    font-size: 22px;
    color: #fff;
}

body .casino-card hr {
    background: #eee;
}

  .cover-table {
    margin: 0 0 30px;
    max-width: 100%;
    overflow-x: auto
}

.cover-table table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%
}

.cover-table table td, .cover-table table th {
    padding: 13px 20px;
    text-align: left
}

@media screen and (max-width: 767px) {
    .cover-table table td, .cover-table table th {
        padding: 10px 15px
    }
}

.cover-table table td:first-child, .cover-table table th:first-child {
    border-radius: 2px 0 0 2px;
    font-weight: 700;
    padding: 13px 20px 13px 40px
}

@media screen and (max-width: 767px) {
    .cover-table table td:first-child, .cover-table table th:first-child {
        font-weight: 400
    }
}

.cover-table table td:last-child, .cover-table table th:last-child {
    border-radius: 0 2px 2px 0;
    padding: 13px 40px 13px 20px
}

.cover-table table th {
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .cover-table {
        overflow-x: scroll
    }
}

.basaribet-entry-content ul {
    list-style: square;
    margin: 0 0 20px 40px
}

.basaribet-entry-content ul ul {
    margin: 0 0 0 40px
}

.basaribet-entry-content ol {
    list-style: decimal;
    margin: 0 0 20px 40px
}

.basaribet-entry-content ol ol {
    margin: 0 0 0 40px
}

.basaribet-entry-content li {
    margin-bottom: 5px
}

.basaribet-entry-content h1, .basaribet-entry-content h2, .basaribet-entry-content h3, .basaribet-entry-content h4, .basaribet-entry-content h5, .basaribet-entry-content h6, .basaribet-entry-content p {
    margin-bottom: 20px
}

.basaribet-entry-content a {
    font-weight: 600;
    transition: .5s
}

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

.basaribet-entry-content .alignnone {
    display: block;
    margin: 1.25rem 0
}

.basaribet-entry-content .aligncenter {
    display: block;
    margin: 1.25rem auto
}

.basaribet-entry-content .alignleft {
    display: inline;
    float: left;
    margin: .3125rem 1.25rem 1.25rem 0
}

.basaribet-entry-content .alignright {
    display: inline;
    float: right;
    margin: .3125rem 0 1.25rem 1.25rem
}

.basaribet-entry-content img {
    display: block;
    height: auto;
    max-width: 100%
}

.footer_mobile-btn {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 9999
}

@media (max-width: 767px) {
    .footer_mobile-btn {
        flex-direction: column;
        padding: 10px 0
    }
}

.basaribet-copyright {
    text-align: center
}

.basaribet-copyright a:hover {
    opacity: .5;
    transition: all .3s
}

.breadcrumbs-box {
    margin-bottom: 10px
}

@media screen and (max-width: 1475px) {
    .basaribet-container, .container-inner {
        width: 100%
    }
}

@media screen and (max-width: 1120px) {
    .main-nav li a, .main-nav li span {
        padding: 10px 30px
    }
}

@media screen and (max-width: 767px) {
    .top-banner {
        display: none;
        float: none;
        margin: 0;
        width: 100%
    }

    footer .main-nav .menu {
        display: block
    }

    .main-nav {
        display: flex
    }

    .main-nav .menu {
        display: none
    }
}

@media screen and (max-width: 620px) {
    .basaribet-entry-content ul {
        margin: 0 0 20px 20px
    }

    .basaribet-entry-content ul ul {
        margin: 0 0 0 20px
    }

    .basaribet-entry-content ol {
        margin: 0 0 20px 20px
    }

    .basaribet-entry-content ol ol {
        margin: 0 0 0 20px
    }
}

.footer_logos, .footer_pays {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 30px;
    max-width: 895px
}

.footer_logos .item-footer_pay, .footer_logos .item_logo, .footer_pays .item-footer_pay, .footer_pays .item_logo {
    margin: 0 10px
}

.footer_logos .item-footer_pay img, .footer_logos .item_logo img, .footer_pays .item-footer_pay img, .footer_pays .item_logo img {
    height: auto;
    margin-bottom: 10px;
    max-width: 120px;
    width: auto
}

.footer_menu {
    background: transparent
}

@media screen and (max-width: 767px) {
    .footer_menu {
        justify-content: center
    }
}

footer.default {
    padding-bottom: 0
}

footer.download-line {
    padding-bottom: 75px
}

@media screen and (max-width: 767px) {
    footer.download-line {
        padding-bottom: 140px
    }
}

h2.faq {
    margin-top: 50px;
    padding-bottom: 0
}

h2.comments {
    margin-top: 0
}

.faq-container {
    margin: 40px auto 0;
    max-width: 1160px;
    order: 4;
    position: relative;
    width: 100%
}

.faq-container-btn {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
    line-height: 1.4;
    margin-bottom: 10px;
    padding: 0
}

.faq-container-btn:last-child {
    margin-bottom: 0
}

.faq-container-btn h3 {
    display: block;
    margin: 6px 0;
    padding: 0 50px 0 15px;
    pointer-events: none;
    position: relative;
    width: 100%
}

.faq-container-btn h3:after {
    border-style: solid;
    border-width: .1em .1em 0 0;
    content: "";
    display: block;
    height: 10px;
    left: auto;
    position: absolute;
    right: 15px;
    top: 10px;
    transform: rotate(135deg);
    transition: all .3s;
    vertical-align: top;
    width: 10px
}

.faq-container-btn.show {
    padding-bottom: 0
}

.faq-container-btn.show h3:after {
    top: 15px;
    transform: rotate(-45deg);
    transition: all .3s
}

.faq-container-btn.show .faq-container-content {
    border-radius: 0 0 5px 5px;
    display: block;
    max-height: 9999px;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.5, 0, 1, 0);
    width: 100%
}

.faq-container-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .8s cubic-bezier(0, 1, 0, 1) -.1s;
    width: 100%
}

.faq-container-content .text {
    padding: 20px 15px
}

#toTop {
    background-size: contain;
    bottom: 160px;
    cursor: pointer;
    height: 35px;
    opacity: 0;
    position: fixed;
    right: 50px;
    transition: all .3s;
    width: 35px;
    z-index: 100
}

#toTop:before {
    border-style: solid;
    border-width: .15em .15em 0 0;
    content: "";
    display: inline-block;
    height: .8em;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -30%) rotate(-45deg);
    vertical-align: top;
    width: .8em
}

@media (max-width: 768px) {
    #toTop {
        right: 20px
    }
}

#toTop.show {
    display: block;
    margin-top: -80px;
    opacity: .7;
    transition: all .3s
}

#toTop.show:hover {
    opacity: 1;
    transition: all .3s
}

.post-loop {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 35px 0
}

@media screen and (max-width: 1080px) {
    .post-loop {
        justify-content: center
    }
}

.post-loop .item.image-block {
    border-radius: 6px;
    display: block;
    margin: 0 15px 15px;
    overflow: hidden;
    position: relative;
    width: 215px
}

.post-loop .item.image-block .post-img {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 215px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.post-loop .item.image-block .post-img img {
    display: block;
    height: auto;
    max-width: none;
    min-width: 215px;
    width: 100%
}

.post-loop .item.image-block .post-img.stub img {
    height: auto;
    margin: 0 auto;
    min-width: auto;
    padding: 10px;
    width: 60%
}

.post-loop .item.image-block.shadow .post-img:before {
    background: rgba(0, 0, 0, .7);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 100%;
    z-index: 1
}

.post-loop .item.image-block .post-title {
    box-sizing: border-box;
    display: block;
    font-weight: 900;
    line-height: 1;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    z-index: 10
}

.post-loop .item.image-block .ref-btn {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 10
}

.post-loop .item.image-block .ref-btn a {
    border-radius: 6px;
    display: block;
    line-height: 1;
    opacity: 1;
    padding: 10px;
    transition: all .3s
}

.post-loop .item.image-block .ref-btn:hover a {
    opacity: .7;
    transition: all .3s
}

.post-loop .item.image-block:hover {
    transition: all .3s
}

.post-loop .item.image-block:hover.shadow .post-img:before {
    opacity: 1;
    transition: all .3s
}

.post-loop .item.image-block:hover .ref-btn {
    display: block;
    opacity: 1;
    transition: all .3s
}

.post-loop .item.link-block {
    display: block;
    width: 100%
}

.post-loop .item.link-block a {
    font-weight: 900
}

.content-btn {
    box-sizing: border-box;
    display: block;
    margin-bottom: 15px;
    width: 100%
}

.content-btn a.iframe-btn {
    margin: 15px auto 25px;
    max-width: 800px
}

.content-btn a.iframe-btn, .content-btn a.shortcode-btn {
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    height: auto;
    text-align: center;
    width: 100%
}

.content-btn a.iframe-btn:hover, .content-btn a.shortcode-btn:hover {
    opacity: .8;
    text-decoration: none
}

ul.subdir-lang-switcher {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    margin: 0 25px
}

@media (max-width: 767px) {
    ul.subdir-lang-switcher {
        margin: 25px 0 0
    }
}

ul.subdir-lang-switcher li {
    padding: 0 5px
}

ul.subdir-lang-switcher li a {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
    transition: all .3s
}

ul.subdir-lang-switcher li a:hover {
    opacity: .7;
    transition: all .3s
}

ul.subdir-lang-switcher li span {
    cursor: default;
    opacity: .5
}

.iframe {
    box-sizing: border-box;
    display: none;
    margin: 0 auto;
    max-width: 800px
}

.iframe__inner {
    background-color: #000;
    position: relative
}

.iframe__inner:after {
    content: "";
    display: block;
    padding-top: 75%
}

.iframe__inner iframe {
    border: 0;
    outline: 0
}

.iframe__entry, .iframe__inner iframe {
    bottom: 0;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.iframe__img {
    display: block;
    filter: blur(10px);
    height: auto;
    height: 100%;
    max-width: none;
    min-height: 100%;
    opacity: .5;
    width: auto
}

.iframe__has-btn {
    margin-bottom: none
}

.iframe__no-btn {
    margin-bottom: 25px
}

@media screen and (min-width: 768px) {
    .iframe {
        display: block
    }
}

.casino-card {
    margin-bottom: 40px;
    padding: 16px;
    position: relative
}

.casino-card hr {
    border: 0;
    height: 1px;
    margin: 40px 0
}

@media screen and (min-width: 768px) {
    .casino-card {
        padding: 24px 40px
    }
}

.casino-card__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

@media screen and (min-width: 768px) {
    .casino-card__info {
        align-items: center;
        flex-wrap: nowrap
    }
}

.casino-card__info-logo {
    display: flex;
    flex: 100%;
    justify-content: center;
    margin: 15px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .casino-card__info-logo {
        display: grid;
        flex: 25%;
        justify-content: flex-start;
        margin: 0 24px 0 0;
        width: 25%
    }
}

.casino-card__info-logo img {
    max-width: 150px;
    -o-object-fit: contain;
    object-fit: contain
}

@media screen and (min-width: 768px) {
    .casino-card__info-logo img {
        height: auto;
        max-width: 160px;
        -o-object-fit: contain;
        object-fit: contain
    }
}

.casino-card__info-wrapper {
    flex: 100%;
    margin: 16px 0 0;
    width: 100%
}

@media screen and (min-width: 768px) {
    .casino-card__info-wrapper {
        flex: 75%;
        width: 75%
    }
}

.casino-card__info-name {
    font-weight: 600;
    line-height: 22px
}

.casino-card__info-desc {
    display: block;
    margin: 12px 0 0
}

.casino-card__features {
    display: grid;
    gap: 16px;
    grid-template-columns:repeat(3, 1fr);
    margin-bottom: 16px
}

@media screen and (max-width: 900px) {
    .casino-card__features {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 640px) {
    .casino-card__features {
        gap: 0;
        grid-template-columns:repeat(1, 1fr)
    }
}

.casino-card__features-wrapper {
    box-sizing: border-box;
    padding: 0 15px;
    position: relative;
    width: 100%
}

@media screen and (max-width: 640px) {
    .casino-card__features-wrapper {
        padding: 0
    }
}

.casino-card__features-bonus {
    grid-area: 2/3/span 2/span 1
}

@media screen and (max-width: 900px) {
    .casino-card__features-bonus {
        grid-area: auto;
        width: 100%
    }
}

@media screen and (max-width: 640px) {
    .casino-card__features-bonus {
        margin: 15px 0 0;
        padding: 0
    }
}

.casino-card__features-name {
    display: block;
    font-weight: 600;
    line-height: 17px;
    text-transform: uppercase
}

.casino-card__features-desc {
    display: block;
    line-height: 1.3;
    margin: 8px 0 16px
}

.casino-card__features-card {
    border-radius: 12px;
    box-sizing: border-box;
    margin: auto;
    padding: 12px 16px;
    position: absolute;
    text-align: center;
    transition: all .3s;
    width: 100%
}

@media screen and (max-width: 900px) {
    .casino-card__features-card {
        position: static
    }
}

a.casino-card__features-card_btn {
    align-items: center;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .02em;
    line-height: 1.2;
    padding: 10px 40px;
    text-align: center;
    text-transform: uppercase;
    transition: .2s;
    transition: all .3s;
    width: 100%
}

a.casino-card__features-card_btn:hover {
    opacity: .7;
    text-decoration: none;
    transition: all .3s
}

.casino-card__features-card_welcome {
    line-height: 150%;
    text-transform: uppercase
}

p.casino-card__features-card_welcome {
    margin-bottom: 4px
}

.casino-card__features-card_bonus {
    font-weight: 600;
    line-height: 160%
}

p.casino-card__features-card_bonus {
    margin-bottom: 8px
}

.casino-card__features-card_desc {
    line-height: 130%;
    text-transform: uppercase
}

p.casino-card__features-card_desc {
    margin-bottom: 16px
}

.casino-card__features-card_btn {
    line-height: 19px;
    text-transform: uppercase;
    width: 100%
}

.casino-card__payments {
    width: 65%
}

@media screen and (max-width: 900px) {
    .casino-card__payments {
        width: 100%
    }
}

.casino-card__payments-title {
    font-weight: 600;
    margin-bottom: 8px
}

.casino-card__payments-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 35px 0 10px
}

@media screen and (max-width: 900px) {
    .casino-card__payments-wrapper {
        justify-content: center
    }
}

.casino-card__payments-item {
    display: flex;
    margin-bottom: 15px;
    margin-right: 15px
}

@media screen and (max-width: 640px) {
    .casino-card__payments-item {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
        margin-right: 0;
        width: 33%
    }
}

@media screen and (max-width: 420px) {
    .casino-card__payments-item {
        width: 50%
    }
}

.casino-card__payments-item:last-child {
    margin-right: 0
}

.casino-card__payments-item a {
    display: flex;
    line-height: 1
}

.casino-card__payments img {
    max-width: 80px;
    -o-object-fit: contain;
    object-fit: contain
}

#amp-card-block .casino-card__info-logo, #amp-card-block .casino-card__info-logo amp-img {
    margin: 0 auto
}

#amp-card-block .casino-card__features {
    margin-bottom: 0
}

#amp-card-block .casino-card__features-card_welcome {
    margin-bottom: 4px
}

#amp-card-block .casino-card__features-card_bonus {
    margin-bottom: 8px
}

#amp-card-block .casino-card__features-card_desc {
    margin-bottom: 16px
}

#amp-card-block .casino-card__features-card p {
    margin-top: 0
}

#amp-card-block .casino-card__features-card p:last-child {
    display: inline-flex;
    margin-top: 0;
    width: 100%
}

#amp-card-block .casino-card__payments-item {
    margin-bottom: 0
}

#amp-card-block .casino-card__payments-item amp-img {
    margin-bottom: 5px
}

#amp-card-block .casino-card__payments-wrapper {
    margin-top: 25px
}

#amp-card-block hr.after-features {
    margin: 10px 0 40px
}

hr.after-features {
    width: 65%
}

@media screen and (max-width: 900px) {
    hr.after-features {
        width: 100%
    }
}

.bonus-table {
    margin-bottom: 20px
}

.bonus-table h2 {
    margin-top: 12px
}

.bonus-table table {
    background: none;
    display: flex;
    justify-content: center;
    margin: 0;
    overflow: initial;
    white-space: normal
}

@media only screen and (min-width: 992px) {
    .bonus-table table {
        display: block;
        justify-content: normal
    }
}

@media only screen and (min-width: 375px) {
    .bonus-table table tbody {
        display: flex;
        flex-flow: wrap;
        justify-content: center
    }
}

@media only screen and (min-width: 768px) {
    .bonus-table table tbody {
        display: grid;
        grid-template-columns:repeat(2, 0fr)
    }
}

.bonus-table table thead tr:hover {
    box-shadow: none
}

.bonus-table table tr {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    transition: all .3s ease-in-out
}

.bonus-table table tr:hover {
    box-shadow: 0 6px 28px rgba(40, 11, 51, .2)
}

.bonus-table table tr:not(:last-child) {
    margin-bottom: 10px
}

@media only screen and (min-width: 375px) {
    .bonus-table table tr {
        display: flex;
        justify-content: space-between;
        margin: 8px;
        width: 345px
    }
}

@media only screen and (min-width: 992px) {
    .bonus-table table tr {
        margin: 12px
    }
}

.bonus-table table td {
    background-color: #fff;
    border: none;
    padding: 0
}

.bonus-table table td:first-child, .bonus-table table td:last-child {
    padding: 12px 20px
}

.bonus-table table td:not(:last-child) {
    margin-bottom: 8px
}

.bonus-table__headings {
    display: none
}

.bonus-table__logo {
    height: 72px;
    margin-right: 12px
}

.bonus-table__body-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 60px
}

@media only screen and (min-width: 992px) {
    .bonus-table__body-wrapper {
        justify-content: flex-start
    }
}

.bonus-table__body-wrapper a, .bonus-table__body-wrapper p {
    color: #a7a7a7;
    font-size: 16px;
    line-height: 26px
}

.bonus-table__body .bonus-text {
    font-size: 16px
}

.bonus-table__body .info-text {
    font-size: 14px;
    line-height: 24px
}

.bonus-table__body-bonus {
    color: #433b58;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px
}

.bonus-table__body-desc {
    color: grey
}

.bonus-table__body-buttons {
    align-items: center;
    display: flex;
    flex-flow: wrap;
    justify-content: center
}

.bonus-table__body-buttons .btn {
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 11px 28px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .3s ease-in-out;
    width: 100%
}

.bonus-table__body-buttons .btn:not(:last-child) {
    margin-bottom: 8px
}

.bonus-table__body-buttons .btn-primary {
    background-color: #a64ac9;
    color: #fff
}

.bonus-table__body-buttons .btn-secondary {
    background-color: #e5dce8;
    color: #433b58
}

.bonus-table__body-buttons .btn:hover {
    color: inherit;
    text-decoration: none
}

.bonus-table__body p {
    margin: 0;
    text-align: center
}

.bonus-table__name_casino {
    font-weight: 400;
    text-align: center;
    width: 100%
}

@media only screen and (min-width: 992px) {
    .bonus-table__desk .bonus-table__headings {
        display: block
    }

    .bonus-table__desk .bonus-table__headings tr {
        background-color: unset;
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
        margin: 0;
        padding: 0;
        width: 100%
    }

    .bonus-table__desk .bonus-table__headings tr th {
        background: none;
        border-bottom: none;
        color: #a7a7a7;
        font-size: 14px;
        font-weight: 400;
        line-height: 19px
    }

    table.bonus-table__desk tbody {
        align-items: center;
        display: flex;
        flex-direction: column
    }

    table.bonus-table__desk tbody tr {
        align-items: center;
        flex-direction: row;
        margin: 0;
        width: 100%
    }

    .bonus-table__desk .bonus-table__body {
        flex: 1;
        text-align: center
    }
}


.new-content-style img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.new-content-style figure img {
    border-radius: 14px;
    margin: 30px auto;
}


.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
}

.new-content-style table {
    width: 100%;
    border-collapse: collapse;
}

.new-content-style th,
.new-content-style td {
    padding: 5px 5px;
    border: 1px solid #ddd;
    text-align: left;
}

.new-content-style th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: black;
}



/*# sourceMappingURL=style.min.css.map*/