﻿/**
* Template Name: NiceAdmin
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

.form-control {
    appearance: auto !important;
}

body {
    font-family: 'Poppins';
    background: #ffffff;
    color: #444444;
    font-size: 13px;
}

a {
    color: #4154f1;
    text-decoration: none;
}

    a:hover {
        color: #717ff5;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/



#main {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
    /* margin-left: 0px !important;*/
}

.points_s {
    float: right;
    background-color: white;
    padding: 1px 7px;
    border-radius: 3px;
    border: 1px solid black; /* Instead of border-block-color */
    width: 100px;
    text-align: center;
}

    .points_s .points_s_n {
        color: maroon !important;
        font-weight: 500;
    }

    .points_s::before {
        /* content: 'Point: ';*/
        /*  color: #000;*/
        color: maroon !important;
        font-weight: 500;
    }

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

@media (max-width: 1199px) {
    .sidebar-nav {
        padding: 0 !important;
    }
}


/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #000000;
    }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 90px;
    z-index: 99999;
    background: #dc2626;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6776f4;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
    background: #ffffff;
}

    .dropdown-menu .dropdown-header,
    .dropdown-menu .dropdown-footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 25px;
    }

        .dropdown-menu .dropdown-footer a {
            color: #444444;
            text-decoration: underline;
        }

            .dropdown-menu .dropdown-footer a:hover {
                text-decoration: none;
            }

    .dropdown-menu .dropdown-divider {
        color: #a5c5fe;
        margin: 0;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .dropdown-menu .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f6f9ff;
        }

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    border: 0.5px solid #3b7792;
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: #3b7792;
    font-family: "Poppins", sans-serif;
}

    .card-title span {
        color: #899bbd;
        font-size: 14px;
        font-weight: 400;
    }

.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

    .btn-close:focus {
        outline: 0;
        box-shadow: none;
    }

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #3b7792;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

    .accordion-flush .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: #4154f1;
    }

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

input[type="checkbox"] {
    margin-top: 5px;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}
/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

    .breadcrumb a {
        color: #899bbd;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #51678f;
        }

    .breadcrumb .breadcrumb-item::before {
        color: #899bbd;
    }

    .breadcrumb .active {
        color: #51678f;
        font-weight: 600;
    }

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: #4154f1;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #fff;
            color: #4154f1;
            border-bottom: 2px solid #4154f1;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        padding-right: 20px;
        width: 100%;
        background-color: #ffffff;
        height: 50px;
        border-radius: 5px;
        text-align: center;
        justify-content: center;
        box-shadow: inset 0 2px 4px 0 #f4b9c0;
        max-width: 250px;
        margin-right: 2rem;
    }
}

.logo img {
    margin-right: 5px;
    aspect-ratio: 1/1;
    width: 25% !important;
    padding: 10px;
}

.logo span {
    font-size: large;
    font-weight: 500;
    color: #000000;
    font-family: "Nunito", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #dc2626;
    padding-left: 20px;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

    .header .toggle-sidebar-btn {
        font-size: 32px;
        padding-left: 10px;
        cursor: pointer;
        color: #fff;
    }

    .header .search-bar {
        min-width: 360px;
        padding: 0 20px;
    }

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

    .header .search-form input {
        border: 0;
        font-size: 14px;
        color: #3b7792;
        border: 1px solid rgba(1, 41, 112, 0.2);
        padding: 7px 38px 7px 8px;
        border-radius: 3px;
        transition: 0.3s;
        width: 100%;
    }

        .header .search-form input:focus,
        .header .search-form input:hover {
            outline: none;
            box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
            border: 1px solid rgba(1, 41, 112, 0.3);
        }

    .header .search-form button {
        border: 0;
        padding: 0;
        margin-left: -30px;
        background: none;
    }

        .header .search-form button i {
            color: #3b7792;
        }

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #fff;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: #3b7792;
}

    .header-nav .nav-profile img {
        max-height: 36px;
    }

    .header-nav .nav-profile span {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

    .header-nav .notifications .notification-item {
        display: flex;
        align-items: center;
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .notifications .notification-item i {
            margin: 0 20px 0 10px;
            font-size: 24px;
        }

        .header-nav .notifications .notification-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .header-nav .notifications .notification-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .notifications .notification-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

    .header-nav .messages .message-item {
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .messages .message-item a {
            display: flex;
        }

        .header-nav .messages .message-item img {
            margin: 0 20px 0 10px;
            max-height: 40px;
        }

        .header-nav .messages .message-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #444444;
        }

        .header-nav .messages .message-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .messages .message-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .profile {
    /* min-width: 240px; */
    padding-bottom: 0;
    top: 8px !important;
}

    .header-nav .profile .dropdown-header h6 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444444;
    }

    .header-nav .profile .dropdown-header span {
        font-size: 14px;
    }

    .header-nav .profile .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .header-nav .profile .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .header-nav .profile .dropdown-item:hover {
            background-color: #f6f9ff;
        }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #ba1616;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {

    #main,
    #footer {
        margin-left: 300px;
    }
}

