html {
    font-size: 14px;
    --animation-duration: 1s;
    --animation-delay-multiplier: 200ms;
    position: relative;
    min-height: 100%;
}

body {
    background-color: #ececec;
    margin-bottom: 60px;
    font-family: 'IBM Plex Sans Condensed', sans-serif !important;
}

main {
    margin-top: 10px;
}
#congratstarsdanger{
    display:none;
}
#congratstarssuccess {
    width: 100px;
    margin-left: 100px;
}

h1 {
    margin-left: 10px;
    font-size: 20px;
    line-height: 45px;
}
.user-details-two {
    color: #fff;
    border: 1px solid;
    border: 1px solid #fff;
    margin: 0px 20px;
    padding: 5px;
    background: rgba(0,0,0,0.7);
    font-size: 16px;
}
.top-game-navigation {
    background-color: #3A3279;
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 100;
}

    .top-game-navigation ul {
        background-color: #3A3279;
        list-style: none;
        margin: 8px 0;
        padding-left: 5px;
    }

        .top-game-navigation ul li {
            padding: 5px 8px;
            color: #fff;
            display: inline-block;
            font-weight: 600;
            background: aliceblue;
            border-radius: 2px;
            margin: 4px 6px;
        }

            .top-game-navigation ul li a {
                text-decoration: none;
            }
        .top-game-navigation ul .home {
            background-color: #fff;
        }
        .top-game-navigation ul .jackpot {
            background-color: #dc3545;
        }

        .top-game-navigation ul .salomotto {
            background-color: #ffdc08;
        }

        .top-game-navigation ul .instamotto {
            background: #38bb38;
        }
            .top-game-navigation ul .home a {
                color: #1e194c;
            }

        .top-game-navigation ul .jackpot a {
            color: #fff;
        }

        .top-game-navigation ul .salomotto a {
            color: #1e194c;
        }

        .top-game-navigation ul .instamotto a {
            color: #fff;
        }

.navbar {
    background: rgb(30,25,76);
    background: linear-gradient(90deg, rgba(30,25,76,1) 0%, rgba(53,25,76,1) 35%, rgba(194,3,48,1) 70%);
}

.navbar-brand img {
    width: 100px;
    height: 30px;
}

.nav-item .nav-link.text-light {
    font-weight: 500;
}
.btn.lotto-download{
    background-color:#ffdc08 !important;
}
.btn.gamepick {
    color: #ffdc08;
    padding: 10px;
}
.navbar-toggler{
    margin:0;
}

.btn.gamepick.daily {
    background-image: linear-gradient(to right,rgb(30,25,76), rgb(30, 29, 0));
    background-color: #1e194c;
}

    .btn.gamepick.weekly {
        background-image: linear-gradient(to right, rgb(211,48,62),rgb(135,18,27));
        color: #fff;
    }

    .btn.gamepick.mega {
        background-image: linear-gradient(to right,rgb(255,220,8), rgb(255, 167, 5));
        color: #1e194c;
    }
.btn.deposit-btn {
    background-color:forestgreen;
    border-radius: 0;
    color: white;
    margin: 0 !important;
}
#sendStkDeposit {
    background: green !important;
    margin:0 !important;
}
.card-footer-depo {
    margin: 20px 15px;
}

.scrolling-wrapper {
    margin-top: 52px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding: 10px;
    background-color: #0a0538;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

    .scrolling-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }

    .scrolling-wrapper .card {
        display: inline-block;
        background: linear-gradient(145deg, #05ad9e, #004d40);
        color: white;
        padding: 8px;
        margin: 3px 5px;
        border-radius: 0px;
        min-width: 140px;
        text-align: center;
        font-size: 13PX;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        animation: pulse 2s infinite;
        text-decoration: none; 
    }
        .scrolling-wrapper .card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%) rotate(45deg);
            transition: transform 0.5s ease-in-out;
        }

        .scrolling-wrapper .card:hover:before {
            transform: translateX(100%) rotate(45deg);
        }

        .scrolling-wrapper .card:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
/* Keyframes for pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Keyframes for spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/* Define the keyframes for the animation */
@keyframes casinoSpin {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes casinoGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    }
}

