@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --theme-color: #f4b90d;
}

.orbitron-font {
    font-family: "Orbitron", sans-serif;
    font-style: normal;
}

.rajdhani-font {
    font-family: "Rajdhani", sans-serif;
    font-style: normal;
}

.container {
    max-width: 1350px !important;
}

.admin .container {
    max-width: 1650px !important;
}

/* color */
.text-theme {
    color: var(--theme-color);
}

.py-100 {
    padding: 100px 0;
}

.pb-100 {
    padding-bottom: 100px;
}

.glassmophisam {
    background: #ffffff03;
    backdrop-filter: blur(10px);
}

/* header */
header {
    position: fixed !important;
    z-index: 99;
    width: 100%;
    top: 0;
    backdrop-filter: blur(20px);
}

/* particals  */

#particle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* This is the MOST important fix */
    z-index: 0;
    pointer-events: none;
}

/* hero-section */
.theme-bg {
    background: linear-gradient(to left, #000000b9, #000000b5), url('/assets/images/sign-in/hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative !important;
    overflow-x: hidden;
}


.sign-in-form input::placeholder {
    color: #ffffffd5;
    font-size: 12px !important;
    text-transform: uppercase !important;
}

.sign-in-form input {
    outline: none !important;
}

input:focus {
    background: transparent !important;
}

.data-box i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    box-shadow: 1px -1px 9px 0px #4a4611fa;
}

.explore-table table {
    width: 100% !important;
    border-color: #fdec0040;
    white-space: nowrap;
    overflow-x: auto !important;
}

.explore-table tr th, .explore-table tr td {
    margin: 10px;
    padding: 10px 12px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--theme-color) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(92%) sepia(74%) saturate(748%) hue-rotate(4deg) brightness(105%) contrast(104%);
}

/* admin panel */

/* Sidebar */
#sidebar {
    width: 241px;
    min-height: 100vh;
    transition: 0.3s;
    background: #00000047;
    backdrop-filter: blur(5px);
}

#sidebar.small {
    width: 110px;
    text-align: left;
}

#sidebar.small .admin-logo {
    width: 80px !important;
}

#sidebar.small #adminsubmenu .nav-link {
    padding: 4px 0;
}

#sidebar .nav-link i {
    margin-right: 10px;
    color: #fff;
}

#sidebar .nav-link.active i {
    color: var(--theme-color);
}

#sidebar .nav-link:hover i {
    color: var(--theme-color);
}

#sidebar.small .nav-link span {
    display: none;
}

/* Content */
#content {
    transition: 0.3s;
    /* background-color: #F3F3F9; */
}

/* dorpdown */
.admin-dorpdown .dropdown-item {
    color: #fff;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #000000b4;
}

.active>.page-link, .page-link:focus, .page-link:hover {
    background-color: var(--theme-color);
    color: #000310 !important;
}

/* Dark Mode */
.dark-mode {
    background-color: #0e0f12a0;
    color: #fff !important;
}


.dark-mode #sidebar {
    background-color: #000310ba !important;
}

.dark-mode #content {
    background-color: #0003107d !important;
}


#sidebar.collapsed {
    margin-left: -250px;
}

#content {
    transition: all 0.3s;
}

@media (max-width:991px) {
    .admin .nav-link {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    #sidebar {
        margin-left: -250px;
        position: fixed;
        height: 100%;
        z-index: 999;
    }

    #sidebar.show {
        margin-left: 0;
        background: #000;
    }

    #toggleSidebar {
        visibility: hidden;
    }

    .explore-table tr th, .explore-table tr td {
        padding: 5px 12px;
    }
}