/* Dashboard CSS */

.full-page-body {
    display: flex;
}

.dashbord-left-menu {
    max-width: 360px;
    min-width: 360px;
    height: 100vh;
    background: #FFF4F3;
    border-right: 1px solid #363382;
    border-radius: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
}

.dash-left-menu {
    overflow-y: scroll;
    scrollbar-width: none;
    max-height: calc(100vh - 154px);
}

.dashbord-left-menu .brand-logo {
    max-width: 120px;
}

.dashbord-left-menu .dash-left-top {
    padding: 16px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #FFF4F3;
    border-radius: 0 30px 0 0;
}

.dashbord-left-menu .dash-left-top::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #363382;
    top: -1px;
    right: -1px;
    z-index: -1;
}

.dashbord-left-menu .dash-short-btn {
    background: transparent;
    border: none;
    box-shadow: none;
    transform: rotateY(180deg);
}

.dashbord-left-menu.short .dash-short-btn.active {
    transform: rotateY(0deg);
}

.dash-left-bottom {
    margin-top: auto;
}

.dash-left-bottom .logout-btn {
    width: 100%;
    text-align: left;
    padding: 16px 44px;
    background: #14436D;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
    border-radius: 0 0 30px 0;
}

.dash-left-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 16px 24px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-left-menu-nav ul .dash-left-menu-btn {
    background: transparent;
    width: 100%;
    display: block;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #363382;
    transition: 0.4s;
}

.dash-left-menu-nav ul .dash-left-menu-btn.active,
.dash-left-menu-nav ul .dash-left-menu-btn:hover {
    background: #ffffff;
    border: 1px solid #FC3B36;
    box-shadow: 0 4px 0 #FC3B36;
}

.dash-left-menu-nav ul .dash-left-menu-btn.active i,
.dash-left-menu-nav ul .dash-left-menu-btn:hover i {
    color: #FC3B36;
}

.dash-left-menu-nav ul .dash-left-menu-btn i {
    margin-right: 8px;
}

.right-body-sections {
    width: 100%;
    background-color: #F3F1FF;
}

.profile-link-btn {
    display: flex;
    align-items: center;
    text-align: end;
    gap: 10px;
    text-decoration: none;
    padding: 12px;
    position: relative;
    background-color: transparent !important;
    border: none !important;
}

.profile-link-btn .dash-logout-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 3px 3px 8px 0 #b9b9b9;
    border-radius: 8px;
    border: 1px solid #363382;
    color: #363382;
    transform: translate(-12px, 100%);
    font-size: 16px;
    font-weight: 500;
    text-wrap: nowrap;
    display: none;
}

.profile-link-btn:hover .dash-logout-btn, .profile-link-btn:focus .dash-logout-btn {
    display: block;
}