@media (max-width: 500px) {
    .logo img {
        padding: 12px;
        background: #fff;
    }

    .logo span {
        color: #ffffff;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 5px;
    }

    .sidebar-nav .nav-heading {
        font-size: 11px;
        text-transform: uppercase;
        color: #899bbd;
        font-weight: 600;
        margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        transition: 0.3;
        background: #dc2626;
        padding: 10px 15px;
        border-radius: 4px;
    }

        .sidebar-nav .nav-link i {
            font-size: 16px;
            margin-right: 10px;
            color: #ffffff;
        }

        .sidebar-nav .nav-link.collapsed {
            color: #ffffff;
            background: #dc2626;
        }

    .sidebar-nav .nav-item ul li a.nav-link {
        /* padding: 0 !important; */
        margin: 0;
        background: #9e0e0e;
    }

    .sidebar-nav .nav-link.collapsed i {
        color: #ffffff;
    }

    .sidebar-nav .nav-link:hover {
        color: #ffffff;
        background: #a41515;
    }

        .sidebar-nav .nav-link:hover i {
            color: #ffffff;
        }

    .sidebar-nav .nav-link .bi-chevron-down {
        margin-right: 0;
        transition: transform 0.2s ease-in-out;
    }

    .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
        transform: rotate(180deg);
    }

    .sidebar-nav .nav-content {
        padding: 5px 0 0 0 !important;
        margin: 0 !important;
        list-style: none;
    }

        .sidebar-nav .nav-content a, .sidebar-nav .nav-item ul li ul li a {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            color: #3b7792;
            transition: 0.3;
            padding: 10px 0 10px 20px;
            transition: 0.3s;
            position: relative;
        }

            .sidebar-nav .nav-content a i {
                font-size: 6px;
                margin-right: 8px;
                line-height: 0;
                border-radius: 50%;
            }

            .sidebar-nav .nav-content a:hover,
            .sidebar-nav .nav-content a.active {
                color: #4154f1;
            }

                .sidebar-nav .nav-content a.active i {
                    background-color: #4154f1;
                }

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

    .dashboard .filter .icon {
        color: #aab7cf;
        padding-right: 20px;
        padding-bottom: 5px;
        transition: 0.3s;
        font-size: 16px;
    }

        .dashboard .filter .icon:hover,
        .dashboard .filter .icon:focus {
            color: #4154f1;
        }

    .dashboard .filter .dropdown-header {
        padding: 8px 15px;
    }

        .dashboard .filter .dropdown-header h6 {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #aab7cf;
            margin-bottom: 0;
            padding: 0;
        }

    .dashboard .filter .dropdown-item {
        padding: 8px 15px;
    }

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

    .dashboard .info-card h6 {
        font-size: 20px;
        color: #3b7792;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

    .dashboard .activity .activity-item .activite-label {
        color: #888;
        position: relative;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: 64px;
    }

        .dashboard .activity .activity-item .activite-label::before {
            content: "";
            position: absolute;
            right: -11px;
            width: 4px;
            top: 0;
            bottom: 0;
            background-color: #eceefe;
        }

    .dashboard .activity .activity-item .activity-badge {
        margin-top: 3px;
        z-index: 1;
        font-size: 11px;
        line-height: 0;
        border-radius: 50%;
        flex-shrink: 0;
        border: 3px solid #fff;
        flex-grow: 0;
    }

    .dashboard .activity .activity-item .activity-content {
        padding-left: 10px;
        padding-bottom: 20px;
    }

    .dashboard .activity .activity-item:first-child .activite-label::before {
        top: 5px;
    }

    .dashboard .activity .activity-item:last-child .activity-content {
        padding-bottom: 0;
    }

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

    .dashboard .news h4 a {
        color: #3b7792;
        transition: 0.3s;
    }

        .dashboard .news h4 a:hover {
            color: #4154f1;
        }

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

    .dashboard .recent-sales .table thead {
        background: #f6f6fe;
    }

        .dashboard .recent-sales .table thead th {
            border: 0;
        }

    .dashboard .recent-sales .dataTable-top {
        padding: 0 0 10px 0;
    }

    .dashboard .recent-sales .dataTable-bottom {
        padding: 10px 0 0 0;
    }

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

    .dashboard .top-selling .table thead {
        background: #f6f6fe;
    }

        .dashboard .top-selling .table thead th {
            border: 0;
        }

    .dashboard .top-selling .table tbody td {
        vertical-align: middle;
    }

    .dashboard .top-selling img {
        border-radius: 5px;
        max-width: 60px;
    }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: #fff;
        border-radius: 0.25rem;
        text-align: center;
        color: #3b7792;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
    }

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .profile .profile-card .social-links a:hover {
        color: #3b7792;
    }

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #3b7792;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4154f1;
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
        color: #4154f1;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #3b7792;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #4154f1;
    }

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #4154f1;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .contact .php-email-form button[type=submit]:hover {
        background: #5969f3;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

    .error-404 h1 {
        font-size: 180px;
        font-weight: 700;
        color: #4154f1;
        margin-bottom: 0;
        line-height: 150px;
    }

    .error-404 h2 {
        font-size: 24px;
        font-weight: 700;
        color: #3b7792;
        margin-bottom: 30px;
    }

    .error-404 .btn {
        background: #51678f;
        color: #fff;
        padding: 8px 30px;
    }

        .error-404 .btn:hover {
            background: #3e4f6f;
        }

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 0 0 2rem 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

    .footer .copyright {
        text-align: center;
        color: #3b7792;
    }

    .footer .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #3b7792;
    }

