@import url("https://fonts.googleapis.com/css2?family=Open Sans:wght@400;500;600;700&display=swap");

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--black);
    background: var(--bgLight);
    font-weight: 500;
    font-size: 13px;
}

:root {
    --primary: #1575e0;
    --white: #fff;
    --black: #141720;
    --bgLight: #f4f9fc;
    --bgDark: #1b2d38;
    --bgDark2: #2c3e50;
    --borderColor: #e4e6eb;
    --gray: #5e627f;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

    /* Common spacing values */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;

    /* Common border radius values */
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;

    /* Common transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.4s;
}

/* Spinner */
.box {
    margin: 0 auto;
    width: 60px;
    height: 140px;
    position: relative;
    perspective: 600px;
}

.shadow {
    position: absolute;
    width: 100%;
    height: 10px;
    background: radial-gradient(
        ellipse at center,
        rgba(13, 102, 233, 0.5) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    bottom: 0;
    border-radius: 100%;
    transform: scaleX(0.8);
    opacity: 0.6;
    filter: blur(2px);
    animation: shadowScale 1s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.gravity {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 10px;
    animation: bounce 1.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-style: preserve-3d;
    will-change: transform;
}

.ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: linear-gradient(
            135deg,
            #1d1f29 0%,
            #2a2d3a 50%,
            #1d1f29 100%
        ),
        url("https://cdn2.iconfinder.com/data/icons/activity-5/50/26BD-soccer-ball-128.png");
    background-size: cover;
    background-blend-mode: overlay;
    box-shadow: 0 0 20px rgba(13, 102, 233, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: roll 1s linear infinite, glow 2s ease-in-out infinite;
    will-change: transform;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ball::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: shine 2s linear infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(30px) rotateX(5deg);
    }
}

@keyframes shadowScale {
    0%,
    100% {
        transform: scaleX(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scaleX(1.4);
        opacity: 0.8;
    }
}

@keyframes roll {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(13, 102, 233, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(13, 102, 233, 0.7);
    }
}

@keyframes shadow {
    0%,
    100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0.6);
    }
}

@keyframes roll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Match Tiles */

.match-tile {
    background-color: #1b1d2c !important;
    border-radius: 12px !important;
    transition: all 0.2s ease;
    color: #fff !important;
    min-height: 200px !important;
}
.match-tile:hover {
    border: 1px solid #2ecc71 !important;
}

/* Tournament name */
.tournament {
    color: #6c757d !important;
}

/* Team logos */
.team-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* VS text */
.vs {
    color: #fff !important;
}

/* Markets */

.market-name {
    color: #a1a6b0 !important;
    font-size: 0.85em !important;
    margin-bottom: 5px;
    font-weight: 400 !important;
}

.odds-btn {
    background: linear-gradient(to bottom, #272a36, #1d1f29) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 6px !important;
    color: #fff !important;
    padding: 12px 14px !important;
    font-size: 0.95em !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
    min-width: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.odds-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: opacity 0.2s;
}

.odds-btn:hover::after {
    opacity: 1;
}

.odds-btn strong {
    color: #00e395 !important;
    margin-left: 6px !important;
    font-weight: 700;
    font-size: 1.05em;
    text-shadow: 0 0 10px rgba(0, 227, 149, 0.3);
}

.odds-btn:hover {
    background: linear-gradient(to bottom, #313543, #252830) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 227, 149, 0.3) !important;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rtl {
    direction: rtl;
    overflow-x: hidden !important;
}

.dark-mode {
    color: var(--white);
    background: var(--bgDark);
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5 {
    color: var(--white);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--gray);
    -webkit-box-shadow: 0 0 0px 1000px var(--black) inset;
    box-shadow: 0 0 0px 1000px var(--black) inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: var(--bgDark);
    margin-bottom: 15px;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 15px;
}

.btn:focus {
    -webkit-box-shadow: 0 0 0 0rem black;
    box-shadow: 0 0 0 0rem black;
}

button {
    background: none;
    border: none;
    padding: 0;
}

i {
    font-size: 16px;
}

.rtl .form-select {
    background-position-x: 10px !important;
}

a.btn-custom2,
a.btn-custom,
.btn-custom {
    line-height: 2.4;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a.btn-custom2 {
    width: 100%;
}

.btn-custom {
    width: 120px;
}

.dark-mode a.btn-custom2 {
    background: var(--bgDark2);
}

a.btn-custom {
    width: auto; /* Override width for anchor elements */
}

.btn-custom i {
    margin-right: 5px;
}

.btn-custom.light {
    background: var(--bgLight);
    color: var(--black);
}

.btn-custom.light:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .btn-custom.light {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .btn-custom.light:hover {
    background: var(--primary);
    color: var(--white);
}

.form-check label {
    cursor: pointer;
    color: var(--gray);
}

.form-check .form-check-input {
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    cursor: pointer;
    background-color: transparent;
    margin-top: 2px;
}

.form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check .form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--black);
    box-shadow: 0 0 0 0rem var(--black);
}

.header-text h5 {
    text-transform: capitalize;
    color: var(--primary);
}

.header-text h3,
.header-text h2 {
    text-transform: capitalize;
}

.header-text p {
    max-width: 500px;
}

.dark-mode .header-text p {
    color: var(--white);
}

.bottom-bar {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--bgDark);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    border-radius: 28px 28px 0 0;
    z-index: 1000;
    gap: 2px;
    margin: 0 12px;
    max-width: calc(100% - 24px);
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    border-radius: 18px;
    transition: all 0.2s ease;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    cursor: pointer;
    min-width: 0;
}

.bottom-nav-item i {
    font-size: 20px;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.bottom-nav-item span {
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.bottom-nav-item:hover i,
.bottom-nav-item.active i {
    color: var(--white);
}

.bottom-nav-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.bottom-nav-item-betslip {
    position: relative;
}

.bottom-nav-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
}

.bottom-bar button {
    width: 100%;
    transition: 0.4s;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bottom-nav-item {
        font-size: 10px;
        padding: 6px 2px;
    }
    .bottom-nav-item i {
        font-size: 18px;
    }
    .bottom-nav-item span {
        font-size: 9px;
    }
}

.bottom-bar button:hover {
    color: var(--primary);
}

.dark-mode .bottom-bar {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .bottom-nav-item {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode .bottom-nav-item i {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode .bottom-nav-item:hover,
.dark-mode .bottom-nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.dark-mode .bottom-nav-item:hover i,
.dark-mode .bottom-nav-item.active i {
    color: var(--white);
}

.dark-mode .bottom-bar button,
.dark-mode .bottom-nav-item {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dark-mode .bottom-nav-item:hover,
.dark-mode .bottom-bar button:hover {
    color: var(--white) !important;
}

.navbar {
    padding: 0 15px;
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.navbar .navbar-brand {
    font-size: 24px;
    color: var(--bgDark);
    font-weight: 700;
    display: inline-block;
}

.navbar .navbar-brand img {
    max-width: 80px;
}

.navbar .dropdown {
    cursor: pointer;
}

.navbar .dropdown .dropdown-menu {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border: none;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 11px;
}

.navbar .dropdown .dropdown-menu a {
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.navbar .dropdown .dropdown-menu a.active {
    color: var(--white) !important;
}

.navbar .dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .dropdown .dropdown-menu .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: 50%;
    margin: auto;
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    margin-top: 1px;
}

.navbar .dropdown2 .dropdown-menu2 {
    visibility: hidden !important;
    opacity: 0 !important;
    margin-left: 1px;
    left: 100%;
    top: 10px;
}

.navbar .dropdown2:hover .dropdown-menu2 {
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 0;
    top: 0;
}

.navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 12px;
}

.navbar .navbar-toggler i {
    color: var(--primary);
    font-size: 18px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-toggler i:hover {
    color: var(--primary);
}

.navbar .navbar-toggler:focus {
    -webkit-box-shadow: 0 0 0 0rem;
    box-shadow: 0 0 0 0rem;
}

.navbar .nav-item {
    margin: 0 15px;
    padding: 5px 0;
}

.navbar .nav-item .nav-link {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar .navbar-text .night-mode {
    width: 35px !important;
    text-align: center;
    margin-right: 5px;
    color: var(--primary);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.navbar .navbar-text .night-mode i {
    margin-right: 0;
}

.navbar .navbar-text .night-mode:hover {
    color: var(--white);
}

.navbar .navbar-text .btn-custom {
    width: 80px;
    height: 35px;
    text-transform: capitalize;
}

.navbar .navbar-text {
    position: relative;
    padding: 0;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle {
    position: relative;
    background: var(--bgLight);
    border-radius: 3px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    color: var(--primary);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle::after {
    display: none;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .navbar-text .user-dropdown .dropdown-menu {
    top: 117%;
    right: 0;
}

.navbar .navbar-text .user-dropdown .dropdown-menu i {
    width: 20px;
    margin-right: 5px;
}

.navbar .navbar-text .user-dropdown .dropdown-menu a {
    font-weight: 500;
}

.navbar .navbar-text .notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    position: relative;
}

.navbar .navbar-text .notification-panel .dropdown-toggle {
    position: relative;
    background: var(--bgLight);
    border-radius: 3px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    color: var(--primary);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-text .notification-panel .dropdown-toggle::after {
    display: none;
}

.navbar .navbar-text .notification-panel .dropdown-toggle .count {
    display: block;
    color: var(--white);
    background: var(--primary);
    text-align: center;
    min-width: 18px;
    height: 18px;
    border-radius: 3px;
    padding: 2px;
    line-height: 1;
    position: absolute;
    top: -5px;
    right: -18px;
}

.navbar .navbar-text .notification-panel .dropdown-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .navbar-text .notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

.navbar .navbar-text .notification-panel .dropdown-box::-webkit-scrollbar {
    width: 3px;
    height: 100%;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 100px;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 6px;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.navbar .navbar-text .notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 42px;
}

.navbar .navbar-text .notification-panel .notification-dropdown {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    width: 275px;
    max-height: 325px;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 52px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-text .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--borderColor);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a {
    color: var(--black);
    background: none;
    padding: 10px 10px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
    -webkit-transform: 0.4s;
    transform: 0.4s;
}

.navbar .navbar-text .notification-panel .notification-dropdown li a:active,
.navbar .navbar-text .notification-panel .notification-dropdown li a:focus,
.navbar .navbar-text .notification-panel .notification-dropdown li a:hover {
    background: var(--bgLight);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a i {
    background: var(--primary);
    border-radius: 3px;
    padding-top: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
    color: var(--white);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black);
}

.navbar .navbar-text .notification-panel .notification-dropdown .text {
    width: calc(100% - 50px);
    margin-left: auto;
}

.navbar .navbar-text .notification-panel .notification-dropdown .clear-all {
    color: var(--primary);
    text-transform: capitalize;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 7px 10px 6px 15px;
    margin-bottom: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar .navbar-text .notification-panel .notification-dropdown .clear-all a {
    color: var(--primary);
}

.rtl .navbar .navbar-text .user-dropdown .dropdown-menu {
    left: 0;
    right: auto;
}

.rtl .navbar .navbar-text .user-dropdown .dropdown-menu a {
    text-align: right;
}

.rtl .navbar .navbar-text .notification-panel .notification-dropdown {
    left: 0;
    right: auto;
}

.rtl .navbar .navbar-text .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 10px;
}

.dark-mode .navbar {
    background: var(--bgDark);
}

.dark-mode .navbar .navbar-brand,
.dark-mode .navbar .nav-item .nav-link {
    color: var(--white);
}

.dark-mode .navbar .navbar-brand:hover,
.dark-mode .navbar .nav-item .nav-link:hover {
    color: var(--primary);
}

.dark-mode .navbar .dropdown .dropdown-menu {
    background: var(--bgDark);
}

.dark-mode .navbar .dropdown .dropdown-menu a {
    color: var(--white);
}

.dark-mode .navbar .navbar-text .notification-panel .dropdown-toggle,
.dark-mode .navbar .navbar-text .user-dropdown .dropdown-toggle,
.dark-mode .navbar .navbar-text .btn-custom {
    background: rgb(32, 55, 66);
}

.dark-mode .navbar .navbar-text .notification-panel .dropdown-toggle:hover,
.dark-mode .navbar .navbar-text .user-dropdown .dropdown-toggle:hover,
.dark-mode .navbar .navbar-text .btn-custom:hover {
    background: var(--primary);
}

.dark-mode .navbar .navbar-text .notification-panel .notification-dropdown {
    background: var(--bgDark);
}

.dark-mode .navbar .navbar-text .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--bgDark2);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a {
    color: var(--white);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a:hover {
    background: var(--bgDark2);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a
    p {
    color: var(--white);
}

.home-section {
    height: 100vh;
    background: url(../../../uploads/logo/loginImage.png);
    background-size: cover;
    background-position: center bottom;
}

.home-section .text-box h1 {
    font-size: 80px;
    text-transform: uppercase;
}

.home-section .text-box h5 {
    color: var(--gray);
    text-transform: capitalize;
}

.modal,
.login-section {
    height: 100vh;
    overflow-x: hidden;
}

.modal .text-box,
.login-section .text-box {
    /*background: url(../../../uploads/logo/loginImage.png);*/
    background-size: cover;
}

.modal .overlay,
.login-section .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal .overlay .text,
.login-section .overlay .text {
    text-align: center;
    width: 100%;
}

.modal .overlay .text h2,
.login-section .overlay .text h2 {
    text-transform: capitalize;
    color: var(--white);
}

.modal .overlay .text a,
.login-section .overlay .text a {
    color: var(--primary);
    text-transform: capitalize;
}

.modal h4,
.login-section h4 {
    text-transform: capitalize;
    position: relative;
    padding-left: 15px;
    margin-bottom: 0;
}

.modal h4::before,
.login-section h4::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 16px;
    left: 0px;
    bottom: 7px;
    margin: auto;
    background: var(--primary);
}

.modal form,
.login-section form {
    margin: auto;
    max-width: 500px;
}

.modal form .input-box label,
.login-section form .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
}

.modal form .input-box .form-select,
.modal form .input-box .form-control,
.login-section form .input-box .form-select,
.login-section form .input-box .form-control {
    height: 50px;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--borderColor);
    padding: 10px;
    padding-left: 1px;
    padding-right: 1px;
    caret-color: var(--primary);
    color: var(--black);
}

.login-section form .input-box .form-select {
    color: #fff;
}

.modal form .input-box .form-select:focus,
.modal form .input-box .form-control:focus,
.login-section form .input-box .form-select:focus,
.login-section form .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border-bottom: 1px solid var(--primary);
}

.modal form .input-box .form-select::-webkit-input-placeholder,
.modal form .input-box .form-control::-webkit-input-placeholder,
.login-section form .input-box .form-select::-webkit-input-placeholder,
.login-section form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select:-ms-input-placeholder,
.modal form .input-box .form-control:-ms-input-placeholder,
.login-section form .input-box .form-select:-ms-input-placeholder,
.login-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select::-ms-input-placeholder,
.modal form .input-box .form-control::-ms-input-placeholder,
.login-section form .input-box .form-select::-ms-input-placeholder,
.login-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select::placeholder,
.modal form .input-box .form-control::placeholder,
.login-section form .input-box .form-select::placeholder,
.login-section form .input-box .form-control::placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select,
.login-section form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid transparent;
}

.modal form .input-box .form-select option,
.login-section form .input-box .form-select option {
    background: var(--black);
    color: var(--gray);
}

.modal form .input-box textarea.form-control,
.login-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.modal form .links,
.login-section form .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal form .links .form-check label,
.login-section form .links .form-check label {
    cursor: pointer;
    color: var(--gray);
}

.modal form .links .form-check .form-check-input,
.login-section form .links .form-check .form-check-input {
    border-radius: 0px;
    border: 1px solid var(--primary);
    cursor: pointer;
    background-color: transparent;
    margin-top: 2px;
}

.modal form .links .form-check .form-check-input:checked,
.login-section form .links .form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.modal form .links .form-check .form-check-input:focus,
.login-section form .links .form-check .form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--black);
    box-shadow: 0 0 0 0rem var(--black);
}

.modal form .links a,
.login-section form .links a {
    color: var(--primary);
}

.modal form .links a:hover,
.login-section form .links a:hover {
    color: var(--primary);
}

.modal form .bottom,
.login-section form .bottom {
    margin-top: 20px;
    text-align: center;
    color: var(--gray);
}

.modal form .bottom a,
.login-section form .bottom a {
    color: var(--primary);
}

.modal form .bottom a:hover,
.login-section form .bottom a:hover {
    color: var(--primary);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control,
.dark-mode .login-section form .input-box .form-control {
    border-bottom: 1px solid var(--gray);
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::-webkit-input-placeholder,
.dark-mode
    .login-section
    form
    .input-box
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control:-ms-input-placeholder,
.dark-mode .login-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::-ms-input-placeholder,
.dark-mode .login-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::placeholder,
.dark-mode .login-section form .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .modal form .links .form-check label,
.dark-mode .modal form .bottom,
.dark-mode .login-section form .links .form-check label,
.dark-mode .login-section form .bottom {
    color: var(--white);
}

.dark-mode .modal-content {
    background: var(--bgDark2);
}

.rtl .login-section h4 {
    padding-right: 15px;
}

.rtl .login-section h4::before {
    left: auto;
    right: 0px;
}

.rtl .login-section .links .form-check .form-check-input {
    float: right;
}

.rtl .login-section .links .form-check label {
    margin-right: 20px;
}

.modal-header {
    border-bottom: none;
}

.btn-close:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--borderColor);
    box-shadow: 0 0 0 0rem var(--borderColor);
}

.rtl .modal h4 {
    padding-right: 15px;
}

.rtl .modal h4::before {
    left: auto;
    right: 0px;
}

.rtl .modal .modal-header .btn-close {
    margin-right: auto;
    margin-left: 0;
}

#makeDeposit .input-box label {
    margin-bottom: 5px;
    text-transform: capitalize;
}

#makeDeposit .input-box .form-select,
#makeDeposit .input-box .form-control {
    height: 40px;
    border-radius: 3px;
    background-color: var(--white);
    border: none;
    border: 1px solid var(--borderColor);
    padding: 10px;
    caret-color: var(--primary);
    color: var(--black);
}

.dark-mode #makeDeposit .input-box .form-control {
    background: var(--bgDark) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary);
}

#makeDeposit .input-box .form-select:focus,
#makeDeposit .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

#makeDeposit .input-box .form-select::-webkit-input-placeholder,
#makeDeposit .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select:-ms-input-placeholder,
#makeDeposit .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select::-ms-input-placeholder,
#makeDeposit .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select::placeholder,
#makeDeposit .input-box .form-control::placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid transparent;
}

#makeDeposit .input-box .form-select option {
    background: var(--black);
    color: var(--gray);
}

#makeDeposit .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

#userPanelSideBar .remove-class-btn {
    margin-top: 5px;
}