.profile-link-btn .user-profile-content .user-name {
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

.profile-link-btn .user-profile {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FC3B36;
    border-radius: 50%;
    color: #ffffff;
}

.profile-link-btn .user-profile-content .user-mobile {
    font-weight: 500;
    font-size: 18px;
    color: #E7E6F5;
    margin-bottom: 0;
}

.dashboard-header {
    background: #363382;
}

.dash-body-overflow {
    overflow-y: scroll;
    height: 100vh;
    max-height: calc(100vh - 76px);
    box-sizing: border-box;
    padding: 24px;
    scrollbar-width: none;
}

/* active menu short */

.dashbord-left-menu.short .brand-logo {
    display: none;
}

.dashbord-left-menu.short .dash-left-menu-btn span {
    display: none;
}

.dashbord-left-menu.short .logout-btn span {
    display: none;
}

.dashbord-left-menu.short {
    border-radius: 0;
    max-width: 70px;
    min-width: 70px;
}

.dashbord-left-menu.short .logout-btn {
    border-radius: 0;
    padding: 16px 24px;
}

.dashbord-left-menu.short .dash-left-menu-nav ul {
    padding: 10px;
}

.dashbord-left-menu.short .dash-left-menu-nav ul .dash-left-menu-btn {
    padding: 11px;
}

.dashbord-left-menu.short .dash-left-top {
    padding: 25px 18px;
    border-radius: 0;
}

.text-align-start {
    text-align: start;
}

.total-coins-div {
    background-color: #151256;
}

.right-body-sections {
    padding-left: 360px;
}

.right-body-sections.active {
    padding-left: 70px;
}




.custom-card {
    background: white;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 24px 22px;
    text-align: left;
    box-shadow: 0px 0px 7px 0px #04244D26;
    transition: 0.3s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card h2 {
    font-size: 24px;
    color: #02192F;
    margin: 0;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-card p {
    margin: 0;
    color: #494949;
    font-weight: 600;
    font-size: 16px;
}

.custom-card .icon {
    font-size: 26px;
    color: white;
    background: #363382;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 16px;
}

.custom-card .badge {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 400;
}

/* Color Variations */
.custom-card.blue {
    background: linear-gradient(180deg, #fff, #B2D2D4);

    .icon {
        background: #319DA5;
    }


    h2 {
        max-width: 160px;
    }
}

.custom-card.orange {
    background: linear-gradient(180deg, #fff, #FFDEC6);

    .icon,
    .badge {
        background: #E98017;
    }

    h2 {
        max-width: 88px;
    }
}

.custom-card.dark-blue {
    background: linear-gradient(180deg, #fff, #9BC6EE);

    .icon {
        background: #14518B;
    }


    h2 {
        max-width: 160px;
    }
}

.custom-card.purple {
    background: linear-gradient(180deg, #fff, #BBADEE);

    .icon,
    .badge {
        background: #816CCD;
    }

    h2 {
        max-width: 88px;
    }
}

.right-body-sections.active .custom-card h2 {
    max-width: 160px;
}

.my-applications-heading {
    color: #02192F;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}

.my-application-card {
    border: 1px solid #D7D7D8;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #26435726;
    transition: 0.4s;
}

.my-application-card:hover {
    transform: translateY(-4px);
}

.my-application-card {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.my-application-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: #E7E6EF;
    border-radius: 10px;
}

.application-track-btn {
    background: #363382 !important;
    border: 1px solid #363382 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
}

.my-application-bottom-left p {
    color: #02192F;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.my-application-bottom-left h3 {
    color: #02192F;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.my-application-img img {
    max-width: 140px;
    object-fit: contain;
    aspect-ratio: 4/3;
}

.my-application-table table tr th {
    color: #02192F;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    padding: 4px 16px 4px 0;
}

.my-application-table table tr td {
    color: #02192F;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    padding: 4px 16px 4px 0;
}

.dash-services-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #D7D7D8;
    box-shadow: 0px 0px 14px 0px #26435726;
    transition: 0.3s;
    height: 100%;
}

.dash-services-card-img {
    width: 160px;
    min-width: 160px;
}

.dash-services-card-heading {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #02192F;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    margin-bottom: auto;
}

.dash-services-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dash-services-card-img img {
    aspect-ratio: 4/3;
    object-fit: contain;
}

.dash-services-card .dash-sbottom-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-services-card .dash-sbottom-align .dash-sbottom-price {
    color: #02192F;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}

.dash-services-card .dash-sbottom-align .services-card-btn {
    background: #02192F !important;
    border: 1px solid #02192F !important;
    border-radius: 10px;
    text-decoration: none;
    color: #fff !important;
    padding: 8px 22px;
}

.dashboard-listing-table-card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px #3633825E;
}

.dl-table-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.dl-table-card-top.brb-color {
    border-bottom: 1px solid #ccc;
}

.dashboard-listing-table-card .dash-services-card {
    padding: 12px;
    gap: 12px;
    box-shadow: none;
    background: #FAFAFA;
}

.dashboard-listing-table-card .dash-services-card .dash-services-card-img {
    width: 120px;
    min-width: 120px;
}

.dashboard-listing-table-card .dash-services-card .dash-services-card-heading {
    font-size: 16px;
}

.dashboard-listing-table-card .dash-services-card .services-card-btn {
    background: #363382 !important;
    border-color: #363382 !important;
    padding: 6px 20px;
}

.dashboard-listing-table-card .dash-services-card .dash-sbottom-price {
    font-size: 18px;
}

.dl-table-card-top .view-all-btn {
    color: #fff !important;
    background: #FC3B36 !important;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid #FC3B36 !important;
}

.dl-table-card-heading {
    color: #02192F;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}

.dash-application-tables .table {
    font-size: 14px;
    text-align: left;
}

.dash-application-tables .table thead tr th {
    background: #CCC5E3;
    border: 1px solid #363382;
    border-right: 0;
    border-left: 0;
    color: #363382;
    font-weight: 500;
}

.dash-application-tables .table thead tr th:first-child {
    border-left: 1px solid #363382;
}

.dash-application-tables .table thead tr th:last-child {
    border-right: 1px solid #363382;
}

.dash-application-tables .table .table_action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.dash-application-tables .table tbody tr:nth-child(even) td {
    background: #F8F6FF;
}

.dash-application-tables .table tbody tr td {
    background: #fff;
    border: 1px solid #DBE5F0;
    border-right: 0;
    border-left: 0;
    color: #02192F;
    font-weight: 400;
}

.dash-application-tables .table tbody tr td:first-child {
    border-left: 1px solid #DBE5F0;
}

.dash-application-tables .table tbody tr td:last-child {
    border-right: 1px solid #DBE5F0;
}

.table_action-btn_view {
    color: #008B35;
}

.table_action-btn_edit {
    color: #0F5BEA;
}
















.my-coins-section-top {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    background: #363382;
    padding: 16px 22px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.my-coins-section {
    width: 100%;
}

.my-coins-section-top h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 6px;
    text-align: right;
}

.my-coins-section-top p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    text-align: right;
} 

.my-coins-section-top h2 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Poppins';
}

.coins-history-heading {
    font-size: 18px;
    font-family: 'Poppins';
    margin-bottom: 16px;
    font-weight: 600;
    color: #363382;
}

.coins-history-nav ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.coins-history-nav ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: normal;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 6px 0 #d9d9d9;
    padding: 10px 20px;
}

.coins-icons-name-first {
    width: 50px;
    min-width: 50px;
    height: 50px;
    color: #363382;
    background: #dbdaff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.coins-history-ammount {
    margin-bottom: 0;
    margin-top: auto;
    margin-left: auto;
    font-size: 18px;
    font-weight: 600;
    text-wrap: nowrap;
}

.coins-history-ammount.recieved {
    color: #1bb900;
}

.coins-history-ammount.deposit {
    color: #ff3131;
}

.coins-history-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 6px;
    color: #000;
}

.coins-history-date {
    color: #8d8d8d;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.coins-history-title .coins-id {
    color: #fff;
    background: #363382;
    padding: 1px 12px;
    min-width: 100px;
    border-radius: 6px;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
    font-weight: 500;
}

@media (max-width:767.98px) {
    .my-coins-section-top h2 {
        font-size: 20px;
    }

    .coins-history-ammount {
        font-size: 14px;
        margin-bottom: auto;
    }

    .coins-history-title .coins-id {
        margin-right: auto;
        display: block;
        min-width: fit-content;
        width: fit-content;
        margin-bottom: 6px;
    }

    .coins-history-title {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .coins-history-date {
        font-size: 12px;
    }
}










@media (max-width:1599.98px) {
    .dashbord-left-menu {
        border-radius: 0 20px 20px 0;
    }

    .dashbord-left-menu .dash-left-top {
        border-radius: 0 20px 0 0;
    }

    .dash-left-bottom .logout-btn {
        border-radius: 0 0 20px 0;
    }

    .custom-card {
        border-radius: 18px;
        padding: 14px 12px;
        gap: 10px;
    }

    .custom-card .icon {
        font-size: 22px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .custom-card p {
        font-size: 14px;
    }

    .custom-card h2 {
        font-size: 20px;
    }
}

@media (max-width:1399.98px) {

    .right-body-sections,
    .right-body-sections.active {
        padding-left: 70px;
    }

    .dashbord-left-menu {
        border-radius: 0;
        max-width: 70px;
        min-width: 70px;

        .brand-logo, .dash-left-menu-btn span, .logout-btn span {
            display: none;
        }

        .dash-left-top {
            padding: 25px 18px;
            border-radius: 0;
        }

        .logout-btn {
            border-radius: 0;
            padding: 16px 24px;
        }

        .dash-left-menu-nav ul {
            padding: 10px;
        }

        .dash-left-menu-nav ul .dash-left-menu-btn {
            padding: 11px;
        }

        .dash-short-btn {
            transform: rotateY(0deg);
        }
    }

    .dashbord-left-menu.short {
        max-width: 360px;
        min-width: 360px;

        .brand-logo {
            display: block;
            order: 2;
        }

        .dash-left-top {
            padding: 10px 18px;
        }

        .dash-short-btn.active {
            transform: rotateY(180deg);
        }

        .dash-left-menu-btn span, .logout-btn span {
            display: inline-block;
        }
    }

    .custom-card {
        border-radius: 18px;
        padding: 24px 22px;
        gap: 20px;
    }

    .custom-card .icon {
        font-size: 28px;
        width: 70px;
        min-width: 70px;
        height: 70px;
        border-radius: 20px;
    }

    .custom-card h2 {
        font-size: 26px;
    }

    .custom-card p {
        font-size: 18px;
    }
}

@media (max-width:991.98px) {
    .dl-table-card-heading {
        font-size: 16px;
    }

    .dl-table-card-top .view-all-btn {
        padding: 4px 9px;
        border-radius: 6px;
        font-size: 14px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-services-card-img {
        width: 80px;
        min-width: 80px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-services-card-heading {
        font-size: 14px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-sbottom-price {
        font-size: 16px;
    }

    .dashboard-listing-table-card .dash-services-card .services-card-btn {
        border-radius: 4px;
        padding: 4px 10px;
        font-size: 12px;
    }
}


@media (max-width:767.98px) {
    .dash-body-overflow {
        max-height: calc(100vh - 68px);
        padding: 24px 12px;
    }

    .dashbord-left-menu {
        max-height: 68px;
        overflow: hidden;
        border-radius: 0;
        width: 80px;
        min-width: 0;

        .dash-left-top {
            padding: 18px;
            border-radius: 0;
            background-color: #363382;
            color: #fff;
        }

        .dash-short-btn {
            background-color: #fff;
            padding: 4px 12px;
            border-radius: 6px;
            transform: rotateY(0deg);
        }

        .brand-logo {
            max-width: 120px;
            display: none;
        }

        .dash-left-top::before {
            display: none;
        }
    }

    .dashbord-left-menu.short {
        max-height: 100vh;
        overflow: auto;
        width: 100%;
        min-width: 100%;

        .dash-left-top {
            padding: 10px 18px;
            background-color: #fff;
            color: #fff;
        }

        .brand-logo {
            display: block;
            order: 2;
        }

        .dash-short-btn {
            transform: rotateY(180deg) !important;
            order: 1;
        }

        .dash-left-menu-btn span,
        .logout-btn span {
            display: inline-block;
        }

        .dash-left-menu-nav ul .dash-left-menu-btn {
            padding: 11px;
            display: flex;
            align-items: center;
            width: 260px;
        }
    }

    .right-body-sections,
    .right-body-sections.active {
        padding-left: 0;
    }

    .profile-link-btn {
        position: relative;
    }

    .user-profile-content {
        position: absolute;
        right: 80%;
        top: 80%;
        background: #fff;
        border-radius: 10px;
        text-wrap: nowrap;
        padding: 6px 12px;
        box-shadow: 0 0 7px 9px #0000;
        z-index: 9999;
        display: none;

        .user-name,
        .user-mobile {
            color: #363382 !important;
        }
    }

    .profile-link-btn:hover .user-profile-content,
    .profile-link-btn:focus .user-profile-content {
        display: block;
    }

    .custom-card {
        border-radius: 16px;
        padding: 12px;
        gap: 8px;
    }

    .custom-card .icon {
        font-size: 16px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .custom-card h2 {
        font-size: 20px;
    }

    .custom-card p {
        font-size: 14px;
    }

    .dash-left-menu-nav ul .dash-left-menu-btn {
        font-size: 18px;
    }

    .profile-link-btn .dash-logout-btn {
        position: relative;
        padding: 10px 20px;
        margin: 10px 0 10px 30px;
        transform: none;
        display: block;
    }
}

@media (max-width:575.98px) {
    .my-applications-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .my-application-card {
        gap: 10px;
    }

    .my-application-table table,
    .my-application-table {
        width: 100%;
    }

    .my-application-table table tr th,
    .my-application-table table tr td {
        font-size: 14px;
    }

    .my-application-img img {
        max-width: 110px;
    }

    .my-application-bottom {
        align-items: normal;
        flex-direction: column;
        gap: 8px;
        padding: 6px 8px;
        border-radius: 4px;
        width: calc(100% - 120px);
    }

    .application-track-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .my-application-bottom-left p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .my-application-bottom-left h3 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .empt-page-terxt {
        font-size: 14px;
        line-height: normal;
    }

    .dl-table-card-heading {
        font-size: 16px;
    }

    .dl-table-card-top .view-all-btn {
        font-size: 14px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-services-card-img {
        width: 80px;
        min-width: 80px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-services-card-heading {
        -webkit-line-clamp: 1;
        font-size: 14px;
    }

    .dashboard-listing-table-card .dash-services-card .dash-sbottom-price {
        font-size: 16px;
    }

    .dashboard-listing-table-card .dash-services-card .services-card-btn {
        background: #363382 !important;
        border-color: #363382 !important;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 4px;
    }

    .dash-left-menu-nav ul .dash-left-menu-btn {
        font-size: 16px;
    }

    .dash-services-card {
        gap: 12px;
        padding: 12px;
        border-radius: 6px;
    }

    .dash-services-card-img {
        width: 90px;
        min-width: 90px;
    }

    .dash-services-card-heading {
        -webkit-line-clamp: 1;
        font-size: 14px;
    }

    .dash-services-card .dash-sbottom-align .dash-sbottom-price {
        font-size: 16px;
    }

    .dash-services-card .dash-sbottom-align .services-card-btn {
        border-radius: 6px;
        padding: 6px 16px;
        font-size: 12px;
    }
}