/* Local fonts (from design assets) */
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Oblique.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Design color tokens from provided specs */
    --color-primary: #1A254B; /* deep navy */
    --color-secondary: #17244D; /* darker navy used */
    --color-accent: #0F1B44; /* accent/navy */
    --color-white: #FFFFFF;

    --active-orange: #f59e0b;
    --light-gray: #f8f9fa;
    --border-gray: #e5e7eb;
    --dark-text: var(--color-primary);
    --light-text: #6b7280;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --heading-title:#F1A148;
    --card-title:#146AD3;

    /* Typography sizes from spec */
    --type-h1: 40px; /* hero */
    --type-h2: 32px;
    --type-h3: 27px;
    --type-h4: 25px;
    --type-h5: 20px;
    --type-h6: 18px;
    --type-h7: 15px;
    --type-base: 20px;
}

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

html, body {
    height: 100%;
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
    color: var(--dark-text);
    font-size: var(--type-base);
}
.container {

}
.text-primary{
    color: #E6802E !important;
}
.invalid-feedback {
    font-size: .7em !important;
}
.form-control,
.form-control:focus {
    margin-top: -8px;
    outline: none;
    box-shadow: none;
    border: 1px solid #4C4C4C;
}
.form-select,
.form-select:focus {
    margin-top: -8px;
    outline: none;
    box-shadow: none;
    border: 1px solid #4C4C4C;
}
.form-check-input,
.form-check-input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #4C4C4C;
}
.align-left{
    text-align: left !important;
}
.overflow-hidden {
    overflow: hidden;
}
.color-secondary{
    color: var(--color-secondary) !important;
}
.w-107{
    width: 108% !important;
}
.bg-light{
    background-color: #f5f5f5 !important;
}

a{
    text-decoration: none;
}
.font-bold{
    font-weight: 700;
}
.page-title{
    color: var(--heading-title);
    padding-bottom: 8px;
}
.uppercase{
    text-transform: uppercase;
}
.card-title-color{
    color: var(--card-title);
}

