/* Global Styles */
body {
    background-color: #0f0f0f;
    color: white;
    background-size: cover;
    background-attachment: fixed !important;
    background-position: center !important;
    overflow-x: hidden;

}

.gold {
    background: purple !important;
    box-shadow: 2px 2px 20px purple !important;

}

body,
html {}

#history-table tr>td {
    border-top: 3px solid #4b2477;

}

.btn-logout {
    background: turquoise;
    border-radius: 100px;
}

#historybutton {
    color: white;
    background: rgb(175, 0, 181);
    padding: 8px;
    font-size: 12px;
    border-radius: 24px;
}

.fa-tooltip .fa-tooltiptext {
    visibility: hidden;
    width: 190px;
    background-color: #00000054 !important;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 9px !important;
    padding: 13px;
    font-size: 16px;
    position: absolute;
    z-index: 1;
    font-family: arial;
}

.hellobar {
    width: 100%;
    margin-bottom: 8px;
    padding-bottom: 4px;
    text-align: center;
    background: linear-gradient(90deg, purple, blue, turquoise);
    background-size: 300% 300%;
    cursor: pointer;

    animation: gradient-animation 5s infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.row {
    margin: 0px;
}

.btn-warning {
    border: none;
}

/* Navigation Styles */
.navcontainer {
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo.center {
    text-align: center;
    margin: 0 auto;
}

.user-info,
.user-wallet {
    margin: 0 20px;
    width: 35%;

}


.user-info {
    text-align: right;

}

.user-info-icon {
    margin-left: 3px;
}

/* ... other styles ... */

/* Announcement Styles */
#announcement {
    background: none;
}

/* Rebate Box Styles */
.rebate-box {
    border-radius: 11.5px;
    border: 1px solid #321d59;
    width: 100%;
    background: linear-gradient(45deg, #7a16a2, #4b2477);
    text-align: center;
    font-size: 18px;
    display: inline-block;
    margin: 0;
    margin-top: 8px;
    padding: 4px;
    padding-bottom: 0;
}

.rebateamt {
    width: 60%;
    float: left;
}

.rebatebtn {
    width: 40%;
    float: left;
}

.d-none {
    display: none;
}

/* Button Styles */
.btn-claim-rebate {}

.btn-refresh-rebate {
    color: white;
}

#claimButton {
    float: left;
    display: inline-block;
}

#refreshIcon {
    color: white;
    display: inline-block;
}

/* Rebate Box Date Styles */
.rebate-box-date {
    font-size: 8px;
    padding: 0;
    margin: 0;
    line-height: 4px;
}

/* Responsive Image Styles */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Icon Styles */
.balance-icon,
.promotion-balance-icon,
.user-info-icon {
    margin-right: 8px;
    flex: 1;
}

.language-icon {
    /* add your styles for language icon */
}

.btn-logout {
    /* add your styles for logout button */
}

/* Header Styles */

.headerbg {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;

}

#header {}

.mobilelogo {
    display: none;
}

/* Promo Styles */
#promo {}

/* Carousel Styles */
.carousel {
    border-radius: 24px;
    height: 200px;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgb(154, 4, 184);
    animation: colorchange 5s infinite alternate;
}

@keyframes colorchange {
    0% {
        box-shadow: 2px 2px 20px rgb(154, 4, 184);
    }

    25% {
        box-shadow: 2px 2px 20px rgb(139, 0, 146);
    }

    50% {
        box-shadow: 2px 2px 20px rgb(40, 1, 91);
    }

    75% {
        box-shadow: 2px 2px 20px rgb(0, 179, 255);
    }

    100% {
        box-shadow: 2px 2px 20px rgb(154, 4, 184);
    }
}

.carousel-cell {
    width: 100%;
    height: 200px;
    background: rgb(10, 10, 10);
    border-radius: 5px;
}

.carousel-cell img {
    width: 100%;
}


/* Jackpot Styles */
.jackpot {
    position: relative;
    background: url("https://i.ibb.co/dpF0ryB/progressive-jackpot-ani-final-desktop.gif");
    height: 170px;
    margin: 0 auto;
    width: 800px;
    background-position: center;
    background-size: cover;
    animation: vibrate 8s infinite alternate;
}

.jackpot-amount {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.5em;
    font-weight: 900;
    color: #fff;
    animation: shine 10s infinite;
}

