/* Mixin

--------------------------------------------- */


/* Breakpoint

--------------------------------------------- */


/* Truncate

--------------------------------------------- */


/* Base

--------------------------------------------- */


/* Variables

--------------------------------------------- */


/** =============== Color ================= **/


/* Reset

--------------------------------------------- */


/** Reset CSS **/

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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    line-height: 1.5;
    font-size: 14px !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

select,
button {
    cursor: pointer;
    outline: none;
}

a:hover,
a {
    text-decoration: none;
}

svg,
svg path {
    -webkit-transition: fill .3s, stroke .3s;
    -o-transition: fill .3s, stroke .3s;
    transition: fill .3s, stroke .3s;
}

a {
    transition: color .3s, background-color .3s;
}

input:focus {
    box-shadow: none;
    outline: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 1600px) {
    .container-xxl {
        max-width: 1440px;
    }
}


/* General

--------------------------------------------- */


/** General **/

.swal2-styled,
.swal2-content {
    font-size: 16px !important;
}

.swal2-content {
    padding: 0 10px !important;
}

input[aria-invalid="true"]::placeholder,
select[aria-invalid="true"]::placeholder {
    color: red !important;
}

.no-scrollbar {
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


/** Font **/

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}


/** Text **/

.text-primary {
    color: var(--primary-color) !important;
}

a.text-primary:hover {
    color: var(--secondary-color) !important;
}

