
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --fr-color-site : 50 70 100;
    --fr-color-site-dark : 40 50 70;
    --fr-color-site-light : 80 120 200;
    --fr-color-site-acc : 250 190 40;
    --bs-gradient: linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) !important;
}
.highlight {
    background-color: #ffe58a !important;
    transition: background-color 0.3s ease;
}
.task-drawer {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1050;
}

.task-drawer.active {
    display: block;
}

.task-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.task-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.task-drawer.active .task-drawer-panel {
    transform: translateX(0);
}

.task-drawer-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.task-drawer-body {
    padding: 15px;
    overflow-y: auto;
    flex: 1;
}

body{
    color: #333;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
    background-attachment: fixed;
    background-image: linear-gradient(180deg, rgb(var(--fr-color-site) / 50%), transparent 50%);
}

.contact:hover{
    background-color: rgb(var(--fr-color-site-acc) /10%);
}
.pucecolor{
    width: 30px;
    height: 30px;
}
.btn-group .btn-outline-secondary{
    border-color: #ced4da !important;
}
.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: .375rem;
}
.tasks.dropdown-scroll {
    max-height: 500px;
}

.tasks.fullscreen-mode {
    max-height: 100% !important;
}
.dropdown-scroll {
    max-height: 135px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin; /* Firefox */
}
.task {
    cursor: pointer;
}

.task-list {
    min-height: 80px;
}

.task.dragging {
    opacity: 0.5;
}
.condensed {
    font-family: 'Roboto Condensed', sans-serif;
}
.spooler {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(var(--fr-color-site-dark) / 95%);
    color: white;
    /* background-image: linear-gradient(45deg, rgb(var(--fr-color-site-dark) / 39%) 7%, rgb(var(--fr-color-site) / 56%)); */
    z-index: 10000;
    font-size: 2rem;
    font-weight: 200;
    display: none;
}
.spooler-text{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    animation: fadeInOutAnimation 2s ease-in-out infinite;
}
.loader-circle-38 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    margin: 0 auto;
    animation: loader-circle-38-spin-1 1.2s infinite ease;
}
.loader-circle-38:before, .loader-circle-38:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 15px;
    opacity: 0.9;
}
.loader-circle-38::before {
    background: #00a2ff;
    transform: translate(-0.75em, -0.75em) scale(1);
    box-shadow: 1.5em 1.5em 0 #000000;
    animation: loader-circle-38-spin-2 1.2s infinite ease;
}
.loader-circle-38:after {
    background: #ff00b8;
    transform: translate(0.75em, -0.75em) scale(1);
    box-shadow: -1.5em 1.5em 0 #ffe600;
    animation: loader-circle-38-spin-3 1.2s infinite ease;
}
@keyframes loader-circle-38-spin-2 {
    50% {
        transform: scale(1.3) translate(0, 0);
        box-shadow: 0 0 0 #000000;
        opacity: 0.8;
    }
}
@keyframes loader-circle-38-spin-3 {
    50% {
        transform: scale(1.3) translate(0, 0);
        box-shadow: 0 0 0 #ffd15b;
        opacity: 0.8;
    }
}
@keyframes loader-circle-38-spin-1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(720deg);
    }
}
.dz-invalid-file {
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
    color: #842029;
}
.dz-invalid-file .dz-name,
.dz-invalid-file .dz-size {
    color: #842029;
}
form .btn-check:active+.btn, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:active {
    background-color: rgb(var(--fr-color-site));
    color: white;
    border-color: rgb(var(--fr-color-site));
}
#body-row {
    transition: .3s all;
}
.material-symbols-outlined {
    vertical-align: middle;
}
.degrade{
    background-image: linear-gradient(rgb(var(--fr-color-site)), rgb(var(--fr-color-site)/30%));
}
/** ======================  base css ==============================**/

a:hover{ text-decoration: none; }
/** ======================  header ==============================**/
.header{
    background-color: rgb(var(--fr-color-site));
}
.header .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    border-radius: 0px;
}
.header .user-image {
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: -2px;
}