/* Add animation to the game-card-x class */
.game-card-x {
    overflow: hidden;
    border-radius: 10px;
    animation: casinoSpin 3s infinite ease-in-out, casinoGlow 1.5s infinite ease-in-out;
}

    /* Optional: Add hover effect for additional interactivity */
    .game-card-x:hover {
        animation: casinoSpin 0.5s infinite ease-in-out, casinoGlow 0.75s infinite ease-in-out;
        cursor: pointer;
    }

.jackpot-container {
    text-align: center;
    color: #222; /* Darkish text color */
    font-family: 'Press Start 2P', cursive;
    font-size: 3em;
    font-weight: bold;
}

.jackpot-text {
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700; /* Goldish glow effect */
    animation: blink 1s infinite alternate;
}

.jackpot-amount {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    color: #222; /* Darkish text color */
}
.jackpot-amount span {
        animation: dance 1s infinite alternate;
    }

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dance {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/**lOADER*/
.load-wrapper-back {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

.load-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    left: 15%;
    top: 20%;
    z-index: 100;
    height: 100%;
    right: 0;
    margin: 0 auto;
}

.load-circle {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 5px #777777;
    margin-left: 8px;
    box-shadow: 0px 0px 10px #FFFFFF;
}

    .load-circle:nth-child(1) {
        animation: wave var(--animation-duration) infinite;
        background: radial-gradient(circle, rgba(191,20,30,1) 0%, rgba(191,20,0,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(2) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 1);
        background: radial-gradient(circle, rgba(255,216,15,1) 0%, rgb(255, 167, 5,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(3) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 2);
        background: radial-gradient(circle, rgba(57,181,74,1) 0%, rgba(57,181,40,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(4) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 3);
        background: radial-gradient(circle, rgba(74, 212, 253,1) 0%, rgba(74, 212, 240,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(5) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 4);
        background: radial-gradient(circle, rgba(255,216,15,1) 0%, rgb(255, 167, 5,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(6) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 5);
        background: radial-gradient(circle, rgba(191,20,30,1) 0%, rgba(191,20,0,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(7) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 6);
        background: radial-gradient(circle, rgba(74, 212, 253,1) 0%, rgba(74, 212, 240,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(8) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 7);
        background: radial-gradient(circle, rgba(255,216,15,1) 0%, rgb(255, 167, 5,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(9) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 8);
        background: radial-gradient(circle, rgba(57,181,74,1) 0%, rgba(57,181,40,1) 80%, rgba(0,0,0,1) 100%);
    }

    .load-circle:nth-child(10) {
        animation: wave var(--animation-duration) infinite calc(var(--animation-delay-multiplier) * 9);
        background: radial-gradient(circle, rgba(74, 212, 253,1) 0%, rgba(74, 212, 240,1) 80%, rgba(0,0,0,1) 100%);
    }

@keyframes wave {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-60px) scale(.75);
    }

    51% {
        transform: translateY(-60px) scale(.75);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

#thedate {
    font-weight: 600;
    font-size: 18px;
    color: #1e194c;
}
#myLottoMottoAlert {
    animation: popout 0.5s ease;
    -webkit-animation: popout 0.5s ease;
}

.date-picker-holder {
    border-top: 1px solid #d1d1d1;
    background: #e0f0ff;
    padding: 5px;
    text-align: center;
    margin-top: 50px;
    font-size: 15px;
    font-weight: 700;
}

#selectedJackpot {
    padding: 5px;
    margin-left: 10px;
}

#populargameshome {
    background: #fff;
    margin: 0;
    padding: 40px 10px;
    overflow: auto;
    display: flex;
}

    #populargameshome a {
        text-decoration: none;
        width: 100%;
    }

.games-holder {
    display: flex;
}

.game-item {
    background-image: linear-gradient(to bottom right, rgb(170,33,89), rgb(57,18,240));
    color: #fff;
    padding: 15px;
    margin: 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 19%), 0 3px 3px rgb(0 0 0 / 23%);
}

.game-play-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin: 10px 0 0 0;
}

.playlottomoto {
    color: #fff;
}

    .playlottomoto form {
        background: #292355;
        margin: 0 0 30px 0;
        border-radius: 5px;
    }

        .playlottomoto form .row.rowx {
            background: #fff;
            padding: 2px;
            font-size: 17px;
            font-weight: 600;
            line-height: 30px;
            border: 1px solid #ced4da;
            margin: 0 1px;
        }

#mylottodepositbtn {
    z-index: 2000;
    position: fixed;
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
    margin-right: 0px;
    top: 4px;
    right: 20%;
    width: 110px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    background-color: #0ab520;
    color: #fff;
    font-weight: 700;
}

.overlayLotto {
    position: absolute;
    background: #000;
    z-index: 1900;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.3;
}
.depositHolder-depo {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
    z-index: 2000;
    background-color: transparent;
    margin: auto;
    padding: 0;
}
.depositHolder {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
    z-index: 2000;
    background-color: #fff;
    margin: auto;
    padding: 0;
}

.animate-charcterx {
    text-transform: uppercase;
    background-image: linear-gradient( -225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100% );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    font-size: 30px;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
}

.drawcard-header {
    padding: 10px;
    background-image: linear-gradient(to bottom right, rgb(110,217,224), rgb(33,167,245));
}

.drawcard-body {
    display: flex;
    padding: 10px 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.nextdraw {
    padding-top: 10px;
    font-size: 24px;
}

.lottogames-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin: 0 4px;
    padding: 4px;
    text-transform: uppercase;
    background-color: rgba(191,20,30,1) !important;
    color: #fff !important;
    animation: blink-animation 4s steps(5, start) infinite;
    -webkit-animation: blink-animation 4s steps(5, start) infinite;
    border-radius: 3px;
}

.drawtype {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 36px;
    color: #fff;
    background-image: linear-gradient( -225deg, #231557 0%, #44107a 29%, #bf141e 67%, #ff4343 100% );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    display: inline-block;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
}

    .drawtype.daily {
        color: #1d1d1d;
    }

    .drawtype.mega {
        color: #ff0000;
    }

    .drawtype.weekly {
        color: #ffdc08;
    }

.btn.btn-lotto {
    background-image: linear-gradient(to bottom right, rgb(180,24,29), rgb(234,0,66),rgb(180,24,29),rgb(234,0,66)) !important;
    padding: 10px 0;
}

.btn-lottox {
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
    background-color: #ffdc08;
    color: #1e194c;
}

.btn-mylotto {
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    border: 0;
    outline: 0;
}

    .btn-mylotto:focus {
        box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 5%);
    }

    .btn-mylotto:hover {
        color: #d3303e;
    }

.dropdown-menu-dark {
    background-color: #1e194c;
}

#viewTicektsBtn {
    background: #d3303e;
    color: #fff;
}