.leftbar {
    width: 260px;
    height: calc(100vh - 50px);
    position: fixed;
    left: 0;
    top: 50px;
    padding: 15px 0 0 0;
    background: var(--white);
    border-radius: 0px;
    z-index: 1029;
    border-right: 1px solid var(--borderColor);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow-y: auto;
}

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

.leftbar .remove-class-btn {
    width: 100%;
    margin: auto;
    padding-top: 4px;
}

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

.leftbar ul.main {
    height: calc(100% - 20px); /* Adjust height to prevent overflow */
    margin: 0;
    padding: 0 0 60px; /* Add bottom padding for scrolling */
    overflow-y: auto;
}

.leftbar ul.main::-webkit-scrollbar {
    width: 0px;
}

.leftbar li a {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    background: var(--white);
    color: var(--bgDark);
    text-transform: capitalize;
    padding: 7.5px 15px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.leftbar li a i {
    margin-right: 5px;
    width: 24px;
}

.leftbar li a.active,
.leftbar li a:hover {
    background: var(--primary);
    color: var(--white);
}

.leftbar li a.active .count,
.leftbar li a:hover .count {
    color: var(--white);
}

.leftbar li a .count {
    color: var(--gray);
    font-size: 14px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.leftbar .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: 50%;
    margin: auto;
}

.leftbar .top {
    border-bottom: 1px solid var(--borderColor);
}

.leftbar .top button {
    width: 100%;
}

.leftbar .profile {
    text-align: center;
}

.leftbar .profile img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-bottom: 15px;
}

.leftbar .profile button {
    text-align: center;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    width: 35px;
    border-radius: 100px;
}

.leftbar .profile button i {
    margin-right: 0;
}

.rtl .leftbar .dropdown-toggle::after {
    right: auto;
    left: 15px;
}

.rtl.dark-mode .leftbar {
    border-right: none;
    border-left: 1px solid var(--bgDark2);
}

