/*--------- Abstracts variable ---------- */
:root {
    --White: #fff;
    --Black: #000;
    --Bg: #16171b;
    --Bg-2: #1f2125;
    --Bg-3: rgba(147, 172, 211, 0.07);
    --Bg-4: #06062c;
    --Bg-5: #1b1742;
    --Bg-6: #060623;
    --Bg-7: #fdac00;
    --Bg-8: #5b9c30;
    --Bg-9: #bb5636;
    --Bg-10: #191544;
    --Bg-11: #16114a;
    --Bg-12: #1a113c;
    --Secondary2: #6c6e72;
    --Secondary: #a3a3a3;
    --Sub-color: #ca2826;
    --Sub-color-2: #954cdf;
    --Sub-color-3: #f75808;
    --Sub-color-4: rgba(255, 255, 255, 0.071);
    --Sub-color-5: #4e556f;
    --Main-color: #fe8c45;
    --Main-color: #fdac00;
    --Text: #f3e6ff;
    --Text-2: #7c818b;
    --Text-3: rgba(119, 145, 186, 0.5);
    --Text-4: #3a3a3c;
    --Text-5: #6ba539;
    --Text-6: #a3a3a3;
    --Text-7: #55657e;
    --Text-8: #8691b2;
    --Text-9: rgba(255, 255, 255, 0.8);
    --Border-1: rgba(255, 255, 255, 0.12);
    --Border-2: rgba(147, 172, 211, 0.1);
    --Border: rgba(255, 255, 255, 0.1);
    --backdrop: #1f2125;
    --Border-3: #161c27;
    --Border-4: rgba(147, 172, 211, 0.08);
    --Border-5: rgba(30, 34, 49, 1);
    --Border-6: rgba(255, 255, 255, 0.25);
}

/*---------- Reset css styles ----------- */
/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    margin-right: 0 !important;
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: var(--Bg);
    line-height: 1;
    padding: 0 !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: none;
}

a img {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--White);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

strong,
b,
cite {
    font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
    font-style: italic;
}

abbr,
acronym {
    border-bottom: 1px dotted #e0e0e0;
    cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

address {
    font-style: italic;
    margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
    margin: 20px 0;
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    border-radius: 0;
    height: auto;
}

svg,
svg path {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Elements
-------------------------------------------------------------- */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

hr {
    margin-bottom: 20px;
    border: dashed 1px #ccc;
}

/* List */
ul,
ol {
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
}

li {
    list-style: none;
}

ul li,
ol li {
    padding: 0;
}

dl,
dd {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

del,
.disable {
    text-decoration: line-through;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

/* Table */
table,
th,
td {
    border: 1px solid #343444;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 30px;
    table-layout: fixed;
    width: 100%;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: bold;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 8px 12px;
}

/* Media */
embed,
object,
video {
    margin-bottom: 20px;
    max-width: 100%;
    vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
    margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
    line-height: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    /* Removes default vertical scrollbar in IE6/7/8/9 */
    vertical-align: top;
    /* Improves readability and alignment in all browsers */
}

input[type="checkbox"] {
    display: inline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    vertical-align: sub;
    /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* Addresses appearance set to searchfield in S5, Chrome */
}

    input[type="search"]::-webkit-search-decoration {
        /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
        -webkit-appearance: none;
    }

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type="search"] {
    outline: 0;
}

    input[type="search"]::-webkit-search-decoration,
    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-results-button,
    input[type="search"]::-webkit-search-results-decoration {
        display: none;
    }

/* Placeholder color */
::-webkit-input-placeholder {
    color: #171412;
}

::-moz-placeholder {
    color: #171412;
    opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
    color: #171412;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Red Hat Display", sans-serif;
    color: var(--White);
    margin: 0;
    text-rendering: optimizeLegibility;
}

h1,
.h1 {
    font-size: 60px;
    line-height: 79.38px;
}

h2,
.h2 {
    font-size: 40px;
    line-height: 52.92px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 34px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 31.75px;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 28px;
}

h6,
.h6 {
    font-size: 13px;
    line-height: 17px;
}

.fw-4 {
    font-weight: 400;
}

.fw-467 {
    font-weight: 467;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-550 {
    font-weight: 550;
}

.fw-6 {
    font-weight: 600;
}

.fw-645 {
    font-weight: 645;
}

.fw-7 {
    font-weight: 700;
}

.fw-759 {
    font-weight: 759;
}

.fw-8 {
    font-weight: 800;
}

.fw-9 {
    font-weight: 900;
}

.fs-50 {
    font-size: 50px;
}

.fs-40 {
    font-size: 40px;
}

.fs-26 {
    font-size: 26px;
}

.fs-24 {
    font-size: 24px;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px !important;
}

.heading-dashboard {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
}

.text-1 {
    color: var(--Text-8);
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}

.font-rubik {
    font-family: "Rubik";
}

.mb-8 {
    margin-bottom: 8px;
}

/* link style
-------------------------------------------------------------- */
a {
    text-decoration: none;
    color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    a:hover,
    a:focus {
        color: var(--Main-color);
        outline: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    a.type-secondary {
        color: var(--Secondary);
    }

        a.type-secondary:hover {
            color: var(--Main-color);
        }

    a.type-main-color {
        color: var(--Main-color);
    }

p.type-secondary {
    color: var(--Secondary);
}

p.type-main-color {
    color: var(--Main-color);
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 1300px;
    max-width: 100%;
}

    .tf-container .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

        .tf-container .row > * {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

    .tf-container.full {
        width: 100%;
    }

/* Extra classes
-------------------------------------------------------------- */
.hidden {
    display: none;
}

.w100 {
    width: 100%;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed !important;
}

.position-unset {
    position: unset !important;
}

.gap16 {
    gap: 16px;
}

.z-5 {
    z-index: 5;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-6 {
    margin-bottom: 6px;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-3 {
    margin-bottom: 3px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-grow {
    flex-grow: 1 !important;
}

.row-reverse {
    flex-direction: row-reverse !important;
}

.justify-start {
    justify-content: start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.items-center {
    align-items: center !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.italic {
    font-style: italic;
}

.cursor-pointer {
    cursor: pointer;
}

.rounded-full {
    border-radius: 9999px !important;
}

.overflow-x-auto {
    overflow-x: auto;
}

    .overflow-x-auto::-webkit-scrollbar {
        height: 3px;
    }

    .overflow-x-auto::-webkit-scrollbar-thumb {
        background: #242c48;
        border-radius: 999px;
    }

.overflow-y-auto {
    overflow-y: auto;
}

    .overflow-y-auto::-webkit-scrollbar {
        width: 3px;
    }

    .overflow-y-auto::-webkit-scrollbar-thumb {
        background: #242c48;
        border-radius: 999px;
    }

.line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.text-start {
    text-align: start;
}

.grid-layout-4 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.letter-space1 {
    letter-spacing: 0.3px;
}

.pb-18 {
    padding-bottom: 18px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mt--10 {
    margin-top: -10px !important;
}

.mt--8 {
    margin-top: -8px !important;
}

.mt--6 {
    margin-top: -6px !important;
}

.mt--4 {
    margin-top: -4px !important;
}

.mb-2 {
    margin-bottom: 2px !important;
}

.mt--2 {
    margin-top: -2px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.pt-34 {
    padding-top: 34px !important;
}

.pb-34 {
    padding-bottom: 34px !important;
}

.mb-31 {
    margin-bottom: 31px !important;
}

.pt-31 {
    padding-top: 31px !important;
}

.p-10-19 {
    padding: 10px 19px !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-32 {
    line-height: 32px !important;
}

.gap-30 {
    gap: 30px !important;
}

.ml--4 {
    margin-left: -4px !important;
}

.ml-4 {
    margin-left: 4px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.pl-12 {
    padding-left: 12px !important;
}

.p-14-16 {
    padding: 14px 16px !important;
}

.p-0-16 {
    padding: 14px 0px 16px !important;
}

.p-21-19 {
    padding: 21px 19px !important;
}

/*------------ Components ---------------- */
.tf-top-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: linear-gradient( to right, rgb(75, 0, 175), rgb(181, 61, 249) );
    position: relative;
}

    .tf-top-bar .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .tf-top-bar .content p {
            font-weight: 645;
            font-size: 14px;
            line-height: 18.52px;
        }

        .tf-top-bar .content a {
            font-weight: 645;
            font-size: 14px;
            line-height: 18.52px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

            .tf-top-bar .content a::after {
                content: "";
                width: 138px;
                height: 1.5px;
                display: block;
                position: absolute;
                background-color: var(--White);
                bottom: 0;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .tf-top-bar .content a:hover::after {
                background-color: var(--Main-color);
            }

    .tf-top-bar .button-close {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

#header-main .header-inner {
    position: absolute;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
}

#header-main .header-inner-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    #header-main .header-inner-wrap .header-right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        #header-main .header-inner-wrap .header-right .mobile-button {
            display: none;
        }

            #header-main .header-inner-wrap .header-right .mobile-button i {
                font-size: 35px;
            }

#header-main.header-home-3 {
    margin-top: -10px;
}

    #header-main.header-home-3 .header-inner {
        position: unset;
    }

        #header-main.header-home-3 .header-inner .sub-menu {
            z-index: 5;
        }

.main-menu .navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 36px;
    letter-spacing: 0.8px;
}

    .main-menu .navigation li {
        position: relative;
        cursor: pointer;
    }

        .main-menu .navigation li a {
            font-size: 15px;
            font-weight: 600;
            line-height: 104px;
        }

        .main-menu .navigation li.has-child {
            padding-right: 20px;
        }

            .main-menu .navigation li.has-child > a::after {
                position: absolute;
                right: -2px;
                font-family: "icomoon";
                content: "\e944";
                font-size: 21px;
                font-weight: 400;
                cursor: pointer;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .main-menu .navigation li.has-child .sub-menu {
                position: absolute;
                top: 104%;
                left: 0%;
                width: 200px;
                opacity: 0;
                visibility: hidden;
                background-color: var(--Bg);
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

                .main-menu .navigation li.has-child .sub-menu li a {
                    padding: 10px 20px;
                    display: block;
                    width: 100%;
                    font-weight: 500;
                    line-height: 28px;
                }

                .main-menu .navigation li.has-child .sub-menu li:not(:last-child) {
                    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
                }

        .main-menu .navigation li:hover .sub-menu {
            top: 100%;
            visibility: visible;
            opacity: 1;
        }

        .main-menu .navigation li.current-menu-item > a,
        .main-menu .navigation li.current-menu-item::after,
        .main-menu .navigation li:hover > a,
        .main-menu .navigation li:hover::after {
            color: var(--Main-color);
        }

        .main-menu .navigation li .current-item > a {
            color: var(--Main-color);
        }

.mobile-nav-wrap .overlay-mobile-nav {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100% );
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-nav-wrap .inner-mobile-nav {
    width: 320px;
    height: 100%;
    top: 0;
    left: -340px;
    position: fixed;
    background-color: var(--Bg);
    z-index: 999999;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-nav-wrap.active .overlay-mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-wrap.active .inner-mobile-nav {
    left: 0;
}

.mobile-nav-wrap .inner-mobile-nav::-webkit-scrollbar {
    width: 0px;
}

.inner-mobile-nav {
    padding: 15px;
    position: relative;
}

    .inner-mobile-nav .top-nav-mobile {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .inner-mobile-nav .top-nav-mobile #mobile-logo_header {
            width: 80px;
        }

        .inner-mobile-nav .top-nav-mobile .mobile-nav-close {
            cursor: pointer;
            width: 30px;
            height: 30px;
            background-color: var(--Bg-1);
            border-radius: 50%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .inner-mobile-nav #menu-mobile-menu {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0px;
    }

        .inner-mobile-nav #menu-mobile-menu > li {
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 15px 0px;
            cursor: pointer;
        }

            .inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile {
                display: none;
                margin-top: 15px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                text-align: start;
                overflow: hidden;
            }

                .inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile li {
                    padding-left: 15px;
                    padding: 15px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                    cursor: pointer;
                }

                    .inner-mobile-nav #menu-mobile-menu > li .sub-menu-mobile li a {
                        font-size: 14px;
                        line-height: 22px;
                        font-weight: 500;
                    }

        .inner-mobile-nav #menu-mobile-menu li a {
            font-size: 16px;
            line-height: 22px;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--White);
        }

        .inner-mobile-nav
        #menu-mobile-menu
        li.menu-item-has-children-mobile > a::after {
            content: "\e944";
            position: absolute;
            font-family: "icomoon";
            font-weight: 300;
            position: absolute;
            font-size: 20px;
            right: 0;
            top: 17px;
            line-height: 16px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .inner-mobile-nav #menu-mobile-menu li.active a::after {
            transform: rotate(-180deg);
        }

#menu-mobile-menu > li .sub-menu-mobile li:last-child,
#menu-mobile-menu > li:last-child {
    border: none;
}

#menu-mobile-menu li.current-menu-item > a,
#menu-mobile-menu li a:hover,
#menu-mobile-menu li.current-item a {
    color: var(--Main-color);
}

.header.is-fixed .header-inner {
    position: fixed !important;
    padding: 0;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 9999999999;
    background-color: var(--Bg-2);
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-bottom: none !important;
}

.header.is-fixed.is-small .header-inner {
    top: 0;
    margin-top: 0px;
    width: 100%;
}

.header-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1f2125;
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.698);
    padding: 12px 12px 12px 30px;
    z-index: 60;
}

    .header-dashboard > .wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-dashboard .header-right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 4px;
    }

    .header-dashboard .header-notification {
        margin-right: -4px;
    }

    .header-dashboard .header-logo {
        width: 158px;
    }

    .header-dashboard .header-coins {
        position: relative;
    }

        .header-dashboard .header-coins .image-select {
            width: 140px !important;
        }

        .header-dashboard .header-coins > span {
            position: absolute;
            top: 10px;
            right: 16px;
            color: var(--Secondary);
            font-size: 14px;
            font-weight: 645;
            line-height: 18.52px;
        }

    .header-dashboard .header-wallet .tf-btn {
        /* padding-left: 36px;
  padding-right: 36px; */
    }

        .header-dashboard .header-wallet .tf-btn i {
            font-size: 20px;
        }

.tf-accordion1 .title-accordion,
.tf-accordion .title-accordion {
    line-height: 42px;
    font-weight: 759;
    padding-bottom: 20px;
}

.tf-accordion1 .tf-toggle1,
.tf-accordion1 .tf-toggle,
.tf-accordion .tf-toggle1,
.tf-accordion .tf-toggle {
    border-bottom: 1px solid var(--Border);
    margin-bottom: 22px;
}

    .tf-accordion1 .tf-toggle1 .toggle-title,
    .tf-accordion1 .tf-toggle .toggle-title,
    .tf-accordion .tf-toggle1 .toggle-title,
    .tf-accordion .tf-toggle .toggle-title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 22px;
        cursor: pointer;
        position: relative;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .tf-accordion1 .tf-toggle1 .toggle-title .title,
        .tf-accordion1 .tf-toggle .toggle-title .title,
        .tf-accordion .tf-toggle1 .toggle-title .title,
        .tf-accordion .tf-toggle .toggle-title .title {
            font-size: 18px;
            font-weight: 550;
            line-height: 23.81px;
            color: var(--Secondary);
        }

        .tf-accordion1 .tf-toggle1 .toggle-title .icon,
        .tf-accordion1 .tf-toggle .toggle-title .icon,
        .tf-accordion .tf-toggle1 .toggle-title .icon,
        .tf-accordion .tf-toggle .toggle-title .icon {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            flex: none;
            background-color: var(--Bg-2);
            position: relative;
        }

            .tf-accordion1 .tf-toggle1 .toggle-title .icon::after,
            .tf-accordion1 .tf-toggle .toggle-title .icon::after,
            .tf-accordion .tf-toggle1 .toggle-title .icon::after,
            .tf-accordion .tf-toggle .toggle-title .icon::after {
                content: "";
                position: absolute;
                display: block;
                width: 10px;
                border: 1px solid var(--White);
                border-radius: 1.5px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .tf-accordion1 .tf-toggle1 .toggle-title .icon::before,
            .tf-accordion1 .tf-toggle .toggle-title .icon::before,
            .tf-accordion .tf-toggle1 .toggle-title .icon::before,
            .tf-accordion .tf-toggle .toggle-title .icon::before {
                content: "";
                position: absolute;
                display: block;
                height: 10px;
                border: 1px solid var(--White);
                border-radius: 1.5px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

        .tf-accordion1 .tf-toggle1 .toggle-title:hover,
        .tf-accordion1 .tf-toggle .toggle-title:hover,
        .tf-accordion .tf-toggle1 .toggle-title:hover,
        .tf-accordion .tf-toggle .toggle-title:hover {
            color: var(--Main-color);
        }

        .tf-accordion1 .tf-toggle1 .toggle-title.active .icon::before,
        .tf-accordion1 .tf-toggle .toggle-title.active .icon::before,
        .tf-accordion .tf-toggle1 .toggle-title.active .icon::before,
        .tf-accordion .tf-toggle .toggle-title.active .icon::before {
            visibility: hidden;
            opacity: 0;
        }

    .tf-accordion1 .tf-toggle1 .toggle-content,
    .tf-accordion1 .tf-toggle .toggle-content,
    .tf-accordion .tf-toggle1 .toggle-content,
    .tf-accordion .tf-toggle .toggle-content {
        display: none;
        padding-bottom: 22px;
    }

        .tf-accordion1 .tf-toggle1 .toggle-content p,
        .tf-accordion1 .tf-toggle .toggle-content p,
        .tf-accordion .tf-toggle1 .toggle-content p,
        .tf-accordion .tf-toggle .toggle-content p {
            font-size: 14px;
            line-height: 19.6px;
            color: var(--Secondary);
        }

    .tf-accordion1 .tf-toggle1.active .toggle-title .title,
    .tf-accordion1 .tf-toggle.active .toggle-title .title,
    .tf-accordion .tf-toggle1.active .toggle-title .title,
    .tf-accordion .tf-toggle.active .toggle-title .title {
        color: var(--Main-color);
    }

    .tf-accordion1 .tf-toggle1.active .toggle-title .icon,
    .tf-accordion1 .tf-toggle.active .toggle-title .icon,
    .tf-accordion .tf-toggle1.active .toggle-title .icon,
    .tf-accordion .tf-toggle.active .toggle-title .icon {
        background-color: var(--Main-color);
    }

.tf-accordion1.has-bg .tf-toggle1,
.tf-accordion1.has-bg .tf-toggle,
.tf-accordion.has-bg .tf-toggle1,
.tf-accordion.has-bg .tf-toggle {
    padding: 10px 0px 10px 10px;
    background-color: var(--Bg-2);
    border: none;
    border-radius: 16px;
    margin-bottom: 16px;
}

    .tf-accordion1.has-bg .tf-toggle1 .toggle-title,
    .tf-accordion1.has-bg .tf-toggle .toggle-title,
    .tf-accordion.has-bg .tf-toggle1 .toggle-title,
    .tf-accordion.has-bg .tf-toggle .toggle-title {
        padding-bottom: 0;
        padding-left: 8px;
    }

        .tf-accordion1.has-bg .tf-toggle1 .toggle-title .title,
        .tf-accordion1.has-bg .tf-toggle .toggle-title .title,
        .tf-accordion.has-bg .tf-toggle1 .toggle-title .title,
        .tf-accordion.has-bg .tf-toggle .toggle-title .title {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            color: var(--White);
            gap: 10px;
            letter-spacing: 0.4px;
        }

            .tf-accordion1.has-bg .tf-toggle1 .toggle-title .title i,
            .tf-accordion1.has-bg .tf-toggle .toggle-title .title i,
            .tf-accordion.has-bg .tf-toggle1 .toggle-title .title i,
            .tf-accordion.has-bg .tf-toggle .toggle-title .title i {
                font-size: 26px;
            }

        .tf-accordion1.has-bg .tf-toggle1 .toggle-title .icon,
        .tf-accordion1.has-bg .tf-toggle .toggle-title .icon,
        .tf-accordion.has-bg .tf-toggle1 .toggle-title .icon,
        .tf-accordion.has-bg .tf-toggle .toggle-title .icon {
            background-color: unset;
        }

            .tf-accordion1.has-bg .tf-toggle1 .toggle-title .icon::after,
            .tf-accordion1.has-bg .tf-toggle .toggle-title .icon::after,
            .tf-accordion.has-bg .tf-toggle1 .toggle-title .icon::after,
            .tf-accordion.has-bg .tf-toggle .toggle-title .icon::after {
                height: 2px;
                width: 16px;
                border-color: var(--Secondary);
            }

            .tf-accordion1.has-bg .tf-toggle1 .toggle-title .icon::before,
            .tf-accordion1.has-bg .tf-toggle .toggle-title .icon::before,
            .tf-accordion.has-bg .tf-toggle1 .toggle-title .icon::before,
            .tf-accordion.has-bg .tf-toggle .toggle-title .icon::before {
                height: 16px;
                width: 1px;
                border-color: var(--Secondary);
            }

    .tf-accordion1.has-bg .tf-toggle1 .toggle-content,
    .tf-accordion1.has-bg .tf-toggle .toggle-content,
    .tf-accordion.has-bg .tf-toggle1 .toggle-content,
    .tf-accordion.has-bg .tf-toggle .toggle-content {
        padding-top: 16px;
        margin-top: 9px;
        border-top: 1px solid var(--Border);
        padding-bottom: 8px;
    }

        .tf-accordion1.has-bg .tf-toggle1 .toggle-content p,
        .tf-accordion1.has-bg .tf-toggle .toggle-content p,
        .tf-accordion.has-bg .tf-toggle1 .toggle-content p,
        .tf-accordion.has-bg .tf-toggle .toggle-content p {
            font-size: 14px;
            line-height: 19.6px;
            margin-left: 43px;
            margin-right: 11px;
        }

    .tf-accordion1.has-bg .tf-toggle1.active .title,
    .tf-accordion1.has-bg .tf-toggle.active .title,
    .tf-accordion.has-bg .tf-toggle1.active .title,
    .tf-accordion.has-bg .tf-toggle.active .title {
        color: var(--Main-color);
    }

    .tf-accordion1.has-bg .tf-toggle1.active .icon::after,
    .tf-accordion1.has-bg .tf-toggle.active .icon::after,
    .tf-accordion.has-bg .tf-toggle1.active .icon::after,
    .tf-accordion.has-bg .tf-toggle.active .icon::after {
        border-color: var(--Main-color);
    }

.tf-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 22px;
    width: max-content;
    font-size: 16px;
    font-weight: 645;
    line-height: 21.17px;
    gap: 10px;
    background: linear-gradient(90deg, #865f12 0%, #fec961 50%, #f1dd7e 100%);
    /* background: #ffc01f; */
    border-radius: 11px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
}

    .tf-btn:hover,
    .tf-btn:focus {
        background: linear-gradient(-90deg, #865f12 0%, #fec961 50%, #f1dd7e 100%);
        color: var(--Main-color);
        color: #111;
    }

        .tf-btn:hover.style-3::after {
            background: none;
        }

        .tf-btn:hover.node-border-node-backgroud,
        .tf-btn:hover.border-node-backgroud {
            background-color: var(--Main-color);
            color: #111 !important;
        }

    .tf-btn.style-lg {
        padding: 0 50px;
        font-size: 20px;
        line-height: 26px;
        height: 67px;
    }

    .tf-btn.style-3 {
        position: relative;
        background-image: unset;
    }

        .tf-btn.style-3::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 999px;
            border: 1px solid transparent;
            background: linear-gradient(to right, #fe8c45 2.74%, #ca2826 103%) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            background-size: 300% 300%;
        }

    .tf-btn.style-2 {
        height: 44px;
        background: var(--Bg-2);
        color: var(--Secondary);
        gap: 5px;
    }

    .tf-btn.full-w {
        width: 100%;
    }

    .tf-btn.border-node-backgroud {
        background: transparent;
        border: 1px solid var(--Main-color);
    }

    .tf-btn.node-border-node-backgroud {
        background: transparent;
        border: 1px solid var(--Main-color);
        border: none !important;
    }

    .tf-btn.pd-0-46 {
        padding: 0px 46px;
    }

        .tf-btn.pd-0-46.node-background {
            background: transparent;
            border: none !important;
            padding: 0 !important;
        }

    .tf-btn.fs-20 {
        font-size: 20px;
    }

        .tf-btn.fs-20 i {
            font-size: 16px;
        }

    .tf-btn.h-67 {
        height: 67px;
    }

    .tf-btn.h-46 {
        height: 46px;
    }

    .tf-btn.h-42 {
        height: 42px;
    }

    .tf-btn.fs-13 {
        font-size: 13px;
    }

.switch-item[type="checkbox"] {
    position: relative;
    width: 46px;
    min-width: 46px;
    height: 26px;
    -webkit-appearance: none;
    border-radius: 999px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 0;
}

    .switch-item[type="checkbox"]::before {
        content: "";
        width: 22px;
        height: 22px;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        background: var(--White);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .switch-item[type="checkbox"]:checked {
        background: var(--Main-color);
    }

        .switch-item[type="checkbox"]:checked::before {
            left: 20px;
        }

.article-blog-item {
    padding: 30px;
    background-color: var(--Bg-2);
    border-radius: 16px;
    margin-bottom: 29px;
}

    .article-blog-item .image-wrap {
        border-radius: 16px;
        margin-bottom: 23px;
        overflow: hidden;
    }

    .article-blog-item .content .title {
        font-weight: 700;
        font-size: 24px;
        line-height: 31.5px;
        color: var(--White);
        margin-bottom: 7px;
    }

    .article-blog-item .content .meta {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 11px;
        margin-bottom: 30px;
    }

        .article-blog-item .content .meta li {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 6px;
            color: var(--Secondary);
            font-size: 12px;
            line-height: 16.8px;
            position: relative;
        }

            .article-blog-item .content .meta li i {
                font-size: 16px;
            }

            .article-blog-item .content .meta li a {
                color: var(--Main-color);
            }

                .article-blog-item .content .meta li a:hover {
                    color: var(--White);
                }

            .article-blog-item .content .meta li:not(:last-child) {
                padding-right: 11px;
            }

                .article-blog-item .content .meta li:not(:last-child)::after {
                    position: absolute;
                    content: "";
                    right: 0;
                    width: 1px;
                    height: 16px;
                    background-color: rgba(255, 255, 255, 0.1);
                }

    .article-blog-item .content p {
        font-size: 14px;
        line-height: 19.6px;
        color: var(--Secondary);
    }

    .article-blog-item.style-grid {
        padding: 0;
        margin-bottom: 0;
        background: transparent;
    }

        .article-blog-item.style-grid .wrap-image {
            margin-bottom: 23px;
        }

        .article-blog-item.style-grid .content {
            text-align: center;
        }

            .article-blog-item.style-grid .content .title {
                font-size: 18px;
                margin-bottom: 0;
                font-weight: 645;
                line-height: 23.81px;
            }

            .article-blog-item.style-grid .content .meta {
                margin-bottom: 7px;
                justify-content: center;
            }

#footer .footer-about {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 46px;
}

    #footer .footer-about .footer-menu {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

        #footer .footer-about .footer-menu .menu {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 41px;
        }

            #footer .footer-about .footer-menu .menu li a {
                font-size: 15px;
                font-weight: 654;
                line-height: 19.85px;
            }

    #footer .footer-about .content p {
        font-size: 14px;
        line-height: 19.6px;
        color: var(--Secondary2);
        margin-bottom: 21px;
    }

    #footer .footer-about .content .note {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        color: var(--Secondary2);
        align-items: center;
        gap: 10px;
    }

        #footer .footer-about .content .note i {
            font-size: 24px;
        }

#footer .footer-main {
    padding-top: 46px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    #footer .footer-main .widget-footer {
        margin-bottom: 30px;
    }

        #footer .footer-main .widget-footer .widget-title {
            font-size: 15px;
            font-weight: 700;
            line-height: 26.46px;
            margin-bottom: 8px;
        }

        #footer .footer-main .widget-footer li a {
            color: var(--Secondary2);
            font-size: 14px;
            line-height: 28px;
        }

        #footer .footer-main .widget-footer li:hover a {
            color: var(--Main-color);
        }

        #footer .footer-main .widget-footer p {
            font-size: 14px;
            line-height: 19.6px;
            color: var(--Secondary2);
        }

        #footer .footer-main .widget-footer.dowload-app .widget-title {
            margin-bottom: 14px;
        }

        #footer .footer-main .widget-footer.dowload-app .button-dowload {
            margin-bottom: 20px;
        }

            #footer .footer-main .widget-footer.dowload-app .button-dowload a {
                display: block;
                max-width: 124px;
            }

            #footer .footer-main .widget-footer.dowload-app .button-dowload .ios img {
                margin-bottom: 9px;
            }

            #footer .footer-main .widget-footer.dowload-app .button-dowload img {
                max-width: 124px;
                border-radius: 8px;
                border: 1px solid var(--Border);
            }

        #footer .footer-main .widget-footer.dowload-app .bottom .widget-title {
            margin-bottom: 5px;
        }

        #footer .footer-main .widget-footer.help .widget-title {
            margin-bottom: 19px;
        }

        #footer .footer-main .widget-footer.help .tf-btn {
            margin-bottom: 18px;
        }

#footer .footer-bottom {
    padding-top: 46px;
    padding-bottom: 46px;
}

    #footer .footer-bottom .wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

        #footer .footer-bottom .wrapper .left {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #footer .footer-bottom .wrapper .center ul {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            align-items: center;
            gap: 20px 40px;
            flex-wrap: wrap;
        }

            #footer .footer-bottom .wrapper .center ul li a {
                font-size: 14px;
                color: var(--Secondary2);
            }

            #footer .footer-bottom .wrapper .center ul li:hover a {
                color: var(--Main-color);
            }

        #footer .footer-bottom .wrapper .right span {
            font-size: 14px;
            color: var(--Secondary2);
        }