#continueAlertBtn {
    background: #fff;
}

.btn-buyticket {
    background: #1e194c;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
}

.btn.btn-buyticket:hover {
    color: #d3303e;
}
.blinkt {
    text-transform:uppercase;
    font-weight:800;
    background-color: transparent !important;
    color: rgba(191,20,30,1) !important;
    animation: blink-animation 3s steps(5, start) infinite;
    -webkit-animation: blink-animation 3s steps(5, start) infinite;
}
.blink {
    background-color: crimson !important;
    color: #fff !important;
    animation: blink-animation 3s steps(5, start) infinite;
    -webkit-animation: blink-animation 3s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

#howtoplay {
    padding: 40px 20px;
    background-color: #fff;
}

#winners-list {
    background: aliceblue;
    padding: 5px 10px;
}

    #winners-list li {
        border: 1px solid #828282;
        padding: 8px;
        background: #fff;
    }

#latestresults {
    margin-top: 0;
}

#latestresults, #winners {
    padding: 40px 20px;
    background-color: #efefef;
}

.carousel-item img {
    width: 100%;
}

#homeicon {
    display: none;
    margin-right: 10px;
}

.pagetitle {
    text-align: center;
    margin-top: 60px;
}

#countDown {
    top: 0;
    z-index: 1000;
    position: relative;
    padding: 20px;
    background-image: linear-gradient(to bottom right, rgb(110,217,224), rgb(33,167,245));
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 4px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    width: 94%;
}

.nav.nav-pills .nav-link.active {
    background-color: #1e194c;
}

