@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2025

 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.

*/

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('typography.css');
@import url('color.css?');

/*  ==========================================
*   ================= GENERAL ================
*/
* {
    font-family: var(--ff-source);
    font-weight: 300;
}

a {
    text-decoration: none;
}

body {
    background-color: #f3f3f3;
    color: var(--dark);
}

/* ===. Forms */
.form-control {
    display: block;
    width: 100%;
    padding: .55rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #21313c;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #515151;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .55rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #21313c;
    text-align: center;
    white-space: nowrap;
    background-color: #ecf0ef;
    border: 1px solid #dfe2e1;
    border-radius: .5rem;
}

.input-group .border {
    border-color: #515151 !important;
}

/*  =========================================
*   ================== NAV ==================
*/
#nav .nav-link {
    color: var(--light);
    font-weight: 400;
    font-size: 14px;
    border-radius: 5px;
}

#nav .nav-link.active {
    background-color: #fdf9ff40;
    width: auto;
}

#nav .nav-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transition: background .3s;
}

#nav .nav-item:hover .nav-link:not(.active) {
    background-color: #fdf9ff40;
    width: auto;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--primary);
    --bs-dropdown-link-active-color: var(--light);
}

.lg-dev .dropdown:hover>.dropdown-menu {
    display: block;
}

.lg-dev .dropdown>.dropdown-toggle:active {
    pointer-events: none;
}


/*  =========================================
*   ================== SIDEBAR ==================
*/
.sidebar {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0 !important;
    left: -100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: left 0.3s ease;
    z-index: 99999;
}

.sidebar.hidden {
    left: -150%;
}

.sidebar.show {
    left: 0;
    bottom: 0;
}

.sidebar .cSideBarcontent {
    background-color: white;
    max-width: 380px;
    width: 380px;
    overflow: auto;
    position: fixed;
}

.sidebar .scrollarea {
    overflow-y: auto;
}

.aside-active {
    color: var(--primary) !important;
}

@media only screen and (max-width: 600px) {
    .sidebar .cSideBarcontent {
        max-width: 100%;
    }
}

/*  =========================================
*   ================== PAGINATION ==================
*/

.active>.page-link,
.page-link.active {
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}

/*  =========================================
*   ================== FOOTER ==================
*/
footer {
    background-color: #fff;
}

footer #copyright {
    background-color: #ececec;
    font-size: 14px;
}

footer #copyright a {
    text-decoration: none;
    font-size: 14px;
    color: var(--dark);
}

footer .nav .nav-item .nav-link {
    color: #5c6c75;
    padding: 5px;
    font-size: 14px;
}

/* Mobile */
@media only screen and (max-width: 600px) {

    .lg-dev {
        z-index: 1030 !important;
    }
}


::selection {
    background-color: var(--secondary);
    color: var(--light);
}

:root {
    --primary: #dd5813;
    --secondary: #ae1d20;
    --tertiary: #535292;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;
    --green: #61BB14;

    --ff-source: "Inter", sans-serif;
}