#footer.footer-dashboard .footer-about {
    border-bottom: none;
    padding: 0;
}

#footer.footer-dashboard .footer-about-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 47px;
}

#footer.footer-dashboard .footer-main {
    padding-bottom: 0;
    border-bottom: none;
}

#footer.footer-dashboard .footer-bottom {
    padding-top: 16px;
}

    #footer.footer-dashboard .footer-bottom .wrapper {
        padding-top: 46px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

form {
    position: relative;
    /* z-index: 30; */
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 8px 19px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
    border-radius: 11px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

    textarea::placeholder,
    input[type="text"]::placeholder,
    input[type="password"]::placeholder,
    input[type="datetime"]::placeholder,
    input[type="datetime-local"]::placeholder,
    input[type="date"]::placeholder,
    input[type="month"]::placeholder,
    input[type="time"]::placeholder,
    input[type="week"]::placeholder,
    input[type="number"]::placeholder,
    input[type="email"]::placeholder,
    input[type="url"]::placeholder,
    input[type="search"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="color"]::placeholder {
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        color: var(--Secondary);
    }

    textarea.style-default,
    input[type="text"].style-default,
    input[type="password"].style-default,
    input[type="datetime"].style-default,
    input[type="datetime-local"].style-default,
    input[type="date"].style-default,
    input[type="month"].style-default,
    input[type="time"].style-default,
    input[type="week"].style-default,
    input[type="number"].style-default,
    input[type="email"].style-default,
    input[type="url"].style-default,
    input[type="search"].style-default,
    input[type="tel"].style-default,
    input[type="color"].style-default {
        padding: 0;
        border: 0 !important;
        border-radius: 0;
        background-color: transparent;
    }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: transparent;
    overflow: hidden;
    padding: 0;
}

textarea {
    height: 100px;
    border-radius: 16px;
}

form .cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

    form .cols.cols-two > * {
        width: 50%;
    }

form label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 550;
    line-height: 19.6px;
}

    form label.mb-0 {
        margin-bottom: 0px;
    }

form.style-2 fieldset input {
    border-radius: 25px;
    background-color: var(--White);
    color: var(--Text-4);
    height: 54px;
}

form.style-2 .button-submit i {
    color: var(--Bg);
    font-size: 16px;
}

fieldset {
    margin-bottom: 0px;
    width: 100%;
}

.tf-field {
    position: relative;
}

.form-search fieldset input {
    padding-left: 45px;
    border-radius: 25px;
    background-color: var(--White);
    color: var(--Text-4);
    height: 54px;
}

    .form-search fieldset input::placeholder {
        color: var(--Text-4);
    }

.form-search .button-submit {
    position: absolute;
    left: 20px;
    top: 32%;
}

    .form-search .button-submit i {
        color: var(--Bg);
        font-size: 16px;
    }

.form-search.style-2 fieldset input {
    background-color: var(--Bg-2);
    padding: 9px 52px 9px 20px;
    border: 1px solid rgba(147, 172, 211, 0.1);
    height: 60px;
    color: var(--White);
    border-radius: 999px;
}

    .form-search.style-2 fieldset input::placeholder {
        font-size: 16px;
        line-height: 21.17px;
        color: rgb(85, 101, 126);
    }

.form-search.style-2 .button-submit {
    left: unset;
    right: 20px;
}

    .form-search.style-2 .button-submit i {
        font-size: 24px;
        color: var(--White);
    }

.form-email .button-submit {
    position: absolute;
    right: 17px;
    top: 32%;
}

.checkbox-item.mb-10 {
    margin-bottom: 10px;
}

.checkbox-item label {
    padding-left: 36px;
    cursor: pointer;
    position: relative;
}

    .checkbox-item label input {
        position: absolute;
        opacity: 0;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

        .checkbox-item label input:checked ~ .btn-checkbox:after {
            display: block;
        }

        .checkbox-item label input:checked ~ .btn-radio:after {
            display: block;
        }

    .checkbox-item label p {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        color: var(--Secondary);
    }

    .checkbox-item label .btn-checkbox {
        position: absolute;
        left: 0;
        top: 0;
        width: 22px;
        height: 22px;
        /* background-color: transparent; */
        border-radius: 4px;
        border: 1px solid rgb(255 255 255 / 15%);
        background: var(--Sub-color-4);
    }

        .checkbox-item label .btn-checkbox:after {
            content: "\e90f";
            font-family: "icomoon" !important;
            position: absolute;
            font-size: 14px;
            top: 1px;
            left: 3px;
            display: none;
        }

.form-login,
.form-register {
    margin-bottom: 35px;
}

    .form-login .checkbox-item,
    .form-register .checkbox-item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 35px;
        flex-wrap: wrap;
        gap: 20px 10px;
    }

.form-security .toggle-password.first-time {
    top: 56px;
}

.form-security .toggle-password.second-time {
    top: 56px;
}

.toggle-password {
    position: absolute;
    right: 21px;
    top: 56%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

    .toggle-password i {
        color: var(--Secondary);
    }

    .toggle-password.unshow::after {
        content: "";
        position: absolute;
        transform: rotate(-45deg);
        top: -1px;
        width: 1px;
        height: 19px;
        background-color: var(--Secondary);
        right: 9px;
    }

.fieldPhoneNumber input {
    padding-left: 111px !important;
}

.fieldPhoneNumber .iti {
    width: 100%;
}

    .fieldPhoneNumber .iti .iti__flag-container {
        width: 14%;
    }

    .fieldPhoneNumber .iti .iti__selected-flag {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        color: var(--Secondary);
        padding: 0 10px 0 20px;
    }

        .fieldPhoneNumber .iti .iti__selected-flag.active::before {
            transform: rotate(-180deg);
        }

        .fieldPhoneNumber .iti .iti__selected-flag::before {
            content: "\e944";
            font-family: "icomoon";
            font-size: 16px;
            position: absolute;
            left: 55px;
            transform: rotate(0px);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .fieldPhoneNumber .iti .iti__selected-flag::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 1px;
            background-color: var(--Border-2);
            left: 92px;
        }

    .fieldPhoneNumber .iti .iti__country-list {
        max-height: 200px;
        max-width: 300px;
        overflow-x: hidden;
        border-radius: 8px;
        transform: translateY(20px);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 9 !important;
    }

        .fieldPhoneNumber .iti .iti__country-list.show {
            transform: translateY(0px);
            visibility: visible;
            opacity: 1;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .fieldPhoneNumber .iti .iti__country-list .iti__country .iti__country-name,
        .fieldPhoneNumber .iti .iti__country-list .iti__country .iti__dial-code {
            font-size: 14px;
            font-weight: 400;
            line-height: 19.6px;
            color: var(--Secondary);
        }

.form-send-message input {
    height: 50px;
}

.form-send-message .button-submit {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 20px;
    color: var(--Main-color);
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.pagination-rectangle {
    padding-top: 22px;
    position: unset;
}

    .pagination-rectangle .swiper-pagination-bullet {
        margin: 0 2.5px !important;
        width: 50px;
        height: 4px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0;
        opacity: 1;
    }

        .pagination-rectangle
        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: rgb(96, 85, 255);
        }

    .pagination-rectangle.style-1
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--Main-color);
    }

.section-testimonial-home-2 .swiper-wrapper {
    position: relative;
}