.tableballs {
    text-align: center;
    margin: 2px 5px;
    font-size: 15px;
    display: inline-block;
    font-weight: 600;
    height: 36px;
    width: 36px;
    line-height: 36px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
}

.stk-form-group {
    text-align: center;
    margin: 8px 0;
    border: 0.5px solid rgba(0,0,0,0.05);
    padding: 4px 8px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

    .stk-form-group label {
        font-weight: 500;
        margin: 5px 0;
    }

    .stk-form-group .form-control {
        border-radius: 1px;
        box-shadow: none;
    }

.row.rowx {
    padding: 5px;
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
    border: 1px solid #ced4da;
    margin: 0 1px;
}

    .row.rowx .col-3 {
        padding: 0;
        color: #1e194c;
    }

    .row.rowx .col-9 {
        padding-left: 0;
    }

        .row.rowx .col-9 #userNumber, .row.rowx .col-9 #userStake, .row.rowx #userStakeInsta {
            font-weight: 600;
            border: 0;
            font-size: 17px;
            padding: 0;
            width: 100%;
            height: 100%;
        }

.pr-0 {
    padding-right: 0;
}

#pickYourNumbers, #pickYourNumbersJackpot {
    background-color: rgb(110,217,224);
    color: #000;
}

.btn.btn-lucky-pick {
    border-radius: 3px;
    margin: 4px 1px;
    padding: 7px 1px;
    color: #1e194c;
    background-image: linear-gradient(to bottom right, #f4b400, #faea29,#f4b400,#faea29) !important;
}

#userStake {
    font-weight: 600;
    font-size: 17px;
}

#buyticketholder {
    background: #e8f8fa;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    padding: 10px 5px;
}

.number-btn {
    background-color: #f1f1f1;
    position: relative;
    display: inline-flex;
    height: 50px;
    width: 50px;
    flex: auto;
    margin: 1.5px;
    border: 0;
}

    .number-btn span {
        text-align: center;
        position: absolute;
        margin: 0 auto;
        right: 0;
        left: 0;
        top: 4px;
        bottom: 0;
        font-size: 18px;
        font-weight: 600;
        height: 40px;
        width: 40px;
        display: inline-block;
        line-height: 40px;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
    }

    .number-btn.selected {
        background-color: #fff;
        box-shadow: inset 0 0 5px rgba(255,255,255,0.8);
    }

        .number-btn.selected.bl span, .tableballs.bl {
            background-image: linear-gradient(to bottom right,rgb(33, 150, 243),rgb(21, 101, 192));
            color: #fff;
        }

        .number-btn.selected.rd span, .tableballs.rd {
            background-image: linear-gradient(to bottom right,rgb(239, 83, 80),rgb(198, 40, 40));
            color: #fff;
        }

        .number-btn.selected.or span, .tableballs.or {
            background-image: linear-gradient(to bottom right,rgb(255, 167, 38),rgb(255, 143, 0));
            color: #fff;
        }

        .number-btn.selected.bk span, .tableballs.bk {
            background-image: linear-gradient(to bottom right,rgb(117, 117, 117),rgb(33, 33, 33));
            color: #fff;
        }

        .number-btn.selected.gr span, .tableballs.gr {
            background-image: linear-gradient(to bottom right,rgb(102, 187, 106),rgb(46, 125, 50));
            color: #fff;
        }

        .number-btn.selected.wh {
            background-color: #828282;
        }

            .number-btn.selected.wh span, .tableballs.wh {
                background-image: linear-gradient(to bottom right,rgb(255,255, 255),rgb(225,225,225));
                color: #000;
            }

        .number-btn.selected.lbl span, .tableballs.lbl {
            background-image: linear-gradient(to bottom right,rgb(74,212,253),rgb(0,176,185));
            color: #fff;
        }


#clearAll {
    cursor: pointer;
}