@keyframes vibrate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes shine {
    0% {
        color: #ffd700;
        text-shadow: none;
    }

    50% {
        color: #ffcc00;
        text-shadow: 0 0 40px #ffcc00;
    }

    100% {
        color: #ffd700;
        text-shadow: none;
    }
}

/* Promotion Styles */
.promotion {
    background: black;
}

/* Content Styles */
.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Sticky Header Styles */
.sticky-on-top {
    background-color: #241540;
    padding-bottom: 8px;
}

/* Top Bar Styles */
.top-bar {
    z-index: 1500;
    padding: 5px 10px;
    background-color: #241540;
}


.nav>li>a {
    color: white !important;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #321d59;
    text-align: center;
    margin-left: 2px;
    margin-right: 2px;
}

.navbar {
    border-radius: 10px;
}

.navbar-inverse {
    border: none;
    min-height: 0;
}

.navbar-inverse .navbar-toggle {
    border: none;
}



#games {
    min-height: 80vh;
    padding-bottom: 240px;
    width: 100%;
}

#navigation {
    position: sticky;
    top: 0;
    transition: all 0.5s ease-in-out, left 0.3s ease-in-out, position 0.3s ease-in-out;
    z-index: 999990;
    /* Adjust as needed */

}



#navigation.sticky {
    position: fixed;
    top: 0;
    height: 50px;
    padding-top: 0px;
    background: linear-gradient(45deg, #2e053f, #4b2477e7);
    width: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Adjust as needed */
}

#navigation.sticky .logo {
    transform: scale(1);
}

#game-navigation {
    position: sticky;
    transition: all 0.5s ease-in-out, left 0.3s ease-in-out, position 0.3s ease-in-out;
    z-index: 999;
    /* Adjust as needed */

}

#game-navigation.sticky {
    position: fixed;
    top: 50px;
    padding-top: 0px;
    background: linear-gradient(45deg, #2e053f, #4b2477);
    width: 100%;
    left: 0;
    right: 0;
    z-index: 900099;
    /* Adjust as needed */
}


#game-navigation.sticky .gamenav {
    background: none;
    border-radius: 0px;
    padding: 0px;


}

#game-navigation.sticky .navbar {
    margin: 0px;
    width: 70%;
    min-height: 0px;
    float: left;

}

#game-navigation.sticky .navbar>a {
    font-size: 12px;

}

#game-navigation.sticky .searchbar-wrapper {
    width: 30%;
    float: left;
}



#game-navigation.sticky #input-search {}

#game-navigation.sticky #btn-search {}


.navbar>a {
    float: left;
    padding: 8px;
    font-size: 12px;
    color: white;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
    border-bottom-width: thick;
}

.navbar>.group-item:hover {
    background-color: #fc00e7;
    border: none;
    border-radius: 100px;
    box-shadow: 2px 2px 40px #fc00e7;

}

.navbar>a.active {
    background-color: #fc00e7;
    border: none;
    font-weight: bold;
    border-radius: 100px;
    box-shadow: 2px 2px 40px #fc00e7;

}

.navbar-header {
    margin-top: 0px;
}

.nav-item>a:hover,
.nav-item>a:focus {
    background-color: #481e96 !important;
}

.nav-item:hover,
.nav-item:focus {
    background-color: #481e96;
}

.nav-item.active>a {
    background-color: #481e96;
    border-bottom-color: #ffae00;
}





.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    background-color: #481e96 !important;
    font-weight: bold;

}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #481e96;
}

.logo {
    height: 80px;
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.5);

}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.user-info {
    display: inline-block;
    position: relative;
    bottom: 0;
    right: 6px;
}

.user-info * {
    font-weight: 700;
}

.user-info>* {
    margin: auto 6px;
}

.user-info-icon {
    width: 32px;
    height: 32px;
}

.toast-container {
    z-index: 2000 !important;
}

.toast-title {
    font-size: 16px !important;
}

.modal-title {
    font-size: 20px !important;
}

.modal-font {
    font-size: 16px !important;
}

.modal-btn-yes {
    order: 1;
    margin-right: auto !important;
}

.modal-btn-no {
    order: 2;
}

.modal-size {
    min-width: 180px;
}

.alertify-notifier {
    z-index: 999999999999999;
}

.btn-rebate-xs {
    padding-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: green;
    border: none;
    border-radius: 100px;
    box-shadow: 2px 2px 20px green;
    width: 80px;
    height: 28px;
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
}

