:root {
    /* Light theme colors */
    --primary-color: #31ee91;
    --white: #fff;
    --black: #000;
    --primary-bg: #f9f9f9;
    --secondry-bg: #f0f2f2;
    --secondry-bg-light: #f4f4f4f5;
    --form-bg: #fff;
    --secondry-bg-hover: #d3d3d3;
    --Expandbg: rgba(50, 55, 56, .05);
    --switcher-bg: #f9f9f9;
    --listArrow-bg: #ededed;
    --transition: 0.5s all ease;
    --color: #323738;
    --ddd: #ddd;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--primary-bg);
}

body.dark-theme {
    /* Dark theme colors */
    --white: #292d2e;
    --primary-bg: #292d2e;
    --secondry-bg: #323738;
    --secondry-bg-light: #232626f5;
    --form-bg: #292d2e;
    --secondry-bg-hover: #292d2e;
    --Expandbg: #292d2e;
    --switcher-bg: #292d2e;
    --listArrow-bg: #464f50;
    --black: #fff;
    --ddd: #444444;
    --color: #fff;
}

body::-webkit-scrollbar  {
    width: 4px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}


.sidebar::-webkit-scrollbar  {
    width: 0px;
}

.sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}


.notification .content .body .info .promotion::-webkit-scrollbar  {
    width: 0px;
}

.notification .content .body .info .promotion::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.notification .content .body .info .promotion::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.searchDetails .body .data::-webkit-scrollbar {
    width: 0px;
}


.searchDetails .body .data::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}


.searchDetails .body .data::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.header {
    width: 100%;
    max-height: 62px;
    background: var(--white);
    box-shadow: 0px 1px 17px #7a666682;
    padding: 10px 0;
    position: fixed;
    z-index: 100;
}
.header.scrolled{
    background-color: var(--white);
}
@media(max-width:768px){
    .header{
        background-color: #07070700;
    }
}