#mySelectedNumbers, #mySelectedNumbersJackpot, #mySelectedNumbersInsta, #myWinningInsta, .lottopreselected {
    padding: 0;
    display: flex;
    justify-content: center;
}

    #mySelectedNumbers li, #mySelectedNumbersJackpot li, #mySelectedNumbersInsta li, #myWinningInsta li, .lottopreselected li {
        cursor: pointer;
        display: inline;
        margin: 0 5px;
    }

        #mySelectedNumbers li span, #mySelectedNumbersJackpot li span, #mySelectedNumbersInsta li span, #myWinningInsta li span, .lottopreselected li span {
            text-align: center;
            margin: 2px;
            font-size: 18px;
            display: inline-block;
            font-weight: 600;
            height: 45px;
            width: 45px;
            line-height: 45px;
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
        }

        #mySelectedNumbers li .popout.blank, #mySelectedNumbersJackpot li .popout.blank, #myWinningInsta li .popout.blank, #mySelectedNumbersInsta li .popout.blank, .lottopreselected li .popout.blank {
            background-color: #fff;
            border: 1px solid #ececec;
        }

        #mySelectedNumbers li .popout.bl, #mySelectedNumbersJackpot li .popout.bl, #myWinningInsta li .popout.bl, #mySelectedNumbersInsta li .popout.bl, .lottopreselected li .popout.bl {
            background-color: #1976D2;
        }

        #mySelectedNumbers li .popout.rd, #mySelectedNumbersJackpot li .popout.rd, #myWinningInsta li .popout.rd, #mySelectedNumbersInsta li .popout.rd, .lottopreselected li .popout.rd {
            background-color: #d3303e;
        }

        #mySelectedNumbers li .popout.bk, #mySelectedNumbersJackpot li .popout.bk, #myWinningInsta li .popout.bk, #mySelectedNumbersInsta li .popout.bk, .lottopreselected li .popout.bk {
            background-color: #212121;
        }

        #mySelectedNumbers li .popout.or, #mySelectedNumbersJackpot li .popout.or, #myWinningInsta li .popout.or, #mySelectedNumbersInsta li .popout.or, .lottopreselected li .popout.or {
            background-color: #FFA000;
        }

        #mySelectedNumbers li .popout.gr, #mySelectedNumbersJackpot li .popout.gr, #myWinningInsta li .popout.gr, #mySelectedNumbersInsta li .popout.gr, .lottopreselected li .popout.gr {
            background-color: #388E3C;
        }

        #mySelectedNumbers li .popout.wh, #mySelectedNumbersJackpot li .popout.wh, #myWinningInsta li .popout.wh, #mySelectedNumbersInsta li .popout.wh, .lottopreselected li .popout.wh {
            background-color: #FFF;
            color: #000;
        }

        #mySelectedNumbers li .popout.lbl, #mySelectedNumbersJackpot li .popout.lbl, #myWinningInsta li .popout.lbl, #mySelectedNumbersInsta li .popout.lbl, .lottopreselected li .popout.lbl {
            background-color: #75d4da;
        }

        #mySelectedNumbers li:last-child, #mySelectedNumbersJackpot li:last-child, #myWinningInsta li:last-child, #mySelectedNumbersInsta li li:last-child, .lottopreselected li:last-child {
            border-right: none;
        }

.card-picker {
    background-color: #fff;
}

.card-footer, .card-header {
    background-color: #1e194c;
    color: #fff;
}

#timerDays, #timerHours, #timerMinutes, #timerSeconds {
    font-size: 36px;
}

#timer ul {
    padding: 0;
    margin: 0;
}

    #timer ul li {
        width: 22%;
        height: 120px;
        border: 2px solid #fff;
        border-radius: 5px;
        padding: 5px;
        display: inline-block;
    }

        #timer ul li span {
            display: block;
        }

.winpay, .col-5.text-end {
    font-weight: 700;
}

.paycalc {
    color: #ffdc08;
}

.btn {
    margin: 10px 0;
    width: 100%;
    font-weight: 600;
}

.btn-verify {
    box-shadow: 0 3px 3px rgba(0,0,0,0.19), 0 2px 2px rgba(0,0,0,0.23);
    background-color: #1e194c;
    color: #fff;
}

.btn-resend {
    background-color: #efefef;
    box-shadow: 0 3px 3px rgba(0,0,0,0.19), 0 2px 2px rgba(0,0,0,0.23);
}

.btn-claer-all {
    margin: 0;
    background-color: #ced4da;
    color: #1e194c;
    padding: 10px;
}

