@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root{
    --primary: #2f8911;
}
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #fafafa;
    font-family: "Poppins", system-ui;
    overflow-y: hidden;
    overflow-x: hidden;
}

ul.CTAs {
    list-style: none;
    margin-right: 40px;
    margin-bottom: 70px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.modal-content {
    border-radius: 10px;
}
.modal-header {
    border-radius: 10px;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.header-main {
    background: #3ab0f6;
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
}

.img999 {
    display: none;
}

.brg2 {
    display: none;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: black;
}

#dismiss i {
    color: white;
    /* Default icon color */
}
#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--primary);
    position: absolute;
    top: 25px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: white;
}

#dismiss:hover i {
    color: black;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    z-index: 999;
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid white;
}

#sidebar ul li a svg{
    vertical-align: unset !important;
}
#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: flex;
    color: white;
}

#sidebar ul li a:hover {
    padding: 10px;
    font-size: 0.9em;
    display: flex;
    color: black;
    background-color: white;
}

button#sidebarCollapse {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn {
    background: transparent;
    font-size: 25px;
    color: white;
    padding: 5px 0px;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-header .Uname {
    display: block;
    font-weight: 500;
}

.sideMenu span {
    padding-left: 5px;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0px;
    margin-left: 2px;
}
.overlay.active {
    display: block;
    opacity: 1;
}

button.btn-login {
    text-align: center;
    display: block;
    width: 100%;
    background: #3ab0f6;
    font-size: 16px;
    color: #fff;
    padding: 12px;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: 20px;
}

button.btn-login #withdraw-button:disabled {
    opacity: 50%;
    cursor: no-drop;
}
button.btn-login:hover {
    color: #fff;
    cursor: pointer;
    background-color: black;
}

.card {
    background: white;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    box-shadow: 0px 0px 3px 0px #d8d8d8;
    font-size: 14px;
    line-height: 12px;
    padding: 24px;
    margin-top: 23px;
}

.card2 {
    background: white;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    box-shadow: 0px 0px 3px 0px #d8d8d8;
    font-size: 14px;
    line-height: 12px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
}

.card2::-webkit-scrollbar {
    width: 6px;
}

.card2::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.card2::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
    width: 4px;
}

.card2::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input {
    margin-bottom: 6px;
}
/* ex */

.form-group {
    position: relative;
}
.alert-success {
    background: #19af66 !important;
}
.alert-main {
    z-index: 1;
    max-width: 385px;
    /*max-width: 475px;*/
    height: 60px;
    padding: 20px;
    background: #f35746;
    border-radius: 6px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
    position: fixed;
    right: 0;
    left: 0;
    margin: auto;
    top: 30px;
    box-shadow: rgb(0 0 0 / 36%) 0px 3px 27px;
}

.alert-close {
    align-content: center;
    height: 20px;
}
.alert-close i {
    color: white;
    cursor: pointer;
}

.alert-text {
    flex: 1 1 0;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.alert-danger {
    /*width: 30%;*/
    position: fixed;
    right: 0;
    left: 0;
    width: 25%;
    margin: auto;
    top: 30px;
    box-shadow: rgb(0 0 0 / 36%) 0px 3px 27px;
}
.alert {
    margin-bottom: 0px !important;
}

p {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #4b6a7b;
}
a.btn2 {
    width: 100%;
    display: block;
    padding: 12px;
    border-radius: 0.375rem;
    text-align: center;
    color: #3ab0f6;
    border: 2px solid #3ab0f6;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

a.btn2:hover {
    color: white;
    background: #3ab0f6;
}
.fgpass {
    color: #3ab0f6;
    text-align: end;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
    justify-content:center;
}

a.download {
    background: #fff;
    color: black !important;
}

a.article,
a.article:hover {
    background: black !important;
    color: #fff !important;
}
.navbar {
    padding: 10px 10px;
    background: var(--primary);
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-white {
    color: #212529;
    background-color: #fff;
    border-color: #f8f9fa;
}

.footer {
    position: fixed;
    bottom: 0 !important;
    /* width: 100%; */
}

.footer-inner {
    padding: 16px 0px 16px 0px;
}

.ficon {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
    padding: 0 90px;
}

.ficon:hover svg path,
.ficon:hover svg ellipse {
    stroke: #3ab0f6;
}

.ficon:hover .footext {
    color: #3ab0f6;
}

.ficon svg path,
.ficon svg ellipse,
.ficon .footext {
    transition: stroke 0.3s ease, color 0.3s ease;
}

.footext {
    font-size: 16px;
}

.footer-link:hover svg path,
.footer-link:hover svg ellipse,
.footer-link:hover .footext {
    stroke: #3ab0f6;
    color: #3ab0f6;
}
.footer-link svg path,
.footer-link svg ellipse,
.footer-link .footext {
    transition: stroke 0.3s ease, color 0.3s ease;
}
.footer-link.active svg path,
.footer-link.active svg ellipse,
.footer-link.active .footext {
    stroke: #3ab0f6;
    color: #3ab0f6;
}
#footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background-color: #000;
    box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.12);
    min-height: 60px;
    height: calc(62px + (constant(safe-area-inset-bottom)) * 1.1);
    height: calc(62px + (env(safe-area-inset-bottom)) * 1.1);
    display: flex;
    text-align: center;
}

#footer-bar a {
    color: #fff;
    padding-top: 12px;
    position: relative;
    flex: 1 1 auto;
}

#footer-bar a i {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

#footer-bar a span {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 10px;
    font-weight: 500;
    margin-top: -4px;
    opacity: 0.7;
    font-family: Roboto, sans-serif !important;
}
img.bg1 {
    width: 40px;
    height: 40px;
}

.digit6 {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}
.code-inputs {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
    justify-content: center;
    width: 42%;
    margin: 0 auto;
}

