/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.bell-trigger svg {
    fill: #ebe9ec;
}

/* --- TOP CASINO TABLE STYLES --- */
.campaign-compact-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    background: transparent;
    margin-bottom: 30px;
}

.campaign-compact-table__offer {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px #0000000A, 0 8px 32px #00000019;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eaeaea;
}

.campaign-compact-table__offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.campaign-compact-table td,
.campaign-compact-table .campaign-compact-table__cell {
    padding: 20px 15px;
    vertical-align: middle;
    border: none;
}

/* Logo Cell */
.campaign-compact-table__offer-logo {
    text-align: center;
    width: 180px;
    position: relative;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background: #fafafb;
    border-right: 1px solid #f0f0f0;
}

.casino_position {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ffc800;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.campaign-compact-table__offer-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin: 0 auto 5px;
}

.campaign-compact-table__offer-brand-name {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* Description & Features */
.campaign-compact-table__offer-description p {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
}

.campaign-compact-table__offer-key-features {
    width: 35%;
}

.campaign-compact-table__offer-key-features .campaign-compact-table__offer-description {
    display: none;
    /* Hide inside features on desktop */
}

.campaign-compact-table__offer-key-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.campaign-compact-table__offer-key-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.campaign-compact-table__offer-key-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #008738;
    font-weight: bold;
    font-size: 14px;
}