.btn-lotto {
    padding: 5px 15px;
    color: #fff;
    margin-top: 25px;
    background-color: #d3303e;
}

.w-100.btn.btn-lg.btn-primary {
    background-color: #1e194c;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
}

.btn-primary {
    border: 0 !important;
    margin: 10px 0;
}

.card.card-form {
    margin-top: 40px;
    padding: 20px;
}

#closeAllDiv {
    margin: 0;
}

.card-form .form-control {
    margin-bottom: 5px;
}

.card {
    font-size: 16px;
    font-weight: 600;
    margin: 5px;
    border-radius: 2px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
}

    .card.maindraw {
        background-color: #d3303e;
    }

        .card.maindraw ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .card.maindraw ul li {
                display: inline-block;
                border-right: 2px solid #000;
                color: #fff;
                font-weight: 500;
                font-size: 28px;
                min-width: 15%;
            }

                .card.maindraw ul li:last-child {
                    border-right: none;
                }

    .card.drawstats {
        background-color: #fff;
    }

        .card.drawstats h2 {
            padding: 3px 2px;
            margin: 5px 15px;
            background-color: #1e194c;
            color: #fff;
            border-radius: 5px;
        }

    .card.winners {
        padding: 7px;
        background-color: #1e194c;
        color: #fff;
    }

        .card.winners ul {
            list-style: none;
            padding: 5px;
        }

            .card.winners ul li {
                min-height: 24px;
                font-weight: 500;
                margin-bottom: 5px;
                background: #fff;
                color: #1e194c;
                border-radius: 3px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
                padding: 2px;
            }

    .card.prizebreakdown {
        padding: 7px;
        background-color: #fff;
        color: #1e194c;
    }

        .card.prizebreakdown ul {
            list-style: none;
            padding: 5px;
            text-align: left;
        }

            .card.prizebreakdown ul li {
                font-weight: 500;
                margin-bottom: 5px;
                background: #d3303e;
                color: #fff;
                border-radius: 3px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
                padding: 2px;
                padding-left: 15px;
            }

#myLottoMottoAlertHolder {
    display: none;
}

.card-alert {
    position: absolute !important;
    top: 11%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 320px;
    z-index: 6000;
    padding: 5px;
    -webkit-transition: width 1s,-webkit-transform 2s;
}

.card.card-alert.success {
    background: #3aa914;
}

.card.card-alert.danger {
    background: #d3303e;
}
.card.card-alert.insta {
    background: rgba(74, 212, 253,1);
}

.card-alert-content {
    color: #fff;
    text-align: center;
    padding: 5px 10px;
}

.btn-opencart {
    padding-left: 0;
    padding-right: 0;
    background-color: #d3303e;
    color: #fff;
    box-shadow: 0 2px 2px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23);
}

#mylottocart {
    display: flex;
    margin-top: 15px;
}

#cancelcart {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-weight: 700;
}

#clearcart {
    color: #d3303e;
    font-weight: 800;
}

    #clearcart .btn.clear-btn {
        margin: 0;
        background: #1e194c;
        color: #fff;
        padding: 2px 5px;
    }

#cartTicketsList {
    padding: 0;
}

    #cartTicketsList li {
        list-style: none;
        margin: 3px 0;
        padding: 3px 0;
        border: 1px solid #b2b2b2;
    }

        #cartTicketsList li .tableballs {
            width: 25px;
            height: 25px;
            line-height: 25px;
        }

.cartticketprice {
    text-align: end;
    position: absolute;
    top: 26px;
    right: 33px;
}

#selectedJackpot {
    color: #ffdc08;
}

#refreshSelection {
    position: absolute;
    right: 10px;
    top: 7px;
    color: crimson;
}

.btn.closeAlert {
    font-size: 17px;
    background-color: #fff;
    color: #1e194c;
    font-weight: 700;
}

.csr-holder {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 10px 0;
}

    .csr-holder .img-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        left: 0;
    }

    .csr-holder .csr-img {
        width: 100%;
    }

    .csr-holder .img-cover:hover {
        background-color: rgba(0,0,0,0.35)
    }

.winners-holder {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
}

.winners-avatar {
    width: 100%;
    border-radius: 5px;
}