.box {
    display: none;
    float: right;
    position: fixed;
    right: 0;
    z-index: 99;
    background: #fff;
    top: 75px;
    box-shadow: #888 2px 3px 9px;
}

.box-inner {
    width: 400px;
    border: #ddd solid 1px;
    padding: 20px;
    height: 92vh;
    overflow-y: scroll;
}

    .box-inner::-webkit-scrollbar {
        width: 10px;
    }

    .box-inner::-webkit-scrollbar-track {
        background: #000;
    }

    .box-inner::-webkit-scrollbar-thumb {
        background: #888;
    }

        .box-inner::-webkit-scrollbar-thumb:hover {
            background: #888;
        }

#filterclose {
    float: right;
}

table {
    overflow-x: auto;
}

input {
    border: 1px solid #cacaca !important;
    border-radius: 5px;
    padding: 1px .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    border-radius: 8px;
    border: 1px solid #e0a0a0 !important;
    box-shadow: inset 0 2px 6px rgba(231, 76, 60, 0.15);
    /* text-align: center; */
}

div.dataTables_wrapper div.dataTables_length select {
    border: 1px solid #a39999 !important;
    border-radius: 10%;
}

.spnred {
    color: red;
}

.ui-datepicker-title {
    color: #19398a;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.Add_bg {
    background: #ffffff;
    box-shadow: 1px 0px 3px 2px;
    font-weight: 600;
    border-radius: 5px;
    min-height: 340px;
    padding: 20px;
}

.apply::-webkit-input-placeholder {
    color: red !important;
}

/* custom tab nav on sidebar */
.aside-block {
    margin-bottom: 30px;
}

    .aside-block .custom-tab-nav .nav-item {
        display: inline-block;
    }

        .aside-block .custom-tab-nav .nav-item button {
            color: #000;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            border-radius: 0;
            padding-left: 0;
            padding-right: 0;
            margin-right: 20px;
        }

            .aside-block .custom-tab-nav .nav-item button.active {
                background-color: #000 !important;
                background-color: transparent !important;
                color: #000;
                border-bottom: 2px solid #000;
            }

