body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Noto Color Emoji";
}

.dropdown-item:focus {
    background-color: #222 !important;
}

.bordeline {
    border: 1px solid #DDD;
    margin-bottom: 1em;
}

.btn {
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    cursor: pointer;
}

.bandeau-notif-desktop {
    top: 3em !important;
    right: -15px;
    z-index: 9;
    padding: 8px 0px 10px;
    width: 6em;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
}

.bandeau-notif-desktop::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 77%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #dc3545;
}

.dropdown-menu {
    max-width: 25vw !important;
}

.dropdown-item-notification {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-item-notification-li:hover,
.dropdown-item-notification-li:focus {
    background-color: #222;
}

.dropdown-item-notification-li.active,
.dropdown-item-notification-li:active {
    background-color: #222;
}

.floating-action-buttons {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-disabled {
    color: #cccccc;
}

.table {
    margin-top: 0.5em;
}

.zoneClick:hover {
    box-shadow: 0 1px 8px #aaaaaa !important;
    cursor: pointer;
}

.text-hijra {
    color: #04C0A8 !important
}

.bg-hijra {
    background-color: #04C0A8 !important;
}

.border-head h3 {
    border-bottom: 1px solid #c9cdd7;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: normal;
    font-size: 18px;
    display: inline-block;
    width: 100%;
    font-weight: 300;
}

.container-app {
    background: #fff none repeat scroll 0 0;
    display: block;
    height: 100%;
    margin: 3em auto;
    padding: 1.5em;
    position: absolute;
    width: 100%;
}

.form-signin {
    margin: 1em auto;
    padding: 1em;
    width: 450px;
}

.input-group {
    margin-bottom: 1em;
}

.form-control {
    margin-bottom: 1em;
}

.p-mobile,
.h1-mobile {
    display: none;
}

.hidden {
    display: none;
}


#notif-block {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
}

.notif {
    height: auto;
    width: 100%;
}

.notif-ok {
    float: right;
    color: #5cb85c;
    font-size: 2em;
}

.notif-close {
    float: right;
    font-size: 2em;
    margin-top: -4px;
    cursor: pointer;
}

/* AFFICHAGE ERREUR */
.xdebug-error,
.xe-warning,
.xe-uncaught-exception {
    margin: 5em auto;
}

.xdebug-var-dump {
    margin: 5em auto;
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.slide-in {
    animation: slideInRight 0.5s ease forwards;
}

.toast.slide-out {
    animation: slideOutRight 0.5s ease forwards;
}

.bandeau-notif-desktop.slide-in {
    animation: slideInRight 0.5s ease forwards;
}

/*
   MOBILE
   */
@media screen and (max-width: 640px) {
    .btn {
        width: 100%
    }

    .dropdown-menu {
        max-width: 100vw !important;
    }

    .container-app {
        background: #fff none repeat scroll 0 0;
        display: block;
        height: 100%;
        margin: 3em auto;
        padding-top: 1.5em;
        padding-bottom: 1.5em;
        padding-right: .5em;
        padding-left: .5em;
        position: absolute;
        width: 100%;
    }

    .mobile-hidden {
        display: none;
    }

    .form-signin {
        width: 100%;
    }

    .container,
    .col-md-9,
    .col-md-3,
    .col-md-12,
    .col-md-6,
    .col-md-10,
    .col-md-11,
    .col-md-1,
    .col-md-2 {
        padding: 0.3em;
    }

    .p-mobile {
        color: #000;
        display: block;
        background: #555 none repeat scroll 0 0;
        color: #fff;
        display: block;
        font-weight: bold;
        text-align: center;
    }

    .h1-mobile {
        background: #555 none repeat scroll 0 0;
        color: #fff;
        font-size: 2em;
        margin: -1.02em auto;
        position: fixed;
        text-align: center;
        width: 100%;
        z-index: 1;
        display: block
    }
}