.winners-name, .winners-phone {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 2px 0;
}

.winners-name {
    background: #000;
    color: #fff;
    top: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.winners-phone {
    background-color: #1e194c;
    bottom: 0;
    color: #F3F3F3;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.top-footer {
    text-align: center;
    font-size: 13px;
    padding: 80px 15px;
    background: rgb(30,25,76);
    background: linear-gradient(90deg, rgba(30,25,76,1) 0%, rgba(53,25,76,1) 35%, rgba(194,3,48,1) 70%);
    color: rgba(255,255,255,0.65);
    margin: 0px 0 80px 0;
}

    .top-footer .socials {
        list-style: none;
        padding: 0;
    }

        .top-footer .socials li {
            display: inline;
            font-size: 30px;
            margin: 4px;
            font-weight: 200;
        }

            .top-footer .socials li a {
                text-decoration: none;
                color: #f2f2f2;
            }

footer {
    font-size: 12px;
    padding: 10px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    background-image: linear-gradient(to bottom right, rgb(32,25,76),rgb(75,21,53));
}

.border-top.footer {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    word-wrap: break-word;
}

/* Dashboard */



.d-flex.align-items-start {
    padding: 15px;
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
    background-color: #cfcfcf;
}

.nav.flex-column.nav {
    box-shadow: 0 2px 2px rgb(0 0 0 / 19%), 0 3px 3px rgb(0 0 0 / 13%);
    background-color: #fff;
    min-width: 15%;
}

    .nav.flex-column.nav .nav-link {
        color: #212529;
        font-weight: 600;
    }

        .nav.flex-column.nav .nav-link.active {
            color: #fff;
        }

.tab-content {
    width: 100%;
    height: 100%;
}

.admin-card {
    height: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 0px rgb(0 0 0 / 15%), 0 0px 1px rgb(0 0 0 / 13%);
    border-radius: 0;
}

    .admin-card p span {
        font-weight: 600;
    }

    .admin-card h5 {
        color: #b2b2b2;
    }

    .admin-card h3 {
        font-weight: 600;
    }

    .admin-card p {
        font-size: 14px;
    }

    .admin-card .usericons {
        position: absolute;
        width: 70px;
        height: 70px;
        top: 0;
        bottom: 0;
        margin: 0 auto;
        left: 0;
        right: 0;
        text-align: center;
    }

        .admin-card .usericons i {
            color: #fff;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            padding-top: 10px;
            font-size: 50px;
        }

table {
    width: 100% !important;
}

    table td a {
        text-decoration: none;
        font-weight: 700;
        color: #ed5037;
    }

#content-holder {
    padding: 15px;
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
    background-color: #cfcfcf;
}

.card.kbc-time-card {
    box-shadow: 0 2px 2px rgb(0 0 0 / 19%), 0 3px 3px rgb(0 0 0 / 23%);
    border-radius: 5px;
}

.kbc-card-header {
    background-color: #1e194c;
    color: #fff;
    text-align: center;
}

.kbc-card-content {
    text-align: center;
    padding: 5px;
}

    .kbc-card-content h5 {
        color: #b2b2b2;
    }

.card.kbc-time-card {
    box-shadow: 0 2px 2px rgb(0 0 0 / 19%), 0 3px 3px rgb(0 0 0 / 23%);
    border-radius: 5px;
}

.kbc-card-header {
    border-radius: 5px;
    background-color: #1e194c;
    color: #fff;
    padding: 5px;
    text-align: center;
}

.kbc-card-content {
    padding: 10px;
    text-align: left;
}

    .kbc-card-content h5 {
        color: #b2b2b2;
    }


#confettis {
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
}

.confetti {
    left: 50%;
    width: 16px;
    height: 16px;
    position: absolute;
    transform-origin: left top;
    animation: confetti 5s ease-in-out -2s infinite;
}

@keyframes confetti {
    0% {
        transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
    }

    25% {
        transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
    }

    50% {
        transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
    }

    75% {
        transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
    }

    100% {
        transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
    }
}
.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0;
    background-color: #fc0120;
}

.confetti:nth-child(2) {
    left: 20%;
    animation-delay: -5s;
    background-color: #8257e6;
}