.code-inputs input {
    width: 100%;
    height: 43px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.btn3 {
    background-color: #fff;
    color: #4b6a7b;
    padding: 9px 16px;
}

form {
    margin-top: 50px;
}

svg.burgermenu {
    margin-left: 17px;
    /*margin-right: 16px;*/
}

.pamount {
    font-size: 16px;
}

.number-grid {
    display: grid;
    grid-gap: 10px;
    padding: 20px;
    grid-template-columns: repeat(10, 1fr);
}

.form-control {
    border-radius: 4px;
    border: 1px solid #cdceea;
    padding: 12px;
    height: 40px;
    font-size: 16px;
    color: #164561;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

td.bet-label {
    width: 65px;
    padding-top: 20px !important;
    font-weight: 600;
}

.hedrtext {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
}

.hesvg {
    margin-right: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn-login {
    text-align: center;
    display: block;
    width: 100%;
    background: #3ab0f6;
    font-size: 16px;
    color: #fff;
    padding: 12px;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    /* margin-top: 30px; */
}

a.btn-login:hover {
    color: #fff;
    cursor: pointer;
    background-color: black;
}
a.btn-login,
button.btn-login {
    margin-top: 30px;
    margin-bottom: 30px;
}
.rupistext {
    background-color: white;
    border-radius: 7px;
    border: 1px solid rgba(14, 44, 61, 0.19);
    padding: 10px;
    color: #164561;
    font-size: 18px;
    font-weight: 400;
}

/* Active state */
.rupistext.active {
    background-color: #22aae1;
    color: #fff !important;
    border: 2px solid #22aae1;
}

.nav-pills {
    margin-top: 18px;
    border-radius: 6px;
    background: #efefef;
    overflow: hidden;
    padding: 4px;
}
.nav-pills .nav-link {
    border-radius: 0;
    color: black;
    background: transparent;
    font-weight: 600;
}
.nav-pills .nav-link:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.nav-pills .nav-link:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.nav-pills .nav-link {
    border-radius: 0;
    color: black;
    background: #efefef;
    font-weight: 600;
}

.nav-pills .nav-link.active {
    background-color: white;
    color: #3ab0f6;
    font-weight: 700;
    font-size: 15px;
    height: 100%;
}
.nav-pills .nav-link {
    border-radius: 0;
    color: black;
    background: #efefef;
    font-weight: 500;
    font-size: 15px;
}

.nav-item {
    flex: 1; /* Make tabs span equally */
    align-content: center;
}
.betting-is-running {
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
    font-weight: 600;
}
.game-status {
    position: absolute;
    /*top: 1px;*/
    left: calc(50% - 121px);
    border-radius: 0px 0px 8px 8px;
    background-color: #e6ffde;
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 24px;
}
.game-status-close {
    position: absolute;
    /*top: 1px;*/
    left: calc(50% - 95px);
    border-radius: 0px 0px 8px 8px;
    background-color: #ffdddd;
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 24px;
}
.game-status-start {
    position: absolute;
    /*top: 1px;*/
    left: calc(50% - 125px);
    border-radius: 0px 0px 8px 8px;
    background-color: #fff3cd;
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 24px;
}
.gaziabad-win {
    align-self: stretch;
    position: relative;
    line-height: 20px;
    font-weight: 500;
}
.div1 {
    position: relative;
    font-size: 12px;
    line-height: 20px;
    color: #4b6a7b;
}
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.ticket-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.winner1 {
    position: relative;
    letter-spacing: -0.26px;
    line-height: 22.79px;
    font-weight: 600;
}
.i {
    position: relative;
    font-size: 20.51px;
    letter-spacing: -0.26px;
    line-height: 22.79px;
    font-weight: 600;
}
.winner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: #4b6a7b;
}
.winner-announced {
    width: 100%;
    position: relative;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #cdceea;
    box-sizing: border-box;
    height: 200px;
    text-align: center;
    font-size: 10px;
    color: #2f8911;
}
.winner-announced:nth-child(even) {
    background-color: #ffe2f2;
}
.winner-announced:nth-child(odd) {
    background-color: #d2ffed;
}
.winner-close {
    color: #2f8911;
}
.ticket-header {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.main-content-child {
    align-self: stretch;
    position: relative;
    border-top: 0.5px solid #4b6a7b;
    box-sizing: border-box;
    height: 0.5px;
}
.bid-starts {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
    font-size: 13px;
    font-weight: 600;
    color: red;
}
.pm {
    align-self: stretch;
    position: relative;
    font-size: 15px;
    letter-spacing: -0.23px;
    line-height: 20px;
    color: #0e2c3d;
    font-weight: 600;
}

.ticket-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.open-result {
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
    font-size: 13px;
    font-weight: 600;
    color: red;
}
.time {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: #4b6a7b;
    border: 1px solid #dcdcdc;
    background-color: #f6f6f6;
    padding: 2px 10px;
}
.play-game {
    position: relative;
    line-height: 20px;
    font-weight: 500;
    color: white;
    text-decoration: none;
}
.buttons {
    cursor: pointer;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.02), 0px 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 47px;
    background: linear-gradient(180deg, #5fd047, #2f8911);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
}

.buttons a:hover {
    color: white; /* Keep the hover color white */
    text-decoration: none; /* Remove underline on hover */
}

/* Style for disabled state */
.buttons.disabled {
    background: linear-gradient(
            180deg,
            rgba(47, 137, 17, 0.5),
            rgba(95, 208, 71, 0.5)
    ); /* Linear gradient */
    color: white;
    cursor: not-allowed;
    pointer-events: none;
}
.main-content {
    top: 25px;
    position: absolute;
    width: calc(100% - 31px);
    right: 15px;
    bottom: 17px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 16px;
    color: #0e2c3d;
}
.betting-is-close {
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
    font-weight: 600;
    color: #d51010 !important;
}
.betting-is-start {
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
    font-weight: 600;
    color: #b76c04 !important;
}
.tablerclock-icon {
    width: 9px;
    position: relative;
    height: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
#content {
    overflow-y: auto;
    max-height: 90vh;
    width: 100%;
    padding: 0px;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    padding-bottom: 100px;
    overflow-x: hidden;
}

#content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
    width: 4px;
}

#content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.time-left {
    margin-left: 2px;
    margin-left: 2px;
    position: relative;
    letter-spacing: -0.23px;
    line-height: 20px;
}

.tablerclock-parent {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 10px;
    color: #d51010;
}
.timem-left {
    width: 54px;
    position: relative;
    height: 38px;
}
.wrapper-time {
    position: absolute;
    top: 18px;
    /*left: 2px;*/
    right:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.cta {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    text-align: right;
    font-size: 12px;
    color: #fff;
}
.div {
    color: #0e2c3d !important;
}
.lottery-mobile {
    display: none;
}
.bgrasi {
    background-color: #edffe9;
    padding: 15px;
}

.btnn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd6d8;
    border-radius: 4px;
    padding: 4px;
    height: 38px;
    width: 38px;
}

.btnn:hover {
    background-color: #ffb3ba;
}
.senumbr {
    padding: 15px 16px;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 24px;
}
.place {
    margin-top: 20px;
    margin-bottom: 10px;
}
.table > :not(caption) > * > * {
    padding: 5px;
    background-color: transparent;
    border-bottom-width: none;
    box-shadow: none;
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: none;
}

table,
th,
td {
    border: none;
}
#addBet {
    width: 100%;
    background-color: #226790;
    border-radius: 8px;
    color: #fff;
    margin-top: 8px;
    padding: 10px;
}
#reset-bets {
    border-radius: 10px;
    background: #ffffff;
    color: #0E2C3D !important;
    font-weight: 500;
    padding: 10px;
    border: 1px solid #008CE1;
}

#reset-bets:hover {
    text-decoration: underline;
}
#continue {
    border-radius: 10px;
    background: #3ab0f6;
    color: #fff;
    padding: 10px;
}
.rupish {
    padding-left: 0px;
}
input.form-control.pointinputbox[readonly] {
    background-color: white;
}
.btn-check:focus + .btn,
.btn:focus {
    box-shadow: none;
}
.totbid {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    color: rgba(0, 0, 0, 0.6);
}
#total_point2 {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

th.text-right {
    padding: 20px 34px;
}
th.text-end {
    padding: 20px 34px;
}
td.text-right {
    padding: 18px 34px;
    background-color: #fafafa;
}
td.text-end {
    padding: 18px 34px;
    background-color: #fafafa;
}
tr.numform {
    background-color: #e2f4ff;
}
.pamount {
    font-size: 16px;
}
.datee {
    border-radius: 4px;
    border: 1px solid #cdceea;
    padding: 10px;
}

.amounttext {
    padding-bottom: 10px;
}

/* ============== playtablel ================ */
.bid-summary {
    display: flex;
    padding: 20px;
    font-weight: 600;
    justify-content: center;
}

.bid-text {
    border-right: 2px solid black;
    padding-right: 10px;
    font-size: 28px;
    line-height: normal;
    font-size: 28px;
}

.bid-text:last-child {
    border-right: none;
    padding-left: 10px;
}

.totbid2 {
    margin-top: 20px;
    margin-bottom: 30px;
}

#reset-bets1 {
    border-radius: 10px;
    background: #d7d8d9;
    color: #0e2c3d;
}

#continue1 {
    border-radius: 10px;
    background: #3ab0f6;
    color: #fff;
}

.number-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    /* padding: 10px; */
}