.link-video {
    position: relative;
}

    .link-video span {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        text-align: center;
        display: inline-block;
        background-color: #000;
        color: #fff;
    }

.aside-links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

    .aside-links li a {
        display: block;
        color: #000;
    }

        .aside-links li a:hover,
        .aside-links li a:focus {
            color: #000;
        }

.aside-tags li {
    display: inline-block;
}

    .aside-tags li a {
        display: inline-block;
        color: #000;
        padding: 7px 10px;
        border: 1px solid #000;
        margin-bottom: 3px;
        transition: 0.3s all ease;
    }

        .aside-tags li a:hover,
        .aside-tags li a:focus {
            color: #000;
            border: 1px solid #000;
        }

#datatable {
    width: 100% !important;
}
/*--------------------------------------------------------------
    /*--------------------------------------------------------------*/
p, a, label, span, .btn, .form-control, .col {
    font-size: 12px;
}

table tr td {
    font-size: 12px !important;
}

table tr th {
    font-size: 12px !important;
}

.trred {
    color: red;
}

.col {
    font-size: 14px !important;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

.iq-sidebar-logo img {
    height: 40px;
}

.iq-navbar-logo img {
    height: 40px;
}

.navbar-list .caption-content {
    font-size: 12px;
}

.iq-sidebar-menu .iq-menu li a i {
    font-size: 16px !important;
}

.iq-top-navbar .wrapper-menu {
    font-size: 18px !important;
}

.la, .las {
    font-size: 18px !important;
}

.dataTables_wrapper .dataTables_info {
    font-size: 12px;
}

.content-page {
    padding: 80px 15px 0;
}

.card-body {
    padding: 10px;
}
/*//////////////////////////////////////////////////////*/
.lp_mobile .notification-cover {
    font-family: roboto;
    font-size: 15px;
    background: #ffffff;
    mix-blend-mode: normal;
    box-shadow: 0px 0px 1px #000000, 0px 1.5px 1px #b6b6b6;
    border-radius: 8px;
    max-width: 320px;
    width: 100%;
}

.lp_mobile .meta {
    display: flex;
    align-items: center;
    /* gap: 5px; */
    padding: 10px 15px 0 15px;
    justify-content: space-between;
}

.lp_mobile .meta2 {
    display: flex;
    align-items: center;
    /* gap: 5px; */
    padding: 10px 15px 0 15px;
}

.lp_mobile .title {
    font-weight: 700;
    margin-top: 10px;
}

.lp_mobile .message {
    margin-top: 2px;
}

.lp_mobile .image {
    margin-top: 15px;
    max-height: 160px;
    overflow: hidden;
}

.lp_mobile .buttons {
    margin-top: 10px;
    display: flex;
    column-gap: 8px;
    padding: 10px 15px 15px 15px;
}

    .lp_mobile .buttons .btn1, .lp_mobile .buttons .btn2 {
        text-align: center;
        padding: 5px;
        box-shadow: 0px 0px 1px grey;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        text-decoration: none;
        color: #000;
    }

.form-control {
    line-height: initial;
    border: 1px solid #85888c;
}

.highcharts-credits {
    display: none;
}

table thead {
    background-color: #38b6ff;
}

/*.dataTables_scrollBody thead {
    display:none;
}*/
.badge {
    padding: 8px;
}

.libackcolor {
    background-color: #9b1212;
    border-top: 0px solid;
    padding: 4px !important;
    margin-top: 8px;
}

    .libackcolor a span {
        color: #fff !important;
        margin: 0 !important;
    }

    .libackcolor a i {
        color: #fff !important;
    }

.datatable-selector {
    padding: 3px;
}

.datatable-input {
    padding: 3px;
    font-size: 12px;
}

.text-red {
    color: red;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    float: right;
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
        padding: 0px 8px 2px 8px !important;
        border: 1px solid #b71519;
        background: #b71519;
        color: #fff;
        line-height: initial;
        padding: 0;
    }

        div.dataTables_wrapper div.dataTables_paginate ul.pagination li a {
            color: #fff;
        }

#main #main, #footer #footer {
    margin: 0;
    padding: 0;
}
/*---------------------------------SHAAKHA PRABHARI CSS*/
.alert.alert-info.rounded-4 {
    height: 0;
    /* overflow: hidden; */
    line-height: normal;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

    .alert.alert-info.rounded-4 * {
        display: none;
    }

    .alert.alert-info.rounded-4.showmore {
        height: auto !important;
        overflow: visible;
        line-height: normal;
        height: 0;
        /* overflow: hidden; */
        line-height: normal;
        padding: 1.5rem !important;
        margin-bottom: .5rem !important;
        border: 1px solid rgba(0, 0, 0, 0.125);
    }

        .alert.alert-info.rounded-4.showmore * {
            display: revert;
        }

    .alert.alert-info.rounded-4:after {
        content: "⬇ Open";
        position: absolute;
        right: 15px;
        top: -34px;
        background: #1a93ad;
        color: #fff;
        width: 67px;
        height: 23px;
        display: flex;
        place-content: center;
        cursor: pointer;
        border-radius: 0px 13px 0px 13px;
        transition: 0.5s;
    }

    .alert.alert-info.rounded-4.showmore::after {
        content: "⬆ Close";
        position: absolute;
        right: 15px;
        top: -34px;
        background: #f48c8f;
        color: #fff;
        width: 67px;
        height: 23px;
        display: flex;
        place-content: center;
        cursor: pointer;
        font-size: 0.9rem;
        border-radius: 13px 0px 13px 0px;
    }

#main #main section .container-fluid, #main section .container-fluid {
    padding: 0;
}