.section-testimonial-home-2 .button {
    width: 66px;
    height: 66px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-size: 24px;
    border-radius: 999px;
    border: 1px solid var(--Border);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .section-testimonial-home-2 .button:hover {
        color: var(--Main-color);
    }

    .section-testimonial-home-2 .button::after {
        display: none;
    }

.section-testimonial-home-2 .testimonial-next {
    right: 15.8%;
    top: 46%;
}

.section-testimonial-home-2 .testimonial-prev {
    left: 17.4%;
    top: 46%;
}

.section-menu-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    width: 300px;
    min-width: 300px;
    height: calc(100vh - 82.65px);
    top: 82.65px;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 70;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .section-menu-left::-webkit-scrollbar {
        width: 0px;
    }

    .section-menu-left.active {
        left: -300px;
        opacity: 0;
        visibility: hidden;
    }

    .section-menu-left > .center {
        border-right: transparent;
        background-color: var(--backdrop);
        padding: 30px;
        flex-grow: 1;
    }

    .section-menu-left .images-wrap {
        margin: -10px 0 -8px;
    }

    .section-menu-left .menu-list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 22px;
        flex-direction: column;
    }

        .section-menu-left .menu-list .menu-item {
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .section-menu-left .menu-list .menu-item a {
                position: relative;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 8px;
            }

                .section-menu-left .menu-list .menu-item a .icon {
                    width: 22px;
                    height: 22px;
                }

                    .section-menu-left .menu-list .menu-item a .icon i {
                        font-size: 20px;
                        color: var(--Secondary);
                        -webkit-transition: all 0.3s ease;
                        -moz-transition: all 0.3s ease;
                        -ms-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                .section-menu-left .menu-list .menu-item a .text {
                    color: var(--Secondary2);
                    font-size: 15px;
                    font-weight: 600;
                    line-height: 21px;
                    text-transform: capitalize;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

            .section-menu-left .menu-list .menu-item.active > a i,
            .section-menu-left .menu-list .menu-item.active > a .text,
            .section-menu-left .menu-list .menu-item:hover > a i,
            .section-menu-left .menu-list .menu-item:hover > a .text {
                color: var(--Main-color) !important;
            }

            .section-menu-left .menu-list .menu-item.has-children {
                position: relative;
            }

                .section-menu-left .menu-list .menu-item.has-children::after {
                    position: absolute;
                    content: "\e944";
                    top: 1px;
                    right: -4px;
                    font-size: 22px;
                    font-family: "icomoon";
                    color: var(--Secondary);
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                    cursor: pointer;
                }

                .section-menu-left .menu-list .menu-item.has-children .sub-menu {
                    display: none;
                    margin-top: 20px;
                    padding-left: 30px;
                }

                    .section-menu-left
                    .menu-list
                    .menu-item.has-children
                    .sub-menu
                    .sub-menu-item:not(:last-child) {
                        margin-bottom: 20px;
                    }

                .section-menu-left .menu-list .menu-item.has-children.active > a i,
                .section-menu-left .menu-list .menu-item.has-children.active > a .text {
                    color: var(--Main-color);
                }

                .section-menu-left .menu-list .menu-item.has-children.active::after {
                    top: 0;
                    transform: rotate(180deg);
                    color: var(--Main-color);
                }

                .section-menu-left .menu-list .menu-item.has-children.active > .sub-menu {
                    display: block;
                }

            .section-menu-left .menu-list .menu-item .sub-current > a i,
            .section-menu-left .menu-list .menu-item .sub-current > a .text {
                color: var(--Main-color) !important;
            }

    .section-menu-left .advertising a {
        width: 100%;
    }

        .section-menu-left .advertising a i {
            font-size: 20px;
        }

    .section-menu-left .tite-item {
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        line-height: 16px;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .section-menu-left .invite .text {
        color: var(--Secondary);
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .section-menu-left .faq ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: start;
        justify-content: start;
        gap: 12px;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .section-menu-left .faq a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        color: var(--Secondary2);
        font-size: 15px;
        font-weight: 600;
        line-height: 20px;
        text-transform: capitalize;
    }

        .section-menu-left .faq a i {
            font-size: 20px;
            color: var(--Secondary);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .section-menu-left .faq a.mb-15 {
            margin-bottom: 15px;
        }

        .section-menu-left .faq a:hover {
            color: var(--White);
        }

            .section-menu-left .faq a:hover i {
                color: var(--White);
            }

    .section-menu-left .button-collapse-menu2 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 8px;
        color: var(--Secondary2);
        font-size: 15px;
        font-weight: 600;
        line-height: 21px;
        text-transform: capitalize;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .section-menu-left .button-collapse-menu2 i {
            font-size: 20px;
            color: var(--Secondary);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .section-menu-left .button-collapse-menu2:hover {
            color: var(--White);
        }

            .section-menu-left .button-collapse-menu2:hover i {
                color: var(--White);
            }

    .section-menu-left .divider {
        width: 100%;
        height: 1px;
        margin-top: 30px;
        margin-bottom: 30px;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 52.66%, rgba(255, 255, 255, 0) 100% );
    }

.sub-menu-item .text {
    font-size: 13px !important;
    line-height: normal !important;
}

.text-success {
    color: rgb(32 178 110) !important;
}

.sub-menu-item.active .text {
    color: #fff !important;
}

.button-show-hide {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    padding: 27px;
    z-index: 61;
    background: #15161b;
    cursor: pointer;
    display: none;
}

    .button-show-hide .mobile-button {
        width: 26px;
        height: 26px;
        background-color: transparent;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }

        .button-show-hide .mobile-button.active span {
            opacity: 0;
        }

        .button-show-hide .mobile-button.active::after {
            transform: rotate3d(0, 0, 1, -45deg);
            top: 50%;
        }

        .button-show-hide .mobile-button.active::before {
            transform: rotate3d(0, 0, 1, 45deg);
            top: 50%;
        }

        .button-show-hide .mobile-button::before,
        .button-show-hide .mobile-button::after,
        .button-show-hide .mobile-button span {
            background-color: var(--White);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .button-show-hide .mobile-button::before,
        .button-show-hide .mobile-button::after {
            content: "";
            position: absolute;
            top: 0;
            height: 2px;
            width: 100%;
            left: 0;
            top: 50%;
            -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
        }

        .button-show-hide .mobile-button span {
            position: absolute;
            width: 100%;
            height: 2px;
            left: 0;
            top: 50%;
            overflow: hidden;
            text-indent: 200%;
        }

        .button-show-hide .mobile-button::before {
            -webkit-transform: translate3d(0, -7px, 0);
            -moz-transform: translate3d(0, -7px, 0);
            transform: translate3d(0, -7px, 0);
        }

        .button-show-hide .mobile-button::after {
            -webkit-transform: translate3d(0, 7px, 0);
            -moz-transform: translate3d(0, 7px, 0);
            transform: translate3d(0, 7px, 0);
        }

.section-menu-left-mobile {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .section-menu-left-mobile.active {
        opacity: 1;
        visibility: visible;
    }

    .section-menu-left-mobile .menu-list {
        padding: 10px 0;
        width: 80px;
        height: 100%;
        background-color: var(--Bg-2);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .section-menu-left-mobile .has-children .dropdown ul.dropdown-menu {
        width: 200px;
    }

    .section-menu-left-mobile .button-collapse-menu2,
    .section-menu-left-mobile .dropdown-toggle {
        width: 48px;
        height: 48px;
        padding: 12px 13px;
        margin: auto;
        border-radius: 14px;
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
        position: relative;
        z-index: 5;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .section-menu-left-mobile .button-collapse-menu2.active,
        .section-menu-left-mobile .button-collapse-menu2:hover,
        .section-menu-left-mobile .button-collapse-menu2.show,
        .section-menu-left-mobile .dropdown-toggle.active,
        .section-menu-left-mobile .dropdown-toggle:hover,
        .section-menu-left-mobile .dropdown-toggle.show {
            border: 1px solid rgb(255 255 255 / 15%);
            background: rgba(147, 172, 211, 0.0705882353);
            box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.02) inset;
        }

            .section-menu-left-mobile .button-collapse-menu2.active .icon i,
            .section-menu-left-mobile .button-collapse-menu2:hover .icon i,
            .section-menu-left-mobile .button-collapse-menu2.show .icon i,
            .section-menu-left-mobile .dropdown-toggle.active .icon i,
            .section-menu-left-mobile .dropdown-toggle:hover .icon i,
            .section-menu-left-mobile .dropdown-toggle.show .icon i {
                color: var(--White);
            }

        .section-menu-left-mobile .button-collapse-menu2::after,
        .section-menu-left-mobile .dropdown-toggle::after {
            display: none;
        }

        .section-menu-left-mobile .button-collapse-menu2 i {
            font-size: 22px;
        }

    .section-menu-left-mobile ul.dropdown-menu {
        padding: 10px 14px;
        gap: 6px;
        border-radius: 8px;
        background: var(--backdrop);
        border: none;
        margin: 4px 0px 0px 14px !important;
        width: max-content;
        min-width: unset;
    }

        .section-menu-left-mobile ul.dropdown-menu > li:not(:last-child) {
            margin-bottom: 20px;
        }

        .section-menu-left-mobile ul.dropdown-menu::before {
            position: absolute;
            content: "";
            top: 13px;
            left: -10px;
            width: 14px;
            height: 8px;
            transform: rotate(-90deg);
            background: var(--backdrop);
            clip-path: polygon(50% 0, 100% 100%, 50% 100%, 0 100%);
        }

        .section-menu-left-mobile ul.dropdown-menu .title-sub {
            color: #ced6ee;
            font-size: 16px;
            font-weight: 700;
            line-height: 21px;
        }

        .section-menu-left-mobile ul.dropdown-menu a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 8px;
        }

            .section-menu-left-mobile ul.dropdown-menu a i {
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .section-menu-left-mobile ul.dropdown-menu a .text {
                font-size: 14px;
                font-weight: 700;
                line-height: 19px;
                text-transform: capitalize;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .section-menu-left-mobile ul.dropdown-menu a.active::after,
            .section-menu-left-mobile ul.dropdown-menu a.active i,
            .section-menu-left-mobile ul.dropdown-menu a.active .text,
            .section-menu-left-mobile ul.dropdown-menu a:hover::after,
            .section-menu-left-mobile ul.dropdown-menu a:hover i,
            .section-menu-left-mobile ul.dropdown-menu a:hover .text {
                color: var(--Main-color);
            }

        .section-menu-left-mobile ul.dropdown-menu .wg-social ul {
            flex-wrap: wrap;
        }

    .section-menu-left-mobile .icon {
        width: 22px;
        height: 22px;
        margin: auto;
    }

        .section-menu-left-mobile .icon i {
            font-size: 22px;
            color: var(--Body-Text);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

.nice-select {
    border-radius: 16px;
    border: 1px solid var(--Border);
    padding: 13px 0px 13px 9px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 46px;
    gap: 5px;
    cursor: pointer;
}

    .nice-select .icon {
        font-size: 20px;
    }

    .nice-select::after {
        content: "\e944";
        right: 10px;
        color: rgba(255, 255, 255, 0.3);
        font-family: "icomoon";
        font-size: 20px;
        position: absolute;
        transform: rotate(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .nice-select > span {
        font-weight: 759;
        font-size: 14px;
        line-height: 18.52px;
        color: var(--White);
    }

    .nice-select > .list {
        position: absolute;
        top: 100%;
        left: 0;
        border: 1px solid var(--Border);
        border-radius: 12px;
        width: 100%;
        padding: 10px;
        background-color: var(--Bg-2);
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .nice-select > .list .option {
            width: 100%;
            padding: 10px 10px;
            color: var(--White);
            position: relative;
            border-radius: 12px;
            cursor: pointer;
        }

            .nice-select > .list .option:not(:last-child) {
                margin-bottom: 3px;
            }

            .nice-select > .list .option:hover {
                background-color: var(--Bg);
            }

            .nice-select > .list .option.selected {
                color: var(--Main-color);
                background-color: var(--Bg);
            }

                .nice-select > .list .option.selected::after {
                    position: absolute;
                    font-family: "icomoon" !important;
                    content: "\e90f";
                    right: 18px;
                    top: 50%;
                    transform: translateY(-50%);
                }

    .nice-select.open {
        border-color: var(--Border) !important;
        z-index: 50;
    }

        .nice-select.open::after {
            transform: rotate(-180deg);
            color: var(--White);
        }

        .nice-select.open .list {
            opacity: 1;
            visibility: visible;
        }

.social-sign-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

    .social-sign-list li {
        width: 100%;
    }

        .social-sign-list li a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            border: 1px solid var(--Border-1);
            border-radius: 999px;
            gap: 10px;
        }

            .social-sign-list li a span {
                font-size: 14px;
                font-weight: 645;
                line-height: 19.6px;
            }

.sidebar-dashboard {
    position: fixed;
    right: 19px;
    top: 100px;
    bottom: 15px;
    width: 270px;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 50;
    overflow-y: auto;
    background-color: var(--Bg-2);
}

    .sidebar-dashboard::-webkit-scrollbar {
        width: 0px;
    }

    .sidebar-dashboard .wrap-sidebar-dashboard {
        background-color: var(--Bg-2);
        padding: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        gap: 40px;
        /* height: 100vh; */
    }

    .sidebar-dashboard .heading {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 8px;
        font-size: 16px;
        font-weight: 600;
        line-height: 18px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 12px;
    }

        .sidebar-dashboard .heading .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
        }

    .sidebar-dashboard .sidebar-contest .wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .sidebar-dashboard .sidebar-contest .contest-item {
        background-color: #1b1b1b;
        border-radius: 16px;
        padding: 20px;
        overflow: hidden;
    }

        .sidebar-dashboard .sidebar-contest .contest-item .image {
            width: 80px;
            margin-bottom: 10px;
        }

        .sidebar-dashboard .sidebar-contest .contest-item .title {
            font-size: 16px;
            font-weight: 700;
            line-height: 21px;
            margin-bottom: 6px;
        }

        .sidebar-dashboard .sidebar-contest .contest-item .sub-item {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 6px;
            color: var(--Secondary);
        }

            .sidebar-dashboard .sidebar-contest .contest-item .sub-item:not(:last-child) {
                margin-bottom: 3px;
            }

            .sidebar-dashboard .sidebar-contest .contest-item .sub-item i {
                font-size: 16px;
            }

            .sidebar-dashboard .sidebar-contest .contest-item .sub-item p {
                font-size: 14px;
                line-height: 20px;
            }

        .sidebar-dashboard .sidebar-contest .contest-item.main {
            padding: 0;
        }

            .sidebar-dashboard .sidebar-contest .contest-item.main .image {
                width: 100%;
                margin-bottom: 0;
            }

            .sidebar-dashboard .sidebar-contest .contest-item.main .content {
                padding: 20px;
            }

            .sidebar-dashboard .sidebar-contest .contest-item.main .title {
                font-size: 24px;
                line-height: 32px;
            }

            .sidebar-dashboard .sidebar-contest .contest-item.main .sub {
                margin-bottom: 20px;
            }

    .sidebar-dashboard .sidebar-support .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
        color: var(--Secondary2);
    }

        .sidebar-dashboard .sidebar-support .content img {
            width: 56px;
        }

.button-sidebar-dashboard {
    display: none;
    cursor: pointer;
}

    .button-sidebar-dashboard .icon {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 16px;
        border: 1px solid rgb(255 255 255 / 15%);
        background: rgba(147, 172, 211, 0.0705882353);
        box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.02) inset;
    }

.dropdown.image-select img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.dropdown.image-select .dropdown-toggle {
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
    padding: 8px 16px 8px 16px;
    height: 40px;
    overflow: hidden;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
}

    .dropdown.image-select .dropdown-toggle .filter-option-inner-inner {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: start;
        color: #fdac00;
        font-size: 15px;
        font-weight: 700;
        line-height: 24px;
        text-transform: capitalize;
    }

        .dropdown.image-select .dropdown-toggle .filter-option-inner-inner span {
            display: none;
        }

    .dropdown.image-select .dropdown-toggle::after {
        display: none;
    }

.dropdown.image-select > .dropdown-menu.show {
    top: 10px !important;
    left: unset !important;
    right: 0 !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 210px;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    border-radius: 14px;
    background: var(--backdrop);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1) inset, 0px 8px 22px 0px rgba(4, 8, 16, 0.3);
}

    .dropdown.image-select > .dropdown-menu.show > .inner {
        max-height: 375px;
        overflow-y: auto;
    }

        .dropdown.image-select > .dropdown-menu.show > .inner::-webkit-scrollbar {
            width: 4px;
        }

        .dropdown.image-select > .dropdown-menu.show > .inner::-webkit-scrollbar-thumb {
            background: var(--Note, #4e556f);
            border-radius: 10px;
        }

        .dropdown.image-select > .dropdown-menu.show > .inner ul {
            background: var(--backdrop);
            gap: 0 !important;
        }

            .dropdown.image-select > .dropdown-menu.show > .inner ul li {
                position: relative;
            }

                .dropdown.image-select > .dropdown-menu.show > .inner ul li a {
                    padding: 0;
                    background: var(--backdrop);
                    color: var(--Secondary);
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 20px;
                    text-transform: capitalize;
                }

                .dropdown.image-select > .dropdown-menu.show > .inner ul li:not(:last-child) {
                    margin-bottom: 25px;
                }

                    .dropdown.image-select > .dropdown-menu.show > .inner
                    ul
                    li:not(:last-child)::after {
                        position: absolute;
                        content: "";
                        width: 100%;
                        height: 1px;
                        left: 0;
                        bottom: -13px;
                        background: var(--Border-1);
                    }

.popup-wrap {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .popup-wrap .button-close-dropdown {
        position: absolute;
        z-index: 10;
        top: 20px;
        right: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 1px solid rgb(255 255 255 / 15%);
        background: var(--Sub-color-4);
        backdrop-filter: blur(2px);
        cursor: pointer;
    }

    .popup-wrap.type-has-children {
        width: 40px;
        height: 40px;
        padding: 3px;
        flex-shrink: 0;
        border-radius: 50%;
        border: 1px solid rgb(255 255 255 / 15%);
        background: var(--Sub-color-4);
        text-align: center;
    }

    .popup-wrap > .dropdown > .dropdown-toggle {
        cursor: pointer;
        padding: 0;
        overflow: hidden;
        background: none;
        border: none;
    }

        .popup-wrap > .dropdown > .dropdown-toggle::after {
            display: none;
        }

        .popup-wrap > .dropdown > .dropdown-toggle:focus {
            outline: none;
            outline-offset: 0;
            box-shadow: none;
        }

    .popup-wrap > .dropdown > .dropdown-menu.show {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        border-radius: 14px;
        border: none;
        background: var(--backdrop);
        box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1) inset, 0px 8px 22px 0px rgba(4, 8, 16, 0.3);
    }

    .popup-wrap.notification .popup-top {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-wrap.notification .dropdown-menu.show {
        width: 270px;
        text-align: center;
        top: 10px !important;
    }

        .popup-wrap.notification .dropdown-menu.show p {
            color: var(--Secondary);
        }

    .popup-wrap.notification.has-noti::after {
        position: absolute;
        content: "";
        top: 5px;
        right: 10px;
        width: 8px;
        height: 8px;
        background-color: #fdac00;
        border: 1.5px solid #1d1d1d;
        border-radius: 50%;
    }

    .popup-wrap.account .popup-top {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

        .popup-wrap.account .popup-top .image {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            overflow: hidden;
        }

        .popup-wrap.account .popup-top .name {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

            .popup-wrap.account .popup-top .name i {
                font-size: 13px;
            }

        .popup-wrap.account .popup-top .text {
            font-family: "Manrope", sans-serif;
            font-weight: 700;
            font-size: 14px;
            line-height: 19px;
        }

    .popup-wrap.account .dropdown-menu.show {
        top: 10px !important;
        gap: 15px;
        padding: 15px 20px;
        min-width: 200px;
    }

    .popup-wrap.account .item {
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
    }

        .popup-wrap.account .item:hover svg path {
            stroke: var(--Main-color);
        }

.modalCenter {
    width: 100vw !important;
    padding-right: 0 !important;
}

    .modalCenter .modal-dialog {
        max-width: 920px;
    }

        .modalCenter .modal-dialog .modal-content {
            border-radius: 20px;
            background-color: transparent;
        }

.s-map .box-map .map {
    width: 100%;
    height: 625px;
    border-radius: 16px;
}

.mapboxgl-ctrl-attrib a,
.mapboxgl-ctrl-attrib.mapboxgl-compact {
    display: none !important;
}

a.mapboxgl-ctrl-logo {
    display: none !important;
}

/*------------ widgets ---------------- */
.tf-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .tf-social li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 38px;
        background-color: var(--Border);
        border-radius: 50%;
    }

    .tf-social li i {
        color: var(--White);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .tf-social.style-1 {
        gap: 12px;
        flex-wrap: wrap;
    }

        .tf-social.style-1 li a {
            height: 46px;
            width: 46px;
            border-radius: 14px;
        }

        .tf-social.style-1 li i {
            color: var(--Secondary);
            font-size: 20px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .tf-social li:hover i {
        color: var(--Main-color);
    }

    .tf-social.style-1 {
        gap: 12px;
    }

        .tf-social.style-1 a {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.1215686275);
            border-radius: 14px;
            background-color: transparent;
        }

            .tf-social.style-1 a i {
                color: var(--Secondary);
            }

            .tf-social.style-1 a:hover i {
                color: var(--Main-color);
            }

.box-coppy {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 15px 20px;
    background-color: rgba(147, 172, 211, 0.071);
    border-radius: 999px;
    border: 1px solid rgba(147, 172, 211, 0.1019607843);
    font-size: 14px;
    line-height: 18px;
    color: var(--Secondary);
}

    .box-coppy i {
        font-size: 20px;
        cursor: pointer;
    }

    .box-coppy span {
        text-overflow: ellipsis;
        overflow: hidden;
    }

.lottery-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 4px;
}

    .lottery-list li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 1px solid var(--Border-2);
        font-size: 14px;
        font-weight: 645;
        line-height: 18.52px;
    }

        .lottery-list li.active {
            border: 1px solid var(--Sub-color);
            background-color: var(--Sub-color);
        }

.wg-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .wg-pagination li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        width: 44px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .wg-pagination li a {
            font-size: 16px;
            font-weight: 600;
            color: var(--White);
        }

        .wg-pagination li:hover,
        .wg-pagination li.active {
            background-color: var(--Main-color);
        }

.grid-column-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.section-dowload-app {
    background-color: var(--Bg-2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .section-dowload-app::after {
        position: absolute;
        content: "";
        background-image: url(../images/item/section-dowload-app.png);
        top: 0;
        height: 100%;
        width: 100%;
    }

    .section-dowload-app .wrapper {
        position: relative;
        z-index: 1;
        padding: 45px 0 45px 30px;
    }

        .section-dowload-app .wrapper .content {
            position: relative;
            z-index: 5;
            margin-bottom: 31px;
        }

            .section-dowload-app .wrapper .content .title {
                font-weight: 700;
                font-size: 35px;
                line-height: 40px;
                margin-bottom: 19px;
            }

            .section-dowload-app .wrapper .content p {
                font-size: 14px;
                line-height: 19.6px;
                color: var(--Secondary);
            }

        .section-dowload-app .wrapper .bottom {
            position: relative;
            z-index: 5;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 8px;
        }

            .section-dowload-app .wrapper .bottom .btn-dowload {
                width: 127px;
            }

                .section-dowload-app .wrapper .bottom .btn-dowload img {
                    border-radius: 8px;
                    border: 1px solid var(--Border);
                }

    .section-dowload-app .item {
        position: absolute;
    }

        .section-dowload-app .item.coin-1 {
            top: 20px;
            left: 816.83px;
        }

        .section-dowload-app .item.coin-2 {
            top: 93px;
            left: 498px;
        }

    .section-dowload-app .item-1 {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tf-wrap-sort {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 5px;
}

.section-online-lottery .heading-section p {
    font-size: 14px;
    line-height: 19.6px;
}

.section-online-lottery .wrap-our-jackpot {
    margin-bottom: 110px;
}

.section-scratchcards {
    margin-top: 100px;
    background-image: url(../images/background-item/bg-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 160.5px;
    padding-bottom: 100px;
}

    .section-scratchcards .heading-section {
        margin-bottom: 47px;
    }

    .section-scratchcards .tf-wrap-sort {
        margin-bottom: 51px;
    }

.section-raffles .heading-section {
    margin-bottom: 40px;
}

    .section-raffles .heading-section p {
        font-size: 14px;
        line-height: 19.6px;
    }

.section-raffles .grid-column-3 {
    gap: 30px;
}

.section-raffles .start-now {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 19.6px;
    text-align: center;
    color: var(--Secondary);
    border: 1px solid var(--Border);
    border-radius: 999px;
    max-width: 345px;
    margin: 40px auto 0;
}

    .section-raffles .start-now a {
        font-weight: 600;
        font-size: 14px;
        color: var(--Main-color);
    }

        .section-raffles .start-now a:hover {
            color: var(--White);
        }

.section-lottery-results .heading-section {
    margin-bottom: 42px;
}

    .section-lottery-results .heading-section p {
        font-size: 14px;
        line-height: 19.6px;
    }

.section-lottery-results .table-lottery-results {
    margin-bottom: 40px;
}

.section-faq .content {
    margin-bottom: 40px;
}

    .section-faq .content .title {
        font-size: 50px;
        line-height: 66.15px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .section-faq .content .desc a {
        color: var(--Main-color);
        text-decoration: underline;
    }

        .section-faq .content .desc a:hover {
            color: var(--White);
        }

    .section-faq .content .desc span {
        color: var(--Main-color);
    }

.wrap-section-home-2 {
    background-image: url(../images/background-item/bg-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 160px;
}

.section-video .heading-section {
    margin-bottom: 40px;
}

    .section-video .heading-section p {
        font-size: 14px;
        line-height: 19.6px;
    }

.section-Success-story .heading-section {
    margin-bottom: 40px;
}

.section-testimonial-home-2 {
    background-image: url(../images/background-item/bg-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

    .section-testimonial-home-2 .heading-section {
        margin-top: 160px;
        margin-bottom: 40px;
    }

    .section-testimonial-home-2 .wrap-testimonial {
        padding-bottom: 100px;
        border-bottom: 1px solid var(--Border);
    }

.section-support .heading-section {
    margin-bottom: 40px;
}

.section-list-game .wrap-category {
    margin-bottom: 40px;
}

.section-list-game .tf-wrap-sort {
    margin-bottom: 40px;
}

.section-list-game .grid-column-3 {
    margin-bottom: 40px;
}

.section-list-game .grid-column-3 {
    gap: 30px 30px;
}

.s-lastest-winner.page-lottery-result .heading-section {
    margin-bottom: 39px;
}

.s-lastest-winner.page-winner-list .heading-section .title {
    margin-bottom: 5px;
}

.s-lastest-winner.page-winner-list .heading-section p {
    font-size: 14px;
    line-height: 19.6px;
}

.s-lastest-winner.page-winner-list .widget-tabs .widget-menu-tab {
    margin-bottom: 27px;
}

.section-affiliate-partner .heading-section p {
    font-size: 14px;
    line-height: 19.6px;
}

.section-getstarted .heading-section {
    padding-top: 159px;
    margin-bottom: 45px;
}

    .section-getstarted .heading-section p {
        font-size: 14px;
        line-height: 19.6px;
    }

.section-getstarted .getstart-item {
    gap: 31px;
}

    .section-getstarted .getstart-item .content .title {
        margin-bottom: 6px;
    }

.section-getstarted .guide-number {
    position: relative;
    z-index: 5;
    margin: 0 auto 39px;
}

.section-getstarted .getstart-item {
    position: relative;
}

.section-getstarted .grid-column-3 {
    position: relative;
}

    .section-getstarted .grid-column-3 .item {
        position: absolute;
        max-width: 215.56px;
        top: -68px;
    }

        .section-getstarted .grid-column-3 .item.arow-1 {
            left: 273px;
        }

        .section-getstarted .grid-column-3 .item.arow-2 {
            right: 273px;
        }

.section-popular-topics .grid-column-4 {
    gap: 29px 30px;
}

.section-common-question .heading-dashboard {
    margin-bottom: 19px;
}

.section-common-question .tf-accordion .tf-toggle .toggle-content {
    padding-top: 3px;
    padding-bottom: 24px;
}

.member-item {
    margin-top: 50px;
    position: relative;
}

    .member-item .number {
        position: absolute;
        font-size: 96px;
        line-height: unset;
        top: -64px;
        left: 50%;
        z-index: -1;
        transform: translateX(-50%);
    }

    .member-item .image-wrap {
        border-radius: 16px;
        margin-bottom: 20px;
        overflow: hidden;
    }

        .member-item .image-wrap img {
            width: 100%;
        }

    .member-item .content {
        text-align: center;
    }

        .member-item .content .name {
            font-size: 20px;
            line-height: 26.46px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .member-item .content p {
            color: var(--Secondary);
            line-height: 22.4px;
            margin-bottom: 18px;
        }

        .member-item .content .tf-social {
            justify-content: center;
        }

            .member-item .content .tf-social li a {
                height: 44px;
                width: 44px;
                background-color: var(--Bg-2);
            }

    .member-item.style-2 .wrap-image {
        margin-bottom: 0;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }

        .member-item.style-2 .wrap-image img {
            width: 100%;
            object-fit: cover;
            -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
            transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
        }

    .member-item.style-2 .content {
        padding: 32px 0 30px;
        border-radius: 0 0 16px 16px;
        background-color: var(--Bg-2);
    }

        .member-item.style-2 .content .title {
            font-size: 16px;
            line-height: 16px;
            margin-bottom: 41px;
            letter-spacing: revert-layer;
            position: relative;
        }

            .member-item.style-2 .content .title::after {
                position: absolute;
                content: "";
                width: 195px;
                height: 2px;
                background-color: var(--Border);
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
            }

        .member-item.style-2 .content p {
            margin-bottom: 4px;
        }

        .member-item.style-2 .content .time {
            font-weight: 550;
            font-size: 16px;
            line-height: 21.17px;
        }

    .member-item.style-2:hover .wrap-image img {
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }

.tf-dropdown-sort {
    cursor: pointer;
}

    .tf-dropdown-sort .btn-select {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .tf-dropdown-sort.tf-languages {
        width: 45px;
    }

        .tf-dropdown-sort.tf-languages .btn-select {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 30px;
            font-size: 14px;
            color: var(--Secondary);
        }

        .tf-dropdown-sort.tf-languages .dropdown-menu {
            width: 96px;
            background-color: var(--Bg-2);
            margin-bottom: 10px !important;
            border: 0;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .tf-dropdown-sort.tf-languages .select-item {
            cursor: pointer;
            font-size: 14px;
            color: var(--Secondary);
            padding: 0 10px;
            line-height: 22px;
            width: 100%;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

.testimonial-item {
    padding: 30px;
    border: 1px solid var(--Border);
    border-radius: 16px;
}

    .testimonial-item .info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-bottom: 22px;
        gap: 20px;
    }

    .testimonial-item .avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        flex: none;
    }

    .testimonial-item .content .name {
        font-size: 18px;
        line-height: 23.81px;
        font-weight: 700;
    }

    .testimonial-item .content p {
        font-size: 12px;
        line-height: 16.8px;
        color: var(--Secondary);
    }

        .testimonial-item .content p span {
            font-weight: 759;
        }

    .testimonial-item .desc {
        font-weight: 467;
        line-height: 22.4px;
        margin-bottom: 20px;
    }

    .testimonial-item .trust .icon {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 2px;
        margin-bottom: 10px;
    }

        .testimonial-item .trust .icon i {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #00b67a;
            font-size: 12px;
            color: var(--White);
            height: 20px;
            width: 20px;
        }

    .testimonial-item .trust .verified {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--Secondary);
    }

        .testimonial-item .trust .verified i {
            font-size: 18px;
        }

    .testimonial-item.style-full {
        padding: 0;
        border: none;
        text-align: center;
    }

        .testimonial-item.style-full .avatar {
            height: 100px;
            width: 100px;
            margin: 0 auto;
            margin-bottom: 24px;
        }

        .testimonial-item.style-full .desc {
            color: var(--Secondary);
            margin-bottom: 27px;
            font-size: 26px;
            line-height: 40px;
            letter-spacing: -0.2px;
        }

        .testimonial-item.style-full .trust {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 13px;
        }

        .testimonial-item.style-full .verified {
            font-size: 12px;
        }

            .testimonial-item.style-full .verified i {
                font-size: 18px;
            }

        .testimonial-item.style-full .content .name {
            font-size: 24px;
            line-height: 31.75px;
            margin-bottom: 4px;
        }

.getstart-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px 30px 30px 30px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--Bg-2);
}

    .getstart-item .wrap-image {
        width: 100px;
        position: relative;
        z-index: 2;
    }

        .getstart-item .wrap-image::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            left: 0;
            top: 0;
            filter: blur(50px);
            z-index: -1;
        }

    .getstart-item .content .title {
        font-weight: 700;
        font-size: 24px;
        line-height: 31.75px;
        margin-bottom: 8px;
    }

    .getstart-item .content p {
        font-size: 14px;
        line-height: 22.4px;
        color: var(--Secondary);
    }

    .getstart-item.color-1 .wrap-image::after {
        background: #66ab52;
    }

    .getstart-item.color-2 .wrap-image::after {
        background: #c9f0ff;
    }

    .getstart-item.color-3 .wrap-image::after {
        background: #ffdc95;
    }

    .getstart-item.color-4 .wrap-image::after {
        background: rgb(101, 151, 225);
    }

    .getstart-item.color-5 .wrap-image::after {
        background: rgb(120, 196, 111);
    }

    .getstart-item.color-6 .wrap-image::after {
        background: rgb(171, 224, 104);
    }

    .getstart-item.color-7 .wrap-image::after {
        background: rgb(255, 255, 255);
    }

    .getstart-item.color-8 .wrap-image::after {
        background: rgb(111, 222, 251);
    }

    .getstart-item.color-9 .wrap-image::after {
        background: rgb(234, 132, 109);
    }

    .getstart-item.color-10 .wrap-image::after {
        background: rgb(118, 95, 117);
    }

    .getstart-item.color-11 .wrap-image::after {
        background: rgb(201, 206, 255);
    }

    .getstart-item.color-12 .wrap-image::after {
        background: rgb(254, 72, 115);
    }

    .getstart-item.color-13 .wrap-image::after {
        background: rgb(107, 185, 248);
    }

    .getstart-item.color-14 .wrap-image::after {
        background: rgb(105, 215, 116);
    }

    .getstart-item.color-15 .wrap-image::after {
        background: #c9f0ff;
    }

    .getstart-item.color-16 .wrap-image::after {
        background: #fdc24e;
    }

    .getstart-item.color-17 .wrap-image::after {
        background: #a660ff;
    }

    .getstart-item.color-18 .wrap-image::after {
        background: #1aa2fb;
    }

    .getstart-item.color-19 .wrap-image::after {
        background: #fde49c;
    }

    .getstart-item.color-20 .wrap-image::after {
        background: #1961ce;
    }

    .getstart-item.color-21 .wrap-image::after {
        background: #ffbfaa;
    }

    .getstart-item.style-1 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        background: linear-gradient( 180deg, rgba(255, 255, 255, 0.16) -80.2%, rgba(255, 255, 255, 0) 100% );
    }

        .getstart-item.style-1 .content p {
            font-size: 14px;
        }

    .getstart-item.type-topic {
        background: #1f2125 !important;
        padding-bottom: 24px;
    }

        .getstart-item.type-topic .title {
            font-size: 20px;
            line-height: 26px;
        }

    .getstart-item.style-2 {
        flex-direction: column;
        align-items: start;
        background-color: unset;
        position: relative;
        padding: 0;
    }

        .getstart-item.style-2.type-1 .wrapper {
            clip-path: polygon(0% 0%, 62% 0, 100% 45%, 100% 100%, 0% 100%);
        }

        .getstart-item.style-2 .wrapper {
            padding: 30px;
            clip-path: polygon(0% 0%, 64% 0, 100% 37%, 100% 100%, 0% 100%);
            background-color: var(--Bg-2);
            z-index: 1;
        }

        .getstart-item.style-2 .number {
            position: absolute;
            font-size: 100px;
            right: 0;
            top: -2px;
        }

        .getstart-item.style-2 .content span {
            color: var(--White);
        }

    .getstart-item.style-3 {
        text-align: center;
        justify-content: center;
    }

        .getstart-item.style-3 .wrap-image {
            margin: 0 auto 30px;
        }

        .getstart-item.style-3 .content p {
            font-size: 16px;
            line-height: 22.4px;
        }

.widget-tabs .widget-menu-tab,
.widget-tabs .customtablink {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 6px;
    border-radius: 12px;
    background-color: #1f2125;
    gap: 8px;
}

    .widget-tabs .widget-menu-tab .item-title,
    .customtablink .item-title {
        font-size: 14px;
        line-height: 19.85px;
        font-weight: 400;
        white-space: nowrap;
        min-width: 138.8px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-radius: 7px;
        cursor: pointer;
        text-transform: capitalize;
        color: #ffffffbd;
    }

.customtablink .item-title {
    padding: 0px 0;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .customtablink .item-title a {
        display: block;
        font-weight: 600;
        padding: 12px 8px;
        line-height: normal;
        width: 100%;
    }

.widget-tabs .widget-menu-tab .item-title.active,
.widget-tabs .customtablink .item-title.active,
.widget-tabs .widget-menu-tab .item-title:hover {
    background-image: linear-gradient( 90deg, #865f12 0%, #fec961 50%, #f1dd7e 100% );
    font-weight: 700;
    color: #111;
}

    .widget-tabs .widget-menu-tab .item-title.active,
    .widget-tabs .customtablink .item-title.active a {
        font-weight: 700;
        color: #111;
    }

.widget-tabs1 .widget-menu-tab1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: #2f3134;
    padding: 6px;
    border-radius: 12px;
    gap: 8px;
}

    .widget-tabs1 .widget-menu-tab1 .item-title1 {
        font-size: 15px;
        line-height: 19.85px;
        font-weight: 400;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-radius: 12px;
        cursor: pointer;
        letter-spacing: -1px;
    }

        .widget-tabs1 .widget-menu-tab1 .item-title1.active,
        .widget-tabs1 .widget-menu-tab1 .item-title1:hover {
            background-image: linear-gradient( 90deg, #865f12 0%, #fec961 50%, #f1dd7e 100% );
            font-weight: 700;
            color: #111;
        }

        .widget-tabs1 .widget-menu-tab1 .item-title1.active {
            font-weight: 700;
            color: #111;
        }

.tf-wrap-sort .form-search {
    width: 100%;
}

    .tf-wrap-sort .form-search fieldset input {
        background-color: transparent;
        border-radius: 16px;
        padding-left: 12px;
        padding-right: 38px;
        color: var(--White);
        height: 46px;
    }

        .tf-wrap-sort .form-search fieldset input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

    .tf-wrap-sort .form-search .button-submit {
        right: 13px;
        left: unset;
    }

        .tf-wrap-sort .form-search .button-submit i {
            color: var(--White);
        }

.box-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    align-self: stretch;
    border-radius: 14px;
    color: var(--Body-Text);
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.1px;
    flex-wrap: wrap;
}

    .box-link i {
        font-size: 20px;
        cursor: pointer;
    }

    .box-link input {
        flex-grow: 1;
        height: 44px;
        padding: 12px 20px;
        gap: 10px;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid rgb(255 255 255 / 15%);
        background: var(--Sub-color-4);
        color: var(--Secondary);
        font-size: 15px;
        line-height: 19.85px;
        font-weight: 467;
        letter-spacing: -0.1px;
        text-overflow: ellipsis;
        outline: 0;
        width: 100%;
    }

    .box-link .button-edit {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 12px;
        border-radius: 14px;
        border: 1px solid rgb(255 255 255 / 15%);
        background: rgba(147, 172, 211, 0.1);
        cursor: pointer;
        color: var(--Secondary);
    }

    .box-link .button-coppy {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 119px;
        height: 40px;
        padding: 12px;
        gap: 10px;
        border-radius: 8px;
        background: rgba(147, 172, 211, 0.1);
        color: #111;
        font-size: 15px;
        font-weight: 645;
        line-height: 19.85px;
        text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        letter-spacing: -0.3px;
        background: linear-gradient(90deg, #865f12 0%, #fec961 50%, #f1dd7e 100%);
    }

        .box-link .button-coppy i {
            color: #111;
        }

        .box-link .button-coppy:hover {
            background: linear-gradient(-90deg, #865f12 0%, #fec961 50%, #f1dd7e 100%);
        }

.wrap-about-us {
    position: relative;
}

    .wrap-about-us .item-1 {
        position: absolute;
        right: 0;
        bottom: 100px;
    }

    .wrap-about-us p {
        color: var(--Secondary);
        font-size: 14px;
        line-height: 19.6px;
    }

    .wrap-about-us .text {
        max-width: 920px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 40px;
    }

    .wrap-about-us .wrap-image {
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .wrap-about-us .blockquote {
        max-width: 730px;
        position: relative;
    }

        .wrap-about-us .blockquote .wrap-paragraph {
            margin-left: 95px;
        }

        .wrap-about-us .blockquote .paragraph-1 {
            margin-bottom: 20px;
        }

        .wrap-about-us .blockquote .paragraph-2 {
            font-style: italic;
            font-size: 24px;
            line-height: 33.6px;
        }

        .wrap-about-us .blockquote .info {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 32px;
            border-top: 1px solid var(--Border);
            margin-top: 32px;
        }

            .wrap-about-us .blockquote .info .avatar {
                width: 90px;
                height: 90px;
                border-radius: 50%;
                overflow: hidden;
            }

            .wrap-about-us .blockquote .info .name {
                font-size: 20px;
                font-weight: 700;
                line-height: 26.46px;
                margin-bottom: 4px;
            }

                .wrap-about-us .blockquote .info .name a {
                    color: var(--Secondary);
                }

                .wrap-about-us .blockquote .info .name:hover a {
                    color: var(--Main-color);
                }

        .wrap-about-us .blockquote .item-2 {
            position: absolute;
            top: 0;
            left: 0;
        }

.wg-our-jackpot {
    background-image: url(../images/section/our-jackpot.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 30px 20px 29px 30px;
    border-radius: 16px;
    overflow: hidden;
}

    .wg-our-jackpot .wrap-image {
        max-width: 255px;
        margin-right: 11px;
    }

    .wg-our-jackpot .content .title {
        font-weight: 700;
        margin-bottom: 57px;
    }

    .wg-our-jackpot .content .price {
        margin-bottom: 30px;
    }

        .wg-our-jackpot .content .price .sub {
            font-size: 12px;
            line-height: 16.8px;
            letter-spacing: 7.8px;
            margin-bottom: 8px;
        }

    .wg-our-jackpot .content .time p {
        line-height: 22.4px;
        font-weight: 759;
        margin-bottom: 9px;
    }

    .wg-our-jackpot .js-countdown .countdown__timer {
        width: 247px;
        height: 34px;
        padding: 4px 12px;
        gap: 17px;
    }

        .wg-our-jackpot
        .js-countdown
        .countdown__timer
        .countdown__item
        .countdown__value {
            font-size: 18px;
            line-height: 23.81px;
        }

        .wg-our-jackpot .js-countdown .countdown__timer .countdown__item::before {
            font-size: 18px;
            right: 8px !important;
            top: 2px;
        }

        .wg-our-jackpot
        .js-countdown
        .countdown__timer
        .countdown__item:nth-child(4)::before {
            top: 2px !important;
            right: -13px !important;
        }

        .wg-our-jackpot
        .js-countdown
        .countdown__timer
        .countdown__item:not(:last-child)::after {
            right: -6px !important;
        }

        .wg-our-jackpot
        .js-countdown
        .countdown__timer
        .countdown__item:nth-child(3)::before {
            right: 3px !important;
        }

        .wg-our-jackpot
        .js-countdown
        .countdown__timer
        .countdown__item:nth-child(3)::after {
            right: -10px !important;
        }

        .wg-our-jackpot .js-countdown .countdown__timer .countdown__item:nth-child(1) {
            padding-left: 0;
        }

.wg-get-ticket {
    text-align: center;
    padding: 30px 27px 30px;
    border-radius: 16px;
    background-color: var(--Bg-2);
}

    .wg-get-ticket .title {
        font-weight: 759;
        margin-bottom: 9px;
    }

    .wg-get-ticket p {
        margin-bottom: 13px;
    }

    .wg-get-ticket .wrap-image {
        max-width: 271px;
        margin-bottom: 28px;
    }

    .wg-get-ticket .tf-btn {
        margin: 0 auto;
    }

.category-item {
    padding: 20px 16px;
    background-color: var(--Bg-2);
    border-radius: 16px;
    width: 100%;
}

    .category-item .wrap-image {
        width: 90px;
        margin: 0 auto;
        margin-bottom: 16px;
    }

    .category-item p {
        text-align: center;
        line-height: 21.17px;
        font-weight: 700;
    }

.wrap-progress {
    padding: 20px;
    border: 1px solid var(--Border);
    border-radius: 16px;
}

    .wrap-progress .header-progress {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 654;
        line-height: 27.52px;
    }

        .wrap-progress .header-progress span {
            color: var(--Main-color);
        }

    .wrap-progress .progress {
        background-color: var(--Bg-2);
        height: 17px;
        border-radius: 999px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

        .wrap-progress .progress .progress-bar {
            margin-left: 3px;
            width: 85%;
            height: 11px;
            background-image: linear-gradient( 90deg, #865f12 0%, #fec961 50%, #f1dd7e 100% );
            border-radius: 999px;
        }

    .wrap-progress p {
        font-size: 14px;
        line-height: 19.6px;
        font-weight: 645;
        color: var(--Secondary);
    }

.price-wrap {
    padding: 30.5px 20px;
    border: 2px solid rgb(244 193 66 / 51%);
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .price-wrap .price {
        font-weight: 700;
        font-size: 30px;
        line-height: 30px;
        /* width: 200px; */
        padding: 15px 0;
        margin: 0 28px 0 0;
    }

        .price-wrap .price p {
            font-size: 14px;
            line-height: 19.6px;
            color: var(--Secondary);
        }

    .price-wrap .wrap-quatity {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 11px;
    }

.bg-multi-color {
    position: relative;
    background-color: var(--Bg-2);
    overflow: hidden;
}

    .bg-multi-color::after {
        content: "";
        position: absolute;
        width: 607px;
        height: 607px;
        background: #6055ff;
        filter: blur(250px);
        top: -518px;
        left: -50px;
    }

    .bg-multi-color::before {
        content: "";
        position: absolute;
        width: 607px;
        height: 607px;
        background: #aa4aff;
        filter: blur(250px);
        left: 761px;
        top: 323px;
    }

.wg-quantity {
    position: relative;
    width: 128px;
    overflow: hidden;
}

    .wg-quantity input {
        height: 48px;
        width: 100%;
        background-color: #1f212500;
        border: none;
        border-radius: 999px;
        box-shadow: none;
        color: var(--White);
        text-align: center;
        font-size: 20px;
        line-height: 28px;
        font-weight: 645;
    }

        .wg-quantity input:focus-visible {
            outline: none;
        }

    .wg-quantity .btn-quantity {
        font-size: 15px;
        color: var(--White);
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff38;
        width: 25px;
        border-radius: 50%;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .wg-quantity .btn-quantity i {
            font-size: 14px;
        }

    .wg-quantity .minus-btn {
        left: 16px;
    }

    .wg-quantity .plus-btn {
        right: 16px;
    }

.winning-number {
    padding: 42px 40px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .winning-number .heading-section {
        position: relative;
        z-index: 1;
        margin-bottom: 59px;
    }

        .winning-number .heading-section .title {
            margin-bottom: 6px;
        }

        .winning-number .heading-section p {
            letter-spacing: 0;
        }

    .winning-number .content {
        position: relative;
        z-index: 1;
    }

        .winning-number .content .title {
            font-size: 20px;
            line-height: 28px;
            font-weight: 759;
            text-align: center;
            margin-bottom: 30px;
        }

        .winning-number .content .list-number {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: space-between;
            gap: 20px 15px;
            margin-bottom: 39px;
        }

            .winning-number .content .list-number li {
                height: 112px;
                width: 112px;
                background-image: url(../images/section/winning-number.png);
                background-size: cover;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 30px;
                line-height: 39.69px;
                font-weight: 700;
                color: #01011e;
                border-radius: 50%;
                flex: none;
            }

        .winning-number .content .button {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

            .winning-number .content .button .tf-btn {
                width: 100%;
                max-width: 160px;
            }

.brand .title {
    font-size: 16px;
    font-weight: 654;
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.brand .swiper-wrapper {
    align-items: center;
}

.brand .width-slide {
    overflow: hidden;
}

    .brand .width-slide .swiper-slide {
        width: 160px;
        overflow: hidden;
    }

.form-help {
    padding-top: 94.5px;
    padding-bottom: 95.5px;
    border-radius: 20px;
}

    .form-help .heading-section {
        position: relative;
        z-index: 1;
        margin-bottom: 16px;
    }

        .form-help .heading-section .title {
            margin-bottom: 20px;
        }

    .form-help .form-search {
        margin: 0 auto;
        max-width: 554px;
    }

        .form-help .form-search fieldset input {
            height: 54px;
            padding: 22px 46px 22px 20px;
        }

        .form-help .form-search .button-submit {
            right: 20px;
            left: unset;
        }

.chart-box .title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

    .chart-box .title .number {
        font-size: 30px;
        line-height: 39.69px;
        font-weight: 759;
    }

.wg-infomation {
    margin-bottom: 20px;
}

    .wg-infomation .left {
        margin-right: 35px;
    }

    .wg-infomation .right,
    .wg-infomation .left {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
        gap: 30px;
        align-self: stretch;
        border-radius: 14px;
        background: var(--Bg-2);
        height: 100%;
    }

    .wg-infomation .right {
        gap: 30px;
        flex-direction: column;
    }

        .wg-infomation .right .title {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--White);
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            text-transform: capitalize;
        }

            .wg-infomation .right .title i {
                font-size: 20px;
                color: var(--Note);
            }

    .wg-infomation ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        gap: 45px 35px;
    }

        .wg-infomation ul li {
            width: calc(50% - 20px);
        }

    .wg-infomation .image {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--Border-2);
        border-radius: 50%;
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        padding: 5px;
    }

        .wg-infomation .image img {
            border-radius: 50%;
        }

    .wg-infomation .name {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--White);
        font-size: 22px;
        font-weight: 700;
        line-height: 29px;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

        .wg-infomation .name img {
            width: 20px;
            height: 20px;
        }

    .wg-infomation .meta {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }

        .wg-infomation .meta .meta-item {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--White);
            font-size: 14px;
            font-weight: 467;
            line-height: 18.52px;
        }

            .wg-infomation .meta .meta-item i {
                font-size: 22px;
                color: var(--Sub-color-5);
            }

    .wg-infomation .bot {
        margin-top: 20px;
        border-top: 1px solid var(--Border);
        padding-top: 20px;
        gap: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .wg-infomation .bot .tf-btn {
            width: 100%;
            max-width: 175px;
            height: 47px;
        }

    .wg-infomation .item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

        .wg-infomation .item .item-icon {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            border-radius: 14px;
            border: 1px solid rgb(255 255 255 / 15%);
            background: var(--Sub-color-4);
        }

            .wg-infomation .item .item-icon img {
                width: 30px;
                height: 30px;
            }

        .wg-infomation .item .price {
            color: var(--White);
            font-size: 18px;
            font-weight: 600;
            font-family: "Inter", sans-serif;
            line-height: 24px;
            text-transform: capitalize;
            margin-bottom: 6px;
        }

        .wg-infomation .item .sub {
            color: var(--Secondary);
            font-size: 13px;
            font-weight: 500;
            line-height: normal;
        }

.guide-number {
    width: 70px;
    height: 70px;
    background-color: var(--Main-color);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .guide-number span {
        font-size: 30px;
        line-height: 42px;
        font-weight: 700;
    }

.guide-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    max-height: 150px;
    overflow: hidden;
}

    .guide-wrap .icon-arrow {
        font-size: 118px;
        color: rgba(255, 255, 255, 0.3);
    }

.the-vault-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

    .the-vault-content .right {
        flex-grow: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        border-radius: 14px;
        padding: 29px 20px 30px 20px;
        gap: 20px;
        flex-direction: row;
        flex-wrap: nowrap;
        background: var(--Bg-2);
        box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1) inset, 0px 8px 22px 0px rgba(4, 8, 16, 0.3);
    }

        .the-vault-content .right .title {
            text-transform: capitalize;
            margin-bottom: 10px;
            color: var(--White);
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
        }

        .the-vault-content .right .box-link .button-coppy {
            width: 130px;
        }

        .the-vault-content .right > div {
            width: 54%;
        }

        .the-vault-content .right .wg-social ul {
            gap: 12px;
        }

/* preload */
/* -------------------------------- */
.preload-container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999999999999;
    height: 100%;
    width: 100%;
    background-color: var(--Bg);
}

    .preload-container .middle {
        width: 55px;
        top: 50%;
        left: 50%;
        position: absolute;
        z-index: 100;
        margin: -30px 0 0 -30px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        content: url(../images/favicon.png);
        animation: preload 1.2s linear infinite alternate;
    }

/* progress-wrap
------------------------------------------------------------------------*/
.progress-wrap {
    position: fixed;
    bottom: 40px;
    right: 40px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    padding: 0;
    transition: all 400ms linear;
    border: 1.2px solid rgba(134, 134, 134, 0.12);
}

    .progress-wrap::after {
        position: absolute;
        content: "\e923";
        font-family: "icomoon";
        text-align: center;
        line-height: 40px;
        font-size: 20px;
        color: var(--White);
        height: 40px;
        width: 40px;
        cursor: pointer;
        z-index: 1;
        -webkit-transition: all 400ms linear;
        -o-transition: all 400ms linear;
        transition: all 400ms linear;
    }

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .progress-wrap svg path {
        fill: none;
    }

    .progress-wrap svg.progress-circle path {
        box-sizing: border-box;
        stroke: var(--Main-color);
        stroke-width: 4;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
        transition-duration: 0.4s;
        transition-timing-function: linear;
    }

/* table-latest-winners
------------------------------------------------------------------------*/
.table-latest-winners {
    border-radius: 16px;
    overflow: hidden;
}

    .table-latest-winners .title {
        padding: 20px 30px;
        background-color: var(--bg-6);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        background-color: #1f2125;
    }

        .table-latest-winners .title div {
            font-size: 14px;
            line-height: 18.52px;
            font-weight: 467;
            color: var(--Secondary);
        }

            .table-latest-winners .title div:nth-child(1) {
                width: 149px;
            }

            .table-latest-winners .title div:nth-child(2) {
                width: 210px;
            }

            .table-latest-winners .title div:nth-child(3) {
                width: 273px;
            }

            .table-latest-winners .title div:nth-child(4) {
                width: 206px;
            }

            .table-latest-winners .title div:nth-child(5) {
                width: 132px;
            }

    .table-latest-winners .item-table {
        width: 100%;
        height: 70px;
        background-color: #1f2125;
        padding: 20px 30px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .table-latest-winners .item-table a {
            color: var(--Secondary);
        }

            .table-latest-winners .item-table a:hover {
                color: var(--Main-color);
            }

        .table-latest-winners .item-table:nth-child(even) {
            background-color: #1f2125;
        }

        .table-latest-winners .item-table .img {
            flex: none;
        }

        .table-latest-winners .item-table .number-list {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 4px;
        }

            .table-latest-winners .item-table .number-list li {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 26px;
                height: 26px;
                border-radius: 999px;
                border: 1px solid var(--Border-2);
                font-size: 14px;
                font-weight: 645;
                line-height: 18.52px;
                color: var(--White);
            }

                .table-latest-winners .item-table .number-list li.active {
                    border: 1px solid var(--Sub-color);
                    background-color: var(--Sub-color);
                }

        .table-latest-winners .item-table div {
            font-size: 14px;
            line-height: 18.52px;
            font-weight: 467;
            color: var(--Secondary);
            white-space: nowrap;
        }

            .table-latest-winners .item-table div:nth-child(1) {
                width: 149px;
            }

            .table-latest-winners .item-table div:nth-child(2) {
                width: 210px;
            }

            .table-latest-winners .item-table div:nth-child(3) {
                width: 273px;
            }

            .table-latest-winners .item-table div:nth-child(4) {
                width: 206px;
            }

            .table-latest-winners .item-table div:nth-child(5) {
                width: 132px;
            }

/* table-lottery-results
------------------------------------------------------------------------*/
.table-lottery-results {
    border-radius: 16px;
    overflow: hidden;
}

    .table-lottery-results .title {
        padding: 18px 30px 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        background-color: #1f2125;
    }

        .table-lottery-results .title div {
            font-size: 14px;
            line-height: 18.52px;
            font-weight: 645;
            color: var(--Secondary);
        }

            .table-lottery-results .title div:nth-child(1) {
                width: 245px;
            }

            .table-lottery-results .title div:nth-child(2) {
                width: 210px;
            }

            .table-lottery-results .title div:nth-child(3) {
                width: 206px;
            }

            .table-lottery-results .title div:nth-child(4) {
                width: 270px;
            }

    .table-lottery-results .item-table {
        width: 100%;
        background-color: #1f2125;
        height: 70px;
        padding: 0 30px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .table-lottery-results .item-table a {
            color: var(--Secondary);
        }

            .table-lottery-results .item-table a:hover {
                color: var(--Main-color);
            }

        .table-lottery-results .item-table:nth-child(even) {
            background-color: #1f2125;
        }

        .table-lottery-results .item-table .number-list {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 4px;
        }

            .table-lottery-results .item-table .number-list li {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                flex: none;
                width: 36px;
                height: 36px;
                border-radius: 999px;
                border: 1px solid var(--Border-2);
                font-size: 14px;
                font-weight: 645;
                line-height: 18.52px;
                color: var(--White);
            }

                .table-lottery-results .item-table .number-list li.active {
                    border: 1px solid var(--Sub-color);
                    background-color: var(--Sub-color);
                }

        .table-lottery-results .item-table div {
            font-size: 14px;
            line-height: 19.6px;
            font-weight: 400;
            color: var(--Secondary);
            white-space: nowrap;
        }

            .table-lottery-results .item-table div:nth-child(1) {
                width: 245px;
            }

            .table-lottery-results .item-table div:nth-child(2) {
                width: 210px;
            }

            .table-lottery-results .item-table div:nth-child(3) {
                width: 206px;
            }

            .table-lottery-results .item-table div:nth-child(4) {
                width: 270px;
            }

/* table-statistical
------------------------------------------------------------------------*/
.table-statistical {
    border-radius: 16px;
    overflow: hidden;
}

    .table-statistical .title {
        padding: 20px 30px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        height: 59px;
        gap: 20px;
        background-color: #1f2125;
    }

        .table-statistical .title div {
            font-size: 14px;
            line-height: 18.52px;
            font-weight: 645;
            color: var(--Secondary);
        }

            .table-statistical .title div:nth-child(1) {
                width: 245px;
            }

            .table-statistical .title div:nth-child(2) {
                width: 210px;
            }

            .table-statistical .title div:nth-child(3) {
                width: 206px;
            }

            .table-statistical .title div:nth-child(4) {
                width: 270px;
            }

    .table-statistical .item-table {
        background-color: #1f2125;
        height: 70px;
        padding: 0 30px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .table-statistical .item-table:nth-child(even) {
            background-color: #1f2125;
        }

        .table-statistical .item-table .author {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .table-statistical .item-table .author img {
                height: 24px;
                width: 24px;
            }

            .table-statistical .item-table .author a {
                font-size: 14px;
                font-weight: 400;
                color: var(--Secondary);
            }

                .table-statistical .item-table .author a:hover {
                    color: var(--Main-color);
                }

        .table-statistical .item-table .total {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .table-statistical .item-table .total p {
                font-size: 14px;
            }

        .table-statistical .item-table div {
            font-size: 14px;
            line-height: 19.6px;
            font-weight: 400;
            color: var(--Secondary);
            white-space: nowrap;
        }

            .table-statistical .item-table div:nth-child(1) {
                width: 245px;
            }

            .table-statistical .item-table div:nth-child(2) {
                width: 210px;
            }

            .table-statistical .item-table div:nth-child(3) {
                width: 206px;
            }

            .table-statistical .item-table div:nth-child(4) {
                width: 270px;
            }

.section-game {
    background-color: var(--Bg-2);
}

@keyframes movedown {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes movedown1 {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(-15px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes moveleft {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(-15px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(1turn);
    }
}

.widget-tabs.page-dashboard-wallet .balance {
    padding-bottom: 22px;
}

    .widget-tabs.page-dashboard-wallet .balance .balance-list {
        padding: 22px 12px 0px 0px;
    }

        .widget-tabs.page-dashboard-wallet
        .balance
        .balance-list
        .list:not(:last-child) {
            margin-bottom: 10px;
        }

.heading-dashboard.page-affiliate {
    letter-spacing: 0.2px;
}

.blog-single-main .main-title {
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 759;
    line-height: 42px;
}

.blog-single-main .entry-meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--Border-1);
    gap: 16px;
}

    .blog-single-main .entry-meta > * {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .blog-single-main .entry-meta .entry-category i {
        color: var(--Secondary);
        font-size: 16px;
        display: block;
    }

.blog-single-main .text {
    font-size: 16px;
    font-weight: 550;
    line-height: 22.4px;
    margin-bottom: 30px;
}

.blog-single-main .entry-image {
    margin-bottom: 30px;
}

    .blog-single-main .entry-image .image {
        margin-bottom: 14px;
    }

        .blog-single-main .entry-image .image img {
            border-radius: 14px;
            width: 100%;
        }

    .blog-single-main .entry-image .sub-image {
        text-transform: uppercase;
        color: var(--Text-2);
        font-size: 12px;
        font-weight: 400;
        line-height: 16.8px;
    }

        .blog-single-main .entry-image .sub-image a {
            color: var(--Text-2);
        }

            .blog-single-main .entry-image .sub-image a:hover {
                color: var(--Main-color);
            }

.blog-single-main .decs {
    color: var(--Secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    margin-bottom: 20px;
}

.blog-single-main .block-quote {
    padding: 25px 30px 25px 27px;
    border-radius: 10px;
    background-color: var(--Bg-2);
    border-left: 4px solid var(--Main-color);
    margin-bottom: 20px;
}

    .blog-single-main .block-quote .text-quote {
        font-size: 14px;
        font-weight: 467;
        line-height: 19.6px;
        margin-bottom: 22px;
    }

    .blog-single-main .block-quote .author-said {
        font-size: 14px;
        font-weight: 467;
        line-height: 19.6px;
    }

.blog-single-main .decs-1,
.blog-single-main .decs-2,
.blog-single-main .decs-3 {
    margin-bottom: 20px;
    color: var(--Secondary);
}

.blog-single-main .decs-4 {
    color: var(--Secondary);
    padding-bottom: 29px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--Border-1);
}

.blog-single-main .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
}

    .blog-single-main .bottom .tags {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
    }

        .blog-single-main .bottom .tags span {
            color: var(--Secondary);
            opacity: 0.5;
        }

        .blog-single-main .bottom .tags .list {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

            .blog-single-main .bottom .tags .list .item {
                padding: 8px 17.5px;
                border: 1px solid var(--Border-1);
                border-radius: 999px;
                cursor: pointer;
            }

                .blog-single-main .bottom .tags .list .item:hover a {
                    color: var(--Main-color);
                }

                .blog-single-main .bottom .tags .list .item a {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 19.6px;
                }

    .blog-single-main .bottom .social {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .blog-single-main .bottom .social span {
            color: var(--Text-3);
        }

        .blog-single-main .bottom .social .list {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

            .blog-single-main .bottom .social .list .item a {
                padding: 13px;
                border: 1px solid var(--Border-1);
                border-radius: 50%;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .blog-single-main .bottom .social .list .item a i {
                    font-size: 18px;
                }

.section-getstarted.page-how-to-work .heading-section {
    padding-top: 0px;
    margin-bottom: 47px !important;
}

.comment-wrap {
    margin-bottom: 40px;
}

    .comment-wrap .title {
        font-weight: 759;
        padding-bottom: 16px;
        margin-bottom: 19px;
        border-bottom: 1px solid var(--Border-1);
    }

    .comment-wrap .comment-item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 14px;
    }

        .comment-wrap .comment-item:not(:nth-child(2)) {
            padding-top: 34px;
        }

        .comment-wrap .comment-item:not(:last-child) {
            padding-bottom: 34px;
            border-bottom: 1px solid var(--Border-1);
        }

        .comment-wrap .comment-item .image img {
            max-width: 50px;
            object-fit: cover;
            height: auto;
            border-radius: 50%;
        }

        .comment-wrap .comment-item .content .entry-name-date {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 13px;
        }

            .comment-wrap .comment-item .content .entry-name-date .name {
                font-size: 18px;
                font-weight: 645;
                line-height: 23.81px;
            }

            .comment-wrap .comment-item .content .entry-name-date .date-up {
                font-family: "Rubik";
                font-size: 12px;
                font-weight: 400;
                line-height: 16.8px;
                color: var(--Text-3);
            }

        .comment-wrap .comment-item .content .text-comment {
            font-size: 14px;
            font-weight: 400;
            line-height: 19.6px;
            color: var(--Secondary);
            margin-bottom: 15px;
        }

        .comment-wrap .comment-item .content .reaction {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 13px;
        }

            .comment-wrap .comment-item .content .reaction svg {
                color: var(--Main-color);
            }

            .comment-wrap .comment-item .content .reaction > * {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                color: var(--Secondary);
                cursor: pointer;
            }

.add-comment-wrap .title {
    font-size: 24px;
    font-weight: 759;
    line-height: 31.75px;
}

.add-comment-wrap .sub-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: var(--Secondary);
    margin-bottom: 16px;
}

.add-comment-wrap .form-add-comment .cols {
    margin-bottom: 34px;
}

.add-comment-wrap .form-add-comment .btn-send-comment {
    padding-top: 30px;
}

    .add-comment-wrap .form-add-comment .btn-send-comment .btn-send {
        padding: 0 25px;
    }

.tf-sidebar {
    background-color: var(--Bg-2);
    border-radius: 16px;
    padding: 30px 30px 30px;
}

    .tf-sidebar .heading {
        font-size: 18px;
        font-weight: 645;
        line-height: 23.81px;
        margin-bottom: 25px;
    }

.sidebar-search {
    margin-bottom: 40px;
}

.sidebar-category {
    margin-bottom: 42px;
}

    .sidebar-category .category-list .item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .sidebar-category .category-list .item a {
            font-weight: 550;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            line-height: 19.6px;
        }

        .sidebar-category .category-list .item .item-quatity {
            font-weight: 400;
            color: var(--Secondary);
            font-size: 14px;
            line-height: 19.6px;
        }

        .sidebar-category .category-list .item:not(:first-child) {
            padding-top: 13px;
        }

        .sidebar-category .category-list .item:not(:last-child) {
            border-bottom: 1px solid var(--Border-1);
            padding-bottom: 10px;
        }

.sidebar-feature {
    margin-bottom: 43px;
}

    .sidebar-feature .heading {
        margin-bottom: 20px;
    }

    .sidebar-feature .item {
        cursor: pointer;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid var(--Border-1);
    }

        .sidebar-feature .item:not(:last-child) {
            padding-bottom: 20px;
            border-bottom: 1px solid var(--Border-1);
        }

        .sidebar-feature .item .image {
            overflow: hidden;
            border-radius: 12px;
            max-width: 112px;
            flex: none;
        }

            .sidebar-feature .item .image img {
                object-fit: cover;
                height: 100%;
            }

        .sidebar-feature .item .content {
            flex-direction: column;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: flex-start;
            gap: 5px;
            width: 100%;
        }

            .sidebar-feature .item .content .title {
                font-size: 14px;
                font-weight: 550;
                line-height: 19.6px;
            }

            .sidebar-feature .item .content .date-up {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

                .sidebar-feature .item .content .date-up .day {
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16.8px;
                    color: var(--Secondary);
                }

.sidebar-join-our {
    margin-bottom: 40px;
}

    .sidebar-join-our .heading {
        margin-bottom: 22px;
    }

    .sidebar-join-our .sub-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        color: var(--Secondary);
        margin-bottom: 20px;
    }

.sidebar-tag .heading {
    margin-bottom: 20px;
}

.sidebar-tag .tag-list {
    gap: 11px 9px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .sidebar-tag .tag-list .item {
        padding: 11px 14px;
        cursor: pointer;
        border: 1px solid var(--Border-1);
        border-radius: 99px;
    }

        .sidebar-tag .tag-list .item:hover a {
            color: var(--Main-color);
        }

        .sidebar-tag .tag-list .item a {
            font-size: 14px;
            font-weight: 400;
            line-height: 19.6px;
            color: var(--Secondary);
        }

/*Text-color-clip
------------------------------------------------------------------------*/
.text-color-clip {
    background-image: linear-gradient( 180deg, rgba(255, 255, 255, 0.75) 13.41%, rgba(255, 255, 255, 0) 100% ), linear-gradient(180deg, #ffcb52 0%, #ff7b02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    background-clip: text;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

    .text-color-clip.letter-space-0 {
        letter-spacing: 0px;
    }

    .text-color-clip.style-2 {
        background-image: linear-gradient( 180deg, #ffffff 68.51%, rgb(39, 47, 121) 93% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0px 3px 8px rgba(76, 43, 159, 0.5);
        -webkit-text-stroke: unset;
    }

    .text-color-clip.style-3 {
        background-image: linear-gradient( 180.45deg, #a6a5c3 0.18%, rgba(119, 145, 186, 0) 99.4% );
        -webkit-text-stroke: unset;
    }

    .text-color-clip.style-4 {
        line-height: 100px;
        -webkit-text-fill-color: var(--Bg);
        -webkit-text-stroke: 1px transparent;
        background-image: linear-gradient( 45deg, rgba(119, 145, 186, 0) 48.15%, #a6a5c3 79.4% );
    }

    .text-color-clip.style-5 {
        background-image: linear-gradient(90.36deg, #5c27fe 0.96%, #c165dd 99.05%), linear-gradient(180deg, #ffcb52 0%, #ff7b02 100%), linear-gradient( 180deg, rgba(255, 255, 255, 0.75) 13.41%, rgba(255, 255, 255, 0) 100% );
    }

    .text-color-clip.style-6 .fs-20 {
        font-size: 20px;
        line-height: 20px;
        -webkit-text-fill-color: var(--White);
        -webkit-text-stroke: 0px;
        text-transform: none;
        padding-left: 4px;
    }

    .text-color-clip.fs-26 {
        font-size: 26px;
        line-height: 26px;
    }

    .text-color-clip.fs-40 {
        font-size: 40px;
        line-height: 40px;
    }

    .text-color-clip.fs-50 {
        font-size: 50px;
        line-height: 50px;
    }

    .text-color-clip.fs-70 {
        font-size: 70px;
        line-height: 70px;
    }

        .text-color-clip.fs-70 .fs-40 {
            font-size: 40px;
            line-height: 40px;
        }

    .text-color-clip.fs-30 {
        font-size: 30px;
        line-height: 30px;
    }

        .text-color-clip.fs-30 .fs-20 {
            font-size: 20px;
            line-height: 20px;
        }

/*Count-down
------------------------------------------------------------------------*/
.js-countdown {
    display: block;
    width: 100%;
}

    .js-countdown .countdown__timer {
        width: 186px;
        height: 27px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 5px 10px;
        align-items: center;
        justify-content: space-between;
    }

        .js-countdown .countdown__timer .countdown__item {
            /* display: inline-block;
  position: relative; */
            display: flex;
            position: relative;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: center;
        }

            .js-countdown .countdown__timer .countdown__item:not(:last-child)::after {
                content: ":";
                position: absolute;
                font-size: 12px;
                font-weight: 400;
                line-height: 15.88px;
                color: rgba(255, 255, 255, 0.2);
                right: 7px;
                top: 1px;
                display: none !important;
            }

            .js-countdown .countdown__timer .countdown__item::before {
                position: static;
                text-align: center;
                color: var(--Secondary);
                font-size: 13px;
                font-weight: 400;
                line-height: 17.2px;
                /* right: 12px; */
                top: 0;
            }

            .js-countdown .countdown__timer .countdown__item:nth-child(1) {
                /* width: 46px;
  padding-left: 2px; */
            }

                .js-countdown .countdown__timer .countdown__item:nth-child(1)::before {
                    content: "days";
                    /* right: 16px; */
                }

            .js-countdown .countdown__timer .countdown__item:nth-child(2) {
                /* width: 45px; */
            }

                .js-countdown .countdown__timer .countdown__item:nth-child(2)::before {
                    content: "hours";
                    /* right: 18px; */
                }

            .js-countdown .countdown__timer .countdown__item:nth-child(3) {
                /* width: 45px; */
            }

                .js-countdown .countdown__timer .countdown__item:nth-child(3)::before {
                    content: "mins";
                    /* right: 14px; */
                }
            /* .js-countdown .countdown__timer .countdown__item:nth-child(3)::after {
  right: 2px;
  top: 0px;
} */
            /* .js-countdown .countdown__timer .countdown__item:nth-child(4) {
  text-align: center;
  width: 25px;
} */
            .js-countdown .countdown__timer .countdown__item:nth-child(4)::before {
                content: "secs";
                right: -5px;
                top: -1px;
            }

            .js-countdown .countdown__timer .countdown__item .countdown__value {
                display: inline-block;
                font-size: 13px;
                font-weight: 700;
                line-height: 17.2px;
                color: #fdac00;
            }

    .js-countdown.style-1 .countdown__timer {
        width: unset;
        height: unset;
        max-width: unset;
        background-color: transparent;
        padding: 0px;
    }

        .js-countdown.style-1 .countdown__timer .countdown__item:nth-child(2)::before {
            right: 16px;
        }

        .js-countdown.style-1 .countdown__timer .countdown__item:nth-child(3)::before {
            right: 12px;
        }

        .js-countdown.style-1 .countdown__timer .countdown__item:nth-child(4)::before {
            right: -2px;
        }

        .js-countdown.style-1 .countdown__timer .countdown__item::before {
            font-size: 12px;
            font-weight: 400;
            line-height: 19.85px;
        }

        .js-countdown.style-1 .countdown__timer .countdown__item .countdown__value {
            font-size: 20px;
            font-weight: 700;
            line-height: 19.85px;
        }

    .js-countdown.style-2 .countdown__timer {
        max-width: unset;
        width: unset;
        height: unset;
        padding: 0px 0px 58px 0px;
        gap: 50px;
        background-color: transparent;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .js-countdown.style-2 .countdown__timer .countdown__item {
            border: 1px solid var(--Border-6);
            border-radius: 50%;
            width: 94px;
            height: 94px;
            padding: 10px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .js-countdown.style-2 .countdown__timer .countdown__item::after {
                color: var(--White);
                font-size: 40px;
                right: -28px;
                top: 39%;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .js-countdown.style-2 .countdown__timer .countdown__item::before {
                color: var(--White);
                font-size: 13px;
                font-weight: 467;
                line-height: 23.81px;
                text-transform: uppercase;
                top: unset;
                right: unset;
                bottom: -34px;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .js-countdown.style-2 .countdown__timer .countdown__item:nth-child(1)::before {
                content: "DAYS";
            }

            .js-countdown.style-2 .countdown__timer .countdown__item:nth-child(2)::before {
                content: "Hours";
            }

            .js-countdown.style-2 .countdown__timer .countdown__item:nth-child(3)::before {
                content: "Mins";
            }

            .js-countdown.style-2 .countdown__timer .countdown__item:nth-child(4)::before {
                content: "Secs";
            }

            .js-countdown.style-2 .countdown__timer .countdown__item .countdown__value {
                display: inline-block;
                font-size: 30px;
                font-weight: 700;
                line-height: 52.92px;
                background: #1c095e;
                box-shadow: 0px 0px 12px 0px rgb(255, 255, 255) inset;
                border-radius: 50%;
                width: 100%;
                height: 100%;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
            }

/*wg-game
------------------------------------------------------------------------*/
.wg-game {
    border-radius: 16px;
    width: 100%;
}

    .wg-game .wg-game-image {
        width: 100%;
    }

    .wg-game.style-1 {
        background: var(--Bg-2);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

        .wg-game.style-1 .wg-game-image {
            padding: 30px 0px 20px;
        }

            .wg-game.style-1 .wg-game-image img {
                max-height: 87px;
            }

        .wg-game.style-1 .countdown-wrap {
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: linear-gradient( 107.93deg, #6621ca -25.32%, rgba(32, 11, 77, 0) 130.84% );
            padding: 20px 30px;
        }

            .wg-game.style-1 .countdown-wrap .sub-title {
                text-transform: uppercase;
                margin-bottom: 13px;
            }

            .wg-game.style-1 .countdown-wrap.style-color-1 {
                background: linear-gradient( 107.93deg, #ffe94f -25.32%, rgba(32, 11, 77, 0) 130.84% );
            }

            .wg-game.style-1 .countdown-wrap.style-color-2 {
                background: linear-gradient( 107.93deg, #094400 -25.32%, rgba(1, 1, 30, 0) 130.84% );
            }

            .wg-game.style-1 .countdown-wrap.style-color-3 {
                background: linear-gradient( 107.93deg, #ff46af -25.32%, rgba(32, 11, 77, 0) 130.84% );
            }

            .wg-game.style-1 .countdown-wrap.style-color-4 {
                background: linear-gradient( 107.93deg, #138b96 -25.32%, rgba(32, 11, 77, 0) 130.84% );
            }

            .wg-game.style-1 .countdown-wrap.style-color-5 {
                background: linear-gradient( 107.93deg, #6f0829 -25.32%, rgba(32, 11, 77, 0) 130.84% );
            }

        .wg-game.style-1 .box-winning {
            padding: 20px;
        }

            .wg-game.style-1 .box-winning .heading {
                margin-bottom: 20px;
                line-height: 16.8px;
                text-transform: uppercase;
            }

            .wg-game.style-1 .box-winning .winning-item {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

                .wg-game.style-1 .box-winning .winning-item:not(:last-child) {
                    margin-bottom: 10px;
                }

                .wg-game.style-1 .box-winning .winning-item .time .day {
                    color: var(--Text-5);
                }

                .wg-game.style-1 .box-winning .winning-item .time .date {
                    font-size: 10px;
                    line-height: 14px;
                }

                .wg-game.style-1 .box-winning .winning-item .number-list {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 4px;
                }

                    .wg-game.style-1 .box-winning .winning-item .number-list .number-item {
                        display: -webkit-box;
                        display: -moz-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 36px;
                        height: 36px;
                        border-radius: 999px;
                        border: 1px solid var(--Border-2);
                        font-size: 14px;
                        font-weight: 645;
                        line-height: 18.52px;
                    }

                        .wg-game.style-1 .box-winning .winning-item .number-list .number-item.active {
                            border: 1px solid var(--Sub-color);
                            background-color: var(--Sub-color);
                        }

        .wg-game.style-1 .btn-past {
            margin-bottom: 20px;
        }

    .wg-game.style-2 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        background-color: var(--Bg-4);
    }

        .wg-game.style-2 .wg-game-image {
            padding: 30px 0px 20px;
            width: 100%;
            border-bottom: 1px solid var(--Border-1);
        }

            .wg-game.style-2 .wg-game-image img {
                max-height: 75px;
            }

        .wg-game.style-2 .box-winning {
            padding: 20px 30px;
        }

            .wg-game.style-2 .box-winning .heading {
                font-size: 12px;
                font-weight: 645;
                line-height: 16.8px;
                text-transform: uppercase;
                margin-bottom: 10px;
            }

            .wg-game.style-2 .box-winning .winning-item:not(:last-child) {
                margin-bottom: 25px;
            }

            .wg-game.style-2 .box-winning .winning-item .note {
                font-size: 12px;
                font-weight: 645;
                line-height: 16.8px;
                text-transform: uppercase;
            }

            .wg-game.style-2 .box-winning .winning-item .number-list {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

                .wg-game.style-2 .box-winning .winning-item .number-list .number-item {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 36px;
                    height: 36px;
                    border-radius: 999px;
                    border: 1px solid var(--Border-2);
                    font-size: 14px;
                    font-weight: 645;
                    line-height: 18.52px;
                }

                    .wg-game.style-2 .box-winning .winning-item .number-list .number-item.active {
                        border: 1px solid var(--Sub-color);
                        background-color: var(--Sub-color);
                    }

        .wg-game.style-2 .wg-countdown {
            width: 100%;
            background: var(--Bg-5);
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 0px 0px 16px 16px;
            padding: 20px 30px;
        }

            .wg-game.style-2 .wg-countdown .heading {
                font-size: 12px;
                font-weight: 645;
                line-height: 16.8px;
                text-transform: uppercase;
            }

            .wg-game.style-2 .wg-countdown .js-countdown {
                margin-bottom: 13px;
            }

    .wg-game.style-3 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        background-color: var(--Bg-2);
    }

        .wg-game.style-3 img {
            border-radius: 16px 16px 0px 0px;
            object-fit: cover;
            width: 100%;
        }

        .wg-game.style-3 .heading {
            padding: 30px 20px 32px;
        }

            .wg-game.style-3 .heading .title {
                margin-bottom: 2px;
            }

            .wg-game.style-3 .heading .sub-title {
                color: var(--Secondary);
                font-size: 14px;
                line-height: 19.6px;
            }

                .wg-game.style-3 .heading .sub-title i {
                    color: var(--Secondary);
                    padding-right: 5px;
                }

        .wg-game.style-3 .winning-item {
            margin-bottom: 31px;
        }

            .wg-game.style-3 .winning-item .note {
                font-size: 12px;
                font-weight: 645;
                line-height: 16.8px;
                text-transform: uppercase;
                margin-bottom: 9px;
            }

            .wg-game.style-3 .winning-item .number-list {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

                .wg-game.style-3 .winning-item .number-list .number-item {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 40px;
                    height: 40px;
                    border-radius: 999px;
                    border: 1px solid var(--Border-2);
                    font-size: 14px;
                    font-weight: 645;
                    line-height: 18.52px;
                }

                    .wg-game.style-3 .winning-item .number-list .number-item.active {
                        border: 1px solid var(--Sub-color);
                        background-color: var(--Sub-color);
                    }

        .wg-game.style-3 .text-color-clip {
            padding: 0px 20px 20px 20px;
        }

    .wg-game.style-4 {
        background-color: var(--Bg-2);
    }

        .wg-game.style-4 img {
            border-radius: 16px 16px 0px 0px;
        }

        .wg-game.style-4 .content {
            padding: 28px 20px 24px;
        }

            .wg-game.style-4 .content .text {
                margin-bottom: 3px;
            }

            .wg-game.style-4 .content .money {
                margin-bottom: 31px;
            }

            .wg-game.style-4 .content .tf-btn {
                padding: 0 40px;
            }

    .wg-game.style-5 {
        background-color: var(--Bg-4);
    }

        .wg-game.style-5 .wg-game-image {
            width: 100%;
            position: relative;
        }

            .wg-game.style-5 .wg-game-image img {
                width: 100%;
                border-radius: 16px 16px 0px 0px;
            }

            .wg-game.style-5 .wg-game-image .js-countdown {
                position: absolute;
                top: 10px;
                left: 10px;
            }

                .wg-game.style-5 .wg-game-image .js-countdown .countdown__timer {
                    width: 197px;
                    height: 29px;
                    padding: 8px 10px;
                }

                    .wg-game.style-5
                    .wg-game-image
                    .js-countdown
                    .countdown__timer
                    .countdown__item:nth-child(1)::before {
                        right: 20px;
                    }

        .wg-game.style-5 .content {
            padding: 31px 20px 20px;
        }

            .wg-game.style-5 .content .heading .title {
                margin-bottom: 2px;
            }

            .wg-game.style-5 .content .heading .text {
                margin-bottom: 3px;
            }

            .wg-game.style-5 .content .heading .tf-btn {
                padding: 0 40px;
            }

            .wg-game.style-5 .content .sub-title-list {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 5px 13px;
                margin-bottom: 28px;
            }

                .wg-game.style-5 .content .sub-title-list .item {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 9px;
                }

                    .wg-game.style-5 .content .sub-title-list .item i {
                        color: var(--Secondary);
                    }

                    .wg-game.style-5 .content .sub-title-list .item p {
                        color: var(--Secondary);
                        font-size: 14px;
                    }

                        .wg-game.style-5 .content .sub-title-list .item p span {
                            font-weight: 645;
                        }

        .wg-game.style-5 .money {
            margin-bottom: 30px;
        }

    .wg-game.style-6 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        position: relative;
        background-color: var(--Bg-2);
        padding: 68px 0 20px;
    }

        .wg-game.style-6 .wg-game-image {
            position: absolute;
            top: -50px;
            max-width: 124px;
        }

        .wg-game.style-6 .content .title {
            margin-bottom: 3px;
        }

        .wg-game.style-6 .content .sub-title-list {
            margin-bottom: 27px;
        }

            .wg-game.style-6 .content .sub-title-list .item {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 7px;
                margin-bottom: 4px;
            }

                .wg-game.style-6 .content .sub-title-list .item i {
                    color: var(--Secondary);
                    font-size: 15px;
                }

                .wg-game.style-6 .content .sub-title-list .item p {
                    color: var(--Secondary);
                    font-size: 14px;
                    line-height: 19.6px;
                }

                    .wg-game.style-6 .content .sub-title-list .item p span {
                        font-weight: 645;
                    }

                .wg-game.style-6 .content .sub-title-list .item.item:last-child {
                    gap: 2px;
                }

        .wg-game.style-6 .content .text {
            margin-bottom: 10px;
        }

        .wg-game.style-6 .content .money {
            margin-bottom: 6px;
        }

        .wg-game.style-6 .content .million {
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 30px;
        }

        .wg-game.style-6 .js-countdown .countdown__timer {
            width: 203px;
            height: 27px;
            padding: 4px 0px;
            gap: 4px;
        }

            .wg-game.style-6 .js-countdown .countdown__timer .countdown__item::before {
                top: 1px;
            }

            .wg-game.style-6 .js-countdown .countdown__timer .countdown__item:nth-child(1) {
                padding-left: 0px;
            }

                .wg-game.style-6
                .js-countdown
                .countdown__timer
                .countdown__item:nth-child(1)::before {
                    right: 7px;
                }

                .wg-game.style-6
                .js-countdown
                .countdown__timer
                .countdown__item:nth-child(1)::after {
                    right: -7px;
                }

                .wg-game.style-6
                .js-countdown
                .countdown__timer
                .countdown__item:nth-child(1)
                .countdown__value {
                    padding-right: 10px;
                }

            .wg-game.style-6
            .js-countdown
            .countdown__timer
            .countdown__item:nth-child(2)::before {
                right: 5px;
            }

            .wg-game.style-6
            .js-countdown
            .countdown__timer
            .countdown__item:nth-child(2)::after {
                right: -7px;
            }

            .wg-game.style-6
            .js-countdown
            .countdown__timer
            .countdown__item:nth-child(3)::before {
                right: 0px;
            }

            .wg-game.style-6
            .js-countdown
            .countdown__timer
            .countdown__item:nth-child(3)::after {
                right: -15px;
            }

            .wg-game.style-6 .js-countdown .countdown__timer .countdown__item:nth-child(4) {
                padding-left: 22px;
            }

                .wg-game.style-6
                .js-countdown
                .countdown__timer
                .countdown__item:nth-child(4)::before {
                    right: -21px;
                }

    .wg-game.style-7 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 20px;
        background-color: var(--Bg-2);
    }

        .wg-game.style-7 .wg-game-image {
            max-width: 100px;
        }

        .wg-game.style-7 .content .money-wrap {
            margin-bottom: 15px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .wg-game.style-7 .content .wg-countdown .title {
            margin-bottom: 5px;
            color: var(--Secondary);
        }

/*history-main
------------------------------------------------------------------------*/
.history-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 72px 0px;
    padding: 30px 0px 58px;
    position: relative;
}

    .history-main::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--Border);
        top: 0;
        left: 50%;
    }

/*box-history
------------------------------------------------------------------------*/
.box-history {
    max-width: 500px;
    width: 100%;
}

    .box-history.pt-18 {
        padding-top: 18px;
    }

    .box-history.style-1::before {
        content: "";
        position: absolute;
        width: 25px;
        height: 25px;
        margin-top: 232px;
        right: 48.8%;
        background-color: var(--Sub-color-2);
        border: 7px solid var(--White);
        border-radius: 50%;
        z-index: 5;
    }

    .box-history.style-1::after {
        content: "";
        position: absolute;
        height: 1px;
        width: 70px;
        margin-top: -247px;
        left: 45%;
        background-color: var(--Border);
        z-index: 0;
    }

    .box-history.style-2::after {
        content: "";
        position: absolute;
        height: 1px;
        width: 50px;
        margin-top: -247px;
        right: 45%;
        background-color: var(--Border);
        z-index: 0;
    }

    .box-history .year {
        font-size: 50px;
        font-weight: 645;
        line-height: 40px;
        padding-left: 31px;
    }

    .box-history .content-history {
        border-radius: 16px;
        background-color: var(--Bg-2);
        padding: 30px;
    }

        .box-history .content-history .title {
            font-size: 24px;
            font-weight: 700;
            line-height: 31.75px;
            margin-bottom: 16px;
        }

        .box-history .content-history .text {
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            color: var(--Secondary);
            margin-bottom: 28px;
        }

        .box-history .content-history .image {
            border-radius: 16px;
        }

        .box-history .content-history img {
            width: 100%;
            border-radius: 16px;
            max-height: 248px;
            object-fit: cover;
        }

/*tf-control-sorting
------------------------------------------------------------------------*/
.tf-control-sorting .tf-dropdown-sort {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    z-index: 1;
    width: max-content;
}

    .tf-control-sorting .tf-dropdown-sort .tf-btn {
        border: 1px solid var(--Border-2);
        background-color: var(--backdrop);
        min-width: 154px;
    }

        .tf-control-sorting .tf-dropdown-sort .tf-btn i,
        .tf-control-sorting .tf-dropdown-sort .tf-btn span {
            font-size: 15px;
            color: var(--Secondary);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .tf-control-sorting .tf-dropdown-sort .tf-btn:hover i,
        .tf-control-sorting .tf-dropdown-sort .tf-btn:hover span {
            color: var(--Main-color);
        }

    .tf-control-sorting .tf-dropdown-sort .dropdown-menu {
        width: 100%;
        margin-top: 14px !important;
        background-color: var(--backdrop);
        border: 1px solid #191d3c;
        border-radius: 16px;
        padding: 20px 16px;
        z-index: 10;
    }

        .tf-control-sorting .tf-dropdown-sort .dropdown-menu::after {
            position: absolute;
            content: "";
            width: 0;
            height: 0;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 8px solid #191d3c;
        }

        .tf-control-sorting .tf-dropdown-sort .dropdown-menu .select-item {
            overflow-x: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

    .tf-control-sorting .tf-dropdown-sort .select-item {
        cursor: pointer;
        font-size: 14px;
        font-weight: 645;
        line-height: 18.52px;
        color: var(--Secondary);
        width: 100%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .tf-control-sorting .tf-dropdown-sort .select-item:not(:last-child) {
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--Border);
        }

        .tf-control-sorting .tf-dropdown-sort .select-item.active,
        .tf-control-sorting .tf-dropdown-sort .select-item:hover {
            color: var(--Main-color);
        }

/*tf-control-number
------------------------------------------------------------------------*/
.tf-control-number {
    width: max-content;
    z-index: 10000;
}

    .tf-control-number .tf-dropdown-number {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
        width: max-content;
        z-index: 10000;
    }

        .tf-control-number .tf-dropdown-number .choose-number {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .tf-control-number .tf-dropdown-number .choose-number i,
            .tf-control-number .tf-dropdown-number .choose-number span {
                font-size: 15px;
                color: var(--Secondary);
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .tf-control-number .tf-dropdown-number .choose-number:hover i,
            .tf-control-number .tf-dropdown-number .choose-number:hover span {
                color: var(--Main-color);
            }

        .tf-control-number .tf-dropdown-number .dropdown-menu {
            width: 100%;
            background-color: var(--Bg-2);
            border: 1px solid var(--Border-2);
            border-radius: 16px;
            padding: 20px 16px;
            z-index: 10000;
            position: relative;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .tf-control-number .tf-dropdown-number .dropdown-menu .select-item {
                overflow-x: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

        .tf-control-number .tf-dropdown-number .select-item {
            cursor: pointer;
            font-size: 14px;
            font-weight: 400;
            line-height: 19.6px;
            color: var(--Secondary);
            width: 100%;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .tf-control-number .tf-dropdown-number .select-item:not(:last-child) {
                margin-bottom: 8px;
                padding-bottom: 8px;
                border-bottom: 1px solid var(--Border);
            }

            .tf-control-number .tf-dropdown-number .select-item.active,
            .tf-control-number .tf-dropdown-number .select-item:hover {
                color: var(--Main-color);
            }

.tf-login,
.tf-register {
    background-color: white;
}

/*login-wrap
------------------------------------------------------------------------*/
.login-wrap {
    max-width: 520px;
    width: 100%;
    margin: 0px auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 20px;
    height: 100%;
}

    .login-wrap .image {
        width: 100%;
        max-width: 380px;
    }

        .login-wrap .image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 20px 0px 0px 20px;
        }

    .login-wrap .content {
        width: 100%;
        border-radius: 20px;
        padding: 30px;
        background-color: #1f2125;
        position: relative;
    }

        .login-wrap .content .close-form {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 32px;
            height: 32px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid var(--Border-1);
            cursor: pointer;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            padding: 8px;
        }

            .login-wrap .content .close-form i {
                color: #c4c4c4;
                font-size: 16px;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .login-wrap .content .close-form:hover i {
                color: var(--Main-color);
            }

        .login-wrap .content .title {
            font-size: 24px;
            font-weight: 645;
            line-height: 31.75px;
            margin-bottom: 35px;
        }

        .login-wrap .content .text-login-with {
            text-align: center;
            margin-bottom: 16px;
        }

            .login-wrap .content .text-login-with::after {
                position: absolute;
                content: "";
                height: 1px;
                width: 30%;
                left: 0;
                top: 50%;
                background-color: var(--Border-1);
            }

            .login-wrap .content .text-login-with::before {
                position: absolute;
                content: "";
                height: 1px;
                width: 30%;
                right: 0;
                top: 50%;
                background-color: var(--Border-1);
            }

            .login-wrap .content .text-login-with span {
                font-size: 12px;
                font-weight: 400;
                line-height: 16.8px;
                color: var(--Secondary);
            }

        .login-wrap .content .bottom-form {
            font-size: 15px;
            color: var(--Secondary);
        }

/*register-wrap
------------------------------------------------------------------------*/
.register {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.register-wrap {
    max-width: 520px;
    width: 100%;
    margin: 0px auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 20px;
    height: 100%;
    flex-direction: column;
}

    .register-wrap .image {
        width: 100%;
        max-width: 380px;
    }

        .register-wrap .image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 20px 0px 0px 20px;
        }

    .register-wrap .content {
        width: 100%;
        border-radius: 20px;
        padding: 40px;
        background-color: #1f2125;
        position: relative;
    }

        .register-wrap .content .close-form {
            position: absolute;
            right: 30px;
            top: 30px;
            width: 32px;
            height: 32px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid var(--Border-1);
            cursor: pointer;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            padding: 8px;
        }

            .register-wrap .content .close-form i {
                color: #55657e;
                font-size: 16px;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .register-wrap .content .close-form:hover i {
                color: var(--Main-color);
            }

        .register-wrap .content .checkbox-item .notice {
            position: relative;
        }

            .register-wrap .content .checkbox-item .notice:hover::after {
                background-color: var(--Main-color);
            }

            .register-wrap .content .checkbox-item .notice::after {
                position: absolute;
                content: "";
                width: 100%;
                height: 1px;
                bottom: -2px;
                left: 0;
                background-color: var(--Secondary);
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

        .register-wrap .content .title {
            font-size: 20px;
            font-weight: 645;
            line-height: 31.75px;
            margin-bottom: 35px;
        }

        .register-wrap .content .text-login-with {
            text-align: center;
            margin-bottom: 16px;
        }

            .register-wrap .content .text-login-with::after {
                position: absolute;
                content: "";
                height: 1px;
                width: 30%;
                left: 0;
                top: 50%;
                background-color: var(--Border-1);
            }

            .register-wrap .content .text-login-with::before {
                position: absolute;
                content: "";
                height: 1px;
                width: 30%;
                right: 0;
                top: 50%;
                background-color: var(--Border-1);
            }

            .register-wrap .content .text-login-with span {
                font-size: 12px;
                font-weight: 400;
                line-height: 16.8px;
                color: var(--Secondary);
            }

        .register-wrap .content .bottom-form {
            font-size: 15px;
            color: var(--Secondary);
        }

.my-account-main .user-wrap {
    background-color: var(--Bg-2);
    border-radius: 16px;
    padding: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

    .my-account-main .user-wrap .infor {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .my-account-main .user-wrap .infor .image img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
        }

        .my-account-main .user-wrap .infor .right .sub-title {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .my-account-main .user-wrap .infor .right .sub-title i {
                font-size: 20px;
            }

    .my-account-main .user-wrap .detail-infor-list li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--Border-1);
    }

        .my-account-main .user-wrap .detail-infor-list li .text {
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            color: var(--Secondary);
        }

        .my-account-main .user-wrap .detail-infor-list li:not(:last-child) {
            padding-bottom: 14px;
        }

.my-account-main .balance-wrap {
    background-color: var(--Bg-2);
    border-radius: 16px;
    padding: 20px;
}

    .my-account-main .balance-wrap .heading {
        margin-bottom: 20px;
    }

    .my-account-main .balance-wrap .money-detail-list {
        margin-bottom: 30px;
    }

        .my-account-main .balance-wrap .money-detail-list li {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--Border-1);
        }

            .my-account-main .balance-wrap .money-detail-list li .text {
                font-size: 16px;
                font-weight: 400;
                line-height: 22.4px;
                color: var(--Secondary);
            }

            .my-account-main .balance-wrap .money-detail-list li:not(:last-child) {
                padding-bottom: 16px;
            }

    .my-account-main .balance-wrap .money-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

/*my-account-contest
------------------------------------------------------------------------*/
.my-account-contest .user-wrap {
    background-color: var(--Bg-2);
    border-radius: 16px;
    padding: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

    .my-account-contest .user-wrap .infor {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .my-account-contest .user-wrap .infor .image img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
        }

        .my-account-contest .user-wrap .infor .right .sub-title {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .my-account-contest .user-wrap .infor .right .sub-title i {
                font-size: 20px;
            }

    .my-account-contest .user-wrap .detail-infor-list li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--Border-1);
    }

        .my-account-contest .user-wrap .detail-infor-list li .text {
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            color: var(--Secondary);
        }

        .my-account-contest .user-wrap .detail-infor-list li:not(:last-child) {
            padding-bottom: 16px;
        }

.my-account-contest .balance-wrap {
    background-color: var(--Bg-2);
    border-radius: 16px;
    padding: 20px;
}

    .my-account-contest .balance-wrap .heading {
        margin-bottom: 20px;
    }

    .my-account-contest .balance-wrap .money-detail-list {
        margin-bottom: 30px;
    }

        .my-account-contest .balance-wrap .money-detail-list li {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--Border-1);
        }

            .my-account-contest .balance-wrap .money-detail-list li .text {
                font-size: 16px;
                font-weight: 400;
                line-height: 22.4px;
                color: var(--Secondary);
            }

            .my-account-contest .balance-wrap .money-detail-list li:not(:last-child) {
                padding-bottom: 16px;
            }

    .my-account-contest .balance-wrap .money-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

/*my-account-contest
------------------------------------------------------------------------*/
.my-account-contest .top {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .my-account-contest .top .heading .title {
        font-size: 30px;
    }

    .my-account-contest .top .heading .sub-title {
        color: var(--Secondary);
    }

    .my-account-contest .top .widget-tabs .item-title {
        width: 144px;
    }

/*my-account-profile
------------------------------------------------------------------------*/
.my-account-profile .heading-left {
    max-width: 350px;
    width: 100%;
}

.my-account-profile .profile-avatar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--Border-1);
}

    .my-account-profile .profile-avatar .edit-avatar img {
        width: 110px;
        height: 110px;
        object-fit: cover;
        border-radius: 50%;
    }

    .my-account-profile .profile-avatar .edit-avatar .ic-edit,
    .my-account-profile .profile-avatar .edit-avatar .ic-del {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--Border-1);
        background-color: var(--Bg-2);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .my-account-profile .profile-avatar .edit-avatar .ic-edit i,
        .my-account-profile .profile-avatar .edit-avatar .ic-del i {
            font-size: 20px;
        }

    .my-account-profile .profile-avatar .edit-avatar .ic-edit {
        right: -20px;
        top: 0;
    }

    .my-account-profile .profile-avatar .edit-avatar .ic-del {
        bottom: 0;
        right: -20px;
    }

        .my-account-profile .profile-avatar .edit-avatar .ic-del i {
            color: var(--Sub-color);
        }

.my-account-profile .profile-infor {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--Border-1);
}

    .my-account-profile .profile-infor .edit-infor {
        width: 100%;
    }

        .my-account-profile .profile-infor .edit-infor .has-verified {
            flex-wrap: wrap;
            justify-content: unset;
        }

            .my-account-profile .profile-infor .edit-infor .has-verified .verified {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 5px;
            }

                .my-account-profile .profile-infor .edit-infor .has-verified .verified.done i {
                    font-size: 20px;
                    color: #76dc1a;
                }

                .my-account-profile
                .profile-infor
                .edit-infor
                .has-verified
                .verified.done
                .text {
                    color: #76dc1a;
                }

                .my-account-profile .profile-infor .edit-infor .has-verified .verified.dont i {
                    border-radius: 50%;
                    color: #fabb28;
                    font-size: 24px;
                }

                .my-account-profile
                .profile-infor
                .edit-infor
                .has-verified
                .verified.dont
                .text {
                    color: #fabb28;
                }

.my-account-profile .profile-security {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
}

    .my-account-profile .profile-security .edit-password {
        width: 100%;
    }

        .my-account-profile .profile-security .edit-password .has-verified {
            flex-wrap: wrap;
            justify-content: unset;
        }

            .my-account-profile
            .profile-security
            .edit-password
            .has-verified
            .verified-wrap {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

                .my-account-profile
                .profile-security
                .edit-password
                .has-verified
                .verified-wrap.type-confirm
                i {
                    font-size: 20px;
                    color: var(--Sub-color-3) !important;
                }

                .my-account-profile
                .profile-security
                .edit-password
                .has-verified
                .verified-wrap.type-confirm
                .notice {
                    color: var(--Text-2);
                }

                .my-account-profile
                .profile-security
                .edit-password
                .has-verified
                .verified-wrap
                .verified-item {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    gap: 5px;
                }

                    .my-account-profile
                    .profile-security
                    .edit-password
                    .has-verified
                    .verified-wrap
                    .verified-item.item-check
                    i {
                        color: #76dc1a;
                    }

                        .my-account-profile
                        .profile-security
                        .edit-password
                        .has-verified
                        .verified-wrap
                        .verified-item.item-check
                        i::before {
                            content: "\e90f";
                        }

                    .my-account-profile
                    .profile-security
                    .edit-password
                    .has-verified
                    .verified-wrap
                    .verified-item.item-check
                    .text {
                        color: #76dc1a;
                    }

                    .my-account-profile
                    .profile-security
                    .edit-password
                    .has-verified
                    .verified-wrap
                    .verified-item
                    i {
                        font-size: 20px;
                        color: var(--Text-2);
                    }

                    .my-account-profile
                    .profile-security
                    .edit-password
                    .has-verified
                    .verified-wrap
                    .verified-item
                    .text {
                        font-size: 14px;
                        color: var(--Text-2);
                    }

/*page-title-home-1
------------------------------------------------------------------------*/
.page-title-home-1 {
    background-image: url("../images/page-title-home-2-1.png");
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    background-position: bottom center;
}

    .page-title-home-1 .coin {
        position: absolute;
    }

        .page-title-home-1 .coin.item-1 {
            max-width: 65.42px;
            left: 42%;
            top: 6.5%;
        }

        .page-title-home-1 .coin.item-2 {
            top: 18.6%;
            left: 15.4%;
            max-width: 75px;
            animation: movedown 3s linear infinite;
        }

        .page-title-home-1 .coin.item-3 {
            max-width: 49px;
            right: 25.1%;
            top: 31.3%;
        }

        .page-title-home-1 .coin.item-4 {
            max-width: 48.67px;
            right: 22.5%;
            top: 59%;
            animation: moveleft 3s linear infinite;
        }

        .page-title-home-1 .coin.item-5 {
            max-width: 80px;
            left: 22.6%;
            bottom: 7%;
            animation: movedown 3s linear infinite;
            animation-delay: 0.8s;
        }

        .page-title-home-1 .coin.item-6 {
            max-width: 49.67px;
            right: 31.5%;
            bottom: 4.4%;
            animation: movedown 3s linear infinite;
            animation-delay: 1s;
        }

        .page-title-home-1 .coin.item-7 {
            left: 14%;
            bottom: 18.5%;
            max-width: 128px;
            animation: rotate360 3s linear infinite;
        }

        .page-title-home-1 .coin.item-8 {
            right: 5.5%;
            top: 29.5%;
            max-width: 118px;
            animation: scale 3s linear infinite;
        }

    .page-title-home-1 .main-page-title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 140px;
        padding-bottom: 20px;
        text-align: center;
        flex-direction: column;
    }

        .page-title-home-1 .main-page-title .title {
            font-size: 36px;
            font-weight: 700;
            line-height: 52px;
            margin-bottom: 10px;
        }

.timer-title {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: normal;
    color: #00e1df;
}

.page-title-home-1 .main-page-title .title span {
    background-clip: text;
    -webkit-text-fill-color: #1c095e;
    -webkit-text-stroke: 3px transparent;
    background-image: linear-gradient(274.33deg, #f4c142 2.74%, #f4c142 103%);
}

.page-title-home-1 .main-page-title .sub-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 45px;
}

.page-title-home-1 .main-page-title .item-car {
    padding: 0 28px 0 0;
}

    .page-title-home-1 .main-page-title .item-car img {
        max-width: 877px;
        height: auto;
        object-fit: cover;
    }

.page-title-home-1 .main-page-title .tf-btn {
    font-size: 20px;
    line-height: 26.46px;
    padding: 33.5px 50.5px;
    font-weight: 600;
}

/*page-title-home-3
------------------------------------------------------------------------*/
.page-title-home-3 .slider-home-3 .swiper-slide {
    height: auto;
}

.page-title-home-3 .slider-home-3 .swiper-pagination {
    padding-top: 17px;
}

.page-title-home-3 .slider-home-3 .slide-title-home-3 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    height: 100%;
    border-radius: 16px;
    background-color: var(--Bg-12);
}

    .page-title-home-3 .slider-home-3 .slide-title-home-3.style-1 {
        background-image: url("../images/page-title/home-3/bg-home-3-center.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-bottom: 39px;
    }

        .page-title-home-3 .slider-home-3 .slide-title-home-3.style-1 .image img {
            padding: 55px 37px 0px 0px;
        }

        .page-title-home-3 .slider-home-3 .slide-title-home-3.style-1 .image .item-2 {
            position: relative;
            z-index: 1;
        }

        .page-title-home-3 .slider-home-3 .slide-title-home-3.style-1 .image .item-1 {
            left: 0;
            top: 0;
            z-index: 0;
        }

    .page-title-home-3 .slider-home-3 .slide-title-home-3.style-2 {
        background-image: url("../../images/page-title/home-3/bg-home-3-left.html");
        background-position: center;
        background-size: cover;
    }

        .page-title-home-3 .slider-home-3 .slide-title-home-3.style-2 .content {
            padding: 41px 0px 14px 56px;
        }

            .page-title-home-3
            .slider-home-3
            .slide-title-home-3.style-2
            .content
            .image-title {
                margin-bottom: 26px;
            }

                .page-title-home-3
                .slider-home-3
                .slide-title-home-3.style-2
                .content
                .image-title
                img {
                    max-width: 166px;
                    width: 100%;
                }

    .page-title-home-3 .slider-home-3 .slide-title-home-3.style-3 {
        background-image: url("../../images/page-title/home-3/bg-home-3-left.html");
        background-position: center;
        background-size: cover;
    }

        .page-title-home-3 .slider-home-3 .slide-title-home-3.style-3 .image {
            padding: 23px 84px 0px 0px;
        }

    .page-title-home-3 .slider-home-3 .slide-title-home-3 .content {
        padding: 43px 0px 0px 65px;
    }

        .page-title-home-3 .slider-home-3 .slide-title-home-3 .content .image-title {
            margin-bottom: 49px;
        }

            .page-title-home-3
            .slider-home-3
            .slide-title-home-3
            .content
            .image-title
            img {
                max-width: 145px;
            }

        .page-title-home-3
        .slider-home-3
        .slide-title-home-3
        .content
        .text-color-clip {
            margin-bottom: 21px;
        }

        .page-title-home-3 .slider-home-3 .slide-title-home-3 .content .bot {
            width: max-content;
        }

            .page-title-home-3 .slider-home-3 .slide-title-home-3 .content .bot .btn-play {
                font-size: 20px;
                height: 67px;
                padding: 0 50px;
                margin-bottom: 8px;
            }

    .page-title-home-3 .slider-home-3 .slide-title-home-3 .text-color-clip {
        white-space: nowrap;
    }

.grid-column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

    .grid-column-3.gap-46-30 {
        gap: 46px 30px;
    }

    .grid-column-3.style-2 {
        gap: 49px 30px;
    }

.s-game-play {
    background-image: url("../../images/background-item/bg-section.html");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

    .s-game-play .heading-section {
        padding-top: 160px;
    }

    .s-game-play .game-play {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 10px;
    }

        .s-game-play .game-play .slot-game {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            background: var(--Bg-10);
            border-radius: 16px;
            height: 100%;
        }

            .s-game-play .game-play .slot-game.game-1 {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                background-image: url("../../images/background-item/bg-slot-1.html");
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                white-space: nowrap;
            }

                .s-game-play .game-play .slot-game.game-1 .content {
                    padding: 43px 0px 54px 30px;
                }

                    .s-game-play .game-play .slot-game.game-1 .content .image-item img {
                        max-width: 162px;
                    }

                .s-game-play .game-play .slot-game.game-1 .image {
                    height: 100%;
                    margin-left: -70px;
                }

                    .s-game-play .game-play .slot-game.game-1 .image img {
                        object-fit: cover;
                        height: 100%;
                    }

                .s-game-play .game-play .slot-game.game-1 .btn-play {
                    padding: 1px 42px 2px 41px;
                }

            .s-game-play .game-play .slot-game.game-2 {
                background-image: url("../../images/background-item/bg-slot-2.html");
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

                .s-game-play .game-play .slot-game.game-2 .btn-play {
                    padding: 0px 11px;
                }

            .s-game-play .game-play .slot-game.game-3 {
                background-image: url("../../images/background-item/bg-slot-3.html");
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

                .s-game-play .game-play .slot-game.game-3 .btn-play {
                    padding: 0px 11px;
                }

                .s-game-play .game-play .slot-game.game-3 .image img {
                    max-width: 250px;
                }

        .s-game-play .game-play .style-left {
            max-width: 730px;
        }

        .s-game-play .game-play .style-right {
            max-width: 370px;
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
        }

            .s-game-play .game-play .style-right .slot-game {
                width: 100%;
            }

                .s-game-play .game-play .style-right .slot-game.game-2 .content {
                    padding: 15px 0px 19px 20px;
                }

                    .s-game-play
                    .game-play
                    .style-right
                    .slot-game.game-2
                    .content
                    .image-item
                    img {
                        max-width: 60px;
                    }

                    .s-game-play .game-play .style-right .slot-game.game-2 .content .title {
                        margin-bottom: 10px;
                    }

                .s-game-play .game-play .style-right .slot-game.game-3 .image img {
                    max-width: 250px;
                }

                .s-game-play .game-play .style-right .slot-game.game-3 .content {
                    padding: 20px 0px 20px 20px;
                }

                    .s-game-play
                    .game-play
                    .style-right
                    .slot-game.game-3
                    .content
                    .image-item
                    img {
                        max-width: 86px;
                    }

                    .s-game-play .game-play .style-right .slot-game.game-3 .content .title {
                        margin-bottom: 10px;
                    }

                .s-game-play .game-play .style-right .slot-game .image {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .s-game-play .game-play .style-right .slot-game .image img {
                        max-width: 200px;
                        object-fit: cover;
                    }

                .s-game-play .game-play .style-right .slot-game .image-item {
                    margin-bottom: 14px;
                }

.hover-img .wg-game-image,
.hover-img .image-wrap {
    overflow: hidden;
}

    .hover-img .wg-game-image img,
    .hover-img .image-wrap img {
        object-fit: cover;
        -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
        transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    }

.hover-img:hover .wg-game-image img,
.hover-img:hover .image-wrap img {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
}

.hover-item .image-item img,
.hover-item .wrap-image img {
    transition: all 0.8s ease-in-out;
}

.hover-item:hover .image-item img,
.hover-item:hover .wrap-image img {
    transform: rotateY(360deg);
}

.s-get-started .heading-section .mb-3 {
    margin-bottom: 3px !important;
}

.s-get-started .getstart-item {
    height: 100%;
}

    .s-get-started .getstart-item .wrapper {
        height: 100%;
    }

        .s-get-started .getstart-item .wrapper .wrap-image {
            margin-bottom: 31px;
        }

        .s-get-started .getstart-item .wrapper .content .title.mb-5 {
            margin-bottom: 5px;
        }

        .s-get-started .getstart-item .wrapper .content p {
            font-size: 14px;
            font-weight: 400;
            line-height: 19.6px;
        }

    .s-get-started .getstart-item .number {
        font-size: 126px !important;
        right: -5px !important;
        top: 10px !important;
    }

.s-get-started .bot {
    margin-top: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

    .s-get-started .bot .sub {
        margin-bottom: 17px;
    }

.s-lottery-online .heading-section {
    margin-bottom: 35px;
}

    .s-lottery-online .heading-section .title {
        margin-bottom: 4px;
    }

.s-lottery-online .grid-wg-game {
    gap: 32px 30px;
}

.s-lottery-online .wg-game .countdown-wrap .sub-title {
    font-weight: 645;
    line-height: 16.8px;
    margin-bottom: 11px;
}

.s-lottery-online .wg-game .countdown-wrap .text {
    margin-bottom: 7px;
}

.s-lottery-online .wg-game .btn-past {
    padding: 0 22px 0 22px;
    margin-bottom: 28px;
}

.s-winning-number {
    background-color: var(--Bg-2);
}

    .s-winning-number .wining-number-slider .wg-game.style-2 img {
        max-width: 166px;
        width: 100%;
    }

    .s-winning-number .wining-number-slider .wg-game.style-2 .wg-countdown {
        padding: 20px 30px 30px 30px;
    }

    .s-winning-number .wining-number-slider .wg-game.style-2:hover .wg-countdown {
        background: linear-gradient(101.71deg, #944523 -4.8%, #200b4d 101.42%);
    }

    .s-winning-number .wining-number-slider .swiper-pagination {
        padding-top: 32px;
    }

.s-play-for-fun .main-section {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 930px;
    margin: 0px auto;
    gap: 30px;
}

    .s-play-for-fun .main-section .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

        .s-play-for-fun .main-section .content .image {
            margin-bottom: 30px;
        }

            .s-play-for-fun .main-section .content .image img {
                max-width: 100px;
                object-fit: cover;
                height: auto;
            }

        .s-play-for-fun .main-section .content .bot {
            text-align: center;
        }

            .s-play-for-fun .main-section .content .bot .text {
                font-size: 14px;
                font-weight: 400;
                line-height: 19.6px;
            }

.s-how-it-work {
    background-image: url("../images/background-item/bg-section-1.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}

    .s-how-it-work.page-how-to-work .heading-section {
        padding-top: 159px;
        margin-bottom: 42px;
    }

    .s-how-it-work .heading-section {
        padding-top: 150px;
    }

        .s-how-it-work .heading-section .title {
            margin-bottom: 5px;
        }

    .s-how-it-work.page-contest .wg-how-it-work {
        border: none;
        padding-bottom: 0;
        gap: 48px 32px;
    }

    .s-how-it-work.page-contest .heading-section {
        padding-top: 160px;
    }

    .s-how-it-work.page-affiliate {
        background-image: unset;
    }

        .s-how-it-work.page-affiliate .heading-section {
            padding-top: 0;
        }

            .s-how-it-work.page-affiliate .heading-section .title {
                margin-bottom: 8px;
            }

            .s-how-it-work.page-affiliate .heading-section p {
                font-size: 14px;
                line-height: 19.6px;
            }

        .s-how-it-work.page-affiliate .getstart-item .wrapper {
            clip-path: polygon(0% 0%, 63% 0, 100% 41%, 100% 100%, 0% 100%);
            padding: 30px 30px 40px;
        }

        .s-how-it-work.page-affiliate .getstart-item .number {
            font-size: 122px;
            top: 7px;
            right: -5px;
        }

        .s-how-it-work.page-affiliate .getstart-item .wrap-image {
            margin-bottom: 31px;
        }

        .s-how-it-work.page-affiliate .getstart-item .content .title {
            margin-bottom: 10px;
        }

        .s-how-it-work.page-affiliate .getstart-item .content p {
            font-size: 14px;
            line-height: 19.6px;
        }

.wg-how-it-work {
    padding-bottom: 100px;
    border-bottom: 1px solid var(--Border);
}

.how-it-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 31px;
}

    .how-it-item .image-item img {
        max-width: 64px;
    }

    .how-it-item .title {
        margin-bottom: 14px;
    }

    .how-it-item p {
        line-height: 19.6px;
    }

    .how-it-item .text a {
        color: var(--White);
        position: relative;
    }

        .how-it-item .text a::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 1px;
            bottom: -1px;
            left: 0;
            background-color: var(--White);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .how-it-item .text a:hover {
            color: var(--Main-color);
        }

            .how-it-item .text a:hover::after {
                background-color: var(--Main-color);
            }

.s-play-the-biggest {
    background-image: url("../../images/background-item/bg-section-2.html");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-color: var(--Bg-2);
}

    .s-play-the-biggest .heading-section .sub-title {
        line-height: 20.6px;
    }

    .s-play-the-biggest .content-left .list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

        .s-play-the-biggest .content-left .list li {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 31px;
        }

            .s-play-the-biggest .content-left .list li:not(:last-child) {
                padding-bottom: 30px;
                border-bottom: 1px solid var(--Border);
            }

            .s-play-the-biggest .content-left .list li:not(:first-child) {
                padding-top: 30px;
            }

            .s-play-the-biggest .content-left .list li .image-item img {
                max-width: 64px;
            }

            .s-play-the-biggest .content-left .list li .text {
                font-size: 14px;
                font-weight: 400;
                line-height: 19.6px;
            }

                .s-play-the-biggest .content-left .list li .text span {
                    color: var(--White);
                }

    .s-play-the-biggest .image {
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }

.s-our-history .heading-section {
    margin-bottom: 52px;
}

.s-our-mission .getstart-item .wrapper {
    width: 100%;
    padding: 28px 30px 37px 30px !important;
    clip-path: polygon(0% 0%, 62% 0, 100% 45%, 100% 100%, 0% 100%) !important;
}

.s-our-mission .getstart-item .content p {
    font-size: 16px !important;
}

.page-contest-details .heading-page {
    text-align: center;
    margin-bottom: 50px;
}

    .page-contest-details .heading-page .sub-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        letter-spacing: 0.37em;
        text-transform: uppercase;
        margin: 3px 0 7px 15px;
    }

    .page-contest-details .heading-page .title {
        font-size: 50px;
        font-weight: 700;
        line-height: 66.15px;
        margin-bottom: 7px;
    }

.page-contest-details .content .title {
    font-size: 20px;
    font-weight: 759;
    line-height: 28px;
    margin-bottom: 34px;
}

.page-contest-details .content .wg-countdown {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-contest-details .content .image {
    margin-bottom: 25px;
    animation: moveleft 3s linear infinite;
}

.page-contest-details .description-page .widget-menu-tab {
    margin-bottom: 10px;
}

.page-contest-details .description-page .widget-content-tab {
    border: 1px solid var(--Border-1);
    border-radius: 16px;
    padding: 30px;
}

    .page-contest-details .description-page .widget-content-tab .caption {
        font-size: 24px;
        font-weight: 700;
        line-height: 31.75px;
        margin-bottom: 10px;
    }

    .page-contest-details .description-page .widget-content-tab .text {
        font-size: 16px;
        font-weight: 400;
        line-height: 25.6px;
    }

        .page-contest-details
        .description-page
        .widget-content-tab
        .text:not(:last-child) {
            color: var(--Text-9);
            margin-bottom: 30px;
        }

    .page-contest-details .description-page .widget-content-tab .image-item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin-bottom: 32px;
        gap: 30px;
    }

        .page-contest-details
        .description-page
        .widget-content-tab
        .image-item
        .image-tab {
            border-radius: 16px;
            overflow: hidden;
        }

            .page-contest-details
            .description-page
            .widget-content-tab
            .image-item
            .image-tab
            img {
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                -ms-transition: all 0.4s ease;
                -o-transition: all 0.4s ease;
                transition: all 0.4s ease;
                transform: scale(1);
                border-radius: 16px;
            }

                .page-contest-details
                .description-page
                .widget-content-tab
                .image-item
                .image-tab
                img:hover {
                    transform: scale(1.3);
                }

    .page-contest-details .description-page .widget-content-tab .box-icon-list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 29px;
        margin-bottom: 30px;
    }

        .page-contest-details
        .description-page
        .widget-content-tab
        .box-icon-list
        .item
        .box-icon {
            max-width: unset;
            width: 186px;
        }

            .page-contest-details
            .description-page
            .widget-content-tab
            .box-icon-list
            .item
            .box-icon
            .image {
                max-width: 80px;
                margin-bottom: 21px;
            }

            .page-contest-details
            .description-page
            .widget-content-tab
            .box-icon-list
            .item
            .box-icon
            .text {
                font-size: 14px;
            }

.s-succes-story .heading-section {
    margin-bottom: 38px;
}

.s-succes-story .wg-counter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: unset;
    flex-wrap: nowrap;
    gap: 154px;
}

    .s-succes-story .wg-counter .counter-item {
        max-width: 274px;
        width: 100%;
    }

        .s-succes-story .wg-counter .counter-item.type-left .number-counter {
            justify-content: flex-start;
        }

        .s-succes-story .wg-counter .counter-item.type-left .text {
            padding: 0px 0px 0px 6px;
        }

        .s-succes-story .wg-counter .counter-item.type-center .number-counter {
            width: 252px;
        }

        .s-succes-story .wg-counter .counter-item.type-center .text {
            padding: 0px 0px 0px 19px;
        }

        .s-succes-story .wg-counter .counter-item.type-right .number-counter {
            width: 248px;
        }

        .s-succes-story .wg-counter .counter-item.type-right .text {
            padding: 0px 0px 0px 15px;
        }

        .s-succes-story .wg-counter .counter-item .number-counter {
            width: unset;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .s-succes-story .wg-counter .counter-item .number-counter .plus {
                position: relative;
            }

                .s-succes-story .wg-counter .counter-item .number-counter .plus::after {
                    content: "+";
                    position: absolute;
                    font-size: 60px;
                    line-height: 91px;
                }

        .s-succes-story .wg-counter .counter-item .text {
            padding: 0px 10px;
        }

.wg-social {
    margin-bottom: 50px;
    margin-top: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .wg-social .caption {
        margin-bottom: 16px;
    }

    .wg-social .list-social {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 10px;
    }

        .wg-social .list-social li a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--Bg-2);
        }

            .wg-social .list-social li a i {
                font-size: 16px;
            }

.s-ticket-online .ticket-online-wrap {
    background-image: url("../images/background-item/bg-section-4.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--Bg-11);
    border-radius: 16px;
}

    .s-ticket-online .ticket-online-wrap .content {
        padding: 43px 0px 40px 42px;
    }

        .s-ticket-online .ticket-online-wrap .content .title {
            font-size: 26px;
            font-weight: 700;
            line-height: 34.4px;
            margin-bottom: 6px;
        }

        .s-ticket-online .ticket-online-wrap .content .sub-title {
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            margin-bottom: 21px;
        }

        .s-ticket-online .ticket-online-wrap .content .btn-buy {
            padding: 0 34px 0 36px;
        }

    .s-ticket-online .ticket-online-wrap .image {
        padding-right: 25px;
    }

        .s-ticket-online .ticket-online-wrap .image img {
            max-width: 370px;
        }

.s-contact-infor .getstart-item .wrapper {
    width: 100%;
    padding: 30px 30px 45px 30px !important;
}

    .s-contact-infor .getstart-item .wrapper .text-1 {
        margin-bottom: 5px;
    }

    .s-contact-infor .getstart-item .wrapper .text-2 {
        margin-bottom: -1px;
    }

.s-contact-infor .wg-social {
    margin-bottom: 0px;
}

.s-about .wrap-about-us .wrap-image {
    margin-bottom: 41px;
}

.s-about .wrap-about-us .item-1 {
    bottom: 93px;
    animation: movedown 3s linear infinite alternate;
}

.s-about .wrap-about-us .blockquote {
    max-width: 830px;
}

    .s-about .wrap-about-us .blockquote .item-2 {
        top: 3px;
    }

    .s-about .wrap-about-us .blockquote .paragraph-1 {
        margin-bottom: 21px;
    }

.s-send-message .form-add-message .cols {
    margin-bottom: 34px;
}

.s-send-message .btn-send {
    padding: 0px 30px;
}

.page-title.page-about-us {
    padding-bottom: 103px;
}

.section-getstarted.page-how-to-work .heading-section {
    margin-bottom: 2px;
}

.s-feature-game .pagination-feature-game {
    padding-top: 29px;
}

.customer-support-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 22px 30px 51px;
    background-color: var(--Bg-2);
    border-radius: 12px;
    gap: 30px;
    position: relative;
}

    .customer-support-item.page-support {
        padding: 23px 30px 52px;
    }

    .customer-support-item .icon {
        max-width: 100px;
        height: auto;
    }

    .customer-support-item .customer-support-item-content .title {
        font-weight: 645;
        padding-bottom: 12px;
    }

    .customer-support-item
    .customer-support-item-content
    .customer-support-item-text {
        color: var(--Secondary);
        line-height: 19.6px;
    }

    .customer-support-item
    .customer-support-item-content
    .btn-customer-support-item {
        position: absolute;
        bottom: -25px;
    }

    .customer-support-item .customer-support-item-content .tf-btn {
        padding: 0 40px;
    }

.wg-counter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

    .wg-counter .counter-item {
        text-align: center;
    }

        .wg-counter .counter-item .number-counter {
            font-size: 100px;
            line-height: 132.3px;
            font-weight: 645;
            width: 274px;
        }

        .wg-counter .counter-item .text {
            color: var(--Secondary);
        }

.widget-video {
    position: relative;
}

    .widget-video img {
        border-radius: 16px;
    }

    .widget-video a {
        color: var(--Main-color);
    }

    .widget-video .icon {
        position: absolute;
        z-index: 2;
        width: 86.09px;
        height: 86.09px;
        left: calc(50% - 43.045px);
        top: calc(50% - 43.045px);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .widget-video .icon .wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 109.04px;
            height: 109.04px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: ripple 2s infinite;
            z-index: -1;
        }

        .widget-video .icon .wave-1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 132px;
            height: 132px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: ripple-1 2s infinite;
            z-index: -1;
        }

@keyframes ripple {
    0% {
        width: 86.09px;
        height: 86.09px;
        opacity: 1;
    }

    100% {
        width: 109.04px;
        height: 109.04px;
        opacity: 0;
    }
}

@keyframes ripple-1 {
    0% {
        width: 86.09px;
        height: 86.09px;
        opacity: 1;
    }

    100% {
        width: 132px;
        height: 132px;
        opacity: 0;
    }
}

.box-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 31px;
}

    .box-icon .image {
        max-width: 64px;
    }

    .box-icon .text .title {
        font-weight: 700;
        padding-bottom: 15px;
    }

    .box-icon .text p {
        font-size: 14px;
        line-height: 19.6px;
        color: var(--Secondary);
    }

    .box-icon .text span {
        color: var(--White);
    }

    .box-icon.style-2 {
        flex-direction: column;
        max-width: 290px;
        align-items: center;
        text-align: center;
    }

        .box-icon.style-2 .image {
            max-width: 100px;
        }

        .box-icon.style-2 span {
            color: var(--Secondary);
            line-height: 19.6px;
        }

    .box-icon.style-3 {
        flex-direction: column;
        max-width: 186px;
        align-items: center;
        text-align: center;
        padding: 30px 0;
        border: 1px solid var(--Border);
        border-radius: 16px;
        gap: unset;
    }

        .box-icon.style-3 .image {
            margin-bottom: 24px;
        }

        .box-icon.style-3 .text span {
            color: var(--Secondary);
            line-height: 19.6px;
            padding-bottom: 4px;
        }

        .box-icon.style-3 .text p {
            font-size: 16px;
            line-height: 21.17px;
            font-weight: 700;
            color: var(--White);
        }

.faq-wrap-tabs .faq-wrap-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .faq-wrap-tabs .faq-wrap-menu .item-title a {
        font-size: 16px;
        line-height: 22.4px;
        font-weight: 467;
        text-align: start;
        cursor: pointer;
        color: var(--Secondary);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .faq-wrap-tabs .faq-wrap-menu .item-title.active a,
    .faq-wrap-tabs .faq-wrap-menu .item-title:hover a {
        color: var(--White);
        font-weight: 759;
    }

.faq-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 105px;
}

    .faq-wrap .top {
        padding-bottom: 36px;
    }

    .faq-wrap .faq-wrap-title {
        font-size: 18px;
        line-height: 23.81px;
        font-weight: 759;
        padding-bottom: 27px;
    }

    .faq-wrap .line {
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
        position: relative;
    }

        .faq-wrap .line::after {
            content: "";
            position: absolute;
            background-color: var(--Main-color);
            width: 40%;
            height: 1px;
        }

.faq-content {
    padding-left: 38px;
    border-left: 1px solid var(--Border);
}

.currency-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.currency-box {
    position: relative;
}

    .currency-box input[type="radio"] {
        position: absolute;
        opacity: 0;
        right: 0;
        top: 25%;
        transform: translateY(-50%);
        z-index: 1;
    }

        .currency-box input[type="radio"]:checked ~ .btn-radio {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .currency-box input[type="radio"]:checked ~ .btn-radio:after {
                content: "";
                border-radius: 50%;
                background-color: #7955dc;
                width: 10px;
                height: 10px;
                display: block;
            }

.wallet-balance-add {
    padding: 30px;
    background-color: var(--Bg-2);
    border-radius: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

    .wallet-balance-add .icon {
        width: 120px;
        height: 120px;
        background-color: var(--Bg-3);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--Border-2);
    }

        .wallet-balance-add .icon img {
            max-width: 39.45px;
            max-height: 42.19px;
        }

    .wallet-balance-add .text {
        line-height: 18.52px;
        color: var(--Text-6);
    }

.btn-radio {
    position: absolute;
    right: 23px;
    top: 40px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--Border);
}

.currency-box {
    position: relative;
}

    .currency-box .wallet-balance {
        padding: 25px;
        background-color: var(--Bg-2);
        border-radius: 10px;
    }

        .currency-box .wallet-balance .wallet-balance-title {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 23px;
            position: relative;
        }

            .currency-box .wallet-balance .wallet-balance-title .text {
                font-size: 15px;
                color: var(--Text-6);
                font-weight: 500;
            }

        .currency-box .wallet-balance .content-input {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--Sub-color-4);
            border-radius: 10px;
            padding: 10px 20px;
            border: 1px solid rgb(255 255 255 / 15%);
            margin-bottom: 20px;
        }

            .currency-box .wallet-balance .content-input .currency-input::placeholder {
                font-size: 20px;
                font-weight: 645;
                line-height: 26.46px;
            }

            .currency-box .wallet-balance .content-input .currency-input {
                background-color: transparent;
                border: none;
                font-size: 20px;
                line-height: 26.46px;
                text-align: left;
                font-weight: 645;
                width: 70%;
                padding: 10px 0;
                color: #fff;
            }

            .currency-box .wallet-balance .content-input .currency {
                font-size: 20px;
                line-height: 26.46px;
                font-weight: 645;
                color: var(--Text-6);
            }

            .currency-box .wallet-balance .content-input .currency-input:focus {
                outline: none;
            }

            .currency-box
            .wallet-balance
            .content-input
            input[type="number"]::-webkit-inner-spin-button,
            .currency-box
            .wallet-balance
            .content-input
            input[type="number"]::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

        .currency-box .wallet-balance .content {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 10px;
            padding-bottom: 20px;
        }

            .currency-box .wallet-balance .content .line {
                width: 1px;
                height: 45px;
                background-color: var(--Border-3);
            }

            .currency-box .wallet-balance .content .content-inner {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }

                .currency-box .wallet-balance .content .content-inner span {
                    font-size: 16px;
                    line-height: 22.4px;
                    color: var(--Text-6);
                }

    .currency-box input[type="radio"] {
        display: none;
    }

        .currency-box input[type="radio"]:checked ~ .currency-box-content {
            opacity: 1;
        }

            .currency-box input[type="radio"]:checked ~ .currency-box-content::after {
                background-color: #6055ff;
            }

    .currency-box label {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .currency-box .currency-box-content {
        opacity: 0.2;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
    }

        .currency-box .currency-box-content::after {
            position: absolute;
            z-index: 5;
            content: "";
            top: 40px;
            right: 27px;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1px solid var(--Border);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

.tf-dropdown-sort.style-2 i,
.tf-dropdown-sort.style-2 span {
    font-size: 15px;
    color: var(--Secondary);
    font-weight: 400;
    line-height: 19.85px;
}

    .tf-dropdown-sort.style-2 i .tf-btn i,
    .tf-dropdown-sort.style-2 i .tf-btn span,
    .tf-dropdown-sort.style-2 span .tf-btn i,
    .tf-dropdown-sort.style-2 span .tf-btn span {
        font-size: 15px;
        color: var(--Secondary);
        font-weight: 400;
        line-height: 19.85px;
    }

.wallet-deposit .balance {
    background-color: var(--Bg-2);
    padding: 30px;
    border-radius: 10px;
}

    .wallet-deposit .balance .title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--Border-4);
    }

        .wallet-deposit .balance .title .text {
            font-size: 15px;
            color: var(--Secondary);
            font-weight: 400;
            line-height: 19.85px;
        }

    .wallet-deposit .balance .balance-list {
        padding: 24px 11px 0;
    }

        .wallet-deposit .balance .balance-list .list {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

            .wallet-deposit .balance .balance-list .list .icon {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 118px;
                height: 68px;
                border: 1px solid var(--Border-4);
                border-radius: 10px;
            }

.wallet-deposit .credit-card {
    background-color: var(--Bg-2);
    padding: 14px 20px;
    border-radius: 10px;
}

    .wallet-deposit .credit-card .title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--Border-4);
    }

        .wallet-deposit .credit-card .title .credit-card-title {
            font-weight: 645;
        }

        .wallet-deposit .credit-card .title .brand {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .wallet-deposit .credit-card .title .brand .line {
                height: 46px;
                width: 1px;
                background-color: var(--Border-5);
            }

    .wallet-deposit .credit-card .deposit-sum {
        padding: 30px 0;
    }

        .wallet-deposit .credit-card .deposit-sum .deposit-sum-title {
            padding-bottom: 15px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 10px;
        }

            .wallet-deposit .credit-card .deposit-sum .deposit-sum-title .text-1,
            .wallet-deposit .credit-card .deposit-sum .deposit-sum-title .text {
                font-weight: 467;
                line-height: 18.52px;
            }

            .wallet-deposit .credit-card .deposit-sum .deposit-sum-title .text {
                text-transform: uppercase;
            }

            .wallet-deposit .credit-card .deposit-sum .deposit-sum-title .text-1 {
                color: var(--Text-7);
            }

    .wallet-deposit .credit-card .content-input {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--Bg-3);
        border-radius: 999px;
        padding: 11px 0;
        border: 1px solid var(--Border-2);
    }

        .wallet-deposit .credit-card .content-input .currency-input {
            background-color: transparent;
            border: none;
            line-height: 18.52px;
            text-align: left;
            width: 100%;
            color: var(--Text-6);
            letter-spacing: 0.6px;
        }

        .wallet-deposit .credit-card .content-input .currency {
            line-height: 18.52px;
            color: var(--Text-6);
            padding-right: 15px;
        }

        .wallet-deposit .credit-card .content-input .currency-input:focus {
            outline: none;
        }

        .wallet-deposit
        .credit-card
        .content-input
        input[type="number"]::-webkit-inner-spin-button,
        .wallet-deposit
        .credit-card
        .content-input
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .wallet-deposit .credit-card .text-2 {
        font-weight: 550;
        line-height: 18.52px;
        padding-bottom: 2px;
    }

    .wallet-deposit .credit-card .card-input {
        padding-bottom: 30px;
    }

    .wallet-deposit .credit-card .available-bonuses .card-input-title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 6px;
    }

        .wallet-deposit .credit-card .available-bonuses .card-input-title .text-2 {
            padding-bottom: 0;
            letter-spacing: 0.2px;
            font-size: 15px;
        }

    .wallet-deposit .credit-card .available-bonuses .check {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .wallet-deposit .credit-card .info {
        padding: 20px;
        background-color: var(--Bg);
        max-width: 236px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

        .wallet-deposit .credit-card .info .info-title {
            padding-bottom: 16px;
        }

            .wallet-deposit .credit-card .info .info-title i,
            .wallet-deposit .credit-card .info .info-title span,
            .wallet-deposit .credit-card .info .info-title .title-text {
                font-weight: 645;
                line-height: 19.85px;
                color: var(--Secondary);
                letter-spacing: 0.5px;
            }

        .wallet-deposit .credit-card .info .info-text {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
        }

            .wallet-deposit .credit-card .info .info-text .text-main-color {
                color: var(--Main-color);
                line-height: 19.85px;
                font-size: 15px;
            }

            .wallet-deposit .credit-card .info .info-text .text {
                color: var(--Secondary);
                font-size: 15px;
            }

    .wallet-deposit .credit-card .note {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 10px;
        align-items: center;
        padding-top: 30px;
    }

        .wallet-deposit .credit-card .note .icon {
            max-width: 36px;
            max-height: 36px;
        }

        .wallet-deposit .credit-card .note .text {
            color: var(--Secondary);
            font-size: 15px;
            line-height: 20px;
        }

    .wallet-deposit .credit-card .widget-tabs .widget-menu-tab .item-title {
        min-width: 0 !important;
    }

.wallet-withdrawal .top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.wallet-withdrawal .wallet-withdrawal-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: var(--Bg-2);
    overflow: hidden;
    padding: 22px 22px;
    position: relative;
    gap: 20px;
    border-radius: 10px;
}

    .wallet-withdrawal .wallet-withdrawal-content .bg {
        position: absolute;
        left: -60px;
        width: 100px;
        height: 100px;
        filter: blur(50px);
    }

    .wallet-withdrawal .wallet-withdrawal-content .icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

        .wallet-withdrawal .wallet-withdrawal-content .icon img {
            object-fit: contain;
            width: 100%;
        }

    .wallet-withdrawal .wallet-withdrawal-content .text p {
        font-weight: 500;
        font-size: 16px;
        line-height: 19.85px;
        margin-bottom: 7px;
    }

        .wallet-withdrawal .wallet-withdrawal-content .text p small {
            color: var(--Secondary);
            font-size: 100%;
            margin: 5px 0 0 0;
            display: block;
        }

    .wallet-withdrawal .wallet-withdrawal-content .text .price {
        font-size: 20px;
        line-height: normal;
        font-weight: 600;
        color: var(--White);
    }

.wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort {
    padding-bottom: 6px;
}

    .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        padding: 30px 27px 29px 30px;
        background-color: var(--Bg-2);
        border-radius: 16px;
        gap: 20px;
        position: relative;
    }

        .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank .img {
            max-width: 50px;
        }

        .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank i {
            position: absolute;
            top: 25px;
            right: 26px;
            font-size: 43px;
            color: var(--Secondary);
        }

        .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank .text {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

            .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank .text p {
                line-height: 18.52px;
                color: var(--Text-8);
            }

            .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .bank .text .name {
                font-size: 20px;
                line-height: 33.9px;
                color: var(--White);
            }

    .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .dropdown-menu {
        padding: 0;
    }

    .wallet-withdrawal .wallet-withdrawal-form .tf-dropdown-sort .select-item {
        width: 100%;
        background-color: var(--Bg-2);
    }

.wallet-withdrawal .wallet-withdrawal-form .content-input {
    padding: 14px 0px 10px !important;
}

    .wallet-withdrawal .wallet-withdrawal-form .content-input .currency-input {
        height: 50px;
    }

        .wallet-withdrawal
        .wallet-withdrawal-form
        .content-input
        .currency-input:focus {
            outline: none;
        }

    .wallet-withdrawal
    .wallet-withdrawal-form
    .content-input
    input[type="number"]::-webkit-inner-spin-button,
    .wallet-withdrawal
    .wallet-withdrawal-form
    .content-input
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.wallet-withdrawal .wallet-withdrawal-form .amount {
    padding-bottom: 25px;
}

    .wallet-withdrawal .wallet-withdrawal-form .amount .amount-text {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        color: var(--Secondary);
        gap: 5px;
    }

        .wallet-withdrawal .wallet-withdrawal-form .amount .amount-text i {
            font-size: 19.5px;
        }

.wallet-withdrawal .wallet-withdrawal-form .name {
    padding-bottom: 3px;
}

.wallet-withdrawal .wallet-withdrawal-form .full-name {
    padding-bottom: 13px;
}

    .wallet-withdrawal .wallet-withdrawal-form .full-name .name-title {
        padding-bottom: 13px;
        color: var(--White);
        font-weight: 550;
    }

.wallet-withdrawal .wallet-withdrawal-form .account-number {
    padding-bottom: 16px;
}

    .wallet-withdrawal
    .wallet-withdrawal-form
    .account-number
    .account-number-title {
        padding-bottom: 13px;
        color: var(--White);
        font-weight: 550;
    }

    .wallet-withdrawal .wallet-withdrawal-form .account-number textarea {
        width: 100%;
        height: 123px;
        color: var(--Secondary);
        padding: 14px 0px 10px 19px !important;
    }

        .wallet-withdrawal .wallet-withdrawal-form .account-number textarea:focus {
            outline: none;
        }

    .wallet-withdrawal .wallet-withdrawal-form .account-number .content-input {
        border-radius: 16px;
    }

.wallet-withdrawal .wallet-withdrawal-form > .name {
    margin-bottom: 11px;
}

.wallet-withdrawal .wallet-withdrawal-note {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 5px;
    color: var(--Secondary);
}

    .wallet-withdrawal .wallet-withdrawal-note i {
        font-size: 20px;
    }

    .wallet-withdrawal .wallet-withdrawal-note p {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
        padding-bottom: 10px;
        line-height: 19.6px;
    }

.wallet-withdrawal .bg.bg-7 {
    background-color: var(--Bg-7) !important;
    opacity: 0.5;
}

.wallet-withdrawal .bg.bg-8 {
    background-color: var(--Bg-8) !important;
}

.wallet-withdrawal .bg.bg-9 {
    background-color: var(--Bg-9) !important;
}

.page-title-home.style-2 {
    position: relative;
    background-image: url("../images/section/page-title-home-2-1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 151px 0 218px;
}

    .page-title-home.style-2 .page-title-home-content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .page-title-home.style-2 .page-title-home-content .image {
            margin-right: 60px;
        }

            .page-title-home.style-2 .page-title-home-content .image img {
                width: 100%;
            }

        .page-title-home.style-2 .page-title-home-content .content {
            max-width: 500px;
        }

            .page-title-home.style-2 .page-title-home-content .content .title {
                padding-bottom: 26px;
                font-weight: 700;
            }

            .page-title-home.style-2 .page-title-home-content .content .text {
                padding-bottom: 50px;
                font-size: 16px;
                line-height: 22.4px;
            }

            .page-title-home.style-2 .page-title-home-content .content .tf-btn {
                font-size: 20px;
                line-height: 26.46px;
                font-weight: 759;
                padding: 32.5px 50.5px;
            }

    .page-title-home.style-2 .image-1-bg {
        position: absolute;
        top: 23px;
        right: 173px;
        opacity: 0.2;
    }

    .page-title-home.style-2 .image-1 {
        position: absolute;
        top: 18%;
        right: 24.3%;
        animation: movedown1 3s linear infinite;
    }

    .page-title-home.style-2 .image-2 {
        max-width: 85px;
        height: auto;
        position: absolute;
        top: 34.5%;
        right: 9.7%;
        animation: movedown 3s linear infinite;
    }

    .page-title-home.style-2 .image-3 {
        max-width: 20px;
        height: auto;
        position: absolute;
        top: 53.3%;
        right: 18%;
        animation: movedown1 3s linear infinite;
    }

    .page-title-home.style-2 .image-4 {
        max-width: 113px;
        height: auto;
        position: absolute;
        bottom: 18.7%;
        right: 16.7%;
        animation: movedown1 3s linear infinite;
    }

    .page-title-home.style-2 .image-5 {
        max-width: 196px;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 43.7%;
        animation: movedown1 5s linear infinite;
    }

    .page-title-home.style-2 .image-6 {
        max-width: 45px;
        height: auto;
        position: absolute;
        bottom: 25.4%;
        right: 54.8%;
        animation: movedown 3s linear infinite;
    }

    .page-title-home.style-2 .image-7 {
        max-width: 40.71px;
        transform: rotate(73.76deg);
        height: auto;
        position: absolute;
        bottom: 45.5%;
        left: 13.2%;
        animation: movedown1 3s linear infinite;
    }

    .page-title-home.style-2 .image-8 {
        max-width: 182px;
        height: auto;
        position: absolute;
        top: 20.4%;
        left: 3.2%;
        animation: movedown1 3s linear infinite;
    }

@keyframes movedown {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes movedown1 {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(-15px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes moveleft {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(-15px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.section-cta {
    padding-top: 5px !important;
    width: 100%;
}

    .section-cta .section-cta-inner {
        padding: 25px 30px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        background-color: #0e0f33;
        position: relative;
        border-radius: 12px;
    }

        .section-cta .section-cta-inner .cta-content .text {
            font-size: 16px;
            font-weight: 500;
            color: #fdac00;
            line-height: 1;
            padding-bottom: 10px;
        }

        .section-cta .section-cta-inner .cta-middle {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

            .section-cta .section-cta-inner .cta-middle .icon {
                position: absolute;
                max-width: 104px;
                height: auto;
                top: -24.5%;
                left: 45.4%;
            }

        .section-cta .section-cta-inner .cta-right {
            width: 100%;
        }

            .section-cta .section-cta-inner .cta-right .tf-btn {
                padding: 32.5px 47.5px !important;
                font-size: 20px;
                line-height: 26.46px;
                font-weight: 759;
            }

            .section-cta .section-cta-inner .cta-right .text-2 {
                color: var(--Secondary);
                padding-top: 10px;
            }

.cta-content {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.text-color-yellow {
    color: #fdac00 !important;
}

.wallet-withdrawal .wallet-withdrawal-content .text p label {
    opacity: 0.7;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.cta-content p {
    font-size: 25px;
    font-weight: 600;
    display: flex;
    gap: 6px;
}

    .cta-content p label {
        opacity: 0.5;
    }

.cta-content img {
    width: 100%;
    max-width: 50px;
}

.cta-content small {
    font-size: 12px;
    display: block;
    color: #ffffffb8;
    margin-top: 3px;
    font-weight: 400;
}

.cta-content .price-wrap {
    padding: 0px 10px 0 15px;
}

    .cta-content .price-wrap .price p {
        color: #fdac00;
        font-weight: 500;
    }

    .cta-content .price-wrap .price span {
        font-size: 22px;
        font-weight: 600;
        display: flex;
        gap: 6px;
    }

        .cta-content .price-wrap .price span label {
            opacity: 0.5;
        }

    .cta-content .price-wrap .tf-btn {
        font-size: 24px;
        padding: 8px;
        font-weight: 700;
        overflow: hidden;
        flex-wrap: wrap;
        line-height: normal;
        gap: 0;
        height: auto;
        color: #000;
    }

        .cta-content .price-wrap .tf-btn small {
            width: 100%;
            font-size: 14px;
            color: #000;
            font-weight: 600;
        }

        .cta-content .price-wrap .tf-btn:hover small {
            color: #111;
        }

.section-get-started .heading-section {
    padding-bottom: 40px;
}

    .section-get-started .heading-section .text-title {
        line-height: 19.6px;
    }

.section-get-started .get-started-main {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-get-started .get-started-image {
    height: 100%;
    position: relative;
}

    .section-get-started .get-started-image .image-1 {
        position: absolute;
        bottom: 0;
    }

        .section-get-started .get-started-image .image-1 img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

    .section-get-started .get-started-image .image-2 {
        position: absolute;
        bottom: 40%;
    }

    .section-get-started .get-started-image .coin-image-1 {
        max-width: 51.42px;
        height: auto;
        position: absolute;
        right: 6%;
        bottom: 46%;
        animation: rotate360 2s linear infinite;
    }

    .section-get-started .get-started-image .coin-image-2 {
        max-width: 49.67px;
        height: auto;
        position: absolute;
        top: -3%;
        right: 16.2%;
        animation: moveleft 3s linear infinite;
    }

    .section-get-started .get-started-image .coin-image-3 {
        max-width: 36.55px;
        height: auto;
        position: absolute;
        top: 26.3%;
        left: 13%;
        animation: rotate360 3s linear infinite;
    }

    .section-get-started .get-started-image .coin-image-4 {
        max-width: 21px;
        height: auto;
        position: absolute;
        top: -15%;
        left: 37.9%;
        animation: movedown 3s linear infinite;
    }

.section-game-inner {
    padding: 100px 0px 41px;
    position: relative;
}

    .section-game-inner .heading-section {
        padding-bottom: 40px;
    }

    .section-game-inner .filter {
        max-width: 1110px;
        margin: 0 auto;
        padding-bottom: 40px;
    }

    .section-game-inner .game-list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 30px;
    }

    .section-game-inner .swiper-game {
        position: absolute;
        left: 45%;
        bottom: 5%;
    }

        .section-game-inner .swiper-game .swiper-pagination-bullet {
            color: #fff !important;
            opacity: 1;
            width: 50px;
            height: 4px;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.251);
            margin: 0 5px;
            position: relative;
        }

            .section-game-inner .swiper-game .swiper-pagination-bullet::after {
                position: absolute;
                width: 100%;
                height: 10px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                content: "";
                z-index: 5;
            }

            .section-game-inner
            .swiper-game
            .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: var(--Main-color);
            }

    .section-game-inner .wg-game.style-5 .content {
        padding: 28px 20px 20px !important;
    }

        .section-game-inner .wg-game.style-5 .content .heading .title {
            margin-bottom: 0 !important;
        }

.section-latest-winners .heading-section {
    padding-bottom: 40px;
}

.section-latest-winners .main .widget-menu-tab {
    margin-bottom: 25px;
}

.section-banner .banner-inner {
    height: 252px;
    padding: 30px 30px 20px;
    background-image: url("../images/section/bg-banner.png");
    border-radius: 16px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .section-banner .banner-inner .time {
        padding-bottom: 21px;
    }

    .section-banner .banner-inner .time {
        padding-bottom: 21px;
    }

    .section-banner .banner-inner .text-giveaway {
        font-size: 35px;
        line-height: 46.31px;
        font-weight: 700;
        padding-bottom: 8px;
        position: relative;
    }

    .section-banner .banner-inner .banner {
        background-color: transparent;
        position: absolute;
        top: 32.5%;
        left: 2.7%;
    }

        .section-banner .banner-inner .banner span {
            font-size: 35px;
            line-height: 46.31px;
            font-weight: 700;
            border: 2px solid transparent;
            -webkit-text-stroke: 1px #8485ed;
            color: transparent;
        }

    .section-banner .banner-inner .text {
        color: var(--Secondary);
        padding-bottom: 35px;
    }

    .section-banner .banner-inner .tf-btn {
        padding: 0 40px !important;
    }

    .section-banner .banner-inner .image-1 {
        position: absolute;
        top: 5%;
        right: 20%;
        max-width: 309px;
    }

    .section-banner .banner-inner .image-2 {
        position: absolute;
        top: 22%;
        right: 49%;
        max-width: 36px;
        animation: movedown 3s linear infinite;
    }

    .section-banner .banner-inner .image-3 {
        position: absolute;
        bottom: 16.5%;
        right: 53.7%;
        max-width: 38px;
        animation: movedown 3s linear infinite;
        animation-delay: 1s;
    }

    .section-banner .banner-inner .image-4 {
        position: absolute;
        bottom: 10.5%;
        right: 10.7%;
        max-width: 20px;
        animation: moveleft 3s linear infinite;
    }

    .section-banner .banner-inner.style-2 {
        background-image: url("../images/section/banner-2.jpg");
    }

        .section-banner .banner-inner.style-2 .image-1 {
            position: absolute;
            top: 10%;
            right: 10.5%;
            max-width: 395px;
        }

        .section-banner .banner-inner.style-2 .image-2 {
            position: absolute;
            top: 19%;
            right: 50.5%;
            max-width: 54.76px;
        }

        .section-banner .banner-inner.style-2 .image-3 {
            position: absolute;
            bottom: 9.5%;
            right: 47.2%;
            max-width: 51px;
        }

        .section-banner .banner-inner.style-2 .image-4 {
            position: absolute;
            bottom: 9%;
            right: 3%;
            max-width: 59.1px;
        }

.section-guide {
    background-image: url(../images/background-item/bg-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

    .section-guide .guide-inner {
        padding: 160px 0 0;
    }

        .section-guide .guide-inner > .image {
            animation: moveleft 3s linear infinite;
        }

    .section-guide .heading-section {
        margin-bottom: -9px !important;
    }

    .section-guide .swiper-wrapper {
        padding-bottom: 44px;
    }

    .section-guide .swiper-guide {
        position: absolute;
        left: 42.5%;
        bottom: 0;
    }

        .section-guide .swiper-guide .swiper-pagination-bullet {
            color: #fff !important;
            opacity: 1;
            width: 50px;
            height: 4px;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.251);
            margin: 0 5px;
            position: relative;
        }

            .section-guide .swiper-guide .swiper-pagination-bullet::after {
                position: absolute;
                width: 100%;
                height: 10px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                content: "";
                z-index: 5;
            }

            .section-guide
            .swiper-guide
            .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: var(--Main-color);
            }

.section-testimonials {
    background-image: url(../images/background-item/bg-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

    .section-testimonials .testimonials-inner {
        padding: 160px 0 0;
    }

        .section-testimonials .testimonials-inner .heading-section {
            padding-bottom: 40px;
        }

    .section-testimonials .testimonial-item {
        padding: 28px 30px 26px 30px !important;
    }

    .section-testimonials .swiper-wrapper {
        padding-bottom: 44px;
    }

    .section-testimonials .swiper-testimonial {
        position: absolute;
        left: 42.5%;
        bottom: 0;
    }

        .section-testimonials .swiper-testimonial .swiper-pagination-bullet {
            color: #fff !important;
            opacity: 1;
            width: 50px;
            height: 4px;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.251);
            margin: 0 5px;
            position: relative;
        }

            .section-testimonials .swiper-testimonial .swiper-pagination-bullet::after {
                position: absolute;
                width: 100%;
                height: 10px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                content: "";
                z-index: 5;
            }

            .section-testimonials
            .swiper-testimonial
            .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: var(--Main-color);
            }

.section-search .wrap-form .heading-section {
    margin-bottom: 13px;
}

    .section-search .wrap-form .heading-section .title {
        font-size: 30px;
        font-weight: 645;
        line-height: 42px;
        margin-bottom: 16px;
    }

    .section-search .wrap-form .heading-section p {
        line-height: 19.6px;
    }

.favorite .header-contact {
    line-height: 39.69px;
    padding-bottom: 30px;
}

.favorite .swiper-container .swiper-pagination {
    padding-top: 29px;
}

.my-account-contest .widget-menu-tab .item-title {
    padding: 9px 34px !important;
}

.tf-tsparticles > div {
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    left: 0;
    height: 100%;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

/*------------ sections ---------------- */
.main-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

    .main-content.page-lottery-result {
        padding-top: 101px;
    }

.tf-spacing-1 {
    padding-top: 0;
    padding-bottom: 100px;
}

.tf-spacing-2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tf-spacing-3 {
    padding-top: 0;
    padding-bottom: 85px;
}

.tf-spacing-4 {
    padding-top: 0;
    padding-bottom: 60px;
}

.heading-section {
    text-align: center;
    margin-bottom: 40px;
}

    .heading-section .title {
        font-size: 50px;
        line-height: 66.15px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .heading-section p {
        line-height: 22.4px;
        color: var(--Secondary);
    }

    .heading-section span {
        color: var(--White);
    }

    .heading-section.style-start {
        text-align: start;
    }

.heading-dashboard.ppopular-toics,
.heading-dashboard.form-search {
    letter-spacing: 0.3px;
}

.page-title {
    position: relative;
    background-image: url(../images/section/page-title.png);
    background-position: center;
    padding-top: 175px;
    padding-bottom: 100px;
    text-align: center;
    background-size: cover;
}

    .page-title .content {
        position: relative;
        z-index: 1;
    }

        .page-title .content .title {
            font-weight: 700;
            margin-bottom: 23px;
        }

        .page-title .content .breadcrumbs {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            color: var(--Secondary);
        }

            .page-title .content .breadcrumbs li {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                font-size: 14px;
                line-height: 20px;
            }

                .page-title .content .breadcrumbs li a {
                    color: var(--Secondary);
                }

                    .page-title .content .breadcrumbs li a:hover {
                        color: var(--Main-color);
                    }

.section-blog-list .wrap-blog-list {
    border-bottom: 1px solid var(--Border);
    margin-bottom: 26px;
}

.section-blog-grid .grid-layout-3 {
    gap: 28px 28px;
    border-bottom: 1px solid var(--Border);
    padding-bottom: 30px;
    margin-bottom: 26px;
}

.main-content-dashboard-wrap {
    padding-top: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
}

    .main-content-dashboard-wrap .main-content-dashboard {
        width: calc(100%);
        padding: 20px 310px 0 315px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

        .main-content-dashboard-wrap .main-content-dashboard.gap80 {
            gap: 80px;
        }

        .main-content-dashboard-wrap .main-content-dashboard.gap62 {
            gap: 62px;
        }

        .main-content-dashboard-wrap .main-content-dashboard .page-heading {
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .main-content-dashboard-wrap
        .main-content-dashboard
        .section-dowload-app
        .btn-dowload {
            width: 173px;
        }

.page-title-dashboard .content {
    position: relative;
    padding: 37px 65.5px 39px;
    border-radius: 16px;
    background-image: url(../images/slider/dashboard-bg.png);
}

    .page-title-dashboard .content .image {
        position: absolute;
        right: 50px;
        top: 0;
    }

    .page-title-dashboard .content > img {
        margin-bottom: 24px;
    }

    .page-title-dashboard .content .title {
        margin-bottom: 16px;
    }

    .page-title-dashboard .content .text-color-clip {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 21px;
    }

    .page-title-dashboard .content .bot {
        width: max-content;
        text-align: center;
    }

    .page-title-dashboard .content .tf-btn {
        margin-bottom: 7px;
    }

    .page-title-dashboard .content .sub {
        line-height: 20px;
        color: var(--Secondary);
    }

.header-logo img {
    width: 100%;
    max-width: 60px;
}

.is-fixed .header-logo img {
    max-width: 60px;
}

header .tf-container {
    width: 95%;
}

header .tf-btn-outline {
    background: transparent;
    color: #ffffffcc;
    border: 1.5px solid;
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 11px;
    font-weight: 700;
    cursor: pointer;
}

a.tf-btn-outline.fill {
    background: #882098;
    color: #fff;
    border-color: #882098;
}

.dataTables_wrapper .dataTables_length label {
    font-size: 11px;
    margin: 10px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dataTables_info {
    font-size: 11px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 7px 10px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
}

.page-heading h2 {
    font-size: 20px;
    line-height: normal;
}

.card-btn .tf-btn {
    padding: 8px 15px;
    height: auto;
    line-height: normal;
    margin: 0 auto;
    width: 100%;
    border-radius: 8px;
    /* border: 1px solid #ffffff3d;
  background: transparent;
  color: #ffffffa3; */
    font-size: 14px;
    /* min-width: 150px; */
}

.b-outline {
    border: 1px solid #ffffff3d !important;
    background: transparent !important;
    color: #ffffffa3 !important;
}

.card-btn .tf-btn.b-outline:hover {
    color: #fff !important;
}
/*-------------- Responsive ----------------- */
@media (min-width: 1601px) {
    .slide-title-home-3 {
        justify-content: center;
    }
}

@media (max-width: 1600px) {
    .slide-title-home-3 {
        justify-content: center !important;
    }
}

@media (min-width: 991px) {
    .wg-our-jackpot .content {
        flex: none;
    }
}

@media (max-width: 1440px) {
    .layout-wrap .header-dashboard {
        padding-left: 92px;
    }

    .page-title-home.style-2 .out {
        display: none;
    }

    .page-title-home.style-2 .page-title-home-content .image {
        margin: 0;
    }

    .button-show-hide {
        display: block;
    }

    .sidebar-dashboard {
        right: -270px;
    }

        .sidebar-dashboard.active {
            right: 19px;
        }

    .button-sidebar-dashboard {
        display: block;
        position: fixed;
        right: 19px;
        bottom: 32px;
    }

        .button-sidebar-dashboard.active i::before {
            content: "\e911";
        }

    .section-menu-left {
        left: -300px;
        opacity: 0;
        visibility: hidden;
    }

        .section-menu-left.active {
            left: 0;
            opacity: 1;
            visibility: visible;
        }

    .section-menu-left-mobile {
        display: none;
    }

    .main-content-dashboard-wrap .main-content-dashboard {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }
}

@media (min-width: 1300px) {
    .winning-number .content {
        padding: 0 81px;
    }
}

@media (max-width: 1200px) {
    .s-succes-story .wg-counter {
        justify-content: center;
        gap: 50px;
    }

        .s-succes-story .wg-counter .counter-item .text {
            padding: 0px 15px !important;
        }

    .s-game-play .game-play {
        width: 100%;
        flex-wrap: wrap;
    }

        .s-game-play .game-play .style-left {
            max-width: unset;
            width: 100%;
        }

        .s-game-play .game-play .style-right {
            margin-left: 0px;
            max-width: unset;
            flex-direction: unset;
            width: 100%;
        }

            .s-game-play .game-play .style-right .slot-game {
                width: 50%;
            }

                .s-game-play .game-play .style-right .slot-game .image img {
                    max-width: 300px;
                }

    .slide-title-home-3 .image {
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-testimonial-home-2 .testimonial-next {
        right: 15px;
        top: 46%;
    }

    .section-testimonial-home-2 .testimonial-prev {
        left: 15px;
        top: 46%;
    }

    .history-main .box-history {
        max-width: unset;
        width: 45%;
    }
}

@media (max-width: 1150px) {
    .section-getstarted .grid-column-3 .item.arow-1 {
        left: 224px;
    }

    .section-getstarted .grid-column-3 .item.arow-2 {
        right: 224px;
    }

    .wallet-withdrawal-form {
        margin-bottom: 30px;
    }

    .faq-content {
        padding: 0;
        border: none;
    }

    .wallet-withdrawal-note {
        padding-top: 30px;
    }
}

@media (max-width: 1024px) {
    .game-play .style-right .image img {
        max-width: 190px !important;
    }
}

@media (max-width: 991px) {
    .wg-counter .counter-item .number-counter {
        font-size: 50px;
        line-height: 62px;
        justify-content: center !important;
    }

        .wg-counter .counter-item .number-counter .plus::after {
            font-size: 30px !important;
            line-height: 42px !important;
        }

    .page-title-home-1 .item-2,
    .page-title-home-1 .item-3 {
        display: none;
    }

    .page-title-home-1 .item-car img {
        max-width: 300px !important;
        height: auto;
        object-fit: cover;
    }
    /* .page-title-home-1 .title,
  .page-title-home-1 span {
    font-size: 30px !important;
    line-height: 40px !important;
  } */
    .page-title-home-1 .item-1 {
        top: 15% !important;
    }

    .section-cta-inner {
        padding: 60px 15px 15px !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

        .section-cta-inner .cta-middle .icon {
            top: -10% !important;
        }

    .banner-img {
        display: none;
    }

    .banner-inner {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-left {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

        .banner-left .banner {
            display: none;
        }

    .banner-inner {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

        .banner-inner .image-1 {
            position: relative !important;
            top: 0 !important;
            right: 0 !important;
        }

        .banner-inner .image-2 {
            display: none !important;
        }

        .banner-inner .image-3 {
            display: none !important;
        }

        .banner-inner .image-4 {
            display: none !important;
        }

    .page-title-dashboard .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

        .page-title-dashboard .content .image {
            display: none;
        }

    .section-online-lottery.page-home-1 .grid-column-4 {
        gap: 90px 30px;
    }

    .wg-infomation .right ul {
        gap: 30px 0px !important;
    }

        .wg-infomation .right ul li {
            width: 100%;
        }

    .slide-title-home-3 {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

        .slide-title-home-3 .content {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px !important;
            flex-direction: column;
        }

        .slide-title-home-3 .image {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: unset;
            justify-content: unset;
            height: unset;
        }

            .slide-title-home-3 .image img {
                padding: 0px !important;
            }

            .slide-title-home-3 .image .item-1 {
                display: none;
            }

    .s-succes-story .wg-counter {
        gap: 20px;
        flex-wrap: wrap;
    }

    .wg-counter {
        gap: 30px;
        justify-content: center;
    }

    .page-contest-details .description-page .image-item {
        gap: 20px !important;
    }

    .grid-column-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-avatar,
    .profile-infor,
    .profile-security {
        flex-wrap: wrap;
    }

    .user-wrap {
        margin-bottom: 30px;
        height: unset !important;
        gap: 30px;
    }

    .register-wrap,
    .login-wrap {
        max-width: unset;
        flex-wrap: wrap;
        height: unset;
    }

        .register-wrap .image,
        .login-wrap .image {
            display: none;
        }

        .register-wrap .content,
        .login-wrap .content {
            border-radius: 20px;
        }

    .blog-single-main {
        padding-bottom: 50px;
    }

    .grid-column-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    #footer .footer-main .widget-footer.dowload-app .widget-title,
    #footer .footer-main .widget-footer.help .widget-title {
        margin-bottom: 13px;
    }

    #footer .footer-main .widget-footer.dowload-app .bottom .widget-title {
        margin-bottom: 13px;
    }

    .wg-our-jackpot {
        margin-bottom: 30px;
    }

    .wg-get-ticket .wrap-image {
        margin: 0 auto 28px;
    }

    .wrap-about-us .item-1 {
        display: none;
    }

    .tf-wrap-sort {
        flex-wrap: wrap;
    }

        .tf-wrap-sort .nice-select {
            width: 49%;
        }

        .tf-wrap-sort .form-search {
            width: 49%;
        }

    .winning-number .content .list-number {
        flex-wrap: wrap;
        justify-content: center;
    }

    .grid-column-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-getstarted .grid-column-3 {
        grid-template-columns: repeat(3, 1fr);
    }

        .section-getstarted .grid-column-3 .item {
            max-width: 130px;
            top: -40px;
        }

    .wallet-withdrawal .top {
        flex-wrap: wrap;
    }

    .grid-layout-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    br {
        display: none;
    }

    .header-dashboard .header-right {
        gap: 10px;
    }

    .header-dashboard .account .popup-top .name {
        display: none;
    }

    .header-dashboard .header-wallet .tf-btn {
        padding: 0 14.5px;
    }

        .header-dashboard .header-wallet .tf-btn > span {
            display: none;
        }

    .history-main::after {
        left: 30px;
    }

    .history-main .box-history {
        width: 100%;
        margin-left: 99px;
        position: relative;
        padding-top: 0px;
    }

        .history-main .box-history.style-1::before {
            left: 19px;
            margin-top: 320px;
        }

        .history-main .box-history::before {
            content: "";
            position: absolute;
            width: 25px;
            height: 25px;
            top: 48%;
            left: -79px !important;
            margin-top: 0px !important;
            background-color: var(--Sub-color-2);
            border: 7px solid var(--White);
            border-radius: 50%;
            z-index: 5;
        }

        .history-main .box-history::after {
            margin-top: 0px !important;
            bottom: 49.8%;
            left: -70px !important;
            width: 70px;
        }

        .history-main .box-history img {
            max-height: 400px;
        }

    .header-logo img {
        max-width: 60px;
    }

    #header-main .header-inner-wrap {
        padding: 0px 0;
    }

        #header-main .header-inner-wrap .header-logo {
            width: 130px;
        }

        #header-main .header-inner-wrap .main-menu {
            display: none;
        }

        #header-main .header-inner-wrap .header-right {
            gap: 15px;
        }

            #header-main .header-inner-wrap .header-right .btn-buy-tickets a {
                padding: 0 15px;
            }

            #header-main .header-inner-wrap .header-right .mobile-button {
                display: block;
            }

    .section-blog-list .tf-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 45px !important;
        line-height: 50px !important;
    }

    .main-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .heading-section {
        margin-bottom: 30px !important;
    }

        .heading-section .title {
            font-size: 35px;
            line-height: 45px;
        }

    .page-title-home.style-2 {
        padding: 140px 0 80px;
    }

        .page-title-home.style-2 .page-title-home-content {
            flex-wrap: wrap;
        }

            .page-title-home.style-2 .page-title-home-content .image {
                margin: 0 auto;
                max-width: 400px;
            }

            .page-title-home.style-2 .page-title-home-content .content {
                max-width: 100%;
                text-align: center;
                margin-bottom: 40px;
            }

                .page-title-home.style-2 .page-title-home-content .content .tf-btn {
                    margin: 0 auto;
                }

        .page-title-home.style-2 .in {
            display: none;
        }

    .section-blog-grid .grid-layout-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-item .wrap-image img {
        width: 100%;
    }

    .form-help {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .form-help .wrap-form {
            padding: 0 15px;
        }

    .tf-wrap-sort {
        flex-wrap: wrap;
    }

        .tf-wrap-sort .nice-select {
            width: 100%;
        }

        .tf-wrap-sort .form-search {
            width: 100%;
        }

    .table-latest-winners {
        overflow-x: auto !important;
    }

        .table-latest-winners .title,
        .table-latest-winners .item-table {
            width: max-content;
            gap: 0;
        }

            .table-latest-winners .title div:nth-child(2),
            .table-latest-winners .item-table div:nth-child(2) {
                width: 150px;
            }

    .table-lottery-results {
        overflow-x: auto !important;
    }

        .table-lottery-results .title,
        .table-lottery-results .item-table {
            width: max-content;
            gap: 0;
        }

            .table-lottery-results .title div:nth-child(1),
            .table-lottery-results .item-table div:nth-child(1) {
                width: 210px;
            }

            .table-lottery-results .title div:nth-child(2),
            .table-lottery-results .item-table div:nth-child(2) {
                width: 150px;
            }

    .wg-infomation .left {
        margin-bottom: 30px;
    }

    .the-vault-content .right {
        flex-wrap: wrap;
    }

        .the-vault-content .right > div {
            width: 100%;
        }

    .s-how-it-work .heading-section {
        padding-top: 50px;
    }

    .wg-our-jackpot .content {
        text-align: center;
    }

        .wg-our-jackpot .content .title {
            font-size: 35px;
            line-height: 45px;
            margin-bottom: 30px;
        }

        .wg-our-jackpot .content .time .js-countdown {
            margin: 0 auto;
        }

    .section-getstarted .grid-column-3 {
        grid-template-columns: repeat(1, 1fr);
    }

        .section-getstarted .grid-column-3 .item {
            display: none;
        }

        .section-getstarted .grid-column-3 .guide-number {
            margin: 0 auto 20px;
        }

    .customer-support-item {
        margin-bottom: 40px;
    }

        .customer-support-item .btn-customer-support-item {
            left: 50%;
            transform: translateX(-50%);
        }

    .section-raffles .start-now {
        margin-top: 20px;
    }

    .section-faq .wrap-image {
        margin-bottom: 30px;
    }

    .section-support {
        margin-bottom: 0px;
    }

    .section-testimonial-home-2 .wrap-testimonial {
        padding-bottom: 50px;
    }

    .main-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .tf-spacing-1 {
        padding-bottom: 40px;
    }

    .tf-spacing-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .customer-support-item {
        margin-bottom: 40px;
    }

        .customer-support-item .btn-customer-support-item {
            left: 50%;
            transform: translateX(-50%);
        }
}

@media (max-width: 767px) {
    .section-faq .content .title {
        font-size: 30px;
        line-height: 42px;
    }

    .get-started-content {
        padding-bottom: 30px;
    }

    .get-started-image .image-1 {
        position: relative !important;
    }

    .get-started-image .coin-image-4 {
        display: none;
    }

    .banner-inner {
        padding: 15px !important;
    }

    .wg-infomation .left {
        margin: 0px !important;
    }

    .wg-infomation .right {
        margin: 30px 0px 0px !important;
    }

    .the-vault-content {
        margin-top: 30px;
    }

    .s-ticket-online .ticket-online-wrap {
        flex-wrap: wrap;
        padding: 20px;
        justify-content: center;
    }

        .s-ticket-online .ticket-online-wrap .content {
            padding: 0px;
        }

        .s-ticket-online .ticket-online-wrap .image {
            padding: 10px 0px 0px 0px;
        }

            .s-ticket-online .ticket-online-wrap .image img {
                width: 100%;
                max-width: unset;
            }

    .js-countdown.style-2 .countdown__timer {
        gap: 28px;
    }

        .js-countdown.style-2 .countdown__timer .countdown__item {
            width: 100px;
            height: 100px;
        }

            .js-countdown.style-2 .countdown__timer .countdown__item::after {
                right: -20px;
            }

            .js-countdown.style-2 .countdown__timer .countdown__item .countdown__value {
                font-size: 35px;
            }

    .s-get-started .wrapper {
        margin-bottom: 30px;
    }

    .game-play .slot-game {
        justify-content: space-between !important;
    }

    .game-play .style-left .game-1 .content {
        padding: 20px 0px 20px 20px !important;
        justify-content: space-around;
    }

        .game-play .style-left .game-1 .content .image-item {
            margin-bottom: 16px;
        }

            .game-play .style-left .game-1 .content .image-item img {
                max-width: 86px !important;
            }

        .game-play .style-left .game-1 .content .title {
            font-size: 14px;
        }

        .game-play .style-left .game-1 .content .text-color-clip {
            font-size: 30px;
            margin-bottom: 20px;
        }

            .game-play .style-left .game-1 .content .text-color-clip span {
                font-size: 20px;
            }

        .game-play .style-left .game-1 .content .tf-btn {
            font-size: 13px;
            height: 46px;
            padding: 0px 20px;
        }

    .game-play .style-left .game-1 .image {
        margin-left: 0px !important;
    }

        .game-play .style-left .game-1 .image img {
            width: 100%;
            max-width: 362px;
        }

    .game-play .style-right {
        flex-wrap: wrap;
        height: unset;
    }

        .game-play .style-right .slot-game {
            width: 100% !important;
            height: unset;
            justify-content: space-around;
        }

            .game-play .style-right .slot-game .image img {
                max-width: unset !important;
                width: 100%;
            }

    .grid-layout-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 650px) {
    .s-play-for-fun .main-section {
        flex-wrap: wrap;
    }

    .grid-column-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .header-dashboard .header-notification,
    .header-dashboard .header-coins,
    .header-dashboard .header-wallet {
        display: none;
    }

    .guide-wrap {
        gap: 20px;
    }
}

@media (max-width: 665px) {
    .main-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #footer .footer-bottom {
        padding: 30px 0;
    }

        #footer .footer-bottom .wrapper {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

            #footer .footer-bottom .wrapper ul {
                gap: 15px !important;
            }

    .box-history::after {
        bottom: 49.5% !important;
    }
}

@media (max-width: 550px) {
    .js-countdown.style-2 .countdown__timer {
        gap: 20px;
        padding: 0px 0px 40px 0px;
    }

        .js-countdown.style-2 .countdown__timer .countdown__item {
            padding: 5px;
            width: 70px;
            height: 70px;
        }

            .js-countdown.style-2 .countdown__timer .countdown__item::after {
                right: -15px;
                font-size: 30px;
            }

            .js-countdown.style-2 .countdown__timer .countdown__item::before {
                font-size: 13px;
                bottom: -26px;
            }

            .js-countdown.style-2 .countdown__timer .countdown__item .countdown__value {
                font-size: 25px;
            }

    .verified-wrap:not(.type-confirm) {
        flex-wrap: wrap;
        justify-content: unset;
        gap: 20px 0px !important;
    }

        .verified-wrap:not(.type-confirm) .verified-item {
            justify-content: unset !important;
            width: 50%;
        }

    .login-wrap .content .close-form,
    .register-wrap .content .close-form {
        top: 10px;
        right: 10px;
    }

    .social-sign-list {
        flex-wrap: wrap;
    }

    .entry-meta {
        flex-wrap: wrap;
        gap: 20px 0px !important;
    }

        .entry-meta > * {
            width: 50%;
            justify-content: flex-start !important;
        }

    .customer-support-item {
        padding: 20px 20px 45px;
        flex-direction: column;
        text-align: center;
    }

    .grid-column-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-blog-grid .grid-layout-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .table-statistical {
        overflow-x: auto !important;
    }

        .table-statistical .title,
        .table-statistical .item-table {
            width: max-content;
            gap: 0;
        }

            .table-statistical .title div:nth-child(1),
            .table-statistical .title div:nth-child(2),
            .table-statistical .title div:nth-child(3),
            .table-statistical .title div:nth-child(4),
            .table-statistical .item-table div:nth-child(1),
            .table-statistical .item-table div:nth-child(2),
            .table-statistical .item-table div:nth-child(3),
            .table-statistical .item-table div:nth-child(4) {
                width: 150px;
            }

    .price-wrap .wrap-quatity {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    footer .footer-menu .menu {
        padding-bottom: 10px;
    }

    .winning-number {
        padding: 30px 15px;
    }

    .wg-our-jackpot {
        flex-wrap: wrap;
    }

        .wg-our-jackpot .content {
            width: 100%;
        }

        .wg-our-jackpot .wrap-image {
            margin: 30px auto;
        }
}

.bg_box {
    padding: 25px;
    background: #0e0f33;
    border-radius: 12px;
}

.footer-logo img {
    width: 100%;
    max-width: 80px;
}

.positions .wg-game.style-6 {
    flex-direction: row;
    padding: 15px 15px;
    justify-content: flex-start;
    gap: 20px;
    background: #1f2125;
    text-align: left;
}

    .positions .wg-game.style-6 .wg-game-image {
        position: inherit;
        top: inherit;
        max-width: 70px;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

.first_place {
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
}

.second_place {
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
}

.third_place {
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
}

.positions .wg-game.style-6 .wg-game-image img {
    width: 100%;
    max-height: 40px;
    max-width: 40px;
}

.positions .wg-game.style-6 h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--Secondary);
    margin-bottom: 8px !important;
}

.positions .wg-game.style-6 p {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 6px;
}

    .positions .wg-game.style-6 p label {
        opacity: 0.7;
    }

.positions .wg-game.style-6.tickwinchances {
    justify-content: center;
    position: relative;
}

    .positions .wg-game.style-6.tickwinchances:before {
        content: "";
        position: absolute;
        top: 20px;
        left: 50%;
        width: 1px;
        background: rgb(255 255 255 / 10%);
        bottom: 20px;
    }

.wg-game-half {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.positions .wg-game-half p {
    justify-content: center;
}

.positions .wg-game.style-6 .wg-game-half .wg-game-image {
    width: auto;
    height: auto;
    margin: 0 0 15px 0;
}

.positions .wg-game.style-6 .wg-game-half h5 {
    text-transform: capitalize;
    font-size: 14px;
    color: #ffffff;
}

/* .positions .widget-tabs {
    padding: 20px;
    border-radius: 12px;
    background: #161739;
} */

.positions .widget-tabs .widget-menu-tab .item-title.active,
.positions .widget-tabs .widget-menu-tab .item-title:hover {
    background: #882098;
}

table.data-table {
    border: none;
    margin: 0 0 10px 0;
}

/* @media screen and (min-width:1025px){
	table.data-table{
		width:100% !important;
	}
} */
table.data-table {
    border-collapse: separate;
    border-spacing: 0 6px;
}

    table.data-table th {
        padding: 12px 20px !important;
        background-color: #2f3134;
        border: none;
        font-weight: 500 !important;
        color: #fff;
        white-space: nowrap;
        font-size: 11px;
        text-transform: uppercase;
    }

        table.data-table th:first-child {
            border-radius: 10px 0 0 0;
        }

        table.data-table th:last-child {
            border-radius: 0 10px 0 0;
            font-weight: 400;
        }

    table.data-table tr:nth-child(even) {
        background: #1f2125;
    }

    table.data-table tr:nth-child(odd) {
        background-color: #1f2125;
    }

    table.data-table tr td {
        padding: 10px 20px;
        border: none;
        font-size: 13px;
        white-space: nowrap;
        color: var(--Secondary);
        vertical-align: middle;
    }

span.curr_coin {
    display: inline-block;
}

    span.curr_coin img {
        width: 17px;
    }

span.amt_value {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    span.amt_value img {
        width: 15px;
    }

.text-right {
    text-align: right !important;
}

span.ticket_num {
    display: inline-flex;
    width: 25px;
    height: 25px;
    background: #2f3134;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

    span.ticket_num img {
        width: 25px;
    }

span.green-text {
    color: #00bd4c;
}

span.red-text {
    color: #fd3249;
}

.widget-footer .tf-btn:hover {
    color: #111;
}

.dataTables_info {
    width: auto;
    float: left;
}

.dataTables_paginate {
    width: auto;
    float: right;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #ffffff;
}

    .dataTables_wrapper .dataTables_length select {
        border: none;
        border-radius: 3px;
        background-color: #2f3134;
        padding: 4px;
        color: #fff !important;
    }

.dataTables_wrapper .dataTables_length {
    margin: 5px 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #fff !important;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0px;
    font-size: 12px;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: #000 !important;
        background: #fdac00;
    }

.modal-backdrop.show {
    opacity: 0.7;
}

.footer-about h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-about h6 {
    margin: 0 0 9px 0;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 1024.9px) {
    .page-title-home-1 .coin.item-1 {
        display: none;
    }

    .section-cta .section-cta-inner {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px !important;
    }

        .section-cta .section-cta-inner .cta-content {
            width: 48%;
        }

            .section-cta .section-cta-inner .cta-content:last-child {
                width: 100%;
            }

    .positions .wg-game.style-6 {
        padding: 15px;
        flex-wrap: wrap;
        gap: 12px;
    }

        .positions .wg-game.style-6 .wg-game-image {
            max-width: 55px;
            width: 55px;
            height: 55px;
        }

        .positions .wg-game.style-6 p {
            font-size: 20px;
        }

        .positions .wg-game.style-6.tickwinchances {
            flex-wrap: nowrap;
        }
}

@media screen and (max-width: 767.9px) {
    .cta-content .price-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-cta-inner {
        padding: 20px !important;
        gap: 25px;
    }

    .cta-content .price-wrap {
        padding: 10px;
    }

    .price-wrap .price {
        padding: 0px;
        margin: 0px;
    }

    .cta-content .price-wrap .price span,
    .cta-content .price-wrap .price p,
    .price-wrap .wrap-quatity {
        justify-content: center;
    }

    .cta-content .price-wrap .tf-btn {
        font-size: 18px;
    }

    .page-title-home-1 .main-page-title {
        padding-top: 110px;
    }

        .page-title-home-1 .main-page-title .title {
            font-size: 25px !important;
            line-height: 35px !important;
        }

    .timer-title {
        font-size: 20px;
    }

    .js-countdown.style-2 .countdown__timer .countdown__item {
        width: 60px;
        height: 60px;
    }

    .section-cta .tf-container,
    .positions .tf-container {
        padding: 0px;
    }

    .bg_box {
        padding: 15px;
    }

    .positions .wg-game.style-6 {
        padding: 15px;
        gap: 10px;
    }

        .positions .wg-game.style-6 .wg-game-image {
            min-width: 50px;
            height: 50px;
            max-width: 50px;
        }

            .positions .wg-game.style-6 .wg-game-image img {
                max-height: 30px;
                max-width: 30px;
            }

        .positions .wg-game.style-6 h5.title {
            font-size: 14px !important;
            line-height: 1 !important;
        }

        .positions .wg-game.style-6 p {
            font-size: 16px;
        }

    .widget-tabs {
        margin-top: 20px;
    }

        .widget-tabs .widget-menu-tab {
            flex-wrap: wrap;
            align-items: center;
        }

            .widget-tabs .widget-menu-tab .item-title {
                width: 45%;
                font-size: 13px;
                padding: 5px;
                min-width: inherit;
                white-space: inherit;
                line-height: 16px;
            }

    header .tf-container {
        width: 100%;
    }

    #header-main .header-inner-wrap .header-right {
        gap: 8px;
    }

    header .tf-btn-outline {
        padding: 0 15px;
        font-size: 13px;
    }

    .is-fixed .header-logo img {
        max-width: 50px;
    }

    .page-title-home-1 .item-1 {
        display: none;
    }

    table.data-table tr td {
        padding: 10px;
    }

    table.dataTable > tbody > tr.child ul.dtr-details {
        width: 100%;
    }

        table.dataTable > tbody > tr.child ul.dtr-details > li {
            border-bottom: 1px solid #565656;
            border-bottom: 1px solid #565656;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
    table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before,
    table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
    table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
        color: #fdac00;
        border: 0.15em solid #fdac00;
        background: transparent;
    }

    .positions .wg-game.style-6.tickwinchances {
        padding: 15px 10px;
    }

    .positions .wg-game.style-6 .wg-game-half h5.title {
        font-size: 14px !important;
    }

    .positions .wg-game.style-6 .wg-game-half .wg-game-image {
        margin: 0 0 10px 0;
    }

        .positions .wg-game.style-6 .wg-game-half .wg-game-image img {
            max-height: 35px;
            max-width: 35px;
        }
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
    color: #fdac00;
    border: 0.15em solid #fdac00;
    background: transparent;
}

.main-content-dashboard .tf-container {
    width: 100%;
}

.usernamerow input::placeholder {
    color: var(--Secondary);
}

.usernamerow input {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid rgb(255 255 255 / 32%);
    background: rgb(21 22 27);
    border-radius: 5px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 5px;
}

.row.banner-invest {
    background: linear-gradient(to left, #16171b, #fdac002b);
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.banner-invest img {
    width: 80px;
    opacity: 0.9;
}

.row.banner-invest .price {
    font-size: 22px;
}

.row.banner-invest h6 {
    /* color: #FDAC00; */
}
/* .greyscale-img{
  filter: grayscale(100%);
  opacity: 0.7;
} */

.main-content-dashboard-wrap .divider {
    width: 100%;
    height: 1px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 52.66%, rgba(255, 255, 255, 0) 100% );
}

#tooltip {
    display: inline-block;
    margin-left: 10px;
    color: #fdac00;
    font-weight: bold;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-5px);
}

    #tooltip.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.logo-head {
    width: 112px;
    margin: 40px auto 30px;
}

.auth-one-bg {
    background-image: url(../images/coin-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.auth-one-bg-position {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #ae7a13e8, #16171bf8);
}

.shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

    .shape > svg {
        width: 100%;
        height: auto;
        fill: #16171b;
    }

.error {
    color: #ff4949 !important;
    margin: 10px 0 0 0;
    display: block;
    font-size: 13px;
    font-style: italic;
}

.form-control {
    color: #fff;
}

.w-620 {
    max-width: 620px;
}

.otp-row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1f2125e8;
    padding: 20px;
}

    .otp-row fieldset {
        background: #16171b;
        padding: 40px;
        border-radius: 15px;
        border: 1.6px solid #ffffff24;
        position: relative;
    }

.close-otp * {
    font-weight: 700;
}

.close-otp:hover {
    opacity: 0.7;
}

.close-otp {
    position: absolute;
    top: 8px;
    right: 6px;
    z-index: 999;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.form-control:focus {
    color: #fff;
    background-color: var(--Sub-color-4);
    border-color: rgba(255, 255, 255, 0.05);
    outline: 0;
    box-shadow: none;
}

.with-bg-img {
    background-image: url(../images/referral-link.webp) !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.positions .tickwinchances.style-6 .wg-game-image img {
    max-height: 40px;
    max-width: 40px;
    min-height: 40px;
    min-width: 40px;
}

img.rankico {
    width: 45px !important;
    margin: 0 7px 0 0;
}

.fa-linktree svg {
    width: 22px;
    height: 22px;
}

    .fa-linktree svg path {
        fill: var(--Secondary);
    }

.tf-social.style-1 li a:hover .fa-linktree svg path {
    fill: var(--Main-color);
}

.icon-usdt,
.icon-mmmc {
    font-size: inherit !important;
}

.smbtn {
    height: 35px;
    padding: 0 15px;
    font-size: 13px;
}

.alert-warning {
    color: #fec961;
    background: #9d770038;
    border-color: #998139;
}

.alert p {
    font-size: 13px;
}

.alert.alert-dark {
    background: #1f2125;
    border-color: #2f3134;
    color: var(--Secondary);
}

iframe {
    border: 0 !important;
    box-shadow: none;
    outline: none;
    background: #16171b;
}

.time {
    display: block;
    margin-top: 8px;
    font-size: 90%;
}

.date {
    display: block;
    font-size: 90%;
}

.narration {
    /* width: 157px; */
    word-break: break-all;
    white-space: normal;
    display: block;
    font-size: 11px;
    line-height: 15px;
}

.table-layout-auto {
    table-layout: auto;
    width: 100% !important;
}

.dataTables_wrapper .dataTables_filter label input {
    border: 1px solid rgb(255 255 255 / 24%);
    padding: 9px 11px;
    line-height: normal;
    width: 200px;
}

.dataTables_wrapper .dataTables_filter label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    gap: 5px;
    margin: 10px 0 0;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    left: 11px;
}

.menu-item.has-children .sub-menu .sub-menu-item a:hover .text {
    color: #fff !important;
}

/* Iframe Style fro withdraw pages */

.dark-bg {
    background: var(--Bg-2);
    padding: 25px;
    border-radius: 10px;
}

.listview ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

    .listview ul li:nth-child(1) {
        padding-top: 0;
    }

    .listview ul li:nth-last-child(1) {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .listview ul li {
        /* color: #fff; */
        color: #fff;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        word-break: break-all;
        list-style: none;
        width: 100%;
    }

        .listview ul li span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            line-height: normal;
        }

            .listview ul li span:nth-child(1) {
                font-weight: 500;
                margin: 0 0 8px 0;
                font-size: 13px;
                color: #a3a3a3;
                line-height: 13px;
            }

.otp-content {
    border: 2px dashed rgb(255 255 255 / 22%);
    padding: 20px 20px !important;
    margin: 30px 0;
    border-radius: 10px;
}
/*iframe end */

input:disabled {
    opacity: 0.7;
}

    input:disabled + .tf-btn {
        opacity: 0.7;
        cursor: no-drop;
    }

.form-control,
.form-select {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 8px 19px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    border: 1px solid rgb(255 255 255 / 15%);
    background: var(--Sub-color-4);
    border-radius: 8px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.field-filter {
    padding: 20px 0;
}

    .field-filter .tf-btn {
        height: 40px;
        font-size: 14px;
    }

    .field-filter .form-label {
        display: block;
        margin: 0 0 10px 0 !important;
        font-size: 12px;
        font-weight: 500;
    }

    .field-filter .form-control {
        border-radius: 8px !important;
        height: 40px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .field-filter .input-group {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .field-filter .input-group-addon {
        font-size: 12px;
    }

    .field-filter .bootstrap-select {
        width: 100% !important;
    }

.bootstrap-select > .dropdown-toggle {
    font-size: 13px;
    font-weight: 400;
    line-height: 28px;
    border: 1px solid rgb(255 255 255 / 15%) !important;
    background: var(--Sub-color-4) !important;
    color: #fff !important;
    height: 40px;
    outline: none !important;
    border-radius: 8px;
    padding: 5px 12px;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    background: #26272b;
}

    .bootstrap-select .dropdown-menu a {
        font-size: 13px;
        color: #fff;
        padding: 10px 10px;
    }

        .bootstrap-select .dropdown-menu a:hover {
            background: var(--Sub-color-4) !important;
        }

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: #a27824;
}

.field-filter .p-0 {
    padding: 0 !important;
}

.field-filter .row {
    margin: 0 !important;
    gap: 10px;
}

.flatpickr-calendar,
.flatpickr-months .flatpickr-month,
span.flatpickr-weekday {
    background: #28292d;
    font-size: 12px;
    font-weight: 500;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    background: #28292d;
    font-size: 12px;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: var(--Main-color);
    border-color: var(--Main-color);
    color: #111;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--Main-color);
    border-color: var(--Main-color);
    color: #111;
}

.flatpickr-day.today {
    border-color: var(--Main-color);
    color: var(--Main-color);
}

.flatpickr-day {
    font-size: 12px;
}

select option {
    background-color: #28292d !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--Main-color);
}

.current-balance-row {
    margin: 0 0 30px 0;
}

    .current-balance-row h5 {
        font-size: 14px;
        font-weight: 600;
    }

        .current-balance-row h5:nth-last-child(1) {
            border-radius: 120px;
            background: #198754;
            padding: 0 15px;
        }

.fs-40 {
    font-size: 40px !important;
}

.no-pagination .dataTables_info,
.no-pagination .dataTables_paginate,
.no-pagination .dataTables_length,
.no-pagination .dataTables_filter {
    display: none;
}

.sm-badge {
    font-size: 11px;
    font-weight: 500;
}

.flex-row-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0 0 0;
}

/*.sponsor-id {
    display: flex;
    flex-direction: column;
}

.sponsor-id label {
    text-transform: capitalize;
    font-size: 13px;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 6px 0;
}

.sponsor-id span {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 6px;
    color: #FDAC00 !important;
}*/

.justify-colm {
    justify-content: space-between;
}

.rankuser {
    text-align: center;
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.sm-text-id h5 {
    text-transform: capitalize;
    color: var(--Secondary);
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 3px 0;
}

.sm-text-id p {
    word-break: break-all;
    font-size: 11px;
    line-height: 17px;
    font-weight: 500;
}

.user-id {
    margin: 0 0 10px 0;
}

.modaltable fieldset {
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: space-between;
    background: #2b2d32;
    padding: 10px 15px;
}

    .modaltable fieldset label {
        margin: 0;
    }

.modaltable .cols {
    margin: 0 0 3px 0;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    padding-left: 36px;
}

table.data-table th {
    width: auto !important;
}

.leg-list {
    display: flex;
    gap: 13px;
    /*    flex-wrap: wrap;*/
}

    .leg-list div {
        display: flex;
        align-items: center;
        gap: 17px;
        border: 1.6px solid #fdac00a3;
        padding: 10px 10px;
        border-radius: 5px;
        width: 100%;
        justify-content: space-between;
    }

        .leg-list div span:nth-last-child(1) {
            background: #fec961;
            color: #111;
            border-radius: 2px;
            padding: 3px 6px;
        }

        .leg-list div span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }
/* .grdtext{
    background: linear-gradient(180deg, #f4f0e4 20%, #e0b64f 50%, #ad7c31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline !important;
    font-weight: 800 !important;
    text-transform: uppercase;
} */
/* .border-stats {
  background: transparent !important;
  padding: 0 !important;
  gap: 0 !important;
}
.border-stats ul{
  gap: 22px 13px;
}
.border-stats li{
  width: calc(50% - 20px);
  border: 1.6px solid #FDAC00;
  border-radius: 12px;
  padding: 9px;
  width: calc(50% - 8px) !important;
} */

.title-heading-small {
    text-transform: capitalize;
    margin-bottom: 15px;
    color: var(--White);
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 24px;
}

/* privacy, terms and risk pages CSS start */
.privacy-terms .register-wrap {
    max-width: 90%;
}

.privacy-terms h1 {
    font-size: 30px !important;
    text-align: center;
    margin-bottom: 10px;
}

.privacy-terms .effective-date {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: end;
}

.privacy-terms .content > div:not(:last-child) {
    margin-bottom: 15px;
}

.privacy-terms h2 {
    font-size: 25px;
}

.privacy-terms h3 {
    font-size: 20px;
}

.privacy-terms p,
.privacy-terms li,
.privacy-terms b {
    color: #ccc;
    font-size: 16px;
    line-height: 22px;
}

.privacy-terms ul,
.privacy-terms ol {
    padding-left: 20px;
    margin-top: 10px;
}

    .privacy-terms ul li {
        list-style: disc;
        font-weight: 400;
        margin-bottom: 5px;
    }

    .privacy-terms ol li {
        list-style-type: number;
        margin-bottom: 5px;
    }

@media (max-width: 767px) {
    .privacy-terms .register-wrap {
        max-width: 97%;
    }

    .privacy-terms .content {
        padding: 30px 20px !important;
    }

    .privacy-terms h1 {
        font-size: 25px !important;
        line-height: normal !important;
    }

    .privacy-terms h2 {
        font-size: 20px !important;
        line-height: normal !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .privacy-terms h1 {
        font-size: 20px !important;
        margin-bottom: 40px;
    }

    .privacy-terms h3 {
        line-height: normal !important;
        margin-bottom: 10px;
    }

    .privacy-terms .effective-date {
        margin-bottom: 10px;
        text-align: start;
    }
}
/* privacy, terms and risk pages CSS end */


.amount-values {
    border: 2px dashed #ffffff2b;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

@media(max-width: 550px) {
    .amount-values p {
        font-size: 12px;
    }
}

@media (min-width: 767px) {
    .md-0 {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    img .rankico {
        width: 25px !important;
    }

    .custom-iframe {
        min-height: 870px !important;
    }

    .with-bg-img {
        background-image: none !important;
    }

    .dataTables_info,
    .dataTables_filter {
        display: none;
    }

    .justify-md-content-center {
        justify-content: center !important;
    }

    .customtablink .item-title a {
        font-size: 13px;
        line-height: normal;
    }

    .wg-infomation .item .price {
        font-size: 16px;
    }

    .leg-list {
        flex-wrap: wrap;
    }
}