.header .menuIcon {
    background: var(--secondry-bg);
    padding: 8px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.header .menuIcon:hover {
    background: var(--secondry-bg-hover);
    transition: var(--transition);
}

.header .menuIcon img {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.header .menuIcon svg {
    width: 18px;
    fill: #5f6d6d;
}
.header .liveCur {
    gap: 8px;
    border: 1px solid var(--secondry-bg);
    padding: 5px 15px;
    border-radius: 5px;
}
.header .liveCur img {
    width: 25px;
}
.header .liveCur h5{
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.header .user{
    /* width: 34px; */
    /* height: 34px; */
    /* padding: 2px; */
    /* border-radius: 50%; */
    /* border: 1px solid var(--secondry-bg); */
    /* cursor: pointer; */
    box-sizing: border-box;
}
.header .user img{
    width: 36px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 0;
    margin-top: 4px;
}
.header .logo a{
    display: flex;
    justify-content: start;
    align-items: center;
}
.header .logo a img {
    width: 30px;
}
.header .logo a span{
    color:var(--black);
    margin-left:5px;
}

.loginSignUp {}

.loginSignUp .signIn {
    border: 2px solid white;
    background: none;
    outline: none;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

.loginSignUp .signUp {
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.loginSignUp .signUp:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
    background: var(--primary-color);
}





/* Sidebar start */
.sidebar {
    width: 240px;
    height: auto;
    overflow-y: scroll;
    background: var(--white);
    box-shadow: 0 5px 5px var(--ddd);
    padding: 0 20px;
    padding-top: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media(max-width:768px){
    .sidebar{
        height:88vh;
    }
}
.sidebar.collapsed {
    width: 0px;
}
@media(min-width:768px){
    .sidebar.collapsed{
        width:75px
    }
}

.sidebar.collapsed .bcToken,
.sidebar.collapsed .lightDark {
    display: none;
}

.sidebar .bcToken {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.sidebar .bcToken img {
    width: 24px;
    height: 24px;
}

.sidebar .bcToken>svg {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
    background: var(--ddd);
    fill: var(--color);
    padding: 3px;
    border-radius: 3px;
}

.sidebar .bcToken h5 {
    font-size: 15px;
    font-weight: 700;
}

.sidebar .bcToken .tkper svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
    margin-right: 5px;
}

.sidebar .bcToken .tkper span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.sidebar .bcToken .info p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.sidebar .leftMenu {}

.sidebar .leftMenu ul.menuPrimary {}

.sidebar .leftMenu ul.menuPrimary>li {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    background: var(--secondry-bg);
    margin-bottom: 5px;
    /* padding: 7px; */
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    height: 38px;
    overflow: hidden;
}

.sidebar .leftMenu ul.menuPrimary>li.active {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    background: var(--secondry-bg);
    margin-bottom: 5px;
    /* padding: 7px; */
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    height: auto;
    overflow: visible;
}

.sidebar .leftMenu ul.menuPrimary li:last-child {
    margin-bottom: 0px;

}

.sidebar .leftMenu ul.menuPrimary li.active {
    background: var(--secondry-bg);
}

.sidebar .leftMenu ul.menuPrimary li .flex-between {
    padding: 7px;
}

.sidebar .leftMenu ul.menuPrimary>li:hover {
    transition: var(--transition);
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
}

.sidebar .leftMenu ul.menuPrimary>li.active:hover {
    transition: var(--transition);
    background-image: var(--secondry-bg);
}

.sidebar .leftMenu ul.menuPrimary li ul {}

.sidebar .leftMenu ul.menuPrimary li ul li {
    background: transparent;
}

.sidebar .leftMenu ul.menuPrimary li ul li:hover {
    transition: var(--transition);
    background-image: radial-gradient(85.75% 170.25% at 0% 100%, rgba(35, 238, 136, 0.15) 0%, rgba(35, 238, 136, 0) 100%);
    background-color: var(--primary-bg);
    color: var(--black);
}

.sidebar .leftMenu ul.menuPrimary li .align-center {
    gap: 10px;
}

.sidebar .leftMenu ul.menuPrimary li i {
    font-size: 16px;
    color: var(--color);
}

.sidebar .leftMenu ul.menuPrimary li a {
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
}

.sidebar .leftMenu ul.menuPrimary li svg {
    width: 18px;
    height: 18px;
    /* transform: rotate(180deg); */
    background: var(--ddd);
    fill: var(--color);
    padding: 3px;
    border-radius: 3px;
    transform: rotate(270deg);
}

.sidebar .leftMenu ul.menuPrimary li ul li svg {
    transform: rotate(180deg);
}

.sidebar .leftMenu ul.menuPrimary li ul li {
    position: relative;
}

.sidebar .leftMenu ul.menuPrimary li ul li ul {
    position: absolute;
    left: 110%;
    background: var(--secondry-bg);
    top: 0;
    width: 200px;
    border-radius: 5px;
    transform: rotateY(90deg);
    transform-origin: left;
    transition: var(--transition);
}

.sidebar .leftMenu ul.menuPrimary li ul li:hover ul {
    transition: var(--transition);
    transform: rotateY(0deg);
    transform-origin: left;
    z-index: 55;
}

.sidebar .leftMenu ul.menuPrimary li ul li ul li {
    padding: 7px;
}


.lightDark {
    background: var(--secondry-bg);
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    padding: 3px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.lightDark .dark,
.lightDark .light {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    width: 49.2%;
    border-radius: 5px;
}

.lightDark .dark svg,
.lightDark .light svg {
    width: 20px;
    fill: var(--color);
}

.lightDark .dark.active {
    background: var(--ddd);
}

.lightDark .light.active {
    background: var(--ddd);
}

.lightDark .dark span,
.lightDark .light span {
    color: var(--color);
}


/* Sidebar end */




/* Right Side */
.rightSide {
    width: calc(100% - 280px);
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--secondry-bg);
    /* padding: 0 20px; */
    padding-top: 8vh;
    /* transition: var(--transition); */
}
@media(max-width:768px){
    height:88vh;
}
.rightSide.collapsed {
    /* transition: var(--transition); */
    width: calc(100%);
}

.rightSide::-webkit-scrollbar {
    width: 4px;
}

.rightSide::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

.rightSide::-webkit-scrollbar-thumb {
    background-color: #31ee91;
    outline: 1px solid #31ee91;
    border-radius: 5px;
}

.rightSide .banner {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: 270px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: linear-gradient(262deg, var(--white) 61.46%, rgb(157, 164, 165) 180.6%);
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 19px;
}

.rightSide .banner img:nth-child(1) {
    position: absolute;
    width: 35%;
    top: 0;
    left: -10%;
}

.rightSide .banner img:nth-child(2),
.rightSide .banner img:nth-child(4)
{
    width: 60%;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.rightSide .banner img:nth-child(3) {
    width: 5%;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.rightSide .banner .info {
    position: absolute;
    left: 20%;
    text-align: center;
}

.rightSide .banner .info .bg {
    background: #a9a9a933;
    padding: 20px 50px;
    backdrop-filter: blur(12px);
    border-radius: 5px;
    margin-bottom: 15px;
}

.rightSide .banner .info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 10px;
}

.rightSide .banner .info h4:last-child {
    margin-bottom: 0;
}

.rightSide .banner .info h3 span {
    color: #31ee91;
}

.rightSide .banner .info a {
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 50px;
    border-radius: 5px;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}
@media(max-width:768px){
    .rightSide .banner .info a {
    background: var(--white);
    color: var(--black);
    padding: 11px 20px;
    font-size: 18px;
}
}
.rightSide .banner .info a:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);

}



.recentBigWin {
    width: calc(100% - 20px);
    margin: 30px auto;
}

.recentBigWin h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.recentBigWin h4 span {
    width: 8px;
    height: 8px;
    background: #31ee91;
    border-radius: 50%;
    position: relative;
    background: none!important;
}

.recentBigWin h4 span::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #31ee91;
    left: 0%;
    top: 0%;
    /* transform: translate(-50%, -50%); */
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) 0s infinite normal none running;
}

@keyframes ping {
    0% {
        transform: scale(0);
    }

    100% {
        transform: translate(-25%, -25%) scale(1);
        background: #31ee9100;
    }
}

.recentBigWin ul {
    display: flex;
    align-items: center;
}

.recentBigWin ul li {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid #31ee9100;
}

.recentBigWin ul li a {
    color: var(--color);
}

.recentBigWin ul li.active {
    border-bottom: 1px solid #31ee91;
}

.recentBigWin marquee {}

.recentBigWin .allItems {
    display: flex;
    gap: 10px;
}

.recentBigWin .item {
    width: 6%;
    animation: moveRtl 3s linear infinite;
}

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

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

.recentBigWin .item img {
    border-radius: 8px;
    margin-bottom: 5px;
}

.recentBigWin .item .info {}

.recentBigWin .item .info .align-center {
    gap: 5px;
}

.recentBigWin .item .info img {
    width: 20px;
}

.recentBigWin .item .info h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--color);
}

.recentBigWin .item .info>h5 {
    font-size: 12px;
    font-weight: 700;
    color: #31ee91;
}