#sidebars ul#all {
}

    #sidebars ul#all li.nav-item.flex-fill {
    }

        #sidebars ul#all li.nav-item.flex-fill a.nav-link .pending-task:after {
            content: 'Pending';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            color: red;
        }

        #sidebars ul#all li.nav-item.flex-fill a.nav-link .success-task:after {
            content: 'Completed';
            position: absolute;
            bottom: 0;
            left: 50%;
            color: green;
            transform: translateX(-50%);
        }

        #sidebars ul#all li.nav-item.flex-fill a.nav-link {
            position: relative;
        }



/*dashboard css*/

/* Page Title */
.pagetitle h1 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.5px;
}

    .pagetitle h1::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b6b, #ff9f43, #feca57);
        margin-top: 10px;
        border-radius: 2px;
    }

/* Base Card */
.info-card {
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9); /* glass effect */
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    /* overflow: hidden; */
    position: relative;
    margin: 0;
    /* height: 135px; */
}

    .info-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    /* Card Title */
    .info-card .card-title {
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 0;
        text-transform: capitalize;
        letter-spacing: 0.7px;
        height: 59px;
    }

    /* Numbers */
    .info-card h6 {
        font-size: 26px;
        font-weight: 800;
        margin: 0;
        color: #1e272e;
    }

/* Icon Bubble */
.card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transition: all 0.35s ease;
    transform: rotate(0deg);
}

/* Icon Animation on Hover */
.info-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Grid Spacing */
.section.dashboard .col-md-4 {
    margin-bottom: 21px;
}