.text-primary-variant {
    color: var(--primary-variant) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-secondary-variant {
    color: var(--secondary-variant) !important;
}

.text-justify {
    text-align: justify;
}

.text-italic {
    font-style: italic;
}


/** Background **/

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

@media only screen and (min-width: 1200px) {
    .bg-fixed {
        background-attachment: fixed;
    }
}

.bgc-unset {
    background-color: unset;
}


/** Image **/

.img-block {
    position: relative;
    padding-bottom: 66.67%;
    display: block;
}

.img-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1-1 {
    padding-bottom: 100%;
}

.img-center img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-hover img {
    -webkit-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

@media (hover) {
    .img-hover:hover img {
        transform: scale(1.2);
    }
}


/** Infinite loader **/

.page-load-status {
    display: none;
    margin-top: 20px;
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.see-more button:disabled,
.see-more button[disabled] {
    display: none;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: var(--secondary-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}


/** Back to top **/

.backToTop {
    z-index: 2222;
    bottom: 50px;
    right: -120%;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    border: 1px solid #8d9e8b8c;
}

.backToTop svg path {
    stroke: #fff;
}

.backToTop:hover {
    background-color: var(--secondary-color);
}

.backToTop.show__backToTop {
    right: 10px;
}


/** Style for post **/

.ws-sgct blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #918f8f;
}

.ws-sgct blockquote p {
    margin: 0 !important;
}

.ws-sgct code {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    font-size: 0.85rem;
    color: #e83e8c;
}

.ws-sgct p,
.ws-sgct table {
    margin: 0 0 15px;
    line-height: 1.6;
}

.ws-sgct table {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.ws-sgct table>tbody>tr>td,
.ws-sgct table>tbody>tr>th,
.ws-sgct table>tfoot>tr>td,
.ws-sgct table>tfoot>tr>th,
.ws-sgct table>thead>tr>td,
.ws-sgct table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 7px 10px;
}

.ws-sgct h6 {
    font-size: 18px;
}

.ws-sgct h5 {
    font-size: 20px;
}

.ws-sgct h4 {
    font-size: 22px;
}

.ws-sgct h3 {
    font-size: 24px;
}

.ws-sgct h2 {
    font-size: 26px;
}

.ws-sgct ul,
.ws-sgct ol {
    margin: 0 0 15px;
    padding-left: 25px;
    list-style: disc;
}

.ws-sgct ul li,
.ws-sgct ol li {
    line-height: 1.5;
    margin-bottom: 8px;
}

.ws-sgct ol {
    list-style: decimal;
}

.ws-sgct iframe {
    margin: auto;
}

.ws-sgct .syntaxhighlighter {
    padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
    margin: 0 0 15px;
    font-weight: 500;
}


/* Components

--------------------------------------------- */


/* Button

--------------------------------------------- */


/* Breadcrumb

--------------------------------------------- */


/* Menu mobile

--------------------------------------------- */


/* Home

--------------------------------------------- */

.luckywheel {
    overflow: hidden;
}

.luckywheel-wrap:before {
    /* cpedit */
    background-image: url(../images/roulette_main.jpg);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transform: rotateY(180deg);
    width: 100%;
    z-index: -1;
    left: -100%;
    background-size: 100% 100%;
}

.luckywheel-wrap:after {
        /* cpedit */
    background-image: url(../images/roulette_main.jpg);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transform: rotateY(180deg);
    width: 100%;
    z-index: -1;
    right: -100%;
    background-size: 100% 100%;
}

.luckywheel-inner {
    padding-top: 100px;
}

@media only screen and (max-width: 1023px) {
    .luckywheel-inner {
        padding: 0;
        background-image: linear-gradient(180deg, #360056, #1d0124) !important;
        /* editcp */

    }
}

.luckywheel-inner:before,
.luckywheel-inner:after {
    animation: rouletteDecoShake 25s infinite;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.luckywheel-inner:before {
    animation-direction: alternate;
    animation-timing-function: linear;
    background-image: url(../images/roulette_balloon.png);
}

@media only screen and (max-width: 1023px) {
    .luckywheel-inner:before {
        background-image: url(../images/roulette_balloon_m.png);
        height: 30%;
    }
}

.luckywheel-inner:after {
    animation-direction: alternate-reverse;
    background-image: url(../images/roulette_ball.png);
}

@media only screen and (max-width: 1023px) {
    .luckywheel-inner:after {
        background-image: url(../images/roulette_ball_m.png);
        height: 30%;
    }
}

@keyframes rouletteDecoShake {
    0% {
        transform: rotate(5deg);
    }
    33.33% {
        transform: rotate(-7.5deg);
    }
    66.66% {
        transform: rotate(11.25deg);
    }
    to {
        transform: rotate(-16.875deg);
    }
}

.luckywheel__awards {
    width: 20.4861111111%;
    flex: 0 0 auto;
    z-index: 99;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__awards {
        width: 100%;
        flex-basis: 100%;
        order: 2;
        padding: 0 60px;
        margin-bottom: 150px;
        background-image: linear-gradient(180deg, #360056, #1d0124) !important;
        /* editcp */
    }
}

@media only screen and (max-width: 767px) {
    .luckywheel__awards {
        margin-bottom: 100px;
        padding: 0 20px;
    }
}

.luckywheel__awards ul {
    padding-left: 0;
    list-style: none;
}

.luckywheel__awards ul li {
    padding-left: 10px;
    padding-right: 10px;
    background-image: url(../images/awards-bg.png);
    background-size: 100% 100%;
    /* editcp */
    background-color: #4f1e99;
    border-radius: 32px;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__awards ul li {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.luckywheel__awards ul li:not(:last-child) {
    margin-bottom: 25px;
}

.luckywheel__awards ul li.gold-medal .luckywheel__awards-number {
    background-position: 0 0;
    color: #be5a18;
}

.luckywheel__awards ul li.silver-medal .luckywheel__awards-number {
    background-position: 33.3333% 0;
    color: #6f6f80;
}

.luckywheel__awards ul li.bronze-medal .luckywheel__awards-number {
    background-position: 66.6666% 0;
    color: #7c5552;
}

.luckywheel__awards-number {
    background-image: url(../images/awards-medal.png);
    background-position: 100% 0;
    background-size: 400% 100%;
    color: #674170;
    font-weight: 700;
    width: 16%;
    flex: 0 0 auto;
    font-size: 27px;
    padding-bottom: 16%;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__awards-number {
        width: 11%;
        padding-bottom: 11%;
    }
}

@media only screen and (max-width: 767px) {
    .luckywheel__awards-number {
        width: 15%;
        padding-bottom: 15%;
        font-size: 20px;
    }
}

.luckywheel__awards-number span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.luckywheel__awards-image {
    width: 30%;
    flex: 0 0 auto;
    padding-bottom: 25%;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__awards-image {
        width: 20%;
        padding-bottom: 21%;
    }
}

@media only screen and (max-width: 767px) {
    .luckywheel__awards-image {
        width: 30%;
    }
}

.luckywheel__awards-image img {
    width: 50%;
    height: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.luckywheel__awards-title {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 1px 3px #000000cc;
    width: 54%;
    padding: 5px 0;
}

.luckywheel__main {
    width: 41.6666666667%;
    flex: 0 0 auto;
    z-index: 99;
    position: relative;
}

.wheel-fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/home_fireworks_gold.gif);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 50%;
    z-index: 9999;
    pointer-events: none;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__main {
        width: 100%;
        flex-basis: 100%;
        background-image: url(../images/roulette_main_m.jpg);
        /* editcp */
        padding: 50px 30px;
        background-size: 100% 100%;
    }
}

.luckywheel__main-inner {
    padding-bottom: 100%;
}

.luckywheel__main-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/roulette_frame.png);
    z-index: 9;
    background-size: 100% 100%;
}

.luckywheel__main-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rouletteNeonLight 1s steps(2) infinite;
    background-image: url(../images/roulette_neonLight.png);
    background-size: 200% 100%;
    z-index: 9;
}

@keyframes rouletteNeonLight {
    0% {
        background-position: 0 50%;
    }
    to {
        background-position: 200% 50%;
    }
}

.account-modal .modal-body button {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.luckywheel__main-period {
    color: #ffefbd;
    font-size: 21px;
    margin-top: -30px;
    text-shadow: 0 1px 5px #000000cc;
    margin-bottom: 10px;
}

.luckywheel__main-times {
    animation: rouletteNumberTimes .6s .6s infinite alternate both;
    background-image: url(../images/roulette_numberTimes.png);
    border-radius: 9%/18.75%;
    box-shadow: 0 0 16px 2px #fcff0080, inset 0 0 1px #fcff0080;
    padding-bottom: 12%;
    right: 0;
    top: 0;
    width: 25%;
    z-index: 99;
    background-size: 100% 100%;
}

.luckywheel__main-times span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) skew(-6deg);
    -ms-transform: translate(-50%, -50%) skew(-6deg);
    transform: translate(-50%, -50%) skew(-6deg);
    color: #ff4100;
    font-weight: 700;
    padding-bottom: 1%;
    text-shadow: 2px 2px 0 #f3cb00;
    display: flex;
}

@keyframes rouletteNumberTimes {
    0% {
        box-shadow: 0 0 0 0 #fcff008c, inset 0 0 1px #fcff008c;
    }
    100% {
        box-shadow: 0 0 16px 2px #fcff008c, inset 0 0 1px #fcff008c;
    }
}

.luckywheel__main-button {
    animation: rouletteMainBoxBtnShadow .5s infinite alternate both;
    background-image: url(../images/roulette_btn.png);
    background-position: 0 0;
    background-size: 200% 100%;
    border-radius: 50%;
    box-shadow: 0 0 46px #000000bf, 0 2px 3px 1px #00000059, inset -1px 0 1px #00000080, inset 1px 1px 1px #fff;
    cursor: pointer;
    display: flex;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    padding-bottom: 1.5%;
    height: 18.3333333333%;
    width: 18.3333333333%;
    z-index: 999;
    -webkit-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
}

.luckywheel__main-button:active {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
}

.luckywheel__main-button.disabled {
    background-position: 100% 0;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    pointer-events: none;
}

.luckywheel__main-button:after {
    content: '';
    animation: rouletteMainBoxBtnLight 2s infinite both;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0));
    content: "";
    height: 40%;
    left: -40%;
    position: absolute;
    top: 30%;
    transform: translate3d(80%, 0, 0) rotate(-45deg);
    width: 180%;
}

@keyframes rouletteMainBoxBtnShadow {
    0% {
        box-shadow: 0 0 16px #0000004d, 0 2px 3px 1px #00000059, inset -1px 0 1px #00000080, inset 1px 1px 1px #fff;
    }
    100% {
        box-shadow: 0 0 48px #000000e6, 0 2px 3px 1px #00000059, inset -1px 0 1px #00000080, inset 1px 1px 1px #fff;
    }
}

@keyframes rouletteMainBoxBtnLight {
    0% {
        transform: translate3d(-60%, 0, 0) rotate(-45deg);
    }
    to {
        transform: translate3d(60%, 0, 0) rotate(-45deg);
    }
}

.luckywheel__main-coin {
    height: 125%;
    left: -25%;
    pointer-events: none;
    top: -12.5%;
    width: 150%;
    z-index: 199;
}

.luckywheel__main-coin-item {
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: rouletteBoxCoin;
    animation-timing-function: linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.luckywheel__main-coin-item img {
    position: absolute;
}

.luckywheel__main-coin-item:nth-child(1) {
    animation-delay: -1s;
    animation-duration: 5s;
}

.luckywheel__main-coin-item:nth-child(1) img {
    left: 76%;
    top: 47%;
    width: 12.7777777778%;
}

.luckywheel__main-coin-item:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.luckywheel__main-coin-item:nth-child(2) img {
    left: 15%;
    top: 26%;
    width: 9.2222222222%;
}

.luckywheel__main-coin-item:nth-child(3) {
    animation-delay: -1.5s;
    animation-duration: 6s;
}

.luckywheel__main-coin-item:nth-child(3) img {
    left: 68%;
    top: 71%;
    width: 15.4444444444%;
}

.luckywheel__main-coin-item:nth-child(4) {
    animation-delay: -.5s;
    animation-duration: 4s;
}

.luckywheel__main-coin-item:nth-child(4) img {
    left: 11%;
    top: 71%;
    width: 30.4444444444%;
}

.luckywheel__main-coin-item:nth-child(5) {
    animation-delay: -2.5s;
    animation-duration: 8s;
}

.luckywheel__main-coin-item:nth-child(5) img {
    left: 73%;
    top: 17%;
    width: 17.1111111111%;
}

.luckywheel__main-coin-item:nth-child(6) {
    animation-delay: -3s;
    animation-duration: 9s;
}

.luckywheel__main-coin-item:nth-child(6) img {
    left: 24%;
    top: 4%;
    width: 7.3333333333%;
}

@keyframes rouletteBoxCoin {
    0% {
        opacity: .5;
        transform: scale3d(0.6, 0.6, 1);
    }
    25% {
        opacity: .8;
        transform: scale3d(0.8, 0.8, 1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    75% {
        opacity: .6;
        transform: scale3d(1.15, 1.15, 1);
    }
    100% {
        opacity: .1;
        transform: scale3d(1.3, 1.3, 1);
    }
}

.luckywheel__main-list {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5.5%;
}

.luckywheel__main-list ul {
    border-radius: 50%;
    height: 100%;
    overflow: hidden;
    transform: rotate3d(0, 0, 0, 0deg);
    transition: filter .4s;
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.luckywheel__main-list li {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    height: 50%;
    justify-content: center;
    padding-bottom: 2%;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    left: 30.9%;
    width: 38.2%;
}

@media only screen and (max-width: 767px) {
    .luckywheel__main-list li {
        font-size: 12px;
    }
}

.luckywheel__main-list li:before {
    animation-direction: alternate;
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    background-image: linear-gradient(0deg, #ffcf00, #ff0 14%, #ff0 35%, #fff 42%, #ffc600 72%);
    content: "";
    height: 100%;
    left: 50%;
    margin-left: -1px;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    transition: width .3s, margin-left .3s;
    width: 2px;
    z-index: 1;
    transform: rotate(-22.5deg);
}

.luckywheel__main-list li:nth-child(odd) .luckywheel__main-awards-color:before {
    background-image: linear-gradient(-35.3deg, #5a2eff 12%, #a87bff 50%, rgba(255, 255, 255, 0) 0);
}

.luckywheel__main-list li:nth-child(odd) .luckywheel__main-awards-color:after {
    background-image: linear-gradient(35.3deg, #5a2eff 12%, #a87bff 50%, rgba(255, 255, 255, 0) 0);
}

.luckywheel__main-list li:nth-child(even) .luckywheel__main-awards-color:before {
    background-image: linear-gradient(-35.3deg, #7d2eff 12%, #c1b0ff 50%, rgba(255, 255, 255, 0) 0);
}

.luckywheel__main-list li:nth-child(even) .luckywheel__main-awards-color:after {
    background-image: linear-gradient(35.3deg, #7d2eff 12%, #c1b0ff 50%, rgba(255, 255, 255, 0) 0);
}

.luckywheel__main-list li:nth-child(2) {
    transform: rotate(45deg);
}

.luckywheel__main-list li:nth-child(3) {
    transform: rotate(90deg);
}

.luckywheel__main-list li:nth-child(4) {
    transform: rotate(135deg);
}

.luckywheel__main-list li:nth-child(5) {
    transform: rotate(180deg);
}

.luckywheel__main-list li:nth-child(6) {
    transform: rotate(225deg);
}

.luckywheel__main-list li:nth-child(7) {
    transform: rotate(270deg);
}

.luckywheel__main-list li:nth-child(8) {
    transform: rotate(315deg);
}

.luckywheel__main-awards-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.luckywheel__main-awards-color:before,
.luckywheel__main-awards-color:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.luckywheel__main-awards-color:after {
    left: 50%;
    transform-origin: 0 100%;
    transform: rotate(-67.5deg) skew(-45deg);
}

.luckywheel__main-awards-color:before {
    left: -50%;
    transform-origin: 100% 100%;
    transform: rotate(67.5deg) skew(45deg);
}

.luckywheel__main-awards-award {
    line-height: 1.2;
    padding-bottom: 18px;
    position: relative;
    text-align: center;
    width: 70%;
    text-shadow: 0px -5px 5px #371a62;
    padding-left: 5px;
    padding-right: 5px;
}

@media only screen and (max-width: 767px) {
    .luckywheel__main-awards-award {
        width: 62%;
        padding-bottom: 7px;
        font-size: 10px;
    }
}

.luckywheel__main-awards-number {
    text-align: center;
    width: 70px;
    line-height: 1;
    font-size: 50px;
    text-shadow: -3px -4px 0 #e81fa1, -2px -4px 0 #e81fa1, -1px -4px 0 #e81fa1, 0 -4px 0 #e81fa1, 1px -4px 0 #e81fa1, 2px -4px 0 #e81fa1, 3px -4px 0 #e81fa1, 4px -4px 0 #e81fa1, 4px -3px 0 #e81fa1, 4px -2px 0 #e81fa1, 4px -1px 0 #e81fa1, 4px 0 0 #e81fa1, 4px 1px 0 #e81fa1, 4px 2px 0 #e81fa1, 4px 3px 0 #e81fa1, 4px 4px 0 #e81fa1, 3px 4px 0 #e81fa1, 2px 4px 0 #e81fa1, 1px 4px 0 #e81fa1, 0 4px 0 #e81fa1, -1px 4px 0 #e81fa1, -2px 4px 0 #e81fa1, -3px 4px 0 #e81fa1, -4px 4px 0 #e81fa1, -4px 3px 0 #e81fa1, -4px 2px 0 #e81fa1, -4px 1px 0 #e81fa1, -4px 0 0 #e81fa1, -4px -1px 0 #e81fa1, -4px -2px 0 #e81fa1, -4px -3px 0 #e81fa1, -4px -4px 0 #e81fa1;
}

@media only screen and (max-width: 767px) {
    .luckywheel__main-awards-number {
        font-size: 20px;
        text-shadow: 2px 0 0 #e81fa1, -2px 0 0 #e81fa1, 0 2px 0 #e81fa1, 0 -2px 0 #e81fa1, 1px 1px #e81fa1, -1px -1px 0 #e81fa1, 1px -1px 0 #e81fa1, -1px 1px 0 #e81fa1;
    }
}

.luckywheel__winner {
    background-image: url(../images/winner-bg.png);
    background-size: 100% 100%;
    padding-bottom: 41.6666666667%;
    width: 20.4861111111%;
    flex: 0 0 20.4861111111%;
    z-index: 99;
    /* editcp */
    background-color: #3F51B5;
    border-radius: 32px;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__winner {
        width: 85%;
        flex-basis: 85%;
        order: 3;
        margin: 0 auto 100px auto;
        background-image: unset;
        padding-bottom: 100%;
    }
}

.luckywheel__winner:before {
    content: '';
    background-image: url(../images/winner-list-head.png);
    padding-bottom: 46.7796610169%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -96%);
    width: 111.186440678%;
    position: absolute;
    display: block;
    background-size: 100% 100%;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__winner:before {
        padding-bottom: 34.6268656716%;
        top: 0;
        transform: translate(-50%, -95.5%);
        width: 82.0895522388%;
    }
}

.luckywheel__winner:after {
    content: '';
    background-image: url(../images/winner-list-bottom.png);
    bottom: 0;
    padding-bottom: 28.813559322%;
    transform: translate(-50%, 40%);
    width: 124.0677966102%;
    position: absolute;
    left: 50%;
    background-size: 100% 100%;
}

.luckywheel__winner-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__winner-inner {
        border: 1px solid transparent;
        background-color: #280139;
        /* editcp */
        border-radius: 30px;
    }
    .luckywheel__winner-inner:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -3px;
        border-radius: inherit;
        border-radius: 30px;
        background: linear-gradient(155deg, #e260ed 0%, #72068d 47%, #d956bf 100%);
    }
}

.luckywheel__winner-inner ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.luckywheel__winner-nav {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 15px !important;
}

.luckywheel__winner-nav li {
    font-size: 18px;
    width: 50%;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.luckywheel__winner-nav li.active {
    color: #fff;
}

.luckywheel__winner-nav li .nav-link {
    color: #c98dff;
    width: 100%;
}

.luckywheel__winner-nav li .nav-link.active {
    background-color: transparent;
}

.luckywheel__winner-nav .indicator {
    background-image: url(../images/indicator-tab.png);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 0;
    width: 0;
    height: 100%;
    transition: left .3s, width .3s;
    z-index: -1;
    border-radius: 9999px;
    background-size: 100% 100%;
}

.luckywheel__winner-content {
    color: #fff;
    font-size: 16px;
    overflow: auto;
}

.luckywheel__winner-content ul li {
    margin-bottom: 10px;
}

.luckywheel__winner-content ul li .luckywheel__winner-time {
    font-size: 11px;
}

.luckywheel__winner-content ul li .luckywheel__winner-prize {
    color: #ffdb00;
    text-align: center;
    padding-right: 10px;
}

.luckywheel__winner-content ul li .luckywheel__winner-name {
    text-align: center;
    padding-left: 10px;
}

.luckywheel__rule {
    background-image: linear-gradient(180deg, #330051, #1d0124);
/* cpedit */
    padding: 45px 12px 85px;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__rule {
        background: linear-gradient(180deg, #360056, #1d0124) !important;
        /* editcp */
        position: relative;
        z-index: 999;
    }
}

.luckywheel__rule-inner {
    width: 100%;
    background-image: linear-gradient(180deg, #6a0082, #360052);
    border-radius: 20px;
    box-shadow: inset 0 4px 7px #ffffff59, inset 0 -4px 7px #00000040, 0 0 45px #000000b3;
    color: #fff;
    margin: 0 auto;
    max-width: 1000px;
    min-height: 350px;
    padding: 80px 45px;
    position: relative;
    font-size: 16px;
}

@media only screen and (min-width: 1200px) {
    .luckywheel__rule-inner {
        max-width: 1000px;
        flex-basis: 1000px;
        margin: 0 auto;
    }
}

#swal2-content {
    line-height: 1.5;
}

@media only screen and (max-width: 1023px) {
    .luckywheel__rule-inner {
        padding: 50px 30px;
    }
}

.luckywheel__rule-title {
    background-image: url(../images/roulette_rule_title.png);
    font-size: 24px;
    height: 75px;
    left: 50%;
    line-height: 76px;
    position: absolute;
    text-align: center;
    text-shadow: 0 -3px 0 #00000080;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    width: 366px;
    max-width: 90%;
    background-size: 100% 100%;
}


/** ACCOUNT MODAL **/

.account-modal .modal-header {
    color: #fff;
    background-color: #d0ad4a;
}

.account-modal .btn-close {
    color: #fff;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1L1 15M1.00001 1L8.00002 8.00001L15 15' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.account-modal .modal-body {
    padding: 15px 25px;
}

.account-modal .modal-body .nav {
    margin: 0 auto;
}

.account-modal .modal-body .nav .nav-link {
    border-radius: unset;
    text-align: center;
    background-color: #d0ac4ab2;
    padding: 5px 20px;
    color: #333;
}

.account-modal .modal-body .nav .nav-link.active {
    background-color: #d0ad4a;
    color: #fff;
}

.account-modal .modal-body .tab-content {
    margin-top: 20px;
}

.account-modal .modal-body .form-group {
    margin-bottom: 10px;
}

.account-modal .modal-body .form-group input {
    padding: 8px 12px;
    font-size: 15px;
}

.account-modal .modal-body .form-group input::placeholder {
    font-size: 15px;
}

.account-modal .modal-body .form-group input:focus {
    border: 1px solid #d0ad4a;
    box-shadow: 0 0 3px #d0ad4a;
}

.account-modal .modal-body button {
    border: none;
    outline: none;
    background-color: #d0ad4a;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 9999px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.account-modal .modal-body button:hover {
    background-color: #d0ac4ab2;
}

.account-modal .modal-body p a {
    color: #d0ad4a;
    text-decoration: underline;
}

.result-modal .modal-content {
    background-color: transparent;
    border: none;
}

.result-modal .modal-dialog {
    max-width: 740px;
}

.result-modal .btn-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
}

.result-modal .modal-body {
    background-image: url(../images/roulettePopup_box.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.result-modal .modal-body__content {
    padding-bottom: 100%;
}

.result-modal .modal-body__content-inner {
    padding: 80px 0 0 0;
    color: #fff;
    font-size: 20px;
}

.result-modal .modal-body__content-inner .result-modal__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-modal .modal-body__content-inner .result-modal__image {
    width: 30%;
    padding-bottom: 39%;
}

.result-modal .modal-body__content-inner .result-modal__image img {
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .result-modal .modal-body__content-inner {
        padding: 30px 0 0 0;
        font-size: 16px;
    }
    .result-modal .modal-body__content-inner .result-modal__title {
        font-size: 22px;
    }
}

.result-modal-replay {
    padding: 10px 36px !important;
}

.result-modal-replay.disabled {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    pointer-events: none;
}

.result-modal-replay,
.result-modal-close {
    margin-top: 10px;
    background-image: url(../images/ok-bg.png);
    padding: 5px 36px;
    outline: none;
    border: none;
    background-size: 100% 100%;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-shadow: 0 1px 1px #5a29a7;
}

.hc-luckywheel ul,
.hc-luckywheel li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hc-luckywheel {
    position: relative;
    width: 500px;
    /*Change this when change size*/
    height: 500px;
    /*Change this when change size*/
    border-radius: 50%;
    border: 16px solid #e44025;
    box-shadow: 0 2px 3px #333, 0 0 2px #000;
}

.hc-luckywheel-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background-clip: padding-box;
    background-color: #ffcb3f;
    -webkit-transition: transform 6s ease;
    transition: transform 6s ease;
}

.hc-luckywheel-container canvas {
    width: inherit;
    height: inherit;
    border-radius: 50%;
}

.hc-luckywheel-list {
    position: absolute;
    left: 0;
    top: 0;
    width: inherit;
    height: inherit;
    z-index: 2;
}

.hc-luckywheel-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #e4370e;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.hc-luckywheel-item span {
    position: relative;
    display: block;
    padding-top: 20px;
    /* width: 50px; */
    margin: 0 auto;
    text-align: center;
    -webkit-transform-origin: 50% 250px;
    /*Change this when change size*/
    -ms-transform-origin: 50% 250px;
    /*Change this when change size*/
    transform-origin: 50% 250px;
}


/*Change this when change size*/

.hc-luckywheel-item img {
    position: relative;
    top: -20px;
    left: 0px;
    width: 100px;
    /*Change this when change size*/
    height: 100px;
}


/*Change this when change size*/

.hc-luckywheel-btn {
    position: absolute;
    left: 210px;
    /*Change this when change size*/
    top: 210px;
    /*Change this when change size*/
    z-index: 3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #f4e9cc;
    background-color: #e44025;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.hc-luckywheel-btn::after {
    position: absolute;
    display: block;
    content: "";
    left: 10px;
    top: -46px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 30px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #e44025;
}

.hc-luckywheel-btn.disabled {
    pointer-events: none;
    background: #b07a7b;
    color: #ccc;
}

.hc-luckywheel-btn.disabled::after {
    border-bottom-color: #b07a7b;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
}

.bg {
    background-image: url("../images/bg.png");
}


/* Sidebar

--------------------------------------------- */

.fa-spinner {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='translate(50 50)'%3E%3Cg%3E%3CanimateTransform attributeName='transform' type='rotate' values='0;45' keyTimes='0;1' dur='0.2s' repeatCount='indefinite'%3E%3C/animateTransform%3E%3Cpath d='M29.491524206117255 -5.5 L37.491524206117255 -5.5 L37.491524206117255 5.5 L29.491524206117255 5.5 A30 30 0 0 1 24.742744050198738 16.964569457146712 L24.742744050198738 16.964569457146712 L30.399598299691117 22.621423706639092 L22.621423706639096 30.399598299691114 L16.964569457146716 24.742744050198734 A30 30 0 0 1 5.5 29.491524206117255 L5.5 29.491524206117255 L5.5 37.491524206117255 L-5.499999999999997 37.491524206117255 L-5.499999999999997 29.491524206117255 A30 30 0 0 1 -16.964569457146705 24.742744050198738 L-16.964569457146705 24.742744050198738 L-22.621423706639085 30.399598299691117 L-30.399598299691117 22.621423706639092 L-24.742744050198738 16.964569457146712 A30 30 0 0 1 -29.491524206117255 5.500000000000009 L-29.491524206117255 5.500000000000009 L-37.491524206117255 5.50000000000001 L-37.491524206117255 -5.500000000000001 L-29.491524206117255 -5.500000000000002 A30 30 0 0 1 -24.742744050198738 -16.964569457146705 L-24.742744050198738 -16.964569457146705 L-30.399598299691117 -22.621423706639085 L-22.621423706639092 -30.399598299691117 L-16.964569457146712 -24.742744050198738 A30 30 0 0 1 -5.500000000000011 -29.491524206117255 L-5.500000000000011 -29.491524206117255 L-5.500000000000012 -37.491524206117255 L5.499999999999998 -37.491524206117255 L5.5 -29.491524206117255 A30 30 0 0 1 16.964569457146702 -24.74274405019874 L16.964569457146702 -24.74274405019874 L22.62142370663908 -30.39959829969112 L30.399598299691117 -22.6214237066391 L24.742744050198738 -16.964569457146716 A30 30 0 0 1 29.491524206117255 -5.500000000000013 M0 -20A20 20 0 1 0 0 20 A20 20 0 1 0 0 -20' fill='%23e15b64'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
}

.luckywheel__main-button .logo {
    width: 50%;
    margin-bottom: 10px;
}

@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}

.js-confetti {
    width: 100vw;
    height: 100vh;
    position: fixed!important;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

.js-confetti.active {
    opacity: 1;
}

.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
}

.confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
}

.confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
}

.confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
}

.open-account-modal li {
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 48px;
    padding: 0 3px;
    position: relative;
    text-decoration: none;
    margin: 0 15px;
    cursor: pointer;
}

.open-account-modal li:hover {
    color: #ffc311;
}

@media only screen and (max-width: 767px) {
    .open-account-modal li {
        font-size: 14px;
    }
}

.text-small {
    font-size: 10px;
    color: #ffdb00;
}

ul.d-flex.justify-content-center.list-unstyled.mb-4.open-account-modal {
    display: none!important;
}
p.luckywheel__awards-title.text-uppercase {
    font-weight: bold;
}

/* cpedit */
/* span.d-block.text-small.mt-2 {
    display: none !important;
} */
li.d-flex.flex-wrap.align-items-center:last-child span.d-block.text-small.mt-2 { display: none !important; }