.featured {
    display: flex;
    gap: 2%;
    width: calc(100% - 20px);
    margin: 30px auto;
}

.featured .left {
    width: 59%;
    display: flex;
    gap: 2%;
}

.featured .left .sinFeature {
    border-radius: 10px;
    width: 49%;
    height: 260px;
    position: relative;
}

.featured .left .sinFeature img {}

.featured .left .sinFeature .info {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.featured .left .sinFeature .info img {
    width: 25px;
}

.featured .left .sinFeature .info h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.featured .left .sinFeature h5 {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: var(--color);
}

.featured .right {
    width: 39%;
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    row-gap: 10px;
}


.featured .right .sinFeature {
    border-radius: 10px;
    width: 49%;
    height: 125px;
    position: relative;
}

.featured .right .sinFeature img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.featured .right .sinFeature .info {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 20px;
}

.featured .right .sinFeature .info img {
    width: 20px;
    position: relative;
}

.featured .right .sinFeature .info h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}


.bcOriginal {
    width: calc(100% - 20px);
    margin: 20px auto 20px;
}

.bcOriginal h4,
.lotteryDraw h4,
.latestRace h4,
.liveSports h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 22px;
}

.bcOriginal h4 a,
.lotteryDraw h4 a,
.liveSports h4 a {
    margin-right: 60px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px;
    background: var(--white);
    border-radius: 5px;
    color: var(--color);
    opacity: 0;
}

.bcOriginal .allBc {
    display: flex;
    gap: 0.5%;
}