.number-circle svg text {
    font-size: 18px;
    font-family: Arial, sans-serif;
    text-anchor: middle;
    dominant-baseline: middle;
    fill: black;
}

.selecttext {
    color: #0e2c3d;
    font-size: 20.291px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

/*-------- playgame model----------- */
.gradient-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #0e2c3d 0%, #3ab0f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}
.gradient-text-summary {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #0e2c3d 0%, #3ab0f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}
.popup-img {
    margin-top: 30px;
    text-align: center;
    margin-bottom: 17px;
    display: block;
}

.popup-img1 {
    display: none;
}

.gradient {
    text-align: center;
}

.gradient-p {
    margin-top: 16px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.gradient-p-sum {
    margin-top: 16px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.gradient-p-sum1 {
    margin-top: 16px;
    margin: auto;
    max-width: 390px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.gradient-a {
    color: #3ab0f6;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.modal-dialog {
    max-width: 600px;
}

/* =======lottery page ============ */
.lottery {
    display: block;
}

.lottery-mobile {
    display: none;
}
.prize-table {
    border-collapse: separate;
    border-spacing: 0;
}

.prize-table th,
.prize-table td {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ddd;
}

.prize-table th {
    background-color: #922957;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.prize-table td {
    font-size: 14px;
    font-weight: 700;
    color: #0e2c3d;
}

.prize-table th:first-child {
    border-top-left-radius: 8px;
}

.prize-table th:last-child {
    border-top-right-radius: 8px;
}

.prize-table td:first-child {
    border-bottom-left-radius: 8px;
    font-size: 18px;
}
.prize-table td:nth-child(2) {
    font-size: 16px;
}

.prize-table td:last-child {
    border-bottom-right-radius: 8px;
}
.TicketLtMain {
    position: relative;
    margin: 11px 0 14px 0;
}
.PurchaseTicket {
    background-color: #e9e9e9;
    border-radius: 8px 8px 0px 0px;
    padding: 10px calc(15px - 12px);
}
.LotteryGame {
    font-size: 18px;
    font-weight: 500;
    color: #0e2c3d;
}
.SerialNum {
    font-size: 14px;
    font-weight: 400;
    color: #0e2c3d99;
}

.LotteryNum {
    font-size: 14px;
    font-weight: 400;
    color: #0e2c3d99;
}

.LotteryGameNum {
    font-size: 16px;
    font-weight: 700;
    color: #0e2c3d;
}
.TicketPriceLottery {
    font-size: 14px;
    font-weight: 400;
    color: #00000080;
}
.LotteryGameInr {
    font-size: 16px;
    font-weight: 500;
    color: #000000e5;
}
.HalfCircle {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: 41%;
    left: -15px;
}

.HalfCircle1 {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: 41%;
    right: -15px;
}
.PurchaseTicket1 {
    background-color: #e9e9e9;
    border-radius: 0px 0px 8px 8px;
    padding: 16px calc(15px - 12px);
    border-top: 1px dashed #d4d4d4;
}
.PurchasedBtn {
    background-color: #0e2c3d;
    padding: 8px 12px;
    border-radius: 48px;
    border: none;
    cursor: default !important;
    gap: 3px;
}
.PurchasedBtn span {
    font-size: 16px;
    font-weight: 400;
    color: white;
}
.RemoveLotteryBtn {
    background-color: #ffd7d7;
    padding: 8px 12px;
    border-radius: 48px;
    border: none;
}

.RemoveLotteryBtn span {
    font-size: 14px;
    font-weight: 400;
    color: #d92d2d;
}
.TicketMainDiv {
    border: 1px solid gainsboro;
    border-radius: 8px;
    position: relative;
    padding: 15px 25px 32px 25px;
}
.PickNumber {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}
.SideCircleDiv {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 0% 50% 50% 0%;
    bottom: 29%;
    left: -22px;
    border-right: 1px solid gainsboro;
}

.SideCircleDiv1 {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 50%;
    bottom: 29%;
    right: -22px;
    border-left: 1px solid gainsboro;
}
.AddAmountMainButton {
    border-top: 1px dashed #cdceea;
}
.AddAmountButton {
    width: 100%;
    border: none;
    background-color: #19AF66;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    margin: 20px 0 20px 0;
}
.TicketNum {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.23000000417232513px;
    color: #000000;
}
.generateBtn {
    border: 1px solid #008ce1;
    border-radius: 30px;
    background-color: white;
    padding: 8px 50px;
    color: #008ce1;
    font-weight: 700;
    display: flex;
    margin: 20px auto;
}
.TotalLotteryAmount {
    font-size: 18px;
    font-weight: 400;
    color: #00000099;
}
.PriceAddText {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.48px;
    text-align: left;
    color: black;
}
.ContinueButton {
    width: 100%;
    border: none;
    background-color: #3ab0f6;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
}
.ContinueButton:disabled {
    opacity: 55%;
}
.offer-card {
    border-radius: 24px 24px 0 0;
    text-align: center;
    padding: 20px 20px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    /* margin-bottom: 30px; */
}
.jackpot-1 {
    background-color: #002437;
}

.jackpot-2 {
    background-color: #451d3f;
}

.jackpot-3 {
    background-color: #5b0103;
}
.jackpot-4 {
    background-color: #285B01;
}
.offer-title {
    padding-bottom: 10px;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    border-bottom: 3px solid;
    border-image: linear-gradient(
            270deg,
            #c78937 0%,
            #d9d638 19.88%,
            #f0b05b 47%,
            #f6e41d 72.8%,
            #f0b05b 100%
    );
    border-image-slice: 1;
}
.jackpot-title {
    font-size: 19.93px;
    font-weight: 600;
    letter-spacing: 3.1658830642700195px;
    margin-top: 14px;
}
.jackpot-description {
    font-family: "Poppins";
    font-size: 14.42px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #ffffffb2;
}

.circle {
    background-color: #fafafa;
    width: 41px;
    height: 47px;
    border-radius: 50%;
    right: -12px;
    position: absolute;
    bottom: 38%;
}

.circle1 {
    background-color: #fafafa;
    width: 41px;
    height: 47px;
    border-radius: 50%;
    left: -12px;
    position: absolute;
    bottom: 38%;
}
/* ************************************************************ LOTTERY SUMMARY START *********************************************************************** */

.LotterySummaryMain {
    border: 1px solid #cdceea;
    border-radius: 10px;
}
.LotteryGameText {
    font-size: 18px;
    font-weight: 500;
    color: #0e2c3d;
}
.LotteryGameTextSummary {
    font-size: 10px;
    font-weight: 400;
    color: #00000080;
}
.LotteryGameInrSummary {
    font-size: 18px;
    font-weight: 500;
    color: #000000e5;
}

.LotterySummaryHeading {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
}
.TicketsPurchased {
    background-color: #e2f4ff;
}
.TicketsPurchasedText {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding: 22px 0 22px 0;
}
.TicketPurScroll {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.TicketPurScroll::-webkit-scrollbar {
    width: 0.4em;
}

.TicketPurScroll::-webkit-scrollbar-thumb {
    background-color: #00000080;
    border-radius: 10px;
}

.TicketPurScroll:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.TotalSumAmount {
    font-size: 20px;
    font-weight: 400;
    color: #00000099;
}
.TotalSumAmountNum {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}
.BackBtn {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    color: #0e2c3d;
    border: 1px solid #008CE1;
    font-weight: 500;
}
.BackBtn:hover{
    text-decoration: underline;
}
.ContinueBtn {
    background-color: #3ab0f6;
    border-radius: 10px;
    padding: 10px 0;
    color: #ffffff;
}
.mainDiv {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.5, 1);
}
.mainDiv:hover {
    /*transform: translate3d(0px, -15px, 0);*/
    transform: scale(1.05);
}

.mainDivWinnerList {
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../images/bg1.png");
    /*background-repeat: round;*/
    background-repeat: no-repeat;
    background-size: cover;
    /*max-width: 290px;*/
    max-width: 95%;
    border-radius: 10px;
    border: 1px solid #cdceea;
}
.mainDivWinnerList2 {
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../images/bg11.png");
    /*background-repeat: round;*/
    /*max-width: 290px;*/
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 95%;
    border-radius: 10px;
    border: 1px solid #cdceea;
}
.mainDivWinnerList3 {
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../images/bg111.png");
    /*background-repeat: round;*/
    /*max-width: 290px;*/
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 95%;
    border-radius: 10px;
    border: 1px solid #cdceea;
}

.add_fund,.withdraw{
    width: 50%;
}

.Databadge {
    width: 91px;
    height: 22px;
    background-color: #226790;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
    margin: auto;
}
.winner-title {
    margin-top: 14px;
    font-size: 13.35px;
    font-weight: 600;
    color: #451d3f;
    text-align: center;
}
.jackpot-title-win {
    font-size: 15.37px;
    font-weight: 700;
    letter-spacing: 2.225806474685669px;
    text-align: center;
    color: #451d3f;
}
.mainPrize {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 5px 15px;
    border-bottom: 1px solid #cdceea;
}
.mainPrize:last-child {
    border-bottom: none;
}

.mainWinDiv {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*max-width: fit-content;*/
    margin: auto;
    /*gap: 20px;*/
}
/* ************************************************************ LOTTERY SUMMARY END *********************************************************************** */

/* ************************************************************ FUND START *********************************************************************** */
.card {
    border: 1px solid #cdceea;
    border-radius: 10px;
    /* padding: 24px 69px; */
}
.card1 {
    border: 1px solid #cdceea;
    border-radius: 10px;
    padding: 24px 25px;
}
.card2 {
    background-color: #e9e9e9;
    border-radius: 10px;
    padding: 24px 25px;
}

.AddFunText {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}
.QrAdd {
    font-size: 12px;
    font-weight: 400;
    color: #00000099;
}
/* .qrimage {
    height: 407px;
    width: 400px;
  } */
/* .upiimage{
  width: 66px;
  height: 49px;
  } */
.QrMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.imageUpload {
    border: 1px dashed #cdceea;
    display: none;
}
.imageUpload1 {
    border: 1px dashed #cdceea;
    margin-top: 10px;
    width: 100%;
    padding: 12px 0 12px 0;
}
.label {
    width: 100%;
}

.UploadSS {
    font-size: 16px;
    font-weight: 400;
    color: #00000066;
}

.InputFundGroup {
    border-left: 1px solid #00000033;
}
.WithdrawAmount {
    font-size: 24px;
    font-weight: 700;
    color: #0e2c3d;
}
.AvailableAmount {
    font-size: 16px;
    font-weight: 400;
    color: #00000066;
}
.AvailableAmountNum {
    font-size: 32px;
    font-weight: 700;
    color: #0e2c3d;
}
.ACInfo {
    font-size: 14px;
    font-weight: 400;
    color: #0e2c3d99;
    margin-bottom: 0px;
}
.ACInfoDetail {
    font-size: 18px;
    font-weight: 500;
    color: #0e2c3d;
    margin-bottom: 0px;
}

.bank-details {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
/* ************************************************************ FUND END *********************************************************************** */

.jackpot-amount {
    font-size: 52.5px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}
.lakh {
    font-size: 30.15px;
    font-weight: 700;
    color: #ffffff;
}
.lowerDiv {
    background-color: #104899;
    border-radius: 0 0 24px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ticket-price1 {
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 400;
    line-height: 25.63px;
    letter-spacing: -0.1965048611164093px;
    text-align: center;
    justify-content: center;
    color: #ffffff;
    padding: 9px 14px;
    /* margin-top: 8px; */
}
.buy-btn {
    position: relative;
    font-size: 21.28px;
    padding: 10px 21px;
    background-color: #002437;
    transition: all 0.3s ease;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
    outline: none;
    border: none;
    color: white;
    font-weight: 500;
}

.buy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(
            270deg,
            #c78937 0%,
            #d9d638 19.88%,
            #f0b05b 47%,
            #f6e41d 72.8%,
            #f0b05b 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
.buy-btn:hover,.buy-btn2:hover,.buy-btn3:hover,.buy-btn4:hover{
    background-color: #a21c1c;
    transform: scale(1.05   );
}

.buy-btn2 {
    position: relative;
    font-size: 21.28px;
    padding: 10px 21px;
    background-color: #451d3f;
    transition: all 0.3s ease;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
    outline: none;
    border: none;
    color: white;
    font-weight: 500;
}

.buy-btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(
            270deg,
            #c78937 0%,
            #d9d638 19.88%,
            #f0b05b 47%,
            #f6e41d 72.8%,
            #f0b05b 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
.buy-btn,   .buy-btn2,.buy-btn3,.buy-btn4:disabled{
    cursor: no-drop;
}
.buy-btn3 {
    position: relative;
    font-size: 21.28px;
    padding: 10px 21px;
    background-color: #5b0103;
    transition: all 0.3s ease;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
    outline: none;
    border: none;
    color: white;
    font-weight: 500;
}

.buy-btn3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(
            270deg,
            #c78937 0%,
            #d9d638 19.88%,
            #f0b05b 47%,
            #f6e41d 72.8%,
            #f0b05b 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    /* z-index: -1; */
}
.buy-btn4 {
    position: relative;
    font-size: 21.28px;
    padding: 10px 21px;
    background-color: #285B01;
    transition: all 0.3s ease;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
    outline: none;
    border: none;
    color: white;
    font-weight: 500;
}

.buy-btn4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(
            270deg,
            #c78937 0%,
            #d9d638 19.88%,
            #f0b05b 47%,
            #f6e41d 72.8%,
            #f0b05b 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    /* z-index: -1; */
}
.draw-details {
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.23000000417232513px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #ffffff;
}

.separator {
    display: inline-block;
    height: 50px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 100%;
    transform: translateY(-50%);
}

.separator:nth-child(2) {
    left: -10px;
    right: auto;
}

.lowerDiv2 {
    background-color: #3a1234;
    border-radius: 0 0 24px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lowerDiv3 {
    background-color: #2e0002;
    border-radius: 0 0 24px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lowerDiv4 {
    background-color: #142E00;
    border-radius: 0 0 24px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.rupees {
    font-family: " Rounded Mplus" 1c Bold;
    font-size: 30.15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

/* ***************************************** EXTRA PERTICULAR CLASS ******************************************* */
span.walletamt {
    background: #fff;
    padding: 6px 15px;
    border-radius: 4px;
}
a.btn-login2 {
    text-align: center;
    display: block;
    width: 100%;
    background: #3ab0f6;
    font-size: 16px;
    color: #fff;
    padding: 12px;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: 30px;
}
a.btn-login2:hover {
    color: #fff;
    cursor: pointer;
    background-color: black;
}
a.btn2 {
    margin-top: 12px;
}

/* ************************************* playtablel ************************************************ */
.bid-summary {
    display: flex;
    padding: 20px;
    font-weight: 600;
    justify-content: center;
}
.bid-text {
    border-right: 2px solid black;
    padding-right: 10px;
    font-size: 28px;
    line-height: normal;
    font-size: 28px;
}
.bid-text:last-child {
    border-right: none;
    padding-left: 10px;
}
.totbid2 {
    margin-top: 20px;
    margin-bottom: 30px;
}
#reset-bets1 {
    border-radius: 10px;
    background: #d7d8d9;
    color: #0e2c3d;
}
#continue1 {
    border-radius: 10px;
    background: #3ab0f6;
    color: #fff;
}
.number-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    /* padding: 10px; */
}

.number-circle svg text {
    font-size: 18px;
    font-family: Arial, sans-serif;
    text-anchor: middle;
    dominant-baseline: middle;
    fill: black;
}
.selecttext {
    color: #0e2c3d;
    font-size: 20.291px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}
.color-palette {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.color-box {
    flex: 1;
    position: relative;
}
.navy {
    background-color: #0b2447;
    border-radius: 20px 20px 0 0;
}
.blue {
    background-color: #1e4d91;
    border-radius: 0 0 20px 20px;
}
.dhamaka {
    font-weight: 600;
}
.floating-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background-color: #fff;
    padding: 0 5px;
    font-size: 12px;
    color: #666;
    z-index: 0;
}
.form-text {
    font-weight: 400;
    color: #00000066;
    font-size: 12px;
    line-height: 1.2;
}
.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.HalfCircleSummary {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: 41%;
    left: -20px;
}
.HalfCircle1Summary {
    background-color: #fafafa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: 41%;
    right: -20px;
}
.row.game-list-inner {
    background: white;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    box-shadow: 0px 0px 0px 0px #d8d8d8;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 16px;
}
.mplist {
    display: block;
    padding: 15px 0px;
    border-radius: 5px;
    font-size: 16px;
    color: #3ab0f6;
}
span.mplist1 {
    margin-left: 24px;
}

.mplist:hover {
    color: black !important;
    text-decoration: none;
}

.mplist:hover svg path,
.mplist:hover svg rect,
.mplist:hover svg ellipse {
    fill: #000;
}

.mplist svg path,
.mplist svg ellipse,
.mplist .footext {
    transition: stroke 0.3s ease, color 0.3s ease;
}

.withdrwl {
    color: #0e2c3d;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 23px;
}
.transaction-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.transaction-status {
    display: flex;
    align-items: center;
}
.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.transactiondate {
    color: #0e2c3d;
    font-size: 16px;
    font-weight: 500;
}
.status-Success1 {
    color: #2f8911;
    font-size: 12px;
    font-weight: 500;
}
.success-bonus{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.status-pending1 {
    color: #c77219;
    font-size: 12px;
    font-weight: 500;
}
.status-unsuccessful1 {
    color: #d51010;
    font-size: 12px;
    font-weight: 500;
}
.status-text {
    font-size: 14px;
    color: #777;
}
.amount {
    color: #0e2c3d;
    text-align: right;
    font-size: 18px;
    font-weight: 500;
}
.tabone {
    margin-top: 23px;
}
.transdate {
    margin-left: 24px;
}
.sattabid {
    padding-top: 23px;
    padding-bottom: 40px;
    display: flex;
    font-weight: 600;
}

.sattabidhistory {
    color: #0e2c3d;
    font-size: 24px;
    font-weight: 700;
    border-right: 2px solid black;
    padding-right: 10px;
}

.sattabidhistory:last-child {
    border-right: none;
    padding-left: 10px;
}
.sattabidhistorytext {
    color: #0e2c3d;
    font-size: 24px;
    font-weight: 700;
    padding-top: 23px;
}
.bid-history-card {
    border: 1px solid #cdceea;
    border-radius: 8px;
    padding: 18px 22px 25px 23px;
    margin-bottom: 16px;
}

.card-header {
    border-bottom: 1px solid #cdceea;
    padding-bottom: 10px;
    margin-bottom: 15px;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.status-badge {
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 12px;
    display: inline-block;
}

.biddingfont {
    color: #3ab0f6;
    font-size: 18px;
    font-weight: 700;
}

.biddingd {
    color: #4b6a7b;
    font-size: 12px;
    font-weight: 400;
}

.biddinginr {
    color: #0e2c3d;
    font-size: 16px;
    font-weight: 400;
}

.sattabidhistorytext {
    color: #0e2c3d;
    font-size: 24px;
    font-weight: 700;
    padding-top: 23px;
}

.deshwar {
    padding-bottom: 9px;
    color: #0e2c3d;
    font-size: 18px;
    font-weight: 500;
}

.won1 {
    color: #d51010;
    background-color: #ffdbdb;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    margin-top: 22px;
    border-radius: 47px;
}
.pending {
    color: #723500;
    background-color: #FFF7C0;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    margin-top: 22px;
    border-radius: 47px;
}

.won {
    color: #2f8911;
    background-color: #e6ffde;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    margin-top: 22px;
    border-radius: 47px;
}

.bidding {
    /* margin-bottom: 10px; */
    margin-top: 16px;
}

/*.badge-column {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    align-items: center;*/
/*}*/
button.bton {
    border: none;
    background-color: transparent;
    padding: 0;
}
.modal-header {
    background-color: #f5e6da;
    border: none;
}
.lotteryticknum {
    color: #4b6a7b;
    font-size: 14px;
    font-weight: 400;
}
.lottery-number {
    color: #0e2c3d;
    font-size: 16px;
    font-weight: 700;
}
.winnerr {
    color: green;
    font-weight: bold;
    font-size: 16px;
}
.ticketnuser {
    color: #0e2c3d;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px;
}
.row-item {
    padding: 12px 11px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
}

.row.row-item.last-row-item {
    margin-bottom: 39px;
}
.row-header {
    font-weight: bold;
    border-bottom: none;
    padding-bottom: 19px;
    padding-top: 11px;
}

.bid-satta {
    display: flex;
    padding-top: 31px;
    font-weight: 600;
    justify-content: center;
}

.bid-winner1 {
    border-right: 2px solid black;
    padding-right: 10px;
    font-size: 24px;
    line-height: normal;
}

.bid-winner1:last-child {
    border-right: none;
    padding-left: 10px;
}

.sattawinner {
    color: #0e2c3d;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 23px;
}

.amountwinner {
    color: #4b6a7b;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    padding-bottom: 40px;
}

.card-amount {
    border: 1px solid #cdceea;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 16px;
}

.amunt {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.amounter {
    color: #4b6a7b;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.amountertext {
    color: #0e2c3d;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.FundAmountDiv {
    display: flex;
    flex-direction: column;
}
.PickNumberMain {
    margin-top: 23px !important;
}

.AddBackDetail {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 187px;
    border: 1px solid #cdceea;
    border-radius: 10px;
    height: 232px;
}
.AddBankButton {
    height: 187px;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    display: flex;
    align-items: center;
}
.AddBankAccount {
    justify-content: center;
    display: flex;
    height: 47px;
    background-color: #3ab0f6;
    border-radius: 0 0 10px 10px;
    align-items: center;
}
.BankInfo {
    font-size: 24px;
    font-weight: 700;
    color: #0e2c3d;
}

.CustomLabel {
    font-size: 14px;
    font-weight: 400;
    color: #0e2c3d;
}

.bid-satta1 {
    display: flex;
    padding-top: 31px;
    font-weight: 600;
    justify-content: center;
}

.bid-winner11 {
    border-right: 2px solid black;
    padding-right: 10px;
    font-size: 24px;
    line-height: normal;
}

.bid-winner11:last-child {
    border-right: none;
    padding-left: 10px;
}
.amountwinner1 {
    color: #4b6a7b;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    padding-bottom: 40px;
}

.win-main {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.bumper-text {
    font-size: 24px;
    font-weight: 700;
    color: #0e2c3d;
}
.fill-win {
    font-size: 12px;
    font-weight: 400;
    color: #4b6a7b;
}
.amount-row {
    background-color: #e2f4ff;
    padding: 22px 34px;
    border-radius: 10px 10px 0 0;
}

.amount-row-name {
    background-color: #fafafa;
}

.win-table-show {
    max-height: 640px;
    overflow: auto;
    overflow-x: hidden;
}

.win-table-show::-webkit-scrollbar {
    width: 6px;
}

.win-table-show::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
}

.win-table-show::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
    width: 4px;
}

.win-table-show::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.win-amount-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000b2;
    padding: 14px 34px;
}

.amount-row-2 {
    background-color: #e2f4ff;
    padding: 22px 34px;
}

.remove-margin {
    margin-right: 0px !important;
    margin-left: 0px !important;
}
.table-text {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding: 0 !important;
}

ul li:hover a svg g path ,ul li:hover a svg g rect{
    fill: black !important;
}
ul li:hover a svg path  {
    fill: black !important;
}
.pass {
    margin-bottom: 0px;
}

.back-btn {
    border: none !important;
    margin-top: 0px !important;
}
.back-btn:hover {
    background-color: white !important;
    color: #3ab0f6 !important;
    text-decoration: underline !important;
}
.amontwinner {
    width: 25%;
}
.list {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 10px;
    padding: 20px;
}

.subDiv1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ************************************** 1400 *********************************** */

@media (max-width: 1400px) {
    .ficon {
        padding: 0 80px;
    }
}

/* ************************************** 1200 *********************************** */

@media (max-width: 1200px) {
    .ficon {
        padding: 0 60px;
    }
    .code-inputs {
        width: 50%;
    }
    .circle,
    .circle1 {
        bottom: 36%;
    }
    .mainWinDiv {
        /*gap: 20px;*/
        flex-wrap: wrap;
    }
}

/* ************************************** 991 *********************************** */

@media (max-width: 991px) {
    .ficon {
        padding: 0 30px;
    }
    .winlogo {
        display: none;
    }
    .btn-login {
        font-size: 12px;
    }
    #total_point2 {
        font-size: 18px;
    }
    .code-inputs {
        width: 70%;
    }

    .mainDiv {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0px 15px 15px 15px;
    }

    .PrizeTableMainDiv {
        overflow-x: scroll;
    }
    .circle,
    .circle1 {
        bottom: 38%;
    }
    .mainWinDiv {
        grid-template-columns: 1fr 1fr;
    }
}

/* ************************************** 767 *********************************** */

@media (max-width: 767px) {
    .img999 {
        display: block;
    }
    .img99 {
        display: none;
    }
    .brg2 {
        display: block;
        padding-right: 10px;
    }
    .card {
        font-size: 12px;
    }

    img.bg1 {
        width: 24px;
        height: 24px;
    }

    .code-inputs {
        gap: 21px;
    }

    .code-inputs {
        width: 80%;
    }
    .ficon {
        padding: 0 15px;
    }
    .winlogo {
        display: none;
    }
    .btn-login {
        font-size: 12px;
    }
    .btn2 {
        font-size: 12px;
    }
    .brg {
        display: none;
    }
    .number-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    .lottery-mobile {
        display: block;
    }
    .bgrasi {
        background-color: #edffe9;
    }
    .table-responsive {
        margin-top: 15px;
    }
    .gradient-text {
        font-size: 24px;
        font-weight: 700;
    }
    .gradient-text-summary {
        font-size: 24px;
        font-weight: 700;
    }
    .popup-img {
        display: none;
    }

    .popup-img1 {
        margin-top: 45px;
        display: block;
        text-align: center;
        margin-bottom: 24px;
    }
    .modal-dialog {
        max-width: 575px;
        padding: 19px;
    }
    .lottery {
        display: none;
    }

    .lottery-mobile {
        display: block;
    }
    .TablePrize {
        overflow: hidden;
        overflow-x: auto;
        margin-bottom: 10px;
    }

    .HalfCircle1,
    .HalfCircle {
        bottom: 35%;
    }
    .offer-title {
        font-size: 19px;
        font-weight: 600;
    }

    .jackpot-description {
        font-size: 15px;
        font-weight: 800;
    }
    .circle,
    .circle1 {
        bottom: 42%;
    }
    .jackpot-amount {
        font-size: 57px;
        font-weight: 700;
    }
    .ticket-price1 {
        font-size: 12px;
    }
    .draw-details {
        font-size: 12px;
    }
    .bid-summary {
        flex-direction: column;
        align-items: center;
    }
    .bid-text {
        border-right: none;
        padding: 0;
    }
    .win {
        padding-left: 5px;
    }
    .card {
        font-size: 12px;
    }
    .totbid {
        font-size: 18px;
    }
    .lottery {
        display: none;
    }

    .amontwinner {
        display: flex;
        justify-content: space-between;
    }

    .amunt {
        margin-top: 15px;
        display: block;
        justify-content: space-between;
        margin-bottom: 4px;
    }

    .card-amount {
        padding: 12px;
        margin-bottom: 12px;
    }

    .bid-satta {
        flex-direction: column;
        align-items: center;
        padding-top: 16px;
    }

    .bid-winner1 {
        border-right: none;
        padding: 0;
    }
    .amountwinner {
        padding-bottom: 20px;
    }
    .prize-table {
        margin-bottom: 0px;
    }
    .bid-satta1 {
        flex-direction: column;
        align-items: center;
        padding-top: 16px;
    }

    .bid-winner11 {
        border-right: none;
        padding: 0;
    }
    .amountwinner1 {
        padding-bottom: 20px;
    }
    .mainWinDiv {
        grid-template-columns: 1fr;
    }

    .amontwinner {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}
/* ************************************** 767 END *********************************** */

/* ************************************** 600 *********************************** */

@media (max-width: 600px) {
    .footer-inner{
        display: flex;
        justify-content: space-between !important;
    }
    .menu-btn {
        padding-left: 0;
    }
    .card {
        margin-top: 16px;
        padding: 20px 10px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .navbar {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .digit6 {
        margin-top: 28px;
    }
    .btn3 {
        background-color: #fff;
        color: #4b6a7b;
        padding: 6px 20px;
        margin-right: 4px;
    }

    form {
        margin-top: 30px;
    }
    img.logoimg {
        width: 100px;
        /*height: 21px;*/
    }
    svg.burgermenu {
        width: 24px;
        height: 24px;
        /*margin-right: 6px;*/
        margin-left: 0;
    }
    .pamount {
        font-size: 14px !important;
    }

    .number-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .form-control {
        /*padding: 8px;*/
        /*font-size: 12px;*/
        padding: 8px !important;
        font-size:16px !important;
        line-height: 1.2 !important;
    }
    td.bet-label {
        width: 45px;
    }
    svg.hesvgsvg {
        width: 24px;
        height: 24px;
    }
    .hedrtext {
        margin-left: 5px;
    }

    .hesvg {
        margin-right: 0px;
    }
    a.btn-login {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .LotteryGame {
        font-size: 16px;
    }
    .SerialNum,.LotteryNum,.TicketPriceLottery{
        font-size: 12px;
    }
    .HalfCircle1,
    .HalfCircle {
        bottom: 42%;
    }
    .PurchasedBtn span,
    .RemoveLotteryBtn span {
        font-size: 12px;
    }
    .TicketMainDiv {
        padding: 10px;
    }
    .card {
        margin-top: 16px;
        padding: 20px 10px;
    }
    .row.game-list-inner {
        margin-bottom: 8px;
    }
    .sattabid {
        flex-direction: column;
        align-items: left;
        padding-top: 14px;
        padding-bottom: 22px;
    }
    .sattabidhistory {
        border-right: none;
        padding: 0;
        font-size: 18px;
    }

    .sattabidhistory:last-child {
        border-right: none;
        padding-left: 0px;
    }
    .sattabidhistorytext {
        font-size: 18px;
        padding-top: 14px;
    }
    .bid-history-card {
        padding: 16px 13px;
    }

    .biddingfont {
        font-size: 16px;
    }
    .sattabidhistorytext {
        font-size: 18px;
        padding-top: 14px;
    }
    .AvailableAmount {
        margin-top: 24px !important;
    }
    .AvailableAmountNum {
        margin-top: 8px !important;
    }
    .FundForm {
        margin-top: 40px !important;
    }
    .card1 {
        padding: 20px 10px 0 10px;
    }
    .MdFund {
        padding: 10px;
    }
    .ACInfoDetai {
        font-size: 16px;
    }
    .ACInfo {
        font-size: 12px;
    }
    .mainDiv {
        margin-bottom: 5px;
    }
    .AddBackDetail {
        margin-top: 22px !important;
    }
    .BankInfo {
        line-height: 1.5;
    }
    .amount-row-name {
        margin: 0px 10px;
    }
    .amount-row {
        margin: 0px 10px;
    }
    .amount-row-2 {
        margin: 0px 10px;
    }
    .win-table-show {
        padding: 10px !important;
    }
    .mainDivWinnerList,
    .mainDivWinnerList2,
    .mainDivWinnerList3 {
        max-width: 100% !important;
    }
    .sattabid-padding{
        padding-left: 0px !important;
    }
    /*.badge-column{*/
    /*    padding-left: 30px !important;*/
    /*}*/
    .add_fund,.withdraw{
        width: 100%;
        font-size: 13px;
    }
    .cta{
        gap: 10px;
    }
    .whatsapp{
        bottom: 12% !important;
    }
    #copyPopup{
        width: 95%;
    }
}

/* ************************************** 600 END *********************************** */
@media only screen and (max-width: 600px) {
    .lottery {
        display: none;
    }
    .lottery-mobile {
        display: block;
    }
}

/* ************************************** 576 *********************************** */

@media (max-width: 576px) {
    .footext {
        font-size: 12px;
    }
    .code-inputs {
        gap: 16px;
    }
    .totbid {
        margin-top: 16px;
    }

    .playgme {
        padding-bottom: 50px;
    }
    .tabone {
        margin-top: 9px;
        padding: 0 8px;
    }

    .biddinginr {
        font-size: 14px;
    }
    .deshwar {
        font-size: 16px;
    }

    .deshwar1 {
        font-size: 16px;
    }

    .biddinginr {
        font-size: 14px;
    }

    .won,.pending, .won1  {
        padding: 8px 12px;
        font-size: 12px;
        text-align: center;
    }
    .LotterySummaryMain {
        border: none;
    }
    .CustomLabel {
        font-size: 12px;
    }
}

/* ************************************** 540 *********************************** */

@media (max-width: 540px) {
    .gradient-p-sum {
        max-width: 226px;
        margin: 0 auto;
    }
}

@media (max-width: 503px) {
    .HalfCircle1,
    .HalfCircle {
        bottom: 34%;
    }
}
/* ************************************** 500 *********************************** */

@media (max-width: 500px) {
    .form-group {
        margin-bottom: 10px;
    }
    .code-inputs {
        width: 100%;
    }
    .HalfCircle1,
    .HalfCircle {
        bottom: 26%;
    }
}
/* ************************************** 470 *********************************** */

@media (max-width: 470px) {
    .qrimage {
        height: 112px;
        width: 112px;
    }
    .upiimage {
        width: 27px;
        height: 20px;
        margin-top: 2px !important;
    }
    .InputFundGroup {
        margin-top: 15px !important;
    }
    /*.QrAdd {*/
    /*    width: 226px;*/
    /*}*/
}
/* ************************************** 460 *********************************** */

@media (max-width: 460px) {
    .win-amount-text {
        padding: 14px 10px;
    }

    form {
        margin-top: 30px;
    }
}

/* ************************************** 436 *********************************** */

@media (max-width: 436px) {
    .gradient-text {
        font-size: 24px;
        font-weight: 700;
        max-width: 220px;
        margin: 0 auto;
    }
    .gradient-text-summary {
        font-size: 24px;
        font-weight: 700;
        margin: 0 auto;
    }
}
@media (max-width: 430px) {
    .HalfCircle1Summary,
    .HalfCircleSummary {
        bottom: 33%;
    }
    .HalfCircle1,
    .HalfCircle {
        bottom: 32%;
    }
    /* .win-amount-text{
        padding: 14px 24px;
      } */
}

/* ************************************** 414 *********************************** */

@media (max-width: 414px) {
    .bgrasi {
        background-color: #edffe9;
        padding: 10px;
    }
    .PurchasedBtn span {
        font-size: 12px;
        /* padding: 6px 10px; */
    }
    ul.CTAs {
        margin-bottom: 90px !important;
    }
}

@media (max-width: 416px) {
    .RemoveLotteryBtn span {
        font-size: 12px;
        /* padding: 6px 10px; */
    }
    .HalfCircle1Summary,
    .HalfCircleSummary {
        bottom: 32%;
    }
}
/* ************************************** 400 *********************************** */

@media (max-width: 400px) {
    .code-inputs input {
        width: 100%;
        height: 35px;
    }

    .code-inputs {
        gap: 12px;
    }
    .gradient {
        padding: 10px;
    }
}

/* ************************************** 390 *********************************** */

@media (max-width: 390px) {
    .rupistext {
        padding: 8px;
    }
    .HalfCircle1Summary,
    .HalfCircleSummary {
        bottom: 33%;
    }
}
/* ************************************** 387 *********************************** */

@media (max-width: 387px) {
    .PurchaseTicket1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .RemoveLotteryBtn,
    .PurchasedBtn {
        padding: 6px 8px;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    .PurchasedAndremove {
        width: 100%;
    }
    .HalfCircle1,
    .HalfCircle {
        bottom: 41%;
    }
}
/* ************************************** 375 *********************************** */

@media (max-width: 375px) {
    #content {
        overflow-y: auto;
        max-height: 90vh;
        width: 100%;
        padding: 0px;
        transition: all 0.3s;
        position: absolute;
        top: 0;
        right: 0;
        padding-bottom: 120px;
    }
    .pamount {
        font-size: 12px !important;
    }
    .form-control {
        padding: 6px 6px;
        font-size: 12px;
    }

    td.bet-label {
        width: 41px;
    }
    .rupistext {
        padding: 7px !important;
    }
    .HalfCircle1Summary,
    .HalfCircleSummary {
        bottom: 42%;
    }
    .SideCircleDiv1,
    .SideCircleDiv {
        bottom: 25%;
    }
}

/* ************************************** 360 *********************************** */

@media (max-width: 360px) {
    .ficon {
        padding: 0 10px;
    }
}

/* ************************************** 344 *********************************** */

@media (max-width: 344px) {
    .number-grid {
        padding: 8px;
    }
    .rupistext {
        padding: 6px !important;
    }
    .form-control::-webkit-inner-spin-button,
    .form-control ::-webkit-outer-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0;
    }
}
/* Hide arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.greenLabel {
    background-color: #084033;
    padding: 10px 0;
}
.redLabel {
    background-color: #c60c1e;
    margin-top: 7px;
    padding: 10px 0;
}

.diwalibanner1 {
    display: flex;
    background-color: #164561;
    flex-direction: column;
    border-radius: 0 0 10px 10px;
}

.diwaliDescription {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 28px 30px;
}
.playNowBtn1 {
    background-color: #349a1e;
    border-radius: 9px;
    border: none;
    width: 200px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    margin-bottom: 25px;
}
.playNowBtn2 {
    background-color: #ffba26;
    border-radius: 9px;
    border: none;
    width: 200px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    margin-bottom: 25px;
}
.playNowBtn1:hover,.playNowBtn2:hover{
    transform: scale(1.05);
}
.playText1 {
    font-size: 20px;
    color: white;
    font-weight: 600;
}
.playText2 {
    font-size: 20px;
    color: black;
    font-weight: 600;
}
.ludoDiv {
    border-radius: 10px;
    min-height: 120px;
    width: 100%;
    position: relative;
}
.ludoDiv:hover{
    transform: scale(1.05);
}
.subDivLudo {
    display: flex;
    gap: 25px;
    position: relative;
}

.imgDiv {
    /*background-image: url("../images/diwali-banner-2.png");*/
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.imgDiv1 {
    /*background-image: url("../images/diwali-banner-1.png");*/
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mainImgDiv {
    display: flex;
    flex-direction: column;
}

.bannerHeading {
    /*padding: 80px 10px 0 10px;*/
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}
.bannerHeading1 {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    /*padding: 30px 0 0 0;*/
    text-shadow: 2px 2px #fff;
}

.desctext {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    display: flex;
}
.desctext1 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.discountDiv {
    background-color: white;
    width: 100%;
    position: absolute;
    bottom: 10px;
    z-index: 0;
    color: #ff0000;
    font-weight: 700;
    text-align: center;
}
.discountDiv1 {
    background-color: white;
    width: 100%;
    position: absolute;
    bottom: 10px;
    z-index: 0;
    color: #ff0000;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.ludoImage {
    position: absolute;
    top: -23px;
    left: 31px;
    width: 160px;
    height: 160px;
}
.bg-color-ludo {
    background-color: #2c87bd;
    height: 120px;
    border-radius: 10px;
    border: none;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding-left: 230px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cardImage {
    position: absolute;
    top: -28px;
    left: -17px;
    width: 247px;
    height: 185px;
}

span.lotteyspecial {
    padding: 0 10px;
    color: #c60c1e;
    background-color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.diwalispc {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #232323;
}
@media (max-width: 991px) {
    .subDivLudo {
        flex-direction: column;
    }
    .mainCardsImageDiv {
        display: flex;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .greenLabel,
    .redLabel {
        padding: 10px 32px;
    }
    .bg-color-ludo{
        height: 60px;
        font-size: 15px;
        padding-left: 100px;
    }
    .ludoImage{
        width: 85px;
        height: 73px;
        top: -8px;
    }
    .cardImage{
        width: 126px;
        height: 90px;
        top: -10px;
    }
    .ludoDiv{
        min-height: 0
    }
}
@media (max-width: 523px) {
    .discountDiv {
        font-size: 10px;
    }
    .discountDiv1 {
        font-size: 10px;
        bottom: 5px;
    }
    .bannerHeading {
        font-size: 40px;
    }
    .desctext,
    .desctext1 {
        font-size: 16px;
        padding: 0 21px;
    }

    .imgDiv,
    .imgDiv1 {
        height: 219px;
    }
    .diwaliDescription {
        font-size: 20px;
    }
    .playNowBtn2,
    .playNowBtn1 {
        width: 150px;
        padding: 5px;
    }
    .bannerHeading {
        padding: 40px 10px 0 10px;
    }
    .bannerHeading1 {
        font-size: 30px;
    }
    .diwalispc,span.lotteyspecial {
        font-size: 25px;
    }
}

@media (max-width: 430px) {
    .bannerHeading {
        padding: 65px 10px 0 10px;
        font-size: 35px;
    }
    .bannerHeading1 {
        padding: 10px 0 0 0;
    }
    #content{
        padding-bottom: 120px;
    }
}

@media (max-width: 375px) {
    .bannerHeading {
        padding: 35px 10px 0 10px;
        font-size: 30px;
    }
    .discountDiv {
        bottom: 5px;
    }
}


























.frame {
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    height: 250px;
    position: relative;
}
.frame1 {
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    height: 20vh;
    position: relative;
}

.frameDiv {
    background-color: #c8ffc98c;
    position: relative;
    top: 15%;
    left: 10%;
    height: 170px;
    width: 300px;
    border-radius: 10px;
    border: 1px solid black;
}
.boxDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*gap: 10px;*/
    padding: 10px;
}

.lacPrice {
    color: rgb(0 0 0);
    font-weight: 700;
    font-size: 50px;
}
.TotalWinDiv {
    color: #5b0103;
    font-size: 30px;
    margin-bottom: 0px !important;
}
.frameDivMob {
    background-color: #ffffff6b;
    position: relative;
    top: 18%;
    left: 3%;
    height: 120px;
    width: 240px;
    border-radius: 10px;
    border: 1px solid black;
}
.boxDivMob {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.lacPriceMob {
    color: rgb(0 0 0);
    font-weight: 700;
    font-size: 27px;
}
.TotalWinDivMob {
    color: #5b0103;
    font-size: 20px;
    margin-bottom: 0px !important;
}

@media (max-width: 375px) {
    .frameDivMob {
        width: 180px;
        top: 15%;
        height: 105px;
    }
    .dateDivWin{
        font-size: 12px;
    }
    .TotalWinDivMob {
        font-size: 17px;
    }
}
.whatsapp{
    position: fixed;
    bottom: 11%;
    right: 2%;
    z-index: 1;
}
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #d4d4d4;
}

#add_fund_form{
    margin-top: 15px !important;
}
.AddFunText1{
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}
.upi_id{
    font-weight: 500;
    font-size: 15px;
}
.reviewLink{
    right: 0px;
    background: #c60c1e;
    color: black;
    cursor: pointer;
    position: absolute;
    top: 12%;
    text-align: center;
    padding: 8px;
}
.reviewLink1{
    right: 0px;
    background: #084033;
    color: black;
    cursor: pointer;
    position: absolute;
    top: 32%;
    text-align: center;
    padding: 8px;
}

.Review_Name {
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    display: flex;
    align-items: end;
    justify-content: end;
}
.card-color{
    background-color: #fff8bb;
}

.Days_Ago {
    margin-top: 10px;
    color: #9f9f9f;
}

.Review_Message {
    /* margin-top: 10px; */
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.video-container {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container h2 {
    color: #333333;
}

.Main_Video_Div {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 690px) {
    .Main_Video_Div {
        flex-direction: column;
    }
}


.Click_here{
    background-color: white;
}

.Click_here:hover{
    background-color: #2f8911;
    color: white;
    transform: scale(1.05);
}
#copyPopup{
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #212529;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    font-size: 14px;
}
.referral-bonus {
    font-size: 24px;
    color: #FF6F00;
    font-weight: bold;
}
.referral-code {
    background-color: #E8F5E9;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #388E3C;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    /*margin-top: 20px;*/
    text-align: center;
}
.referral-code:hover {
    background-color: #C8E6C9;
}
.copy-msg {
    display: none;
    color: green;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.referralPara{
    font-size: 14px;
    font-weight: 400;
    color: #00000099;
}
.share-buttons i {
    font-size: 24px;
    color: #388E3C;
    padding: 10px;
    border-radius: 50%;
    background-color: #E8F5E9;
    margin: 10px 5px;
    cursor: pointer;
    transition: 0.3s;
}
.share-buttons i:hover {
    background-color: #C8E6C9;
}