.confetti:nth-child(3) {
    left: 30%;
    animation-delay: -3s;
    background-color: #ffbf4d;
}

.confetti:nth-child(4) {
    left: 40%;
    animation-delay: -2.5s;
    background-color: #fe5d7a;
}

.confetti:nth-child(5) {
    left: 50%;
    animation-delay: -4s;
    background-color: #45ec9c;
}

.confetti:nth-child(6) {
    left: 60%;
    animation-delay: -6s;
    background-color: #f6e327;
}

.confetti:nth-child(7) {
    left: 70%;
    animation-delay: -1.5s;
    background-color: #f769ce;
}

.confetti:nth-child(8) {
    left: 80%;
    animation-delay: -2s;
    background-color: #007de7;
}

.confetti:nth-child(9) {
    left: 90%;
    animation-delay: -3.5s;
    background-color: #63b4fc;
}

.confetti:nth-child(10) {
    left: 15%;
    animation-delay: -3.5s;
    background-color: #f9c4ea;
}
.confetti:nth-child(11) {
    left: 25%;
    animation-delay: -4.5s;
    background-color: #f769ce;
}
.confetti:nth-child(12) {
    left: 35%;
    animation-delay: -3.5s;
    background-color: #45ec9c;
}
.confetti:nth-child(13) {
    left: 45%;
    animation-delay: -2.5s;
    background-color: #8257e6;
}
.confetti:nth-child(14) {
    left: 65%;
    animation-delay: -3s;
    background-color: #ffbf4d;
}


/*Animation*/
.popout {
    animation: popout 0.5s ease;
    -webkit-animation: popout 0.5s ease;
}

@keyframes popout {
    from {
        transform: scale(0)
    }

    80% {
        transform: scale(1.5)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes popout {
    from {
        -webkit-transform: scale(0)
    }

    80% {
        -webkit-transform: scale(1.3)
    }

    to {
        -webkit-transform: scale(1)
    }
}
/**/
.pop-outin {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-size: 30px;
    animation: 2s anim-flipX ease infinite;
    margin-top: 40px;
    COLOR: #FFF;
    font-weight: 800;
}

@keyframes anim-flipX {
    0% {
        opacity: 0;
        transform: rotateX(90def);
    }

    50% {
        opacity: 1;
        transform: rotateX(720deg);
    }

    100% {
        /* animate nothing to pause animation at the end */
        opacity: 1;
        transform: rotateX(720deg);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .btn.btn-mylotto.dropdown-toggle {
        margin: 0px;
    }

    #carouselLottoMotto {
        display: none;
    }

    .container.playlottomoto {
        margin-top: 110px;
    }

    .top-game-navigation {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .tableballs {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-weight: 500;
        margin: 0px 2px;
        font-size: 14px;
    }

    #timerDays, #timerHours, #timerMinutes, #timerSeconds {
        font-size: 28px;
    }

    #timerTitle {
        font-size: 17px !important;
    }

    .nextdraw {
        font-size: 17px;
    }

    #timer ul li {
        width: 22%;
        height: 60px;
        border: 2px solid #fff;
        border-radius: 5px;
        padding: 3px;
        display: inline-block;
    }

        #timer ul li span {
            display: block;
            font-size: 17px;
        }

    #mylottodepositbtn {
        top: 0;
    }

    #countDown {
        padding: 20px 0;
        bottom: 10%;
        left: 0;
    }

    #latestresults {
        margin-top: 0px;
    }

    #mySelectedNumbers, .lottopreselected {
        position: relative;
        z-index: 10;
        width: 100%;
        left: 0;
    }

        #mySelectedNumbers li span, .lottopreselected li span {
            height: 36px;
            width: 36px;
            line-height: 36px;
        }

    .card.prizebreakdown {
        font-size: 13px;
    }

    .nav.flex-column.nav {
        margin-bottom: 23px;
    }

    .d-flex {
        display: block !important;
    }

    #mySelectedNumbers li span, .lottopreselected li span {
        height: 32px;
        width: 32px;
        line-height: 32px;
    }

    #mySelectedNumbers, .lottopreselected {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 1444px) {
    #mylottodepositbtn {
        right: 12%;
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}