.header .navbar-light .navbar-nav .nav-link{ color: #fff }
.header .navbar-light .navbar-nav .nav-link:hover, .header .navbar-light .navbar-nav .nav-link:focus   {

    background: rgba(0,0,0,0.1);
    color: #f6f6f6;
}
.header .fa.fa-fw.fa-bars{ color: #fff; }
.header .navbar-light .navbar-nav .nav-link {
    color: #fff;
    padding: 10px 20px;
    position: relative;
}
.header  li>a>.label {
    position: absolute;
    top: 9px;
    right: 7px;
    text-align: center;
    font-size: 9px;
    padding: 2px 3px;
    line-height: .9; background-color: #333;    border-radius: .25em;
}
.header  li>a:after{ display: none; }

.header-ul{    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #ffffff;
    padding: 7px 10px;
    border-bottom: 1px solid #f4f4f4;
    color: #333;
    font-size: 14px;}

.navbar-nav>.notifications-menu>.dropdown-menu, .navbar-nav>.messages-menu>.dropdown-menu, .navbar-nav>.tasks-menu>.dropdown-menu {
    width: 280px;
    padding: 0 0 0 0;
    margin: 0;
    top: 100%;
}
.navbar-nav>.messages-menu>.dropdown-menu li .menu>li>a>div>img {
    margin: auto 10px auto auto;
    width: 40px;
    height: 40px;
}
.navbar-nav>.messages-menu>.dropdown-menu li .menu>li>a ,.navbar-nav>.notifications-menu>.dropdown-menu li .menu>li>a{
    margin: 0;
    padding: 10px 10px;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f4f4f4;
}
.navbar-nav>.messages-menu>.dropdown-menu li .menu>li>a>h4 {
    padding: 0;
    margin: 0 0 0 45px;
    color: #333;
    font-size: 15px;
    position: relative;
}
.navbar-nav>.messages-menu>.dropdown-menu li .menu>li>a>p {
    margin: 0 0 0 45px;
    font-size: 12px;
    color: #888888;
}

.footer-ul a{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 12px;
    background-color: #fff;
    padding: 7px 10px;
    border-bottom: 1px solid #eeeeee;
    color: #333 ; display: block;
}

.dropdown-menu-over .menu{  max-height: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: hidden;}

.navbar-nav>.notifications-menu>.dropdown-menu li .menu>li>a {
    color: #444444;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px;
}
.navbar-nav>.notifications-menu>.dropdown-menu li .menu>li>a>.glyphicon, .navbar-nav>.notifications-menu>.dropdown-menu li .menu>li>a>.fa, .navbar-nav>.notifications-menu>.dropdown-menu li .menu>li>a>.ion {
    width: 20px;
}

a.navbar-brand {
    width: 165px;
}


/***    left menu ****/

/***********************  TOP Bar ********************/
.sidebar {
    width: 340px;
    transition: all 0.5s ease-in-out;
    /*
    background-image: url(../img/bg-studio-graphique.jpg);
    background-position-y: -100px;
    background-position-x: center;
    background-size: cover;
     */
    box-shadow: 0 0 22px rgb(var(--fr-color-site-dark) / 50%);
}

.sidebar ul{ list-style:none; margin:0px; padding:0px; }
.sidebar li a,.sidebar li a.collapsed.active{ display:block; padding:8px 9px; color:rgb(var(--fr-color-site));border-left:0px solid #dedede;  text-decoration:none}
.sidebar li a.active{background-color:rgb(var(--fr-color-site-acc)/50%);border-left:5px solid #dedede; transition: all 0.5s  ease-in-out}
.sidebar li a:hover{background-color:rgb(var(--fr-color-site-acc)/100%) !important;}
.sidebar li a i{ padding-right:5px;}
.sidebar ul li .sub-menu li a{ position:relative}
.sidebar ul li .sub-menu li a:before{
    font-family: FontAwesome;
    content: "\f105";
    display: inline-block;
    padding-left: 0px;
    padding-right: 10px;
    vertical-align: middle;
}
.sidebar ul li .sub-menu li a:hover:after {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    background-color: #111;
    height: 100%;
}
.sidebar ul li .sub-menu li a:hover{ background-color:#222; padding-left:20px; transition: all 0.5s  ease-in-out}
.sub-menu{ border-left:5px solid #dedede;}
.sidebar li a .nav-label,.sidebar li a .nav-label+span{ transition: all 0.5s  ease-in-out}


.sidebar.fliph li a .nav-label,.sidebar.fliph li a .nav-label+span{ display:none;transition: all 0.5s  ease-in-out}
.sidebar.fliph {
    width: 60px;transition: all 0.5s  ease-in-out;
}
.fliph-body{
    padding-left: 60px;
}
.sidebar.fliph li{ position:relative}
.sidebar.fliph .sub-menu {
    position: absolute;
    left: 42px;
    top: 0;
    background-color: #eeeeee;
    width: 175px;
    z-index: 100;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: .90rem;
}
.sidebar.fliph li a:hover .nav-label, .sidebar.fliph li a:hover .nav-label+span {
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
    color: white;
    width: 150px !important;
    font-size: .75rem;
    padding: .35rem 0.65rem;
    border-radius: .35rem;
    margin-left: 0.5rem;
}
.sidebar.fliph li a:hover .nav-label::before {
    content: "\A";
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #000000 transparent transparent;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.user-panel {
    clear: left;
    display: block;
    float: left;
}
.user-panel>.image>img {
    width: 100%;
    max-width: 45px;
    height: auto;
}
.user-panel>.info,  .user-panel>.info>a {
    color: #fff;
}
.user-panel>.info>p {
    font-weight: 600;
    margin-bottom: 9px;
}
.user-panel {
    clear: left;
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 15px;
    padding: 25px 15px;
    border-bottom: 1px solid;
}
.user-panel>.info {
    padding: 5px 5px 5px 15px;
    line-height: 1;
    position: absolute;
    left: 55px;
}

.fliph .user-panel{ display: none; }
.sidebar.fliph li span {
    font-size: 32px;
    padding: 0 6px;
}
.btn-outline-site {
    --bs-btn-color: rgb(var(--fr-color-site)/50%);
    --bs-btn-border-color: var(--bs-border-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(var(--fr-color-site)/50%);
    --bs-btn-hover-border-color: rgb(var(--fr-color-site)/50%);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(var(--fr-color-site)/50%);
    --bs-btn-active-border-color: rgb(var(--fr-color-site)/50%);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: rgb(var(--fr-color-site)/50%);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: rgb(var(--fr-color-site)/50%);
    --bs-gradient: none;

}
.btn-site {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgb(var(--fr-color-site));
    --bs-btn-border-color: rgb(var(--fr-color-site));
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(var(--fr-color-site-dark));
    --bs-btn-hover-border-color: rgb(var(--fr-color-site-dark));
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(var(--fr-color-site-dark));
    --bs-btn-active-border-color: rgb(var(--fr-color-site-dark));
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: rgb(var(--fr-color-site));
    --bs-btn-disabled-border-color: rgb(var(--fr-color-site));
}
.btn-site-light {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgb(var(--fr-color-site-light));
    --bs-btn-border-color: rgb(var(--fr-color-site-light));
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(var(--fr-color-site-dark));
    --bs-btn-hover-border-color: rgb(var(--fr-color-site-dark));
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(var(--fr-color-site-dark));
    --bs-btn-active-border-color: rgb(var(--fr-color-site-dark));
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: rgb(var(--fr-color-site-light));
    --bs-btn-disabled-border-color: rgb(var(--fr-color-site-light));
}
.fr-bg-opacity-5{
    --bs-bg-opacity: .05;
}
.fr-opacity-5{
    --fr-opacity : 5% !important;
}
.fr-opacity-10{
    --fr-opacity : 10% !important;
}
.fr-opacity-20{
    --fr-opacity : 20% !important;
}
.fr-opacity-30{
    --fr-opacity : 30% !important;
}
.fr-opacity-40{
    --fr-opacity : 40% !important;
}
.fr-opacity-50{
    --fr-opacity : 50% !important;
}
.fr-opacity-60{
    --fr-opacity : 60% !important;
}
.fr-opacity-70{
    --fr-opacity : 70% !important;
}
.fr-opacity-80{
    --fr-opacity : 80% !important;
}
.fr-opacity-90{
    --fr-opacity : 90% !important;
}
.bg-site{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site) / var(--fr-opacity)) !important;
}
.text-bg-site{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site) / var(--fr-opacity)) !important;
    color: rgb(255 255 255) !important;
}
.text-site{
    --fr-opacity: 100%;
    color:rgb(var(--fr-color-site) / var(--fr-opacity)) !important;
}
.border-site{
    --fr-opacity: 100%;
    border-color: rgb(var(--fr-color-site) / var(--fr-opacity)) !important;
}
.bg-site-light{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-light)/var(--fr-opacity)) !important;
}
.text-bg-site-light{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-light)/var(--fr-opacity)) !important;
    color: rgb(255 255 255) !important;
}
.text-site-light{
    --fr-opacity: 100%;
    color:rgb(var(--fr-color-site-light) / var(--fr-opacity)) !important;
}
.border-site-light{
    --fr-opacity: 100%;
    border-color: rgb(var(--fr-color-site-light) / var(--fr-opacity)) !important;
}
.bg-site-dark{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-dark) / var(--fr-opacity)) !important;
}
.text-bg-site-dark{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-dark) / var(--fr-opacity)) !important;
    color: rgb(255 255 255) !important;
}
.text-site-dark{
    --fr-opacity: 100%;
    color: rgb(var(--fr-color-site-dark) / var(--fr-opacity)) !important;
}
.bg-site-acc{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-acc) / var(--fr-opacity)) !important;
}
.text-bg-site-acc{
    --fr-opacity: 100%;
    background-color: rgb(var(--fr-color-site-acc) / var(--fr-opacity)) !important;
    color: rgb(0 0 0) !important;
}
.text-site-acc{
    color:rgb(var(--fr-color-site-acc)) !important;
}
.ft-12 {
    font-size: 12px !important;
}
.ft-14 {
    font-size: 14px !important;
}
.ft-16 {
    font-size: 16px !important;
}
.ft-18 {
    font-size: 18px !important;
}
.ft-19 {
    font-size: 19px !important;
}
.ft-24 {
    font-size: 24px !important;
}
.ft-32 {
    font-size: 32px !important;
}
.ft-36 {
    font-size: 36px !important;
}
.ft-48 {
    font-size: 48px !important;
}
.ft-52 {
    font-size: 52px !important;
}
.ft-72 {
    font-size: 72px !important;
}
@media (max-width: 768px){
    .ft-sm-12 {
        font-size: 12px;
    }
    .ft-sm-14 {
        font-size: 14px;
    }
    .ft-sm-16 {
        font-size: 16px;
    }
    .ft-sm-18 {
        font-size: 18px;
    }
    .ft-sm-20 {
        font-size: 20px;
    }
    .ft-sm-24 {
        font-size: 24px;
    }
    .ft-sm-28 {
        font-size: 28px;
    }
    .ft-sm-32 {
        font-size: 32px;
    }
    .ft-sm-36 {
        font-size: 36px;
    }
    .ft-sm-48 {
        font-size: 48px;
    }
    .ft-sm-52 {
        font-size: 52px;
    }
    .ft-sm-60 {
        font-size: 60px;
    }
    .ft-sm-72 {
        font-size: 72px;
    }
}
@media (min-width: 1200px){
    body{
        padding-left: 340px;
    }
    .border-lg-end {
        border-right: 1px solid rgb(var(--fr-color-site) /15%) !important;
    }
    .border-lg-top {
        border-top: 1px solid rgb(var(--fr-color-site) /15%) !important;
    }
}
@media (min-width: 1920px) {
    .modal-xl {
        --bs-modal-width: 1400px;
    }
}
@keyframes fadeInOutAnimation {
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
.notification {
    position: fixed;
    right: 0;
    top: 20px;
    max-width: 300px;
    z-index: 10000;
    font-size: .9rem;
}
.notification .alert{
    padding: 1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.alert-success {
    color: #ffffff !important;
    background-color: #7ba54e !important;
    border-color: #7ba54e !important;
}
.alert-danger {
    color: #fff !important;
    background-color: #ce0013 !important;
    border-color: #d00016 !important;
}
.alert-warning {
    color: #ffffff !important;
    background-color: #ffa500 !important;
    border-color: #ffa500 !important;
}
.alert-info {
    color: #fff !important;
    background-color: #00b3d4 !important;
    border-color: #00b3d4 !important;
}