/* Rating Cell */
.campaign-compact-table__offer-rating {
    text-align: center;
    width: 15%;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.campaign-compact-table__offer-rating-text {
    line-height: 1;
    margin-bottom: 10px;
}

.campaign-compact-table__offer-rating-text .our-score {
    font-size: 11px;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campaign-compact-table__offer-rating-text span {
    font-size: 32px;
    font-weight: 800;
    color: #008738;
}

.star_rating_img {
    max-width: 90px;
    margin: 0 auto;
    display: block;
}

.campaign-compact-table__offer-rating .campaign-compact-table__offer-brand-name {
    display: none;
}

/* CTA Cell */
.campaign-compact-table__offer-cta-button {
    text-align: center;
    width: 200px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.campaign-compact-table__offer-cta-button a {
    background: linear-gradient(180deg, #008738 0%, #006b2c 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 135, 56, 0.3);
}

.campaign-compact-table__offer-cta-button a:hover {
    background: linear-gradient(180deg, #007631 0%, #005a25 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 135, 56, 0.4);
    color: #fff;
}

.campaign-compact-table__offer-cta-button svg {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

/* CSS for div-based table structure on desktop */
div.campaign-compact-table { display: table; }
div.campaign-compact-table__offers-wrapper { display: table-row-group; }
div.campaign-compact-table__offer { display: table-row; }
div.campaign-compact-table__cell { display: table-cell; }

/* MOBILE CASINO TABLE RESPONSIVENESS */
@media only screen and (max-width: 767px) {

    .campaign-compact-table,
    .campaign-compact-table tbody,
    .campaign-compact-table tr,
    .campaign-compact-table td,
    div.campaign-compact-table__offers-wrapper,
    div.campaign-compact-table__offer,
    div.campaign-compact-table__cell {
        display: block !important;
        width: 100%;
    }

    .campaign-compact-table__offer {
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }

    .campaign-compact-table td,
    .campaign-compact-table .campaign-compact-table__cell {
        padding: 15px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .campaign-compact-table__offer-logo {
        border-radius: 12px 12px 0 0;
        border-right: none;
        background: #fff;
        padding-bottom: 5px;
    }

    .casino_position {
        top: 10px;
        left: 10px;
    }

    .campaign-compact-table__offer-description {
        display: none !important;
        /* Hide standard desc cell on mobile */
    }

    .campaign-compact-table__offer-key-features {
        width: 100%;
    }

    .campaign-compact-table__offer-key-features .campaign-compact-table__offer-description {
        display: block !important;
        /* Show description inside features on mobile */
        margin-bottom: 15px;
        text-align: center;
    }

    .campaign-compact-table__offer-rating {
        border-left: none;
        border-right: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background: #fafafb;
    }

    .campaign-compact-table__offer-rating-text {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
        justify-content: center;
    }

    .campaign-compact-table__offer-rating-text span {
        font-size: 28px;
    }

    .star_rating_img {
        margin: 0;
    }

    .campaign-compact-table__offer-cta-button {
        border-radius: 0 0 12px 12px;
        padding-top: 20px;
    }
}

/* ---------------------------------- */
.section-testimonials .align-equal .col-inner {
    background-color: white;
    border-radius: 10px;
}

.section-testimonials {
    padding: 50px 0 10px !important;
}

.star-rating span:before {
    color: #ffd700;
}

.section-cta {
    padding: 50px 0 0px !important;
}

.section-cta .gallery-col {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.section-cta img {
    border-radius: 20px;
}


.section-cta .col {
    padding-bottom: 0;
}

.section-cta .col-bg .col-inner {
    background-color: #f1e2cc;
    padding: 20px;
    border-radius: 20px;
}

.section-pros-cons {
    padding: 50px 0 20px !important;
}

.floating-tips {
    position: fixed;
    width: 85px;
    bottom: 30%;
    right: 4px;
    z-index: 9999;
    animation: movemove 15s infinite;
}

.section-pros-cons {
    background: #f8fafc;
    border-radius: 16px;
}

.section-pros-cons h2 {
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-pros-cons h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Card chung */
.section-pros-cons .col-inner {
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.25s;
}

.section-pros-cons .col-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Pros */
.section-pros-cons .col:first-child .col-inner {
    border-left: 4px solid #22c55e;
}

.section-pros-cons .col:first-child h3 {
    color: #16a34a;
}

/* Cons */
.section-pros-cons .col:last-child .col-inner {
    border-left: 4px solid #ef4444;
}

.section-pros-cons .col:last-child h3 {
    color: #dc2626;
}

/* List */
.section-pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-pros-cons li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #334155;
    line-height: 1.5;
}

/* Icon Pros */
.section-pros-cons .col:first-child li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Icon Cons */
.section-pros-cons .col:last-child li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.section-review .entry-content {
    border: 2px solid #00b67a;
    border-radius: 10px;
    padding: 30px 30px 10px;
}

.section-review .nav-outline .tab {
    border: none;
}

.section-review .nav-outline .tab a {
    border-bottom: 2px solid #efecec;
    border-radius: 0px;
    padding: 10px 20px;
    border-left: 2px solid #efecec;
    border-right: 2px solid #efecec;
}

.section-review .nav-outline .tab.active a {
    border: 2px solid;
}

.section-review .nav-vertical+.tab-panels {
    border: none;
}

.section-about .col-bg>.col-inner {
    background: #b2f8cc;
    padding: 40px 40px 10px;
    border-radius: 20px;
}

@keyframes movemove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-180px);
    }

    100% {
        transform: translateY(180);
    }
}

.floating-tips img {
    width: 100%;
    margin-bottom: 10px;
}

.floating-screen img {
    width: 100%;
}

.floating-screen {
    position: fixed;
    width: 30px;
    bottom: 245px;
    right: 0px;
    z-index: 9999;
}

.floating-av {
    position: fixed;
    width: 35px;
    bottom: 100px;
    right: 0px;
    z-index: 9999;
}

.floating-av img {
    width: 100%;
}

.header-bg-image {
    max-width: 1200px;
    margin: 0 auto !important;
    text-align: center;
}

.section-banner p {
    margin-bottom: 15px;
}

.section-banner .text-1 {
    display: flex;
    position: relative;
}

.section-banner .text-1:before {
    content: '⬤';
    color: #ffc800;
    margin-right: 10px;
}


.section-banner .box {
    box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #00b67a;
}

.section-banner .box .box-text.text-center {
    padding: 20px 0 0 0;
}

.section-banner .box img {
    border-radius: 10px;
}

.section-banner a.button {
    background: #ffc800;
    margin: 0;
    padding: 3px 0;
    font-size: 17px;
    color: black;
}

@-webkit-keyframes AnimatedGradientBgLeft {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 100% 0
    }
}

@keyframes AnimatedGradientBgLeft {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 100% 0
    }
}

@-webkit-keyframes AnimatedGradientBgRight {
    0% {
        background-position: 100% 0
    }

    100% {
        background-position: 0 0
    }
}

@keyframes AnimatedGradientBgRight {
    0% {
        background-position: 100% 0
    }

    100% {
        background-position: 0 0
    }
}

@-webkit-keyframes AnimatedGradientBgUp {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 100%
    }
}

@keyframes AnimatedGradientBgUp {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 100%
    }
}

@-webkit-keyframes AnimatedGradientBgDown {
    0% {
        background-position: 0 100%
    }

    100% {
        background-position: 0 0
    }
}

@keyframes AnimatedGradientBgDown {
    0% {
        background-position: 0 100%
    }

    100% {
        background-position: 0 0
    }
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #ffc800;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 18px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    color: black;
    font-weight: bold;
    font-size: 12.5px;
    padding-left: 100%;
    animation: marqueeScroll 35s linear infinite;
    position: relative;
    font-weight: 400;
}

.marquee-content::after {
    content: attr(data-text);
    position: absolute;
    left: 100%;
    padding-left: 100px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.row-game img {
    border-radius: 5px 5px 0 0;
}

.row-game .image-cover {
    padding-top: 55%;
}

.row-game .img {
    margin-bottom: 8px !important;
}

.row-game .gamelist-title {
    color: black;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
}

.row-game .col-inner {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding-bottom: 12px;
    background-color: white;
}

.row-game p {
    font-size: 13.5px;
    margin-bottom: 3px;
}

.row-game a.button {
    background: linear-gradient(#00552c, #178540, #1b9649);
    animation-duration: 3s;
    animation-name: AnimatedGradientBgRight;
    background-size: 300% 100%;
    margin: 10px auto 0;
    width: 120px;
    padding: 2px 0;
    border-radius: 5px;
    display: flex;
    transition: all .5s;
    inset: 0;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function:
        linear;
    animation-timing-function:
        linear;
    align-items: center;
    justify-content: center;
}

.row-game a.button span {
    font-weight: 400;
    line-height: 12px;
    font-size: 12.5px;
}


.row.border .accordion .toggle {
    left: inherit;
    right: 0;
}

.section-content-new .accordion-title {
    border: none;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
    color: #000000 !important;
    background: #f8f8f8;
    margin-bottom: 8px;
    border-radius: 5px;
}

.copyright-footer ul {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
    margin-top: 5px;
}

.copyright-footer li {
    list-style: none;
    color: white;
    margin-bottom: 0;
}

.absolute-footer {
    padding: 20px 0 15px;
}


.section-game {
    padding: 50px 0 0 !important;
}

.section-content-new .section-content {
    padding: 0 15px;
}


.header-button-1 a {
    background-image: linear-gradient(150deg, #2BDF20 0%, #13A50F 100%);
    padding: 3px 12px;
    font-size: 16px;
    font-weight: 400;
    min-height: 0;
    line-height: 0;
}

.header-button-1 a i {
    margin-right: 0 !important;
}

.header-button-2 {
    margin-right: 0 !important;
}

.header-button-2 a {
    background-color: #10CCEC;
    background-image: linear-gradient(150deg, #10CCEC 0%, #56EEFD 100%);
    padding: 3px 12px;
    font-size: 16px;
    font-weight: 400;
    min-height: 0;
    line-height: 0;
}

.header-button-2 a i {
    margin-right: 0 !important;
}

.footer-1>.row>.col {
    flex-basis: 30%;
    max-width: 30%;
}

.footer-1>.row>.col:nth-child(1) {
    flex-basis: 40%;
    max-width: 40%;
}

.section-up {
    background-image: linear-gradient(180deg, #035124 14%, #000000 100%);
}

.section-down {
    background-image: linear-gradient(180deg, #000000 0%, #035124 100%);
}

.row-review-list>.col {
    margin-bottom: 20px;
    color: #000000;
}

.row-review-list>.col>.col-inner {
    padding: 15px 15px 10px;
    border-radius: 10px;
    border: 3px solid #00552c;
    margin-bottom: 30px;
    background: white;
}

.row-review-list img {
    border-radius: 12px;
}

.review-title {
    font-weight: 400;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-description {
    margin-bottom: 10px;
}

.review-bonus li::before {
    content: "✔";
    margin-right: 8px;
    color: #b7ffb7;
    font-weight: bold;
}

.review-bonus li {
    list-style: none;
    margin-left: 0 !important;
}

.rating-number {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.review-rating .stars {
    color: #f0ad4e;
    font-size: 25px;
    margin-bottom: 10px;
}

.review-rating {
    margin-bottom: 20px;
}

.row-review-list a.button {
    background-color: #ffc800;
    border-radius: 5px 5px 5px 5px;
    width: 100%;
    padding: 5px 0;
    color: black;
}

.row-review-list a.button.button-2 {
    background-image: linear-gradient(180deg, #4CAF50 0%, #078175 100%);
}

.row-review-list .col {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.row-review-list .accordion-inner {
    padding: 10px 20px 5px;
    background: #0d582c;
}

.row-review-list .accordion-title {
    padding: 10px 10px;
    color: white;
    background: #0b2f19;
}

.row-review-list .accordion .toggle {
    left: inherit;
    right: 0;
}

#post-list .post-item>.col-inner {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

#post-list .post-item>.col-inner img {
    border-radius: 10px 10px 0 0;
}

.from_the_blog_comments {
    display: none;
}

.post_comments {
    display: none;
}

.widget-area span.widget-title {
    color: #00552c;
    text-transform: inherit;
    letter-spacing: normal;
    font-size: 20px;
}

.contact-us-social {}

.contact-us-social a {
    color: #00552c;
    margin: 0 30px !important;
}

.single .entry-header-text {
    text-align: left;
    padding: 0;
}

.entry-divider {
    display: none;
}

.entry-meta {
    text-transform: inherit;
    letter-spacing: normal;
    font-size: 14px;
}

.section-content-new.two .col {
    padding-bottom: 0;
}

.section-content-new.two .row.border>.col>.col-inner {
    margin-bottom: 0;
}

.row-review-list .col {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.row-review-list>.col>.col-inner {
    padding: 15px 15px 10px;
    border-radius: 10px;
    border: 3px solid #00552c;
    margin-bottom: 30px;
    background: white;
}

.row-review-list>.col {
    margin-bottom: 20px;
    color: #000000;
}

.review-title {
    font-weight: 400;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}


.row-game .image-cover {
    padding-top: 46%;
}

.row-small>.col {
    padding: 0 5px 10px;
}

.section-claim .accordion-title {
    background-color: #faf6f1;
    border-radius: 10px;
    border: none;
    margin-bottom: 10px;
    padding: 25px;
}

.section-claim .accordion {
    counter-reset: acc;
}

.section-claim .accordion .toggle {
    left: inherit;
    right: 15px;
    top: 17px;
}

.section-claim .accordion .accordion-title span::before {
    counter-increment: acc;
    content: counter(acc);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    margin-right: 10px;
    border-radius: 50%;
    background: #004609;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.section-claim .accordion .accordion-title span {
    display: flex;
    align-items: center;
}

.section-claim .accordion .accordion-title span::before {
    flex-shrink: 0;
}

.col.border>.col-inner {
    border-radius: 10px;
    border: 3px solid #004609;
    padding: 40px;
}

.section-faq .accordion-title {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.050980392156862744);
    margin-bottom: 10px;
    border: none;
    padding: 25px;
}

.section-faq {
    padding: 50px 0 30px !important;
}

.section-faq .accordion .toggle {
    left: inherit;
    right: 15px;
    top: 17px;
}

@media only screen and (max-width: 48em) {

    /*************** ADD MOBILE ONLY CSS HERE  ***************/
    .floating-tips {
        width: 65px;
        bottom: 5%;
    }

    .section-banner .text-inner {
        text-align: center;
    }


    .absolute-footer .container {
        display: grid;
    }

    .absolute-footer .container .footer-primary {
        order: -1;
    }

    .copyright-footer ul {
        gap: 20px;
        justify-content: center;
    }



    .footer-1>.row>.col:nth-child(1),
    .footer-1>.row>.col:nth-child(4) {
        flex-basis: 100%;
        max-width: 100%;
    }

    .footer-1>.row>.col:nth-child(2),
    .footer-1>.row>.col:nth-child(3) {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col.border>.col-inner {
        border: 2px solid #004609;
        padding: 15px;
    }

}

/* --- CASINO REVIEW TABS & SPRITE MAP ICONS --- */
/* Kỹ thuật CSS Sprite: Sử dụng 1 ảnh chứa nhiều icon và dùng background-position để "cắt" hình */
.tabs-widget__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tabs-widget__button {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.tabs-widget__button.active,
.tabs-widget__button:hover {
    border-color: #00b67a;
    background: #f0fdf6;
}

.tabs-widget__button-icon-category-holder {
    margin-right: 10px;
    transform: scale(0.6);
    /* Thu nhỏ tí cho vừa tab */
    transform-origin: left center;
}

/* Định dạng cơ bản cho Sprite ảnh chứa Icon */
.icon-category {
    background-image: url('https://www.livedealers.com/my/wp-content/themes/livedealers/assets/images/sprites/icons-categories.png');
    background-repeat: no-repeat;
    display: inline-block;
    height: 45px;
    /* Chiều cao mặc định theo ảnh gốc */
}

/* Toạ độ cắt ảnh (Sprite Map - được bóc chính xác từ CSS gốc của livedealers) */
.icon-category--software-providers {
    width: 40px;
    background-position: 0 0;
}

.icon-category--betting-limits {
    width: 45px;
    background-position: -75px 0;
}

.icon-category--private-tables {
    width: 31px;
    background-position: -150px 0;
}

.icon-category--banking {
    width: 44px;
    background-position: -225px 0;
}

.icon-category--multi-device {
    width: 48px;
    background-position: 0 -70px;
}

.icon-category--licences {
    width: 45px;
    background-position: -75px -70px;
}

.icon-category--happy-face {
    width: 55px;
    background-position: -150px -70px;
}

.icon-category--sad-face {
    width: 55px;
    background-position: -225px -70px;
}

.icon-category--stream-quality {
    width: 50px;
    background-position: 0 -140px;
}

.icon-category--device-compatibility {
    width: 45px;
    background-position: -75px -140px;
}

.icon-category--dealer-competence {
    width: 34px;
    background-position: -150px -140px;
}

.icon-category--game-selection {
    width: 50px;
    background-position: -225px -140px;
}

.icon-category--customer-support {
    width: 53px;
    background-position: 0 -210px;
}

.icon-category--mobile-app {
    width: 44px;
    background-position: -75px -210px;
}

.icon-category--casino-managers {
    width: 54px;
    background-position: -150px -210px;
}

.icon-category--promotions-bonuses {
    width: 40px;
    background-position: -225px -210px;
}

.tabs-widget__button-text {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}