.btn-rebate {
    padding-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    width: 90px;
    height: 28px;
    overflow: hidden;
    font-size: 12px;
    background-color: #0fc0e4;
    border: none;
    border-radius: 100px;
    box-shadow: 2px 2px 20px #0fc0e4;
    font-weight: 700;
}


.announcement-bar {
    display: block;
    overflow-y: hidden;
}


.marquee-addon {
    background-color: #8b00cc;
    color: white;
    border: none;
}

p.marquee-text {
    background-color: #09060d;
    padding: 9px 0 3px 0;
    margin-bottom: 0;
}

.marquee {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: none;
    color: white;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.icon {
    margin-right: 10px;
    opacity: 0.2;
}

.text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
}

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

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

.searchbar {
    margin: auto;
}

.searchbar .input-group {
    display: block;
}

#input-search {
    align-items: center;
    background-color: #090c1199;
    border: 1px solid var(--color_grey-60);
    cursor: text;
    border: none;
    font-size: 12px;
    letter-spacing: -.24px;
    padding: 0;
    padding-left: 12px;
    display: flex;
    color: white;
    position: relative;
    transition: color .1s ease-in-out, border-color .1s ease-in-out;
}


#input-search:focus {
    align-items: center;
    background-color: #090c1199;
    border: 1px solid var(--color_grey-60);
    cursor: text;
    display: flex;
    color: white;
    position: relative;
    transition: color .1s ease-in-out, border-color .1s ease-in-out;
}


.searchbar .input-group {
    min-width: 480px;
}

#btn-search {
    float: left;
    height: 35px;
    line-height: 30px;
    padding: 0px 12px;
    border-radius: 0px 100px 100px 0px;
    font-size: 15px;
    font-weight: 700;
}

#btn-search {
    background-color: rgb(24, 24, 24);
}

#btn-search:hover {
    background-color: gold;
    box-shadow: 2px 2px 20px gold;
}


.btn-layout-group {
    /* margin-top: -40px; */
    display: block;
    /* position: relative; */
}

.btn-layout {
    padding: 0px 6px;
}

.game-panel {
    padding: 15px;
    max-width: 100vw;
    margin: auto;
    /* background-color: #25134787; */
    border-radius: 10px;
}

.game-card {
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap !important;
}

.game-card>[class*='col-'] {
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 15px;
    padding-top: 15px;
}

.card {
    margin: auto;
    text-align: center;
}

.card-body {
    position: relative;
}

.card-body:hover .overlay {
    opacity: 1;
}

.overlay {
    position: absolute;
    opacity: 0;
    transition: .5s ease;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000000a3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-description {
    color: white;
    position: absolute;
    font-size: 20px;
    top: 50%;
    height: 50%;
    width: 100%;
}

.btn-overlay {
    background-color: transparent;
    color: inherit;
    transition: all .25s;
}

.btn-default.btn-overlay {
    width: 85%;
    margin:0 auto;
    color: inherit;
}

.btn-default.btn-overlay:hover,
.btn-default.btn-overlay:focus {
    color: #fff;
    background-color: rgba(230, 230, 230, 0.2);
}

.btn-game-text {
    /* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
    font-size: 12px;
    ;
}

.btn-favourite {
    position: absolute;
    z-index: 1000;
    right: 0;
    padding: 0;
    border: none;
}

.btn-favourite i {
    font-size: 18px;
    padding: 4px;
    color: rgb(248, 248, 248);
    background: rgba(192, 192, 192, 0.466);
    border-radius: 4px;
}

.btn-favourite-active i {
    font-size: 18px;
    padding: 4px;
    color: white;
    box-shadow: 2px 2px 20px red;
    background: red;
    border-radius: 4px;

}

.game-card .card-body>.btn-favourite {
    margin-right: 6px;
}

.game-card .game {
    margin: 10px 0px;
}



.game-card .game-4 {
    width: 16.6%;
}

.card-body {
    margin-bottom: 10px;
}

.btn-game-text {
    font-weight: 700;
}

.footer {
    clear: both;
    background-color: #000;
    text-align: center;
    padding: 15px;
    font-size: 10px;
}

#btnToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: white solid 1px;
    outline: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 25px;
    font-size: 18px;
}

#btnToTop:hover {
    background-color: rgba(230, 230, 230, 0.205);
}