.rtl.dark-mode .rightbar {
    border-left: none;
    border-right: 1px solid var(--bgDark2);
}

.dark-mode .leftbar {
    background: var(--bgDark);
    border-right: 1px solid var(--bgDark2);
}

.dark-mode .leftbar li a {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .leftbar li a .count {
    color: var(--borderColor);
}

.dark-mode .leftbar .top {
    border-bottom: 1px solid var(--gray);
}

.dark-mode .leftbar li a.active,
.dark-mode .leftbar li a:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .leftbar .profile button {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .leftbar .profile button:hover {
    background: var(--primary);
}

.rightbar {
    width: 310px;
    height: 96%;
    position: fixed;
    right: 0;
    top: 50px;
    padding: 5px;
    padding-top: 10px;
    background: var(--white);
    border-radius: 0px;
    z-index: 1029;
    border-left: 1px solid var(--borderColor);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow: auto;
}

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

.rightbar .remove-class-btn {
    width: 100%;
    margin: auto;
    padding-top: 4px;
}

.rightbar .top button {
    width: 100%;
}

.rightbar .input-box {
    margin-bottom: 5px;
}

.rightbar .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
    display: none;
}

.rightbar .input-box .form-select,
.rightbar .input-box .form-control {
    height: 35px;
    border-radius: 0px;
    background-color: var(--white);
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    padding: 4px 8px;
    caret-color: var(--primary);
    color: var(--black);
}

.rightbar .input-box .form-select:focus,
.rightbar .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.rightbar .input-box .form-select::-webkit-input-placeholder,
.rightbar .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select:-ms-input-placeholder,
.rightbar .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select::-ms-input-placeholder,
.rightbar .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select::placeholder,
.rightbar .input-box .form-control::placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid var(--borderColor);
    color: var(--gray);
}

.rightbar .input-box .form-select option {
    background: var(--white);
    color: var(--gray);
}

.rightbar .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.rightbar .bet-box {
    background: var(--bgLight);
    border-radius: 3px;
    color: var(--gray);
}

.rightbar .bet-box p {
    margin-bottom: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rightbar .bet-box i {
    color: var(--primary);
    margin-right: 5px;
}

.rightbar .bet-box .close-btn i {
    margin-right: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: var(--gray);
}

.rightbar .bet-box .close-btn i:hover {
    color: var(--primary);
}

.rightbar .bet-box .badge {
    background: var(--bgDark);
    color: var(--white);
    font-size: 14px;
}

.rightbar .inc-dec button {
    width: 35px;
    background: var(--primary);
}

.rightbar .inc-dec input {
    width: 100%;
    display: inline-block;
    height: 35px;
    border: 1px solid var(--borderColor);
    border-right: 0;
    border-left: 0;
}

.rightbar .inc-dec input:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.rightbar .inc-dec input::-webkit-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input:-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input::-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input::placeholder {
    color: var(--gray);
}

.rightbar .dropdown .dropdown-menu {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border: none;
    top: 100%;
    right: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 11px;
}

.rightbar .dropdown .dropdown-menu a {
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.rightbar .dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.rightbar .dropdown .dropdown-toggle::after {
    display: none;
}

.rightbar .dropdown label {
    font-size: 14px;
}

.rightbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    margin-top: 1px;
}

.dark-mode .rightbar {
    background: var(--bgDark);
    border-left: 1px solid var(--bgDark2);
}

.dark-mode .rightbar li a {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .rightbar .top {
    border-bottom: 1px solid var(--bgDark2);
    border-bottom: none;
}

.dark-mode .rightbar .bet-box {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .bet-box .close-btn i {
    color: var(--white);
}

.dark-mode .rightbar .bet-box .close-btn i:hover {
    color: var(--primary);
}

.dark-mode .rightbar .input-box .form-select,
.dark-mode .rightbar .input-box .form-control {
    background: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select:focus,
.dark-mode .rightbar .input-box .form-control:focus {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::-webkit-input-placeholder,
.dark-mode .rightbar .input-box .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select:-ms-input-placeholder,
.dark-mode .rightbar .input-box .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::-ms-input-placeholder,
.dark-mode .rightbar .input-box .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::placeholder,
.dark-mode .rightbar .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .rightbar .dropdown .dropdown-toggle {
    color: var(--white);
}

.dark-mode .rightbar .dropdown .dropdown-menu {
    background: var(--bgDark);
}

.dark-mode .rightbar .inc-dec button {
    width: 35px;
    background: var(--primary);
}

.dark-mode .rightbar .inc-dec input {
    background: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input:focus {
    color: var(--white);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var (--primary);
}

.dark-mode .rightbar .inc-dec input::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input:-ms-input-placeholder {
    color: var (--white);
}

.dark-mode .rightbar .inc-dec input::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input::placeholder {
    color: var(--white);
}

.bet-box-disable {
    background: #b2babf94 !important;
}
.dark-mode .bet-box-disable {
    background: #607e91d9 !important;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-bottom: 34px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.wrapper .content {
    padding-top: 47px;
    width: calc(100% - 570px); /* 260 + 310 */
    margin: auto;
    min-height: 100vh;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .wrapper .content {
        margin-left: 260px;
        margin-right: 310px;
    }
}

.container_skitter,
.skitter {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
}

.image_main,
.image {
    height: 100% !important;
}

.skitter.with-dots {
    margin-bottom: 0;
}

.label_skitter {
    padding-bottom: 80px;
    padding-left: 50px;
}

.label_skitter p {
    padding: 0;
}

.label_skitter h2 {
    color: var(--white);
}

.rtl .leftbar {
    left: auto;
    right: 0;
}

.rtl .rightbar {
    right: auto;
    left: 0;
}

.rtl .rightbar .dropdown .dropdown-menu {
    right: auto;
    left: 0;
}

.rtl .label_skitter {
    padding-left: 0;
    padding-right: 50px;
}

.categories {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
}

.categories a {
    color: var(--bgDark);
    display: inline-block;
    padding: 7.5px 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.categories a i {
    margin-right: 5px;
}

.categories a:hover,
.categories a.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.categories::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.rtl .categories a i {
    margin-right: 0;
    margin-left: 5px;
}

.dark-mode .categories {
    background: var(--bgDark2);
}

.dark-mode .categories a {
    color: var(--white);
}

.dark-mode .categories a:hover,
.dark-mode .categories a.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.table-parent {
    margin: 15px;
}

.table {
    margin-bottom: 15px;
    border-radius: 5px !important;
    overflow: hidden;
    border: none;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--black);
    border: 1px solid var(--borderColor) !important;
}

.table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--black);
    border: 1px solid var(--borderColor) !important;
}

.table thead {
    background: var(--bgDark);
    text-transform: capitalize;
}

.table tbody {
    border: none;
}

.table tr {
    border: none;
}

.table tr th {
    border: none !important;
    padding: 7.5px 15px;
    color: var(--white);
    font-weight: 500;
}

.table tr th:first-child {
    border-top-left-radius: 5px;
    border-top-left-radius: 0px;
}

.table tr th:last-child {
    border-top-right-radius: 5px;
    border-top-right-radius: 0px;
}

.table tr td {
    color: var(--gray);
    border: none !important;
    text-transform: capitalize;
    font-weight: 500;
    padding: 7.5px 15px;
}

.table tr td button {
    background: var(--bgLight);
    color: var (--black);
    width: 100%;
    font-weight: 500;
    padding: 5px 8px;
    margin: 0 2px;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.table tr td button:hover {
    background: var(--primary);
    color: var(--white);
}

.table tr td:first-child {
    border-bottom-left-radius: 5px;
    border-bottom-left-radius: 0px;
}

.table tr td:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 0px;
}

.table tr img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.table a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: var(--gray);
}

.table a:hover {
    color: var(--primary);
}

.table p {
    margin: 0px;
}

.table p span {
    margin-left: 10px;
    color: var(--primary);
}

.table .action-btn {
    width: 35px;
}

.table > :not(:first-child) {
    border-top: 0px solid currentColor;
}

.dark-mode .table thead {
    background: var(--bgDark2);
}

.dark-mode .table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--bgDark2);
    color: var(--white);
    border: 1px solid var(--bgDark) !important;
}

.dark-mode .table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bgDark2);
    color: var(--white);
    border: 1px solid var(--bgDark) !important;
}

.dark-mode .table a {
    color: var(--white);
}

.dark-mode .table a:hover {
    color: var(--primary);
}