.bcOriginal .allBc .sinbc {
    width: 12%;
    margin: 0 5px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bcOriginal .allBc .sinbc img {}

.bcOriginal .allBc .sinbc .info {
    position: absolute;
    background: #00000033;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.bcOriginal .allBc .sinbc:hover .info {
    transform: scale(1);
    transition: var(--transition);
}

.bcOriginal .allBc .sinbc .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.bcOriginal .allBc .sinbc .info i {
    color: #fff;
    padding: 12px 11px;
    border-radius: 50%;
    background: #ffffff50;
}

.bcOriginal .allBc .sinbc h5 {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00000033;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.bcOriginal .allBc .sinbc h5 i {}




.slick-next::before,
.slick-prev::before {
    color: #31ee91;
    font-size: 15px;
    background: var(--white);
}

.slick-prev:before {
    content: '➜';
    transform: rotate(-180deg);
    background: var(--white);
    width: 30px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #31ee91;
    font-size: 17px;
    opacity: 1;
}

.slick-next {
    right: 14px;
}

[dir=rtl] .slick-next {
    right: auto;
    right: 5px
}

.slick-prev {
    right: 50px !important;
    z-index: 99;
}

.slick-next:before {
    content: '➜';
    background: var(--white);
    width: 30px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #31ee91;
    font-size: 17px;
    opacity: 1;
}



.bcOriginal .slick-next,
.bcOriginal .slick-prev {
    top: -25%;
}
.liveSports .slick-next,
.liveSports .slick-prev {
    top: -17%;
}
.lotteryDraw .slick-next,
.lotteryDraw .slick-prev {
    top: -17%;
}

.liveSports {
    width: calc(100% - 20px);
    margin: 30px auto;
}

.liveSports .allLive {
    display: flex;
    gap: 1%;
}

.liveSports .sinLive {
    width: 32%;
    padding: 20px;
    margin: 0 7px;
    background: var(--white);
    border-radius: 10px;
    position: relative;
}

.liveSports .sinLive .live {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #31ee9133;
    color: #31ee91;
    padding: 5px 7px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.liveSports .sinLive .live i {
    margin-right: 5px;
    font-size: 13px;
}

.liveSports .sinLive .live h5 {
    font-size: 13px;
    font-weight: 700;
}

.liveSports .sinLive .left {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .left img {
    width: 50px;
    margin-bottom: 10px;
}

.liveSports .sinLive .left h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color);
}

.liveSports .sinLive .mid {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .mid h2 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
}

.liveSports .sinLive .mid h4 {
    font-size: 14px;
    color: var(--color);
}

.liveSports .sinLive .right {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.liveSports .sinLive .right img {
    width: 50px;
    margin-bottom: 10px;
}

.liveSports .sinLive .right h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color);
}

.liveSports .sinLive .result {
    margin-top: -6px;
    display: flex;
    justify-content: space-evenly;
}

.liveSports .sinLive .result div {
    background: #31ee9126;
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-radius: 5px;
}

.liveSports .sinLive .result div:last-child {
    background: #31ee9126;
}

.liveSports .sinLive .result h4 {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}


.lotteryDraw {
    width: calc(100% - 20px);
    margin: 30px auto;
}

.allDraw {
    display: flex;
}

.allDraw .sinDraw {
    width: 20%;
    margin: 0 7px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.allDraw .sinDraw img{
    position: absolute;
    top: -20px;
    right: -10px;
    width: 60px;
    border-radius: 50%;
    border: 10px solid var(--secondry-bg);
}


.allDraw .sinDraw:nth-child(1),
.allDraw .sinDraw:nth-child(6),
.allDraw .sinDraw:nth-child(16),
.allDraw .sinDraw:nth-child(21) {
    background: linear-gradient(rgba(244, 62, 139, 0) 0%, #f43e8b99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(2),
.allDraw .sinDraw:nth-child(7),
.allDraw .sinDraw:nth-child(17),
.allDraw .sinDraw:nth-child(22) {
    background: linear-gradient(rgba(244, 182, 62, 0) 0%, #f4b63e99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(3),
.allDraw .sinDraw:nth-child(8),
.allDraw .sinDraw:nth-child(18),
.allDraw .sinDraw:nth-child(23) {
    background: linear-gradient(rgba(230, 246, 44, 0) 0%, #e6f62c99 100%), var(--white);
}

.allDraw .sinDraw:nth-child(4),
.allDraw .sinDraw:nth-child(9),
.allDraw .sinDraw:nth-child(19),
.allDraw .sinDraw:nth-child(24) {
    background: linear-gradient(rgba(44, 246, 89, 0) 0%, #2cf65999 100%), var(--white);
}

.allDraw .sinDraw:nth-child(5),
.allDraw .sinDraw:nth-child(10),
.allDraw .sinDraw:nth-child(15),
.allDraw .sinDraw:nth-child(25) {
    background: linear-gradient(rgba(44, 125, 246, 0) 0%, #2c7df699 100%), var(--white);
}

.allDraw .sinDraw h5 {
    font-size: 15px;
    line-height: 22px;
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.allDraw .sinDraw h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.allDraw .sinDraw h3 {}

.allDraw .sinDraw h6 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 8px;
}

.allDraw .sinDraw .timing {
    margin-bottom: 10px;
}

.allDraw .sinDraw .timing .h {
    padding: 5px 7px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.allDraw .sinDraw:nth-child(1) .timing .h,
.allDraw .sinDraw:nth-child(6) .timing .h,
.allDraw .sinDraw:nth-child(16) .timing .h,
.allDraw .sinDraw:nth-child(21) .timing .h {
    background: #f43e8b99;
}

.allDraw .sinDraw:nth-child(2) .timing .h,
.allDraw .sinDraw:nth-child(7) .timing .h,
.allDraw .sinDraw:nth-child(17) .timing .h,
.allDraw .sinDraw:nth-child(22) .timing .h {
    background: #f4b63e99;
}

.allDraw .sinDraw:nth-child(3) .timing .h,
.allDraw .sinDraw:nth-child(8) .timing .h,
.allDraw .sinDraw:nth-child(18) .timing .h,
.allDraw .sinDraw:nth-child(23) .timing .h {
    background: #e6f62c99;
}

.allDraw .sinDraw:nth-child(4) .timing .h,
.allDraw .sinDraw:nth-child(9) .timing .h,
.allDraw .sinDraw:nth-child(19) .timing .h,
.allDraw .sinDraw:nth-child(24) .timing .h {
    background: #2cf65999;
}

.allDraw .sinDraw:nth-child(5) .timing .h,
.allDraw .sinDraw:nth-child(10) .timing .h,
.allDraw .sinDraw:nth-child(15) .timing .h,
.allDraw .sinDraw:nth-child(25) .timing .h {
    background: #2c7df699;
}

.allDraw .sinDraw .timing .h {}

.allDraw .sinDraw a {
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.allDraw .sinDraw a:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
}




.deposit {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(97.4%);
    margin: 0 20px 20px 20px;
}

.deposit h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
}

.deposit h1 span {
    color: #31ee91;
}

.deposit .paymentMethod {
    display: flex;
    gap: 30px;
}

.deposit .paymentMethod img {
    width: 40px;
    height: auto;
}
.deposit .currency{
    
}
@media(max-width:786px){
    .deposit{
        
    }
    .deposit h1{
        order: 3;
        font-size: 25px;
        padding-top: 11px;
    }
    .deposit .paymentMethod{
        order: 2;
    }
    .deposit .currency{
        
width: 63%;
    }
}


.latestRace {
    width: calc(100% - 20px);
    margin: 30px auto;
}

.latestRace h4 {}

.latestRace ul {
    background: var(--secondry-bg-hover);
    display: flex;
    align-items: center;
    border-radius: 7px;
}

.latestRace ul li {
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}

.latestRace ul li a {
    color: var(--color);
}

.latestRace ul li.active {
    background: var(--white);
}

.latestRace ul li.active a {
    color: var(--black)
}

.latestRace .racetab{
    display: none;
}
.latestRace .racetab.active{
    display: block;
}
.latestRace table {
    width: 100%;
    background: var(--white);
    border-radius: 7px;
    border-collapse: collapse;
}

.latestRace table thead {}

.latestRace table thead tr {
    text-align: left;
    padding: 7px;
    color: var(--black);
}

.latestRace table thead tr th {
    padding: 8px;
    font-size: 13px;
    color: var(--black);
}

.latestRace table tbody {}

.latestRace table tbody tr:nth-child(odd) {
    background: var(--secondry-bg);
}

.latestRace table tbody tr td {
    padding: 7px;
    padding: center;
    color: var(--color);
}

.latestRace table tbody tr td img {
    width: 20px;
}
.latestRace .Wager{}
.latestRace .Wager .top{
    display: flex;
    gap: 1%;
}
.latestRace .Wager .top .left{
    width: 49%;
    background: linear-gradient(45deg, #2cd97d33, var(--white));
    height: 150px;
    position: relative;
    border-radius: 10px;
}
.latestRace .Wager .top .left img{
    position: absolute;
    left: 0;
    height: 120px;
    width: 120px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}
.latestRace .Wager .top .left .info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}
.latestRace .Wager .top .left .info h5{
    font-size: 15px;
    font-weight: 600;
    color: #31ee91;
    text-align: center;
    margin-bottom: 10px;
}
.latestRace .Wager .top .left .info h6{
        font-size: 13px;
margin-bottom: 10px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
}
.latestRace .Wager .top .left .info h2{
    font-size: 25px;
    font-weight: 700;
    color: #31ee91;
    text-align: center;
}
.latestRace .Wager .top .left .info h2 span{}
.latestRace .Wager .top .right{
    width: 49%;
    display: flex;
    gap: 3%;
}
.latestRace .Wager .top .right .timeremain{
    width: 49%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
}
.latestRace .Wager .top .right .timeremain h4{
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.latestRace .Wager .top .right .remain{
    display: flex;
    align-items: center;
    gap: 10px;
}
.latestRace .Wager .top .right .remain .hour{
    background: var(--secondry-bg);
    padding: 10px;
    border-radius: 5px;
}
.latestRace .Wager .top .right .remain .hour h2{
    color: var(--color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
.latestRace .Wager .top .right .remain .hour p{
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}
.latestRace .Wager .top .right .lastChamp{
    width: 49%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.latestRace .Wager .top .right .lastChamp span{
    position: absolute;
    background: var(--primary-color);
    color: var(--black);
    padding: 5px 30px;
    transform: rotate(-45deg);
    left: -25px;
    top: 16px;
    font-size: 13px;
    font-weight: 700;
}
.latestRace .Wager .top .right .lastChamp h4{
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.latestRace .Wager .top .right .lastChamp .profil{
    display: flex;
    align-items: center;
    gap: 10px;
}
.latestRace .Wager .top .right .lastChamp .profil img{
    width: 50px;
}
.latestRace .Wager .top .right .lastChamp .profil .proDe{}
.latestRace .Wager .top .right .lastChamp .profil .proDe p{
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}
.latestRace .Wager .top .right .lastChamp .profil .proDe p i{
    
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}


.latestRace .Wager .mid{
    margin: 20px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.latestRace .Wager .mid .sinMid{
    width: calc(25% - 1px);
    border-right: 1px solid var(--secondry-bg);
}
.latestRace .Wager .mid .sinMid img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.latestRace .Wager .mid .sinMid h5{
    color: var(--color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.latestRace .Wager .mid .sinMid h4{
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center; 
}
.latestRace .Wager .mid .sinMid p{
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
}






/* Footer */
.footer {
    background: var(--white);
    padding: 40px;
}

.footer .abtHelp {
    display: flex;
    gap: 4%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}

.footer .abtHelp .abt:first-child {
    width: 53%;
}

.footer .abtHelp .abt:last-child {
    width: 43%;
}

.footer .abtHelp .abt h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.footer .abtHelp .abt p {
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 10px;
}

.footer .abtHelp .abt > a {
    font-size: 13px;
    font-weight: 600;
    background: var(--secondry-bg);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--black);
    transition: var(--transition);
}
.footer .abtHelp .abt > a:hover {
    transition: var(--transition);
    background: var(--secondry-bg-hover);
}

.footer .abtHelp .abt p a {
    color: #31ee91;

}
.footer .img{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}
.footer .img img{
    width: 12%;
}
.footer .img2{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondry-bg);
}
.footer .img2 img{
    width: 12%;
}
.footer .img2 img:nth-child(1){
    width: 10%;
}
.footer .img2 img:nth-child(2){
    width: 10%;
}
.footer .img2 img:nth-child(3){
    width: 10%;
}
.footer .img2 img:nth-child(4){
    width: 10%;
}
.footer .img2 img:nth-child(5){
    width: 10%;
}
.footer .img2 img:nth-child(6){
    width: 7%;
}
.footer .img2 img:nth-child(7){
    width: 7%;
}
.footer .img2 img:nth-child(8){
    width: 7%;
}
.footer .footerLinks{}
.footer .footerLinks .fSinMn{
    width: 13%;
}
.footer .footerLinks .fSinMn h4{
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}
.footer .footerLinks .fSinMn ul li{
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
}
.footer .footerLinks .fSinMn ul li a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color);
}
.footer .footerLinks .fSinMn ul li a svg{
    width: 20px;
    height: 20px;
    fill: #31ee91;
}



.footer .footerLinks .fSinSoc{
    width: 30%;
}
.footer .footerLinks .fSinSoc h4{
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}
.footer .footerLinks .fSinSoc ul{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer .footerLinks .fSinSoc ul li{
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
}
.footer .footerLinks .fSinSoc ul li a {
    background: var(--secondry-bg);
    padding: 8px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.footer .footerLinks .fSinSoc ul li a:hover {
    background: var(--secondry-bg-hover);
    transition: var(--transition);
}
.footer .footerLinks .fSinSoc ul li a svg{
    width: 30px;
    height: 30px;
}


.footer p.copyright{
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-top: 20px;
}
/* Footer */
/* SignUp Login start*/
.wrapSgupSin{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: var(--transition);
    z-index: 101;
}
.wrapSgupSin.active{
    background: #000000aa;
    transition: var(--transition);
    transform: scale(1);
}
.wrapSgupSin .content{
    width: 800px;
    height: 550px;
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
}
.wrapSgupSin .content{
    position: relative;
}
.wrapSgupSin .content .signClose{
    position: absolute;
    top: 20px;
    right: 20px;
}
.wrapSgupSin .content .signClose svg{
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}
.wrapSgupSin .content .signUp{
    display: none;
}
.wrapSgupSin .content .signUp.active{
    display: flex;
}
.wrapSgupSin .content .signUp .left{
    width: 50%;
    position: relative;
    height: 550px;
}
.wrapSgupSin .content .signUp .left img{
    height: 550px;
}
.wrapSgupSin .content .signUp .left .info{
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
}
.wrapSgupSin .content .signUp .left .info h1{
    color: var(--color);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}
.wrapSgupSin .content .signUp .left .info h4{
    color: var(--color);
    font-size: 15px;
    font-weight: 500;
}
.wrapSgupSin .content .signUp .right{
    padding: 20px;
    width: calc(50% - 40px);
    background: var(--secondry-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrapSgupSin .content .signUp .right h3{
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.wrapSgupSin .content .signUp .right form{
    margin-bottom: 25px;
}
.wrapSgupSin .content .signUp .right form .control{
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.wrapSgupSin .content .signUp .right form .control input{
    padding: 8px 6px;
    background: var(--form-bg);
    width: calc(100% - 12px);
    border: 1px solid var(--secondry-bg-hover);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}
.wrapSgupSin .content .signUp .right form .control input:focus{
    border: 1px solid #31ee91;
}
.wrapSgupSin .content .signUp .right form .control svg{
    position: absolute;
    width: 18px;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    fill: var(--color);
    cursor: pointer;
}
.wrapSgupSin .content .signUp .right form .refer{
    height: 25px;
    overflow: hidden;
    cursor: pointer;
}
.wrapSgupSin .content .signUp .right form .refer.active{
    height: auto;
}
.wrapSgupSin .content .signUp .right form .refer h4{
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.wrapSgupSin .content .signUp .right form .refer h4 svg{
    width: 15px;
    fill: var(--color);
    cursor: pointer;
    transform: rotate(270deg);
    transition: var(--transition);
}
.wrapSgupSin .content .signUp .right form .refer h4 svg.active{
    transform: rotate(90deg);
    transition: var(--transition);
}
.wrapSgupSin .content .signUp .right form .forget{
    margin-bottom: 10px;
}
.wrapSgupSin .content .signUp .right form .forget a{
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}
.wrapSgupSin .content .signUp .right form .control input[type="checkbox"]{
    width: 15px;
    height: 15px;
}
.wrapSgupSin .content .signUp .right form .control label{
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    color: var(--color);
    cursor: pointer;
}
.wrapSgupSin .content .signUp .right form .control label a{
    color: #31ee91;
}
.wrapSgupSin .content .signUp .right form button {
    width: 100%;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px, rgb(29, 202, 106) 0px -2px inset;
    opacity: 0.95;
    transition: var(--transition);
}

.wrapSgupSin .content .signUp .right form button:hover {
    background: linear-gradient(360deg, rgb(36, 238, 137), rgb(159, 232, 113));
    transition: var(--transition);
}
.wrapSgupSin .content .signUp .right h5{
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 20px;
}
.wrapSgupSin .content .signUp .right h5 a{
    color: #31ee91;
}
.wrapSgupSin .content .signUp .right .loginDirect{}
.wrapSgupSin .content .signUp .right .loginDirect h5{
    text-align: center;
    color: var(--color);
    position: relative;
    height: 15px;
    width: 100%;
}
.wrapSgupSin .content .signUp .right .loginDirect h5::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--secondry-bg-hover);
    left: 0;
    top: 50%;
    z-index: 1;
}
.wrapSgupSin .content .signUp .right .loginDirect h5 span{
    background: var(--secondry-bg);
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 5px;
}
.wrapSgupSin .content .signUp .right .loginDirect h4 a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--secondry-bg-hover);
    padding: 8px 0;
    color: var(--color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}
.wrapSgupSin .content .signUp .right .loginDirect h4 svg{
    width: 15px;
    fill: var(--color);
}
.wrapSgupSin .content .signUp .right .loginDirect h4 span{}
.wrapSgupSin .content .signUp .right .loginDirect ul{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.wrapSgupSin .content .signUp .right .loginDirect ul li{}
.wrapSgupSin .content .signUp .right .loginDirect ul li a{}
.wrapSgupSin .content .signUp .right .loginDirect ul li a svg{
    width: 20px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}
.wrapSgupSin .content .signUp .right .loginDirect ul li a svg:hover{
    transition: var(--transition);
    fill: #31ee91;
    background: var(--secondry-bg);
}

/* SignUp Login end */
/* searchDetails Start */
.searchDetails,
.lanCur{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondry-bg-light);
    z-index: 200;
    height: 100vh;
    overflow: hidden;
    display: none;
}
.searchDetails.active,
.lanCur.active{
    display: block;
    position: fixed;
}
.searchDetails{}
.searchDetails .head{
    /* background: #000; */
}
.searchDetails .head{
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
    /* background: #000; */
}
.searchDetails .head h4{
    font-size: 14px;
    font-weight: 600;
    color: var(--color);
}
.searchDetails .head svg,
.notification .content h5 svg{
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}
.searchDetails .body{}
.searchDetails .body .srchbr{
    display: flex;
    border: 1px solid var(--secondry-bg-hover);
    background: var(--form-bg);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.searchDetails .body .srchbr.active{
    border: 1px solid #31ee91;

}
.searchDetails .body .control{
    display: flex;
    position: relative;
}
.searchDetails .body .control label{
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}
.searchDetails .body .control select{
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.searchDetails .body .control svg{
    width: 20px;
    fill: var(--color);
    padding-left: 5px;
    margin-right: 5px;
    border-left: 1px solid var(--secondry-bg-hover);
}
.searchDetails .body .control input[type="search"]{
    width: calc(100% - 20px);
    padding: 8px 10px;
    border: none;
}
.searchDetails .body .searchDrop{
    position: absolute;
    background: var(--white);
    top: 40px;
    left: 0;
    width: calc(100% - 30px);
    border-radius: 5px;
    padding: 15px;
    z-index: 12;
}
.searchDetails .body .searchDrop{
    display: none;
}
.searchDetails .body .searchDrop.active{
    display: block;
}
.searchDetails .body .searchDrop h5{
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid var(--secondry-bg);
}
.searchDetails .body .searchDrop h5 svg{
    width: 15px;
    padding: 3px;
    border-radius: 5px;
    background: var(--secondry-bg);
    fill: var(--black);
}
.searchDetails .body .searchDrop h4{
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.searchDetails .body .searchDrop h4 a{
    color: var(--color);
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    background: var(--secondry-bg);
}
.searchDetails .body .searchDrop ul{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.searchDetails .body .searchDrop ul li a{
    display: flex;
    color: var(--color);
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    background: var(--secondry-bg);
    gap: 5px;
    align-items: center;
}
.searchDetails .body .searchDrop ul li a svg{
    width: 10px;
    fill: var(--color);
}
.searchDetails .body ul.SrchTabMenu{
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}
.searchDetails .body ul.SrchTabMenu li{
    padding: 8px 12px;
    border-radius: 5px;
}
.searchDetails .body ul.SrchTabMenu li.active{
    background: var(--white);
}
.searchDetails .body ul.SrchTabMenu li a{
    color: var(--color);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}
.searchDetails .body ul.SrchTabMenu li a svg{
    width: 15px;
    fill: var(--color);
}
.searchDetails .body .sortPro{
    margin-bottom: 15px;
}
.searchDetails .body .sortPro .control{
    border: 1px solid var(--secondry-bg-hover);
    background: var(--form-bg);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    padding: 0 8px;
    box-sizing: border-box;
}
.searchDetails .body .data{
    height: calc(100vh - 35vh);
    overflow-y: scroll;
}
.searchDetails .body .data .srAllBc {
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
}

.searchDetails .body .data .srAllBc .sinbc {
    width: 11%;
    margin: 0 0px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.searchDetails .body .data .srAllBc .sinbc img {}

.searchDetails .body .data .srAllBc .sinbc .info {
    position: absolute;
    background: #00000033;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.searchDetails .body .data .srAllBc .sinbc:hover .info {
    transform: scale(1);
    transition: var(--transition);
}

.searchDetails .body .data .srAllBc .sinbc .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.searchDetails .body .data .srAllBc .sinbc .info i {
    color: #fff;
    padding: 12px 11px;
    border-radius: 50%;
    background: #ffffff50;
}

.searchDetails .body .data .srAllBc .sinbc h5 {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00000033;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}
.searchDetails .body .data .pagination{
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.searchDetails .body .data .pagination .leftArr{}
.searchDetails .body .data .pagination .leftArr svg{
    width: 15px;
    fill: var(--black);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
}
.searchDetails .body .data .pagination input{
    width: 15px;
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    margin: 0 5px;
}
.searchDetails .body .data .pagination h5{
    font-size: 13px;
    font-weight: 700;
    color: var(--color);
}
.searchDetails .body .data .pagination h5 span{}
.searchDetails .body .data .pagination .rightArr{}
.searchDetails .body .data .pagination .rightArr svg{
    width: 15px;
    fill: var(--black);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    transform: rotate(180deg);
}



.lanCur{
    border-radius: 10px;
}
.lanCur.active{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.lanCur .content{
    width: 390px;
    background: var(--white);
}
.lanCur .content svg{
    margin: 15px;
    width: 15px;
    fill: var(--black);
    background: var(--secondry-bg-hover);
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    transform: rotate(180deg);
}
.lanCur .content ul{
    display: flex;
}
.lanCur .content ul li{
    width: 50%;
    text-align: center;
    padding: 10px ;
    font-size: 13px;
    font-weight: 600;
    color: var(--color);
    cursor: pointer;
}
.lanCur .content ul li.active{
    border-bottom: 1px solid #31ee91;
}
.lanCur .content .language{
    background: var(--secondry-bg);
    padding: 10px;
    height: 300px;
    display: none;
}
.lanCur .content .language.active{
    display: block;
}
.lanCur .content .language h5{
    font-size: 13px;
    font-weight: 600;
    color: var(--color);
    line-height: 20px;
    margin-bottom: 10px;
}
.lanCur .content .language .control{
    display: flex;
    border: 1px solid var(--secondry-bg-hover);
    border-radius: 5px;
}
.lanCur .content .language .control svg{
    background: transparent;
    transform: rotate(0deg);
    margin: 10px;
    width: 20px;
}
.lanCur .content .language .control input{
    padding: 10px;
    background: var(--secondry-bg);
    border: none;
    width: 100%;
    
}
.lanCur .content .language ul{
    display: flex;
    flex-direction: column;
    /* padding: 15px; */
    width: 100%;
}
.lanCur .content .language ul li{
    width: calc(100% - 20px);
    border: none;
}
.lanCur .content .language ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}
.lanCur .content .language ul li a .bar{
    width: 10px;
    height: 10px;
    border: 2px solid var(--secondry-bg-hover);
    border-radius: 50%;
}
.lanCur .content .language ul li.active a .bar{
    width: 10px;
    height: 10px;
    border: 2px solid #31ee91;
    border-radius: 50%;
}



.notification{
    position: absolute;
    right: 100%;
    top: 0;
    height: 91vh;
    z-index: 999;
    width: 390px;
    background: var(--white);
    padding: 15px;
}
.notification.active{
    right: 0%;
}
.notification .content h5{
    font-size: 14px;
    font-weight: 600;
    color: var(--color);
}
.notification .content .body{
    background: var(--secondry-bg);
    height: 83vh;
    margin-top: 2vh;
    padding: 10px;
    overflow: hidden;
}
.notification .content .body ul{
    display: flex;
    justify-content: space-between;
    background: var(--secondry-bg-hover);
    border-radius: 5px;
    margin-bottom: 15px;
}
.notification .content .body ul li{
    width: calc(33% - 24px);
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
}
.notification .content .body ul li.active{
    background: var(--white);
}
.notification .content .body .info{
    overflow: hidden;
}
.notification .content .body .info .promotion{
    height: 77vh;
    overflow: scroll;
}
.notification .content .body .info .promotion .sinPromo{
    background: var(--white);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.notification .content .body .info .promotion .sinPromo h5{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color);
}
.notification .content .body .info .promotion .sinPromo h4{
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.notification .content .body .info .promotion .sinPromo .ggg{
    height: 100px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.notification .content .body .info .promotion .sinPromo .ggg.active{
    height: auto;
    overflow: hidden;
}
.notification .content .body .info .promotion .sinPromo .ggg img{
    margin-bottom: 10px;
}
.notification .content .body .info .promotion .sinPromo .ggg p{
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    line-height: 20px;
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide{
    text-align: right;
    position: absolute;
    bottom: 15px;
    right: 10px;
    cursor: pointer;
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide .show{
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--secondry-bg-hover);
    font-size: 13px;
    color: var(--color);
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide .hide{
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--secondry-bg-hover);
    font-size: 13px;
    color: var(--color);
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide .show{
    display: block;
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide .hide{
    display: none;
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide.active .hide{
    display: block;
}
.notification .content .body .info .promotion .sinPromo .ggg .showHide.active .show{
    display: none;
}

.notification .content .body .info .promotion .sinPromo .det{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notification .content .body .info .promotion .sinPromo .det a{
    background: var(--secondry-bg);
    padding: 8px 12px;
    color: var(--color);
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
}
.notification .content .body .info .promotion .sinPromo .det a svg{
    background: transparent;
    width: 15px;
    fill: var(--color);
}
.notification .content .body .info .tabpan{
    display: none;
}
.notification .content .body .info .promotion.active{
    display: block;
}
.notification .content .body .info .transactions.active{
    display: block;
}
.notification .content .body .info .system.active{
    display: block;
}
.notification .content .body .info .tabpan{}
.notification .content .body .info .transactions{
    padding: 10px;
}
.notification .content .body .info .transactions img{}
.notification .content .body .info .transactions h5{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.notification .content .body .info .system{
    background: var(--white);
    padding: 10px;
    border-radius: 5px;
}
.notification .content .body .info .system h5{
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    margin-bottom: 10px;
}
.notification .content .body .info .system h4{
    font-size: 15px;
    font-weight: 600;
    color: var(--color);
    margin-bottom: 10px;
}
.notification .content .body .info .system p{
    font-size: 13px;
    font-weight: 500;
    color: var(--color);
    line-height: 20px;
}




.slick-dots{
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-flex !important;
    background: #ededed65;
    width: auto;
    padding: 5px;
    border-radius: 3px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button ,
.slick-dots li button {
    padding: 4px;

}
.slick-dots li.slick-active button ,
.slick-dots li.slick-active button {
   background: #31ee91;
    color: var(--secondry-bg);
}



.heroSlider{
    margin: 15px;
}
.heroSlider .item{
    margin: 0 7px;
}
.heroSlider .item img{}
.heroSlider .item .garadientColor{
    /* position: absolute;
    background: #000;
    width: 600px;
    height: 600px;
    top: 0;
    left: 0; */
}


.footerMenu{
    display: none;
}
.fmenuBig{
    display: none;
}
/* searchDetails end */
/* Right Side */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

.customSlider_app-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    z-index: 1;
    padding: 15px 0 15px;
    margin-bottom: 30px;
}

.customSlider_background-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
    transition: background 0.5s ease-in-out;
    z-index: -1;
    opacity: 0.16;
}

.customSlider_slider-container {
    width: 100%;
    max-width: 1400px;
    padding: 0;
    position: relative;
}

.customSlider_slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.customSlider_slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    padding: 0px 0;
}

.customSlider_slider-item {
    flex: 0 0 calc(100% / 1);
    padding: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 0;
}

@media (min-width: 768px) {
    .customSlider_slider-item {
        flex: 0 0 calc(100% / 3);
    }
}

.customSlider_slider-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.customSlider_slider-item.active img {
    /* transform: scale(1.05); */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.customSlider_slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
}

.customSlider_slider-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.customSlider_slider-arrow.left {
    left: 10px;
}

.customSlider_slider-arrow.right {
    right: 10px;
}

.customSlider_slider-arrow svg {
    width: 24px;
    height: 24px;
}

.customSlider_navigation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    z-index: 20;
    background-color: #ffffff00;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0%);
}

.customSlider_navigation-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customSlider_dot {
    position: relative;
    height: 8px;
    width: 8px;
    background-color: #e5e7eb;
    border-radius: 10031px;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

@media (max-width: 768px) {
    .customSlider_dot {
        /* width: 40px; */
    }
}

.customSlider_dot:hover {
    background-color: #d1d5db;
}

.customSlider_dot.active {
    background-color: #e5e7eb;
    width:70px;
}

.customSlider_progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #10b981;
    width: 0%;
    transition: width linear;
}