.img-bg-blue{
    margin-top: -35px;
}
.padding-top-10px {
    padding-top: 10px;
}
.btn-primary, .btn-primary:focus, .btn-primary:hover {
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    border: 0.5px solid #4C4C4C;
    border-radius: 10px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    /* padding: 8px 25px; */
}
.btn-secondary, .btn-secondary:focus, .btn-secondary:hover {
    background: transparent linear-gradient(0deg, #DEDEDE 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
    border: 0.5px solid #4C4C4C;
    border-radius: 10px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}
.tab-link.active, .tab-link .active:focus, .tab-link .active:hover {
    background: transparent linear-gradient(36deg, #0F1B44 0%, #155CB2 100%) 0% 0% no-repeat padding-box !important;
    border: 0.5px solid #4C4C4C;
    border-radius: 10px;
    color: var(--color-secondary);
    font-weight: 600;
}
.pending-tab-btn{
    background: transparent linear-gradient(0deg, #DEDEDE 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box !important;
    color: var(--color-dark, #0F1B44);
    border: 0.5px solid #4C4C4C;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.pending-tab-btn:hover, .pending-tab-btn:focus, .history-tab-btn:hover, .history-tab-btn:focus{
    border: 0.5px solid #4C4C4C;
}
.active-pending-tab {
    background: linear-gradient(36deg, #0F1B44 0%, #155CB2 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.history-tab-btn {
    background: transparent linear-gradient(0deg, #DEDEDE 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box !important;
    color: var(--color-dark, #0F1B44);
    border: 0.5px solid #4C4C4C;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.active-history-tab {
    background: linear-gradient(36deg, #0F1B44 0%, #155CB2 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.transfer-icon{
    max-width:20px !important;
    max-height:20px !important;
    margin-left:3px;
    margin-right:3px;
    margin-top:-3px;
}
.modal-incomplete .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    margin: auto;
}

.modal-incomplete .modal-header {
    background-color: #FBBE5E;
    border: none;
    padding: 2rem 2.5rem 1.75rem;
    position: relative;
    justify-content: center;
}

.modal-incomplete .modal-header .modal-title {
    font-weight: 900;
    font-size: 2rem;
    color: #FF0000;
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.modal-incomplete .btn-close-custom {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.modal-incomplete .btn-close-custom:hover {
    color: #000;
}

.modal-incomplete .modal-body {
    background-color: #FFFFFF;
    padding: 2.5rem 2.5rem 3rem;
    text-align: center;
}

.modal-incomplete .modal-body p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1a2e50;
    margin: 0;
}

.modal-incomplete .modal-body .highlight {
    color: #F5A623;
    font-weight: 600;
}

.modal-incomplete .modal-body strong {
    color: #1a2e50;
    font-weight: 700;
}
.tab-btn            { background:#f0f0f0; border:none; cursor:pointer; color:#444; transition:background .2s,color .2s; }
.tab-btn.active     { background:#f5a623; color:#fff; font-weight:700; }
.tab-btn:disabled   { opacity:.55; cursor:not-allowed; }

.ws-circle          { width:30px;height:30px;border-radius:50%;border:2px solid #adb5bd;background:#fff;color:#555;font-size:.78rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .25s; }
.ws-circle.active   { background:#1a3a6b;border-color:#1a3a6b;color:#fff; }
.ws-circle.done     { background:#1a3a6b;border-color:#1a3a6b;color:#fff; }
.ws-label           { font-size:.78rem;color:#555;white-space:nowrap; }
.ws-label.active    { color:#1a3a6b;font-weight:600; }
.ws-line            { flex:1;height:1.5px;background:#adb5bd;margin:0 4px; }
.ws-line.done       { background:#1a3a6b; }

.step-label         { color:#f5a623;font-weight:700;font-size:.8rem;letter-spacing:.08em;margin-bottom:2px; }
.step-title         { color:#1a3a6b;font-weight:700;font-size:1rem;letter-spacing:.03em;margin-bottom:1.5rem; }
.field-label        { font-weight:600;font-size:.83rem;color:#1a1a2e; }

.form-control:focus,
.form-select:focus  { border-color:#1a3a6b;box-shadow:0 0 0 .2rem rgba(26,58,107,.15); }

.decl-check         { width:1.1em;height:1.1em;flex-shrink:0; }
.decl-check:checked { background-color:#1a3a6b;border-color:#1a3a6b; }
/* Header */
.top-header {
    position: fixed;
    left: 0;
    right: 0;
    background:#f5f5f5;
    z-index: 1000;
    padding-top: 15px;
}
.desktop-ad{
    border-radius: 10px;
    height: 160px;
    background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
}
.ad-heading-1{
    color: var(--color-white);
    font-size: var(--type-h3);
    letter-spacing: 0px;
    line-height: 1.6;
    padding-right: 0px !important;
}
.ad-middle-img img{
    height: 224px;
    margin-top: -65px;
    margin-bottom: 0px;
}
.ad-last-img img{
    height: 110px;
    margin-top: -20px;
}
/*2nd Ad Banner*/
.desktop-ad-2{
    padding-right:20px;
    border-radius: 10px;
    height: 160px;
    background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
}
.ad-2-heading-1{
    color: var(--color-white);
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
    padding-right: 0px !important;
}
.ad-2-middle-img img{
    height: 160px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.ad-2-last-btn{
    height: 110px;
    margin-top: -20px;
}
/* End 2nd Ad Banner*/

/* End Header */
/* Sidebar */

.fixed-bottom .nav-link {
    color: #6c757d;
    transition: all 0.3s ease;
    padding:4px 10px
}

.fixed-bottom .nav-link.active, .fixed-bottom .nav-link:hover {
    background: none !important;
}
.fixed-bottom .nav-link img{
    background: #EAEAEA 0% 0% no-repeat padding-box;
    padding: 5px;
    border-radius: 18px;
}
.fixed-bottom .nav-link.active img{
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    padding: 5px;
    border-radius: 18px;
}

.fixed-bottom .nav-link:hover img{
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    padding: 5px;
    border-radius: 18px;
}


.mobile .nav-link {
    box-shadow: none;
    border-radius: 0;
    color: var(--color-secondary);
}

/* Desktop Sidebar */
.desktop-sidebar {
    position: fixed;
    top: calc(160px + 80px + 5px);
    bottom: 0;
    width: 100%;
    max-width: 220px !important;
    overflow-y: auto;
    padding: 3px;
    box-shadow: none;
    min-height: 100vh;
}
.nav-img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}
.nav-item {
    margin-bottom: 13px;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    padding-bottom: 7px;
    color: var(--color-secondary);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 5px #C8C8C8;
    font-size: var(--type-h5);
}
.nav-link:hover {
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    color: var(--color-secondary);

}
.nav-link:focus {
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    color: var(--color-secondary);

}
.nav-link.active {
    background: transparent linear-gradient(0deg, #E6802E 0%, #FBBE5E 100%) 0% 0% no-repeat padding-box;
    /*box-shadow: 0px 0px 10px #C8C8C8;*/
    color: var(--color-secondary);

}

/* End Sidebar */

/* Main Content Area */
.desktop-body-content {
    margin-left: calc(160px + 80px); /* Width of sidebar + some gap */
    margin-top: calc(160px + 80px + 10px);
}
.card{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 5px #C8C8C8;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border: 0px;
}
.card-body{
    padding:0;
}
.card-text{
    font-weight:600;
    font-size: var(--type-h5);
    color: var(--color-primary);
}
.card-text-2{
    font-weight:600;
    font-size: var(--type-h6);
    color: var(--color-primary);
}
.card-text-h4{
    font-size: var(--type-h4);
    color: var(--color-primary);
}
.full-width-hr{
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.md-my-center{
    color: var(--color-primary);
}
.brown-card{
    background: transparent linear-gradient(0deg, #DEDEDE 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #4C4C4C;
    border-radius: 10px;
}
.brown-image-div{
    background: #D5D5D5 0% 0% no-repeat padding-box;
    border-radius: 100%;
    padding: 15px;
    width:90px
}
.font-normal{
    font-size: 24px;
}
.font-normal-bold{
    font-size: 30px;
    font-weight: 700;
}
.font-normal-small{
    font-size: 19px;
}
.acc-term{
    max-width: 24%;
    margin-top: -8px;
}
.dashboard table {
    width: 100%;
    border-collapse: collapse;
}
.dashboard th, .dashboard td {
    border: 1px solid var(--white);
    padding: 10px;
    text-align: center;
}
.dashboard th{
    color: var(--dark-text);
    font-size: var(--type-h7);
    font-weight: 100;
    background: none;
}
.dashboard td{
    color: var(--dark-text);
    font-size: var(--type-h6);
    font-weight: 600;
    border:0px

}

.dashboard td:first-child {
    position: relative;
    padding-left: 20px; /* Space for the border */
}
.dashboard td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 5px;
    background: #22c55e; /* green color */
    border-radius: 10px 0 0 10px;
}


.dashboard thead>tr{
    background: none;
}
.dashboard tr{
    color: var(--dark-text);
    font-size: var(--type-h6);
    font-weight: 600;
    background: #b2b2b259 0% 0% no-repeat padding-box;
    border-radius: 10px;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

/* account page */
.table-heading-bg-color{
    background:#b2b2b259;
}
.table-heading-height{
    height:40px;
}
.table-heading-font-size{
    font-size: 18px;
}
.p-20px{
    padding:20px;
}
.p-15px{
    padding:15px;
}
.p-b-0{
    padding-bottom:0px !important;
}
.pl-20px{
    padding-left:20px !important;
}
.accnt-btn-font-size{
    font-size: 16px;
}
.accnt-font-normal-small{
    font-size: 19px;
}
.bg-blue{
    background-color: #155CB2 !important;
    color: #ffffff !important;
}
.acc-table td{
    background: #F0F0F0;
}
.acc-table tr:first-child td:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.acc-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.acc-table td,
.acc-table th {
    border: 0.5px solid #ccc;
}

.acc-table tr:first-child td {
    border-top: 0;
}

.acc-table tr:last-child td {
    border-bottom: 0;
}

.acc-table td:first-child {
    border-left: 0;
}

.acc-table td:last-child {
    border-right: 0;
}
.acc-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.acc-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.accnt-line-height{
    line-height: 2;
}
.popup-header-bg{
    background: #FBBE5E;
}



/* End Main Content Area */


/* Footer */

/* End Footer */
/* Responsive Styles
-------------------------------------
(min-width: 1200px) and (max-width: 1399.98px) - Large desktops
(min-width: 992px) and (max-width: 1199.98px) - Medium desktops
(min-width: 768px) and (max-width: 991.98px) - Small desktops
(max-width: 767.98px) - Mobile devices
-------------------------------------
*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .desktop-ad{
        border-radius: 10px;
        height: 120px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-heading-1{
        color: var(--color-white);
        font-size: var(--type-h4);
        line-height: 1.6;
        padding-right: 0px !important;
    }
    .ad-middle-img img{
        height: 170px;
        margin-top: -50px;
        margin-bottom: 0px;
    }
    .ad-last-img img{
        height: 70px;
        margin-top: -10px;
    }
    /* Adjust sidebar for smaller desktops */
    .desktop-sidebar {
        top: calc(120px + 80px);
        max-width: 200px !important;
    }
    .nav-img {
        width: 30px;
        height: 30px;
    }
    .nav-link {
        font-size: var(--type-h6);
    }
    .desktop-body-content {
        margin-left: calc(140px + 80px); /* Width of sidebar + some gap */
        margin-top: calc(125px + 80px );
    }
    .btn-primary {
        font-size: 16px;
        padding: 6px 15px;
    }
    .btn-secondary {
        font-size: 16px;
        padding: 6px 15px;
    }
    .accnt.btn-primary {
        font-size: 14px;
    }
    .accnt.btn-secondary {
        font-size: 14px;
    }
    .md-my-center{
        font-size: 15px;

    }
    .font-normal{
        font-size: 19px;
    }
    .font-normal-bold{
        font-size: 25px;
        font-weight: 700;
    }
    .font-normal-small{
        font-size: 17px;
    }
    .ad-2-heading-1{
        color: var(--color-white);
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1.4;
        padding-right: 0px !important;
    }
    .accnt-btn-font-size{
        font-size: 14px;
    }
    .accnt-font-normal-small{
        font-size: 17px;
    }

}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .desktop-ad{
        border-radius: 10px;
        height: 120px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-heading-1{
        color: var(--color-white);
        font-size: var(--type-h5);
        line-height: 1.6;
        padding-right: 0px !important;
    }
    .ad-middle-img img{
        height: 170px;
        margin-top: -50px;
        margin-bottom: 0px;
    }
    .ad-last-img img{
        height: 70px;
        margin-top: -10px;
    }
    /* Adjust sidebar for smaller desktops */
    .desktop-sidebar {
        top: calc(120px + 80px);
        max-width: 200px !important;
    }
    .nav-img {
        width: 30px;
        height: 30px;
    }
    .nav-link {
        font-size: var(--type-h6);
    }
    .desktop-body-content {
        margin-left: calc(140px + 80px); /* Width of sidebar + some gap */
        margin-top: calc(125px + 80px);
    }
    .btn-primary {
        font-size: 12.5px;
        padding: 6px 12px;
    }
    .btn-secondary {
        font-size: 12.5px;
        padding: 6px 12px;
    }
    .accnt.btn-primary {
        font-size: 11px;
    }
    .accnt.btn-secondary {
        font-size: 11px;
    }
    .wallet-balance-text{
        font-size: var(--type-h6);
    }
    .card-text-h4{
        font-size: var(--type-h5);
    }
    .md-my-center{
        text-align: center;
        margin-top: 10px;
        font-size: var(--type-h7);
    }
    .font-normal{
        font-size: 13px;
    }
    .font-normal-bold{
        font-size: 18px;
        font-weight: 700;
    }
    .font-normal-small{
        font-size: 13px;
    }
    .desktop-ad-2{
        border-radius: 10px;
        height: 120px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-2-heading-1{
        color: var(--color-white);
        font-size: 13px;
        letter-spacing: 0px;
        line-height: 1.4;
        padding-right: 0px !important;
    }
    .ad-2-middle-img img{
        height: 118px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .accnt-btn-font-size{
        font-size: 11px;
    }
    .transfer-icon{
        max-width:14px !important;
        max-height:14px !important;
        margin-left:3px;
        margin-right:3px;
        margin-top:-3px;
    }
    .accnt-font-normal-small{
        font-size: 13px;
    }
    .acc-frm-label{
        font-size: 17px;
    }

}
@media (min-width: 768px) and (max-width: 991.98px) {
    .desktop-ad{
        border-radius: 10px;
        height: 75px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-heading-1{
        color: var(--color-white);
        font-size: var(--type-h7);
        line-height: 1.6;
        padding-right: 0px !important;
    }
    .ad-middle-img img{
        height: 115px;
        margin-top: -45px;
        margin-bottom: 0px;
    }
    .ad-last-img img{
        height: 62px;
        margin-top: -10px;
    }
    /* Adjust sidebar for smaller desktops */
    .desktop-sidebar {
        top: calc(75px + 80px);
        max-width: 190px !important;
    }
    .nav-img {
        width: 30px;
        height: 30px;
    }
    .nav-link {
        font-size: var(--type-h6);
    }
    .desktop-body-content {
        margin-left: calc(128px + 80px); /* Width of sidebar + some gap */
        margin-top:calc(78px + 80px);
    }
    .btn-primary {
        font-size: 11px;
        padding: 6px 4px;
    }
    .btn-secondary {
        font-size: 11px;
        padding: 6px 4px;
    }
    .accnt.btn-primary {
        font-size: 10px;
    }
    .accnt.btn-secondary {
        font-size: 10px;
    }
    .wallet-balance-text{
        font-size: 14px;
    }
    .card-text-h4{
        font-size: 17px;
    }
    .md-my-center{
        text-align: center;
        margin-top: 15px;
        font-size: 11px;
    }
    .md-my-center img{
        width: 40px;
        height: 40px;
    }
    .font-normal{
        font-size: 19px;
    }
    .font-normal-bold{
        font-size: 25px;
        font-weight: 700;
    }
    .font-normal-small{
        font-size: 11px;
    }
    .desktop-ad-2{
        padding-right:15px;
        padding-left:15px;
        border-radius: 10px;
        height: 92px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-2-heading-1{
        color: var(--color-white);
        font-size: 9px;
        letter-spacing: 0px;
        line-height: 1.4;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .ad-2-middle-img img{
        height: 90px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .ad-2-btn{
        padding: 0px !important;
    }
    .accnt-btn-font-size{
        font-size: 8px;
    }
    .transfer-icon{
        max-width:11px !important;
        max-height:11px !important;
        margin-left:3px;
        margin-right:3px;
        margin-top:-3px;
    }
    .accnt-font-normal-small{
        font-size: 11px;
    }
}
/* mobile styles */
@media (min-width: 429px) and (max-width: 767.98px) {
    .w-107{
        width: 108% !important;
    }
    .desktop-body-content {
        margin-left: 0px; /* Width of sidebar + some gap */
        margin-top: 18px;
        margin-bottom: 110px;
    }
    .mobile-margin-top-20px{
        margin-top: 20px;
    }
    .btn-primary, .btn-primary:focus, .btn-primary:hover {
        font-size: 14px;
        border-radius: 8px;
        padding: 12px 8px !important;
    }
    .btn-secondary , .btn-secondary:focus, .btn-secondary:hover {
        font-size: 14px;
        border-radius: 8px;
        padding: 12px 8px !important;
    }
    .accnt.btn-primary {
        font-size: 14px;
    }
    .accnt.btn-secondary {
        font-size: 14px;
    }
    .font-normal{
        font-size: 23px;
    }
    .font-normal-bold{
        font-size: 30px;
        font-weight: 700;
    }
    .d-mobile-none{
        display: none;
    }
    .mobile-p-2{
        padding: 10px !important;
    }
    .brown-image-div {
        padding: 10px;
        width: 55px;
    }
    .font-live-card{
        font-size: 13px;
    }
    .font-live-acc{
        font-size: 17px;
    }
    .card-text {
        font-weight: 600;
        font-size: 18px;
    }
    .card-text-h4 {
        font-size: 20px;
    }
    .tab-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    .mobile-each-row-w-100{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .mobile-each-row-w-100 a{
        width: 100%;
    }
    .mobile-w-100{
        text-align: center ;
        max-width: 100% ;
        width: 100% !important;
    }
    .mobile-font-15px{
        font-size: 15px !important;
    }
    .download-mt5{
        margin-top: -10px;
        margin-bottom: 15px;
    }
    .mobile-text-center{
        text-align: center;
    }
    .d-mobile-block{
        display: block !important;
    }
    .desktop-ad-2{
        padding-right:10px;
        padding-left:10px;
        border-radius: 10px;
        height: 100px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-2-heading-1{
        color: var(--color-white);
        font-size: 9px;
        letter-spacing: 0px;
        line-height: 1.6;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .ad-2-middle-img img{
        height: 99px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .ad-2-btn{
        padding: 0px !important;
    }
    .ad-2-btn button{
        font-size: 10px;
    }
    .ad-heading-1{
        font-size: 15px;
        padding-left: 20px;
    }
    .ad-last-img img {
        height: 58px;
        padding-left: 5px;
        margin-top: -30px;
    }
    .desktop-ad {
        height: 170px;
    }
    .ad-middle-img img {
        height: 160px;
        margin-top: 10px;
        margin-bottom: 0px;
        margin-left: -15px;
    }
    .accnt-btn-font-size{
        font-size: 13px;
    }
    .accnt-font-normal-small{
        font-size: 11px;
    }
    .form-label{
        font-size: 0.8rem;
    }
    .gap-mobile-0{
        gap: 0px !important;
    }
    .btn-get-bonus{
        padding: 3px 0px !important;
        margin-top: 5px;
        font-size: 12px;
        border-radius: 5px;
    }
    .page-title {
        color: var(--heading-title);
        padding-bottom: 8px;
        font-size: 25px;
    }
    .mobile-gap-2{
        gap: .5rem!important;
    }
    .acc-button-padding-15px{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 320px) and (max-width: 429px) {
    .w-107{
        width: 109% !important;
    }
    .desktop-body-content {
        margin-left: 0px; /* Width of sidebar + some gap */
        margin-top: 18px;
        margin-bottom: 110px;
    }
    .mobile-margin-top-20px{
        margin-top: 20px;
    }
    .btn-primary, .btn-primary:focus, .btn-primary:hover {
        font-size: 10px;
        border-radius: 8px;
        /*padding: 6px 8px !important;*/
    }
    .btn-secondary , .btn-secondary:focus, .btn-secondary:hover {
        font-size: 10px;
        border-radius: 8px;
        /*padding: 6px 8px !important;*/
    }
    .accnt.btn-primary {
        font-size: 9px;
    }
    .accnt.btn-secondary {
        font-size: 9px;
    }
    .font-normal{
        font-size: 23px;
    }
    .font-normal-bold{
        font-size: 30px;
        font-weight: 700;
    }
    .d-mobile-none{
        display: none;
    }
    .mobile-p-2{
        padding: 10px !important;
    }
    .brown-image-div {
        padding: 10px;
        width: 55px;
    }
    .font-live-card{
        font-size: 13px;
    }
    .font-live-acc{
        font-size: 17px;
    }
    .card-text {
        font-weight: 600;
        font-size: 18px;
    }
    .card-text-h4 {
        font-size: 18px;
    }
    .wallet-balance-text{
        font-size: 15px;
    }
    .tab-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    .mobile-each-row-w-100{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .mobile-each-row-w-100 a{
        width: 100%;
    }
    .mobile-w-100{
        text-align: center ;
        max-width: 100% ;
        width: 100% !important;
    }
    .mobile-font-15px{
        font-size: 15px !important;
    }
    .download-mt5{
        margin-top: -10px;
        margin-bottom: 15px;
    }
    .mobile-text-center{
        text-align: center;
    }
    .d-mobile-block{
        display: block !important;
    }
    .desktop-ad-2{
        padding-right:10px;
        padding-left:10px;
        border-radius: 10px;
        height: 90px;
        background: transparent radial-gradient(closest-side at 50% 50%, #155CB2 0%, #0F1B44 80%) 0% 0% no-repeat padding-box
    }
    .ad-2-heading-1{
        color: var(--color-white);
        font-size: 8px;
        letter-spacing: 0px;
        line-height: 1.6;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .ad-2-middle-img img{
        height: 76px;
        margin-top: 14px;
        margin-bottom: 0px;
    }
    .ad-2-btn{
        padding: 0px !important;
    }
    .ad-2-btn button{
        font-size: 10px;
    }
    .ad-heading-1{
        font-size: 13px;
        padding-left: 20px;
        line-height: 1.3;
    }
    .ad-last-img img {
        height: 58px;
        padding-left: 5px;
        margin-top: -30px;
    }
    .desktop-ad {
        height: 135px;
    }
    .ad-middle-img img {
        height: 120px;
        margin-top: 15px;
        margin-bottom: 0px;
        margin-left: -15px;
    }
    .accnt-btn-font-size{
        font-size: 13px;
    }
    .accnt-font-normal-small{
        font-size: 11px;
    }
    .form-label{
        font-size: 0.8rem;
    }
    .top-name
    {
        font-size: 16px !important;
    }
    .gap-mobile-0{
        gap: 0px !important;
    }
    .btn-get-bonus{
        padding: 3px 0px !important;
        margin-top: 5px;
        border-radius: 5px;
    }
    .page-title {
        color: var(--heading-title);
        padding-bottom: 8px;
        font-size: 23px;
    }
    .mobile-gap-2{
        gap: .5rem!important;
    }
    .acc-button-padding-15px{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}