/* ====== Color Variants for Cards ====== */
.info-card.blue .card-icon {
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.info-card.blue:hover {
    background: linear-gradient(135deg, rgba(54,209,220,0.15), rgba(91,134,229,0.15));
}

.info-card.green .card-icon {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.info-card.green:hover {
    background: linear-gradient(135deg, rgba(17,153,142,0.15), rgba(56,239,125,0.15));
}

.info-card.orange .card-icon {
    background: linear-gradient(135deg, #ff8008, #ffc837);
}

.info-card.orange:hover {
    background: linear-gradient(135deg, rgba(255,128,8,0.15), rgba(255,200,55,0.15));
}

.info-card.purple .card-icon {
    background: linear-gradient(135deg, #9d50bb, #6e48aa);
}

.info-card.purple:hover {
    background: linear-gradient(135deg, rgba(157,80,187,0.15), rgba(110,72,170,0.15));
}

.info-card.red .card-icon {
    background: linear-gradient(135deg, #e53935, #e35d5b);
}

.info-card.red:hover {
    background: linear-gradient(135deg, rgba(229,57,53,0.15), rgba(227,93,91,0.15));
}


/*inner page css*/

/* ===== Global ===== */
body {
    background: #fef3f3;
}

/* ===== Card Styling (Glass Red Theme) ===== */
.card {
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 7px rgb(116 116 116 / 25%);
    transition: all 0.3s ease;
}

    .card:hover {
        box-shadow: 0 10px 28px rgba(231, 76, 60, 0.25);
    }

/* ===== Page Header ===== */
.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #c0392b;
}

/* ===== Alerts (Red Gradient) ===== */
.alert {
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #fff;
}

.alert-success {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
}

.alert-danger {
    background: linear-gradient(135deg, #e52d27, #b31217);
}

.alert .btn-close {
    filter: brightness(0) invert(1);
}

/* ===== Buttons (Red Glow) ===== */
.btn {
    border-radius: 6px;
    font-weight: 600;
    padding: 7px 7px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    font-size: 12px !important;
    font-family: 'Poppins' !important;
}

    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.15);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
        display: none;
    }

    .btn:hover::before {
        opacity: 1;
    }

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #dc2626);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #4CAF50, #4caf50);
    border: none;
    /* margin: 0 0 !important; */
}

/* ===== Table (Red Modern) ===== */
.table {
    border-radius: 15px;
    overflow: hidden;
}

thead th {
    background: linear-gradient(135deg, #e52d27, #b31217);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.table td {
    font-size: 14px;
    color: #2c3e50;
    padding: 12px;
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: #fff5f5;
}

.table tbody tr:hover {
    background: #ffeaea;
    transition: 0.3s;
}

/* ===== Action Badges ===== */
.badge {
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

    .badge.bg-primary {
        background: linear-gradient(135deg, #ff6f61, #d7263d) !important;
    }

    .badge.bg-danger {
        background: linear-gradient(135deg, #e52d27, #b31217) !important;
    }

    .badge:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    }

/* ===== Toggle Icons ===== */
.ri-toggle-fill {
    font-size: 30px;
    transition: all 0.3s ease;
}

    .ri-toggle-fill.text-success {
        color: #198754 !important /* Red instead of green */
    }

    .ri-toggle-fill.text-danger {
        color: #b31217 !important;
    }

    .ri-toggle-fill:hover {
        transform: scale(1.2) rotate(10deg);
    }

/* ===== Search Row ===== */
label {
    font-weight: 600;
    color: #b31217;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #e0a0a0 !important;
    box-shadow: inset 0 2px 6px rgba(231, 76, 60, 0.15);
}

    .form-control:focus {
        border-color: #e74c3c;
        box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
    }


.dataTables_wrapper div.row:nth-child(1) {
    position: sticky;
    top: 0;
    z-index: 9999999;
    background: #fff;
    padding-bottom: 5px;
}

.pagination {
    display: block;
}

    .pagination button {
        background: #dc2626;
        margin: 0 1px;
        border-radius: 5px;
        color: #fff;
        font-size: 12px !important;
        font-family: 'Poppins' !important;
        border: 3px solid #dc2626;
    }

legend {
    font-size: unset !important;
    font-weight: 600;
}

ol, ul {
    padding-left: 1rem !important;
}

.sidebar-nav .nav-item ul li a.nav-link {
}

.sidebar-nav .nav-item ul li a.nav-menu ul {
    padding: 0;
    margin: 0;
}

.sidebar-nav .nav-item ul li ul li {
    position: relative;
    padding-left: 15px !important;
}

    .sidebar-nav .nav-item ul li ul li a i {
        position: absolute;
        top: 7px;
        left: 0;
    }

        .sidebar-nav .nav-item ul li ul li a i.bi-list {
            left: 0;
        }

        .sidebar-nav .nav-item ul li ul li a i.bi-chevron-down {
            right: 0 !important;
            width: fit-content;
        }

button.badge {
    border: 0;
    border-radius: 5px;
}

body.toggle-sidebar #sidebar {
    display: none !important;
}

@media (max-width: 1199px) {

    .sidebar {
        left: 0;
        transition: all 0.3s;
    }

    body.toggle-sidebar .sidebar {
        left: -300px;
    }
}