.dark-mode .table tr td button {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .table tr td button:hover {
    background: var(--primary);
}

.live-matches {
    margin: 15px;
}

.live-matches .box {
    text-align: center;
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    color: var(--black);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 2px;
    height: 100%;
}

.live-matches .box .text {
    background: var(--bgLight);
    height: 50px;
    width: 50px;
    border-radius: 100px;
    margin: auto;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.live-matches .box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.live-matches .box .team {
    text-align: center;
}

.live-matches .box .team img {
    margin: auto;
    margin-bottom: 15px;
}

.live-matches .box .team p {
    font-size: 13px;
}

.live-matches .prediction button {
    background: var (--black);
}

.live-matches .btn-light {
    background: var(--bgLight);
    width: 100%;
    height: 35px;
    border-radius: 3px;
    margin: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.live-matches .btn-light:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(211, 212, 213, 0.5);
    box-shadow: 0 0 0 0rem rgba(211, 212, 213, 0.5);
}

.live-matches .btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

.rtl .live-matches {
    direction: ltr;
}

.rtl .live-matches .box {
    direction: rtl;
}

.dark-mode .live-matches .box {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .live-matches .box h5 {
    color: var(--white);
}

.dark-mode .live-matches .btn-light {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .live-matches .btn-light:hover {
    background: var(--primary);
}

.wrapper .user-panel {
    padding: 15px;
    width: calc(100% - 250px);
    margin: 0;
    margin-left: auto !important;
    margin-top: 47px;
}

.rtl .wrapper .user-panel {
    margin-left: 0 !important;
    margin-right: auto;
}

.user-panel form {
    /* background: var(--white); */
    /* -webkit-box-shadow: var(--shadow); */
    /* box-shadow: var(--shadow); */
    padding: 15px;
    border-radius: 5px;
}

.user-panel form .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
    display: none;
}

.user-panel form .input-box .form-select,
.user-panel form .input-box .form-control {
    height: 40px;
    border-radius: 0px;
    background-color: var(--white);
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    padding: 4px 8px;
    caret-color: var(--primary);
    color: var(--black);
}

.user-panel form .input-box .form-select:focus,
.user-panel form .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.user-panel form .input-box .form-select::-webkit-input-placeholder,
.user-panel form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select:-ms-input-placeholder,
.user-panel form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select::-ms-input-placeholder,
.user-panel form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select::placeholder,
.user-panel form .input-box .form-control::placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid var(--borderColor);
    color: var(--gray);
}

.user-panel form .input-box .form-select option {
    background: var(--white);
    color: var (--gray);
}

.user-panel form .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.user-panel form .input-box .fa-paperclip {
    position: absolute;
    background: var(--white);
    width: 100px;
    height: 36px;
    color: var(--primary);
    text-align: center;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding-top: 12px;
    margin-left: 1px;
    margin-top: 1px;
}

.user-panel form .btn-custom {
    height: 38px;
}

.user-panel .deposit-box {
    text-align: center;
    border-radius: 5px;
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.user-panel .deposit-box img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.user-panel .deposit-box p {
    padding: 5px 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}

.user-panel .deposit-box:hover h5 {
    color: var(--primary);
}

.user-panel .toggle-user-panel-sidebar {
    background: var(--primary);
    color: var(--white);
    width: 35px;
}

.user-panel .toggle-user-panel-sidebar i {
    margin-right: 0;
}

.rtl .user-panel form .input-box .fa-paperclip {
    margin-right: 1px;
    border-radius: 3px;
}

.dark-mode .user-panel .deposit-box {
    background: var(--bgDark2);
}

.dark-mode .user-panel .deposit-box p {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control,
.dark-mode .user-panel form .input-box .form-select {
    background-color: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::-webkit-input-placeholder,
.dark-mode .user-panel form .input-box .form-select::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control:-ms-input-placeholder,
.dark-mode .user-panel form .input-box .form-select:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::-ms-input-placeholder,
.dark-mode .user-panel form .input-box .form-select::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::placeholder,
.dark-mode .user-panel form .input-box .form-select::placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control:focus,
.dark-mode .user-panel form .input-box .form-select:focus {
    border: 1px solid var(--primary);
}

.dark-mode .user-panel form .input-box .fa-paperclip {
    background: var(--bgDark);
}

.dark-mode .user-panel .bet-history-search-bar .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control:focus {
    border: 1px solid var(--primary);
}

.dark-mode .form-check .form-check-input {
    border: 1px solid var(--gray);
}

.dark-mode .form-check .form-check-input:checked {
    border-color: var(--primary);
}

.dark-mode .form-check label {
    color: var(--white);
}

.bet-history-search-bar .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.bet-history-search-bar .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: var(--white);
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.bet-history-search-bar .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bet-history-search-bar .input-group button:hover {
    background: var(--bgDark);
}

.highlights {
    background: url(../images/banner.jpg);
}

.highlights .box {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--black);
    padding: 15px;
    height: 100%;
    color: var(--white);
}

.highlights .box .text {
    background: var(--bgLight);
    height: 50px;
    width: 50px;
    border-radius: 100px;
    margin: auto;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.highlights .box img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.highlights .box .team p {
    font-size: 13px;
}

.highlights h5,
.highlights h4 {
    color: var(--white);
}

.highlights .prediction button {
    background: var(--black);
}

.highlights .btn-light {
    background: var(--bgLight);
    width: 100%;
    height: 35px;
    border-radius: 3px;
    margin: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.highlights .btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

.inbox-wrapper {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.inbox-wrapper .top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid var(--borderColor);
}

.inbox-wrapper .top-bar .user {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin-right: 10px;
}

.inbox-wrapper .top-bar .name {
    font-weight: 600;
    font-size: 18px;
}

.inbox-wrapper .top-bar .close-btn {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background: var(--bgLight);
    border: none;
    padding-top: 3px;
    color: var(--primary);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.inbox-wrapper .top-bar .close-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.inbox-wrapper .chats {
    padding: 30px 15px 10px 15px;
    height: 500px;
    overflow-y: auto;
    position: relative;
}

.inbox-wrapper .chats::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

.inbox-wrapper .chats::-webkit-scrollbar-track {
    background: var(--bgLight);
}

.inbox-wrapper .chats::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 0px;
}

.inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.inbox-wrapper .chats .chat-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-bottom: 20px;
}

.inbox-wrapper .chats .chat-box .img {
    margin-left: 10px;
    min-width: 30px;
    min-height: 30px;
}

.inbox-wrapper .chats .chat-box .img img {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.inbox-wrapper .chats .chat-box .text-wrapper .text {
    padding: 10px;
    background: var(--bgLight);
    border-radius: 3px;
    float: right;
    margin-bottom: 5px;
    max-width: 300px;
}

.inbox-wrapper .chats .chat-box .text-wrapper .text p {
    margin-bottom: 0;
}

.inbox-wrapper .chats .chat-box .text-wrapper .time {
    font-size: 10px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.inbox-wrapper .chats .chat-box .text-wrapper .attachment {
    display: block;
}

.inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
    max-width: 100px;
    border-radius: 3px;
}

.inbox-wrapper .chats .opposite-side {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.inbox-wrapper .chats .opposite-side .img {
    margin-left: 0;
    margin-right: 10px;
}

.inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: left;
}

.inbox-wrapper .chats .opposite-side .text-wrapper .time {
    text-align: left;
}

.inbox-wrapper .img-preview {
    background: var(--bgLight);
    display: inline-block;
    position: relative;
    left: 0px;
    bottom: 5px;
    max-width: 100px;
    border-radius: 3px;
}

.inbox-wrapper .img-preview img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.inbox-wrapper .img-preview .img-info {
    padding: 0 5px;
}

.inbox-wrapper .img-preview .img-info span {
    font-size: 12px;
}

.inbox-wrapper .img-preview .img-info span.size {
    color: var(--gray);
    font-size: 10px;
}

.inbox-wrapper .img-preview button.delete {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--bgLight);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    border: none;
}

.inbox-wrapper .img-preview button.delete i {
    font-size: 14px;
    color: var(--primary);
}

.inbox-wrapper .typing-area {
    background: var(--white);
    border-top: 1px solid var(--borderColor);
    padding: 20px;
}

.inbox-wrapper .typing-area .input-group {
    border-radius: 3px;
    overflow: hidden;
}

.inbox-wrapper .typing-area .input-group .form-control {
    height: 40px;
    background: var(--bgLight);
    border-radius: 0;
    border: none;
    font-size: 13px;
    color: var(--gray);
    padding: 7px;
}

.inbox-wrapper .typing-area .input-group .form-control:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    border: none;
}

.inbox-wrapper .typing-area .input-group .send-file-btn {
    position: relative;
    background: var(--bgLight);
    border: none;
    width: 40px;
    height: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    text-align: center;
    color: var(--gray);
}

.inbox-wrapper .typing-area .input-group .send-file-btn i {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}

.inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
    color: var(--primary);
}

.inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.inbox-wrapper .typing-area .input-group button {
    width: 50px;
    border: none;
    background: var(--primary);
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.inbox-wrapper .typing-area .input-group button i {
    color: var(--white);
    font-size: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.dark-mode .inbox-wrapper {
    background: var(--bgDark2);
}

.dark-mode .inbox-wrapper .top-bar {
    border-bottom: 1px solid var(--gray);
}

.dark-mode .inbox-wrapper .chats .chat-box .text-wrapper .text {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .top-bar .close-btn {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .top-bar .close-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area {
    background: var (--bgDark2);
    border-top: 1px solid var(--gray);
}

.dark-mode .inbox-wrapper .img-preview {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .typing-area .input-group .form-control {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .send-file-btn {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .send-file-btn:hover {
    color: var(--primary);
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-track {
    background: var(--bgDark2);
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-thumb {
    background: var(--bgDark);
    border-radius: 0px;
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.rtl .inbox-wrapper .top-bar .user {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .inbox-wrapper .chats .chat-box .img {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .inbox-wrapper .chats .chat-box .text-wrapper .text {
    float: left;
}

.rtl .inbox-wrapper .chats .chat-box .text-wrapper .time {
    text-align: left;
}

.rtl .inbox-wrapper .chats .opposite-side .img {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: right;
}

.rtl .inbox-wrapper .chats .opposite-side .text-wrapper .time {
    text-align: right;
}

.banner-section {
    background: url(../images/wp4430320.jpg);
    background-position: center;
    background-size: cover;
}

.banner-section .overlay {
    padding: 174px 0 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner-section h3 {
    text-transform: capitalize;
    color: var(--white);
}

.faq-section {
    padding: 100px 0;
}

.faq-section .accordion-item {
    background: none;
    border: none;
    margin: 15px 0;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--white);
    border-radius: 5px;
}

.faq-section .accordion-button {
    background: var(--white);
    border-radius: 5px !important;
    padding-left: 0px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    padding-right: 40px;
    text-transform: uppercase;
    color: var(--bgDark);
}

.faq-section .accordion-button:focus {
    z-index: 3;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url(../images/icon/plus.png);
    background-size: cover;
    position: absolute;
    right: 15px;
    height: 24px;
    width: 24px;
    background-position: center;
}

.faq-section .accordion-body {
    padding: 15px;
    padding-top: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.rtl .faq-section .accordion-button {
    padding-right: 15px;
    padding-left: 40px;
    text-align: right;
}

.rtl .faq-section .accordion-button::after {
    right: auto;
    left: 15px;
}

.dark-mode .faq-section .accordion-button,
.dark-mode .faq-section .accordion-item {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .faq-section .accordion-body {
    color: var(--white);
}

.footer-section {
    /*background: url(../images/footer.jpg);*/
    background-size: cover;
    background-position: center top;
    margin-top: 50px;
}

.footer-section .overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 100px 0 0 0;
}

.footer-section .footer-box {
    margin: 0 5px 40px 5px;
}

.footer-section .footer-box .navbar-brand {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
}

.footer-section .footer-box .navbar-brand img {
    width: 80px;
}

.footer-section .footer-box p {
    color: var(--white);
    margin-bottom: 30px;
}

.footer-section .footer-box h5 {
    text-transform: uppercase;
    color: var(--white);
}

.footer-section .footer-box a {
    text-decoration: none;
    color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box a:hover {
    color: var(--primary);
}

.footer-section .footer-box ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section .footer-box ul li {
    list-style: none;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section .footer-box ul li i {
    display: inline-block;
    width: 20px;
}

.footer-section .footer-box .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
    border-radius: 3px;
    padding-top: 8px;
    background: var(--primary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box .social-links a i {
    color: var(--white);
}

.footer-section .footer-box .social-links a:hover {
    background: var(--bgDark);
}

.footer-section .footer-box .input-group {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.footer-section .footer-box .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
}

.footer-section .footer-box .input-group .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.footer-section .footer-box .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box .input-group button:hover {
    background: var(--bgDark);
}

.footer-section .footer-bottom {
    margin-top: 60px;
    color: var(--white);
    padding-bottom: 40px;
}

.footer-section .footer-bottom .copyright a {
    color: var(--primary);
}

.footer-section .footer-bottom .language {
    text-align: right;
    color: var(--white);
}

.footer-section .footer-bottom .language a {
    color: var(--primary);
    margin-right: 15px;
}

.rtl .footer-section .footer-box .input-group .form-control {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

.rtl .footer-section .footer-box .input-group button {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rtl .footer-section .footer-box .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .footer-section .footer-bottom .language a {
    margin-right: 0;
    margin-left: 15px;
}

.dark-mode .footer-section .footer-box .navbar-brand,
.dark-mode .footer-section .footer-box p,
.dark-mode .footer-section .footer-box a,
.dark-mode .footer-section .footer-box ul li {
    color: var(--white);
}

.dark-mode .footer-section .footer-box a:hover {
    color: var(--primary);
}

.dark-mode .footer-section .footer-box .social-links a:hover {
    background: var(--bgDark);
}

.dark-mode .footer-section .footer-box .input-group .form-control {
    background: var(--bgDark);
    color: #fff;
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .footer-section .footer-box .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .footer-section .footer-box .input-group button:hover {
    background: var(--primary);
}

.dark-mode .footer-section p {
    color: var(--white);
}

.blog-section {
    padding: 100px 0;
    margin-bottom: 100px;
}

.blog-section .box {
    background: var(--bgColor2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 30px;
}

.blog-section .box .img-box img {
    border-radius: 10px;
}

.blog-section .box:hover {
    bottom: 10px;
}

.blog-section .box .text-box {
    margin-top: 15px;
}

.blog-section .box .text-box .title {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-section .box .text-box .title:hover {
    color: var(--primary);
}

.blog-section .box .text-box .category {
    background: var(--primary);
    color: var(--black);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-section .box .text-box .date-author {
    margin-top: 15px;
}

.blog-section .box .text-box .date-author span i {
    font-size: 16px;
    color: var(--primary);
    margin-right: 5px;
}

.rtl .blog-section .box .text-box .date-author .author i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .blog-section .box .text-box .date-author span.float-end {
    float: left !important;
}

.blog-details {
    padding: 100px 0;
}

.blog-details .img-box {
    margin-bottom: 15px;
}

.blog-details .img-box img {
    border-radius: 3px;
}

.blog-details .blog-box {
    margin-bottom: 50px;
}

.blog-details .blog-box:last-child {
    margin-bottom: 0;
}

.blog-details .blog-box .text-box {
    margin-top: 15px;
}

.blog-details .blog-box .text-box .title {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--bgDark);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .blog-box .text-box .title:hover {
    color: var(--primary);
}

.blog-details .blog-box .text-box .category {
    background: var(--bgDark);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-details .blog-box .text-box .date-author {
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-details .blog-box .text-box .date-author span i {
    font-size: 16px;
    color: var(--primary);
    margin-right: 5px;
}

.blog-details .blog-box .text-box .read-more {
    font-size: 16px;
    font-weight: 700;
    color: var(--bgDark);
}

.blog-details .related-post {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 3px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details .related-post .img-box {
    width: 40%;
    margin-right: 15px;
}

.blog-details .related-post .text-box {
    width: 60%;
}

.blog-details .related-post .title {
    display: block;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--bgDark);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .related-post .title:hover {
    color: var(--primary);
}

.blog-details .related-post .category {
    background: var(--bgDark);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-details .side-box {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 3px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.blog-details .side-box h5 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.blog-details .side-box .links {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.blog-details .side-box .links li {
    margin-bottom: 10px;
}

.blog-details .side-box .links li a {
    color: var(--gray);
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.blog-details .side-box .links li a:hover {
    color: var(--primary);
}

.blog-details .side-box .links li:last-child {
    margin-bottom: 0;
}

.blog-details .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.blog-details .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .input-group button:hover {
    background: var(--bgDark);
}

.dark-mode .blog-details .blog-box .text-box .title {
    color: var(--white);
}

.dark-mode .blog-details .blog-box .text-box .title:hover {
    color: var(--primary);
}

.dark-mode .blog-details .blog-box .text-box .category {
    background: var(--primary);
}

.dark-mode .blog-details .blog-box .text-box .read-more {
    color: var(--primary);
}

.dark-mode .blog-details .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control:focus {
    border: 1px solid var(--primary);
}

.dark-mode .blog-details .input-group .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .blog-details .side-box {
    background: var(--bgDark2);
}

.dark-mode .blog-details .side-box .links li a {
    color: var(--white);
}

.dark-mode .blog-details .side-box .links li a:hover {
    color: var(--primary);
}

.dark-mode .blog-details .related-post {
    background: var(--bgDark2);
}

.dark-mode .blog-details .related-post .title {
    color: var(--white);
}

.dark-mode .blog-details .related-post .title:hover {
    color: var(--primary);
}

.dark-mode .blog-details .related-post .category {
    background: var(--primary);
}

.rtl .blog-details .blog-box .text-box .date-author .author i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .blog-details .blog-box .text-box .date-author span.float-end {
    float: left !important;
}

.rtl .blog-details .related-post .img-box {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .blog-details .input-group .form-control {
    border-right: 1px solid var(--borderColor);
    border-left: none;
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.rtl .blog-details .input-group .form-control:focus {
    border: 1px solid var(--primary);
    border-left: none;
}

.rtl .blog-details .input-group button {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.blog-list .blog-box .text-box {
    margin-top: 0;
}

.pagination {
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 0;
}

.pagination .page-link {
    border: none;
    background: var(--white);
    color: var(--bgDark);
    text-align: center;
    padding: 7 16px;
    margin: 0 10px;
    border-radius: 3px !important;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    background: var(--white);
    color: var(--bgDark);
}

.pagination .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
    box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.dark-mode .pagination .page-link {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .pagination .page-item.disabled .page-link {
    background: var(--bgDark2);
    color: var(--white);
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-section .header-text p {
    margin: auto;
}

.testimonial-section .review-box {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 2px;
}

.testimonial-section .review-box .quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--primary);
}

.testimonial-section .review-box .upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-section .review-box .upper .img-box {
    margin-right: 15px;
}

.testimonial-section .review-box .upper .img-box img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
}

.testimonial-section .review-box .upper .client-info h5 {
    text-transform: capitalize;
}

.testimonial-section .review-box .upper .client-info span {
    color: var(--primary);
}

.testimonial-section .owl-dots {
    display: block;
    text-align: center;
}

.testimonial-section .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    margin: 0 2px;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.testimonial-section .owl-dots .owl-dot.active {
    width: 21px;
}

.rtl .testimonial-section {
    direction: ltr;
}

.rtl .testimonial-section .review-box {
    direction: rtl;
}

.rtl .testimonial-section .review-box .upper .img-box {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .testimonial-section .review-box .quote {
    right: auto;
    left: 30px;
}

.dark-mode .testimonial-section .review-box {
    background: var(--bgDark2);
}

.dark-mode .testimonial-section .review-box h5,
.dark-mode .testimonial-section .review-box p {
    color: var(--white);
}

@media (max-width: 991px) {
    .bottom-bar {
        opacity: 1;
        visibility: visible;
    }

    .wrapper {
        padding-bottom: 90px;
    }

    .wrapper .content {
        padding-bottom: 90px;
    }

    .leftbar {
        left: -100%;
    }

    .leftbar.active {
        left: 0;
        overflow: auto;
        padding-bottom: 90px;
    }

    .rightbar {
        right: -100%;
    }

    .rightbar.active {
        right: 0;
        overflow: auto;
        padding-bottom: 90px;
    }

    .footer-section {
        padding-bottom: 90px;
        margin-bottom: 0;
    }

    footer {
        padding-bottom: 90px !important;
    }

    .rtl .leftbar {
        left: auto;
        right: -100%;
    }

    .rtl .leftbar.active {
        right: 0;
    }

    .rtl .rightbar {
        right: auto;
        left: -100%;
    }

    .rtl .rightbar.active {
        left: 0;
    }

    .wrapper .content {
        width: calc(100% - 0px) !important;
    }

    .categories a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .table tbody {
        padding: 10px;
    }

    .table tr {
        border-bottom: 1px solid var(--borderColor);
    }

    .table tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border: none !important;
        padding: 2px 10px;
    }

    .table tr td:nth-child(2) {
        display: block;
    }

    .table tr td:first-child {
        padding-top: 10px;
    }

    .table tr td:last-child {
        padding-bottom: 10px;
    }

    .table thead {
        display: none;
    }

    .table .btn-group {
        width: 100%;
    }

    .table tbody > tr:nth-of-type(even) > * {
        border: 0 solid var(--primary) !important;
    }

    .table tbody > tr:nth-of-type(odd) > * {
        border: 0 solid var(--primary) !important;
    }

    .dark-mode .table tbody tr {
        border-bottom: 1px solid var(--bgDark);
    }

    .dark-mode .table tbody > tr:nth-of-type(even) > * {
        border: 0 solid var(--primary) !important;
    }

    .dark-mode .table tbody > tr:nth-of-type(odd) > * {
        border: 0 solid var(--primary) !important;
    }
}

@media (max-width: 767px) {
    h1,
    h2 {
        font-size: 36px;
    }

    .navbar .navbar-text {
        right: 15px;
        position: absolute;
        top: 6px;
    }

    .navbar .nav-item {
        margin: 0;
        padding: 0;
    }

    .navbar .dropdown .dropdown-menu {
        display: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .rtl .navbar .navbar-brand {
        margin-right: 35px;
    }

    .rtl .navbar .navbar-text {
        right: auto;
        left: 15px;
    }

    .login-section .overlay {
        padding: 50px 0;
    }

    .login-section .overlay .text h2 {
        font-size: 36px;
    }

    .login-section .form-wrapper {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 0;
    }

    .label_skitter {
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .rtl .label_skitter {
        padding-right: 20px;
        padding-left: 0;
    }

    .leftbar,
    .rightbar {
        width: 100%;
    }
}

.contact-section {
    padding: 100px 0;
}

.contact-section .header-text {
    margin-bottom: 30px;
}

.contact-section .header-text p {
    max-width: 450px;
}

.contact-section .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.contact-section .info-box .icon-box {
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    text-align: center;
    padding-top: 10px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.contact-section .info-box .icon-box i {
    color: var(--primary);
    font-size: 16px;
}

.contact-section .info-box .text {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.contact-section .info-box .text p {
    margin-bottom: 0;
    margin-right: auto;
}

.contact-section .info-box .text h5 {
    margin-bottom: 5px;
}

.contact-section form h4 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.contact-section form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-section form .input-box .form-select,
.contact-section form .input-box .form-control {
    height: 40px;
    border-radius: 3px;
    background-color: var(--white);
    border: 1px solid var(--white);
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.contact-section form .input-box .form-select:focus,
.contact-section form .input-box .form-control:focus {
    color: var(--gray);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var (--white);
    border: 1px solid var(--primary);
}

.contact-section form .input-box .form-select::-webkit-input-placeholder,
.contact-section form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select:-ms-input-placeholder,
.contact-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select::-ms-input-placeholder,
.contact-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select::placeholder,
.contact-section form .input-box .form-control::placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
}

.contact-section form .input-box .form-select option {
    background: var(--white);
    color: var(--gray);
}

.contact-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 3px;
}

.contact-section .btn-custom {
    height: 40px;
}

.rtl .contact-section .info-box .text {
    padding-left: 0;
    padding-right: 15px;
}

.not-found {
    height: 100vh;
}

.not-found .text-box img {
    width: 300px;
}

.not-found .text-box a {
    color: var(--primary);
    text-transform: capitalize;
}

.dark-mode .contact-section .info-box .icon-box {
    background: var(--bgDark2);
}

.dark-mode .contact-section form .input-box .form-select,
.dark-mode .contact-section form .input-box .form-control {
    background-color: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode
    .contact-section
    form
    .input-box
    .form-select::-webkit-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select:-ms-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control:-ms-input-placeholder {
    color: var (--white);
}

.dark-mode .contact-section form .input-box .form-select::-ms-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select::placeholder,
.dark-mode .contact-section form .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select:focus,
.dark-mode .contact-section form .input-box .form-control:focus {
    border: 1px solid var(--primary);
}

/*# sourceMappingURL=style.css.map */
.policy {
    padding: 60px;
}

.login-section form .input-box .form-select option {
    border-radius: 3px;
    background-color: #f4f9fc;
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.line-h22 {
    line-height: 2.2;
}

.modal-body form .input-box .form-select option {
    border-radius: 3px;
    background-color: #f4f9fc;
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.feature-wrapper.add-fund .card-type-1 {
    border-radius: 10px;
    background-position: bottom;
    background-repeat: no-repeat;
    box-shadow: none;
    padding: 25px 25px;
}

.feature-wrapper .card-type-1 {
    border-radius: 10px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: none;
}

.dark-mode .feature-wrapper.add-fund .card-type-1 {
    background: var(--bgDark2);
}

.card-type-1.card {
    align-items: center;
    height: 100%;
    padding: 50px 15px;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
}

.feature-wrapper {
    position: relative;
    top: -70px;
}

.top-0 {
    top: 0 !important;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.line-h51 {
    line-height: 51px;
}

.dark-mode .payment-info .list-group-item {
    color: #fff;
}

.w-15 {
    width: 15%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #e4e6eb;
    height: 100%;
}

.dark-mode .input-group-text {
    color: #fffff6;
    background-color: #203742;
    border: 1px solid #233645;
}

.text--danger,
.text-danger {
    color: #e74c3c !important;
}

.container-custom {
    margin-top: 20px;
    margin-left: 20px;
}

.dark-mode .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #203742;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.dark-mode .card-js input {
    background-color: #203742;
}

.wh-200-150 {
    width: 200px;
    height: 150px;
}

.user-panel .form {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 0;
}

.btn-w145 {
    width: 145px;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a:hover {
    color: #ffffff;
}

.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
}

.image-input #image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.image-input #image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}

.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.card.secbg.form-block .nav-tabs {
    border-bottom: 1px solid #2ecc71;
}

.card.secbg.form-block .nav-tabs .nav-link {
    margin-bottom: -1px;
}

.card.secbg.form-block .nav-tabs .nav-link:focus,
.card.secbg.form-block .nav-tabs .nav-link:hover {
    border-color: #2ecc71 #2ecc71 #2ecc71;
    color: #2ecc71;
}

.dark-mode .card.secbg.form-block .nav-tabs .nav-link:focus,
.dark-mode .card.secbg.form-block .nav-tabs .nav-link:hover {
    border-color: #2ecc71 #2ecc71 #2ecc71;
    color: #fff;
    isolation: isolate;
}

.dark-mode .card.secbg.form-block .nav-tabs .nav-link {
    color: #fff;
}

.dark-mode .image-input {
    background: #233645;
}

.card.secbg.form-block .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: #2ecc71;
    border-color: #2ecc71 #2ecc71 #2ecc71;
}

.card.secbg.form-block .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #141720;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.new-file-upload {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #5f76e8;
    cursor: pointer;
}

#upload {
    opacity: 0;
    cursor: pointer;
}

.new-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.submit-btn button {
    background: limegreen;
    padding: 9px 13px;
    border-radius: 50%;
    color: white;
    border: 1px solid limegreen;
    transition: background 0.1s ease;
}

.chat-box.scrollable.position-relative.scroll-height {
    background: #f7f5f5;
    padding: 10px;
    margin-top: 15px;
}

ul.chat-list.list-style-none {
    padding-left: 15px;
    padding-right: 15px;
    list-style: none;
}

.chat-img {
    padding-top: 9px;
    margin-right: 5px;
    vertical-align: top;
}

li.chat-item.list-style-none.replied.mt-3.text-sm-end {
    display: flex;
    flex-direction: row-reverse;
}

.dark-mode .chat-box.scrollable.position-relative.scroll-height {
    background: rgb(35 54 69);
    padding: 10px;
    margin-top: 15px;
}

.modal .modal-content .modal-footer {
    border-top: 1px solid rgb(255 255 255);
    padding: 0rem !important;
}

.dark-mode .modal .modal-content .modal-footer {
    border-top: 1px solid rgb(41 64 86);
    padding: 0rem !important;
}

.dark-mode .btn-secondary {
    color: #e4ecf1;
    background-color: #121b23;
    border-color: #121b23;
}

#ref-label .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--primary);
}

#ref-label .nav-pills .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.bg-warning {
    background-color: #f39c12 !important;
}

.w-90 {
    width: 90%;
}

.copytext {
    cursor: pointer;
    color: #ffffff !important;
    background-color: var(--primary) !important;
}
#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning,
#Notiflix-Icon-Info {
    fill: #fff !important;
}
[v-cloak] {
    display: none;
}

.dark-mode .table tbody > tr > * {
    border: 1px solid #5e627f !important;
}

.all-markets {
    margin: 15px;
    margin-bottom: 50px;
}

.all-markets-questions {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}
.all-markets .search-bar {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.all-markets .search-bar a {
    color: var(--bgDark);
    display: inline-block;
    padding: 7.5px 15px;
    font-weight: 600;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.all-markets .search-bar a i {
    margin-right: 5px;
}

.all-markets .search-bar a:hover,
.all-markets .search-bar a.active {
    color: var(--primary);
}

.all-markets .search-bar .input-group {
    width: 300px;
    margin-left: auto;
}

.all-markets .search-bar .input-group .form-control {
    border: none;
    height: 35px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.all-markets .search-bar .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: var(--white);
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.all-markets .search-bar .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 35px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.all-markets .search-bar .input-group button:hover {
    background: var(--bgDark);
}

.all-markets .accordion-body button.disabled:hover {
    background: var(--bgLight);
    color: var(--black);
    position: relative;
    cursor: auto;
}

.all-markets .accordion-item {
    background: none;
    border: none;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--white);
    border-radius: 3px !important;
}

.all-markets .accordion-button {
    background: var(--white);
    border-top-right-radius: 3px !important;
    border-top-left-radius: 3px !important;
    padding-left: 0px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    padding-right: 40px;
    text-transform: capitalize;
    color: var(--bgDark);
}

.all-markets .accordion-button i {
    color: var(--bgDark);
    margin-right: 5px;
    position: relative;
    top: 4px;
}

.all-markets .accordion-button:focus {
    z-index: 3;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.all-markets .accordion-button::after {
    background-image: url(../images/icon/plus.png);
    background-size: cover;
    position: absolute;
    right: 15px;
    height: 24px;
    width: 24px;
    background-position: center;
}

.all-markets .accordion-body {
    padding: 10px;
}

.all-markets .accordion-body button {
    background: var(--bgLight);
    color: var(--black);
    width: 100%;
    font-weight: 500;
    padding: 5px 8px;
    margin: 0 2px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.all-markets .accordion-body button:hover {
    background: var(--primary);
    color: var(--white);
}

.all-markets .accordion-button:not(.collapsed) {
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.all-markets .accordion-button:not(.collapsed) i {
    color: var(--primary);
}

.all-markets .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.dark-mode .all-markets .search-bar {
    background: var(--bgDark2);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.dark-mode .all-markets .search-bar a {
    color: var(--white);
}

.dark-mode .all-markets .search-bar a:hover,
.dark-mode .all-markets .search-bar a.active {
    color: var(--primary);
}

.dark-mode .all-markets .search-bar .input-group {
    caret-color: var(--primary);
}

.dark-mode .all-markets .search-bar .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .all-markets .search-bar .input-group:focus {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--primary);
}

.dark-mode .all-markets .search-bar button {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .all-markets .search-bar button:hover {
    background: var(--bgDark);
}

.dark-mode .accordion-item {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--bgDark2);
}

.dark-mode .accordion-button {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .accordion-button i {
    color: var(--white);
}

.dark-mode .accordion-button:focus {
    border-color: var(--primary);
}

.dark-mode .accordion-button::after {
    background-image: url(../images/icon/plus.png);
}

.dark-mode .accordion-body button {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .accordion-body button:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .accordion-button:not(.collapsed) {
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dark-mode .accordion-button:not(.collapsed) i {
    color: var(--primary);
}

.dark-mode .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.rtl .all-markets .search-bar a i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .all-markets .input-group .form-control {
    border: 1px solid var(--borderColor);
    border-radius: 3px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none;
}

.rtl .all-markets .input-group .form-control:focus {
    border-color: var(--primary);
    border-left: none;
}

.rtl .all-markets .input-group button {
    border-radius: 0;
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
}

.rtl .all-markets .accordion-button {
    padding-right: 15px;
    padding-left: 40px;
    text-align: right;
}

.rtl .all-markets .accordion-button i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .all-markets .accordion-button::after {
    right: auto;
    left: 15px;
}

@media (max-width: 767px) {
    .service-table tr td:nth-child(2),
    #service-table tr td:nth-child(2) {
        display: flex;
    }

    .table tbody tr td {
        text-align: right !important;
    }

    .table thead {
        display: none;
    }

    .table tbody tr {
        display: block;
    }

    .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: end;
        padding-left: 25px;
    }

    .table tbody tr td:last-child {
        border: none;
    }

    .table tbody tr td::before {
        content: attr(data-label);
        font-family: "Roboto", sans-serif;
        font-size: 13px;
        font-weight: 500;
    }
}
.modal-custom-content {
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1pxsolidrgba (0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    align-content: flex-start;
}
.dark-mode .modal-custom-content {
    background: var(--bgDark2);
}
.modal .modal-custom-content .modal-footer {
    border-top: 1px solid rgb(255 255 255);
    padding: 0rem !important;
}

.dark-mode .modal .modal-custom-content .modal-footer {
    border-top: 1px solid rgb(41 64 86);
    padding: 0rem !important;
}

.table thead .w-10 {
    width: 40px !important;
}
.table tr td button.disabled {
    background: var(--bgLight);
    color: var(--black);
    position: relative;
    cursor: auto;
}

.table tr td button.disabled i {
    position: absolute;
    top: -4px;
    right: -2px;
    font-size: 14px;
    color: var(--bgDark);
}

.table tr td button.downgrade {
    background: rgba(255, 0, 0, 0.1);
}

.table tr td button.downgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.table tr td button.upgrade {
    background: rgba(0, 128, 0, 0.1);
}

.table tr td button.upgrade:hover {
    background: var(--primary);
    color: var(--white);
}

/* dark mode */

.dark-mode .table tr td button.disabled {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .table tr td button.disabled i {
    color: var(--white);
}

.dark-mode .table tr td button.downgrade {
    background: rgb(167 88 88 / 32%);
}
.dark-mode .table tr td button.downgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .table tr td button.upgrade {
    background: rgba(0, 128, 0, 0.2);
}

.dark-mode .table tr td button.upgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.live-matches .downgrade-mobile {
    background: rgb(167 88 88 / 32%) !important;
}
.dark-mode .live-matches .downgrade-mobile {
    background: rgb(167 88 88 / 32%) !important;
}
.dropdown-item.active {
    color: #ffffff;
    text-decoration: none;
    background-color: #2ecc71 !important;
}

.dashboard__card-icon i {
    font-size: 24px !important;
}
.dashboard__card-icon img {
    max-width: 24px;
}
.dashboard__card,
.deposit-group,
.post__item-content .post-creator {
    display: flex;
    flex-wrap: wrap;
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 1) .dashboard__card {
    background: #203742;
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card-icon {
    color: #ff3653;
}

.dashboard__card-icon,
.dashboard-link,
.feature-item_icon,
.counter-item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card .view-btn {
    color: #ff3653;
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 2) .dashboard__card {
    background: #203742;
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card-icon {
    color: #9f09ff;
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card .view-btn {
    color: #9f09ff;
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 3) .dashboard__card {
    background: #203742;
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card-icon {
    color: #465aff;
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card .view-btn {
    color: #465aff;
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 4) .dashboard__card {
    background: #203742;
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card-icon {
    color: var(--brand-color);
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card .view-btn {
    color: var(--brand-color);
}

.dashboard__card {
    /* background: linear-gradient(-45deg, #0f054c 0%, #22196d 100%); */
    padding: 30px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card {
        padding: 25px;
    }
}

.dashboard__card-content .price {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #233645;
}
.dark-mode .dashboard__card-content .price {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #ffffff;
}

@media (max-width: 1399px) {
    .dashboard__card-content .price {
        font-size: 13px;
    }
}

.dashboard__card-content .info {
    color: #233645;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}
.dark-mode .dashboard__card-content .info {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card-content .info {
        font-size: 13px;
    }
}

.dashboard__card-icon {
    color: #f1f3f4;
    background: #f1f3f4;
    font-size: 36px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-shadow: 2px 3px 5px;
    box-shadow: 0 3px 12px 3px rgba(255, 255, 255, 0.15);
}
.dark-mode .dashboard__card-icon {
    color: #233645;
    background: #233645;
    font-size: 36px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-shadow: none;
    box-shadow: none;
}

@media (max-width: 1399px) and (min-width: 992px) {
    .dashboard__card-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

@media (max-width: 1399px) and (max-width: 450px) {
    .dashboard__card-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

.dashboard-section {
    position: relative;
    overflow: hidden;
}

.dashboard-section .shape1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.dashboard-section .shape1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-section .container {
    position: relative;
    z-index: 1;
}
.apexcharts-canvas {
    position: relative;
    user-select: none;
    max-width: 800px;
}

.spinner-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050; /* Make sure it’s above other content */
}

.nav-link {
    color: inherit;
    transition: border-bottom 0.3s;
    border-bottom: 2px solid transparent; /* Default underline color */
}

.nav-link.light {
    border-bottom: 2px solid #2ecc66; /* Underline color when active */
}

@media (max-width: 767.98px) {
    .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    .modal-custom-content {
        max-height: 80vh;
        overflow-y: auto;
    }
}

.button-group .nav-item .btn-outline-primary.active {
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.5);
}

.match-grid {
    display: grid;
    grid-template-columns: 1fr; /* exactly 1 per row */
    gap: 16px;
    padding: 16px;
}

/* The .match-tile stays as we already updated */

/* --- Stake-style match-row layout --- */

.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.match-row {
    background-color: #18191e;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.teams {
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
}

.team-name {
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin-left: 6px;
}

.vs {
    margin: 0 10px;
    color: #a1a6b0;
    font-weight: 500;
}

.tournament {
    color: #a1a6b0;
    font-size: 0.9em;
}

.match-time {
    color: #ffffff;
    font-size: 0.85em;
    font-weight: 600;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(27, 40, 72, 0.3);
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.market-title {
    color: #a1a6b0;
    font-size: 0.85em;
    margin-bottom: 4px;
}

.market-group {
    display: flex;
    flex-direction: column;
}

.market-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.score {
    color: #ffffff;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, #00d994, #00a876);
    min-width: 28px;
    text-align: center;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 217, 148, 0.3);
}

.more-btn {
    align-self: flex-start;
}

.more-btn-icon {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Makes sure markets go right side on desktop */
@media (min-width: 768px) {
    .markets {
        min-width: 300px;
        flex-shrink: 0;
    }
}

/* Dark Mode Adjustments */
.dark-mode .match-row {
    background-color: #203742;
}

.dark-mode .tournament,
.dark-mode .match-time,
.dark-mode .market-title {
    color: #919eab;
}

.dark-mode .team-name {
    color: #fff;
}

.tournament-group {
    background-color: #1b1d2c;
    border-radius: 8px;
    padding: 16px;
}

.tournament-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
}

.match-count {
    color: #6c757d;
    font-size: 0.9em;
}

.match-row {
    background-color: #23272f;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.match-row:hover {
    background-color: #1e202a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dark mode adjustments */
.dark-mode .tournament-group {
    background-color: #203742;
}

.dark-mode .match-row {
    background-color: #1b2430;
}

/* .dark-mode .match-row:hover {
    background-color: #2C3E50;
} */

.match-filters .match-filter-btn {
    display: block;
    padding: 8px 12px;
    color: #adb5bd;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.match-filters .match-filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.match-filters .match-filter-btn.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.match-filters {
    display: flex;
    justify-content: space-between;
    background: #1a2733;
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.match-filter-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #ffffff80;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.match-filter-btn i {
    font-size: 12px;
}

.match-filter-btn.active {
    color: #2ecc71;
    background: #2ecc7120;
    border-radius: 8px;
}

.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* Compact Modern Mobile Filter Styles */
.match-filters-compact {
    display: flex;
    justify-content: space-between;
    background: rgba(26, 39, 51, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    gap: 3px;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.match-filter-compact {
    flex: 1;
    padding: 8px 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.match-filter-compact i {
    font-size: 10px;
    transition: all 0.25s ease;
    display: inline-block;
}

.match-filter-compact span {
    font-size: 11px;
    white-space: nowrap;
}

.match-filter-compact:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
}

.match-filter-compact:active {
    transform: scale(0.98);
}

/* Live Button Active State */
.match-filter-compact.filter-live.active {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.12) 100%);
    color: #ff6b7a;
    box-shadow: 
        0 2px 8px rgba(220, 53, 69, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.match-filter-compact.filter-live.active i {
    color: #ff6b7a;
    filter: drop-shadow(0 0 4px rgba(220, 53, 69, 0.6));
}

/* Upcoming Button Active State */
.match-filter-compact.filter-upcoming.active {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.12) 100%);
    color: #5dade2;
    box-shadow: 
        0 2px 8px rgba(13, 110, 253, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.25);
}

.match-filter-compact.filter-upcoming.active i {
    color: #5dade2;
    filter: drop-shadow(0 0 4px rgba(13, 110, 253, 0.6));
}

/* Finished Button Active State */
.match-filter-compact.filter-finished.active {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.12) 100%);
    color: #58d68d;
    box-shadow: 
        0 2px 8px rgba(46, 204, 113, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.match-filter-compact.filter-finished.active i {
    color: #58d68d;
    filter: drop-shadow(0 0 4px rgba(46, 204, 113, 0.6));
}

/* Enhanced Blink Animation for Live Icon */
.match-filter-compact.filter-live i.blink {
    animation: pulse-compact 1.8s ease-in-out infinite;
}

@keyframes pulse-compact {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.15);
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 360px) {
    .match-filter-compact {
        padding: 7px 8px !important;
        font-size: 10px !important;
        gap: 4px !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .match-filter-compact i {
        font-size: 9px !important;
        display: inline-block !important;
    }
    
    .match-filter-compact span {
        font-size: 10px !important;
        display: inline-block !important;
    }
    
    .match-filters-compact {
        padding: 3px !important;
        gap: 2px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Force display on mobile devices - override any hidden styles */
@media screen and (max-width: 768px) {
    .categories-wrapper,
    .match-filters-compact {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .match-filters-compact {
        display: flex !important;
    }
    
    .categories-container {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    .category-item,
    .match-filter-compact {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.promo-slider-container {
    position: relative;
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.promo-cards-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px;
}

.promo-cards-wrapper {
    display: inline-flex;
    gap: 15px;
}

.promo-card {
    background: #1e2329;
    border: 1px solid #2c3e50;
    border-radius: 12px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.promo-card-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.promo-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.promo-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.promo-header {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #1575e0, #0155d2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-subheader {
    font-size: 14px;
    color: #8f9baa;
    margin-bottom: 12px;
    white-space: normal;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .promo-card {
        min-width: 280px;
    }

    .promo-card-inner {
        padding: 15px;
        gap: 15px;
    }

    .promo-content {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .promo-image {
        flex: 0 0 40%;
        max-width: 40%;
        height: 80px;
        width: 80px;
    }
}

.promo-btn {
    background: linear-gradient(45deg, #1575e0, #267bfb);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 199, 77, 0.2);
}

/* Add this to the media query for mobile responsiveness */
@media (max-width: 767px) {
    .promo-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* Dark Theme Background */
/* .stake-dark {
    background-color: #0e0e10;
    color: #ffffff;
} */

/* Card Styling */
.stake-card {
    background-color: #203742;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.03);
}

/* Team Image */
.stake-team-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* Question Title */
.stake-question-title {
    font-size: 1rem;
    border-left: 3px solid #1474e0;
}

/* Option Button */
.stake-option-button {
    background-color: #071925;
    border: 1px solid #2c2f33;
    color: #fff;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.stake-option-button:hover {
    border-color: #1474e0;
    background-color: #1474e0;
    color: #000;
}

.stake-option-button.locked {
    background-color: #2c2f33;
    color: #888;
    cursor: not-allowed;
}

.stake-option-button.locked:hover {
    background-color: #2c2f33;
    border-color: #2c2f33;
}

.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    /* overflow-x: hidden; */
}

/* Fix for mobile tables */
@media (max-width: 767px) {
    .table-responsive {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        width: calc(100% + 30px);
    }

    .match-row {
        width: 100%;
    }
}

/* Add better touch handling for mobile */
@media (max-width: 767px) {
    .market-options {
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .odds-btn {
        flex: 0 0 auto;
    }
}

/* Ensure footer stays within bounds */
footer {
    width: 100%;
    overflow-x: hidden;
}

.rightbar .form-control::placeholder {
    color: #6c757d;
}

.rightbar .badge {
    font-size: 0.9rem;
    background-color: #1575e0;
}

.rightbar .btn:hover {
    opacity: 0.9;
}

.rightbar .bg-dark {
    background-color: #203742 !important;
}

/* remove arrows on stake input */

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.country-flag {
    object-fit: cover;
    border-radius: 2px;
}

.tournament-logo {
    object-fit: contain;
}

.country-flag {
    object-fit: cover;
    border-radius: 2px;
    width: 20px;
    height: 15px;
    display: inline-block;
}

.fa-globe {
    color: #6c757d;
    font-size: 16px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

.dark-mode .fa-globe {
    color: #919eab;
}

.tournament-logo {
    object-fit: contain;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.categories-wrapper {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(20, 28, 40, 0.95) 100%);
    border-radius: 12px;
    padding: 10px 8px;
    margin: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    box-sizing: border-box;
}

.categories-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.categories-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    align-items: center;
    padding: 2px 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    padding: 8px 6px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.category-item.active {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.12) 100%);
    border: 1.5px solid rgba(13, 110, 253, 0.4);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.category-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
    border-radius: 2px;
}

.category-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
}

.category-icon {
    font-size: 20px !important;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.category-icon i {
    font-size: 20px !important;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-item:hover .category-icon i {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.category-item.active .category-icon i {
    color: #6eb5ff;
    filter: drop-shadow(0 0 8px rgba(13, 110, 253, 0.4));
}

.category-name {
    font-size: 11px;
    font-weight: 600;
    color: #e8eaed;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin-top: 2px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.category-item:hover .category-name {
    color: #ffffff;
}

.category-item.active .category-name {
    color: #6eb5ff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .categories-wrapper {
        padding: 8px 6px !important;
        border-radius: 10px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .categories-container {
        gap: 6px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .category-item {
        min-width: 65px !important;
        padding: 6px 4px !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
    }

    .category-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 4px !important;
        display: flex !important;
    }

    .category-icon {
        font-size: 18px !important;
        display: flex !important;
    }

    .category-icon i {
        font-size: 18px !important;
        display: inline-block !important;
    }

    .category-name {
        font-size: 10px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .match-filters-compact {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .match-filter-compact {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.custom-scrollbar {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 110, 253, 0.6) rgba(255, 255, 255, 0.05);
}

.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.6));
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
    transition: background 0.3s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(13, 110, 253, 1), rgba(13, 110, 253, 0.8));
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
}

.user-balance span {
    font-size: 16px;
    font-weight: 500;
}

.user-balance sup {
    font-size: 12px;
    top: -5px;
    margin-right: 2px;
}

#wg-api-football-game {
    width: 100%;
    background: #2c3e50;
    padding: 10px;
    border-radius: 5px;
    min-height: 150px;
}
/* === Dashboard Layout === */
.user-dashboard .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* === Dashboard Cards === */
.user-dashboard .dashboard__cards {
    background-color: #213642;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    color: #f8fafc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}
.user-dashboard .dashboard__cards:hover {
    transform: translateY(-2px);
}
.user-dashboard .dashboard__cards .price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1475e1; /* emerald green */
}
.user-dashboard .dashboard__cards .info {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* === Stake-style Bet Card === */
.user-dashboard .stake-bet-card {
    background-color: #0e202e;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    color: #cbd5e1;
}
.user-dashboard .stake-bet-card .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* === Match Block Inside Bet === */
.user-dashboard .match-block {
    border-left: 3px solid #1475e1;
    padding-left: 0.75rem;
    margin-bottom: 0.5rem;
}
.user-dashboard .match-block .text-muted {
    font-size: 0.85rem;
}
.user-dashboard .match-block .fw-bold {
    font-size: 0.95rem;
}

/* === Odds / Stake / Payout Row === */
.user-dashboard .stake-bet-card .text-light {
    color: #f1f5f9 !important;
}
.user-dashboard .stake-bet-card .text-success {
    color: #22c55e !important;
}
.user-dashboard .stake-bet-card .text-danger {
    color: #ef4444 !important;
}
.user-dashboard .stake-bet-card .text-info {
    color: #1475e1 !important;
}
.user-dashboard .stake-bet-card small {
    font-size: 0.75rem;
}

/* === Responsive Fixes === */
@media (max-width: 768px) {
    .user-dashboard .dashboard__cards .price {
        font-size: 1.1rem;
    }
    .user-dashboard .dashboard__cards .info {
        font-size: 0.8rem;
    }
    .user-dashboard .stake-bet-card {
        padding: 1rem;
    }
    .user-dashboard .match-block {
        font-size: 0.9rem;
    }
    .user-dashboard .stake-bet-card .d-flex.justify-content-around > div {
        flex: 1 1 33%;
    }
}

@media (max-width: 768px) {
    .user-dashboard .dashboard__cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .user-dashboard .dashboard__cards .info {
        order: 1;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .user-dashboard .dashboard__cards .price {
        order: 2;
        font-size: 1.1rem;
    }
}

/* Add Fund Styles - Modern Stake-like */

.user-addfund .deposit-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #e2e8f0;
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: pointer;
    height: 100%;
}

.user-addfund .deposit-card:hover {
    transform: translateY(-3px);
    background-color: #273549;
}

.user-addfund .deposit-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.user-addfund .deposit-card div {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

@media (max-width: 768px) {
    .user-addfund .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.modal-content {
    display: block !important;
}

.stake-bet-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stake-bet-card .footer-breakdown {
    margin-top: auto;
}

/* fund history */

.bg-dark {
    background-color: #0f1c2d !important;
}
.bg-secondary {
    background-color: #1e2d3a !important;
}
.text-muted {
    color: #7e8a99 !important;
}
.hover-row:hover {
    background-color: #1a2735 !important;
    transition: background 0.2s ease-in-out;
}

/* preview.blade */
@media (max-width: 767px) {
    .payment-info .list-group-item {
        padding: 0.75rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    .input-box select.form-control {
        min-height: 45px;
    }

    .btn-custom {
        padding: 5px;
    }
}
.crypto-select-wrapper {
    margin-top: 20px;
}

/* user balance navbar */
.user-balance.dropdown .dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
}

.user-balance.dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    color: #fff;
}

.stake-wallet {
    background-color: #0f212e;
    border-radius: 8px;
    padding: 6px 10px;
    height: 40px;
}

.balance-button {
    background-color: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.balance-button:focus {
    outline: none;
    box-shadow: none;
}

.balance-amount {
    color: #fff;
}

.dropdown-arrow i {
    font-size: 10px;
    color: #ffffff;
}

.wallet-btn {
    background-color: #1575e0;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}

.wallet-btn:hover {
    background-color: #1267c1;
    text-decoration: none;
}

/* Balance dropdown styles */
.balance-display .dropdown-menu {
    background-color: #1f2d3a;
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    transform-origin: top;
    animation: fadeInDropdown 0.2s ease-in-out;
    z-index: 9999;
}

/* Dropdown items */
.balance-display .dropdown-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    transition: background 0.2s ease-in-out;
    border-radius: 6px;
}

.balance-display .dropdown-item i {
    margin-right: 10px;
    font-size: 15px;
    color: #4faaff;
}

.balance-display .dropdown-item:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Optional: subtle dropdown arrow indicator */
.balance-display .dropdown-toggle::after {
    display: none;
}

/* Dropdown animation */
@keyframes fadeInDropdown {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* User dropdown styles */
.user-dropdown .dropdown-menu {
    background-color: #1f2d3a;
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    transform-origin: top;
    animation: fadeInDropdown 0.2s ease-in-out;
    z-index: 9999;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    transition: background 0.2s ease-in-out;
    border-radius: 6px;
}

.user-dropdown .dropdown-item i {
    margin-right: 10px;
    font-size: 15px;
    color: #4faaff;
}

.user-dropdown .dropdown-item:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Remove default Bootstrap arrow */
.user-dropdown .dropdown-toggle::after {
    display: none;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stake-wallet {
    flex: 0 1 auto;
}

.navbar .container-fluid {
    position: relative;
    padding: 0 15px;
}

.modal_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}
