﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
/* Let's get this party started */
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #D9D9D9;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: #D9D9D910;
    }

    caption{
        display:none;
    }
a.navbar-brand {
    white-space: normal;
    text-align: right;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.nav-item {
    color: white;
    &:hover, &:active

{
    background-color: #3A3A3A;
}

}

.nav-link {
    color: white;
}

.parent {
    display: flex;
}

.logout {
    /* float: right; */
    /* display: block; */
    text-align: right;
    /* margin-right: 15px;*/
    padding-top: 9px;
}

    .logout svg.icon-menu {
        transform: rotate(180deg);
    }

.nav-active {
    color: white;
    background-color: #3A3A3A;
}

/*.nav-item:active {
    color: white;
    background-color: #3A3A3A;
}*/

.btn {
    border: 1px solid #3a3a3a;
}

    .btn:focus-visible, .btn:focus, .btn:active, .btn:hover, btn:first-child:active, .btn {
        background-color: #3A3A3A !important;
        border-color: #3A3A3A !important;
        outline: 0;
        box-shadow: none !important;
    }

.btn-primary {
    color: white;
    background-color: #3A3A3A;
    border-radius: 30px;
}

    .btn-primary:hover {
        color: white;
        background-color: #3A3A3A;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: white;
    background-color: #D4D4D4;
    border-color: #1861ac;
}


/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    font-family: 'Noto Sans'
}

@media (min-width: 768px) {
    html {
        background: #FBFBFB
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
    background: #FBFBFB
}

.header {
    background: #FBFBFB;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 16px;
    dispay: flex;
}

    .sidebar a {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 20px;
        color: white;
        display: block;
    }

        .sidebar a:hover {
            color: #3A3A3A;
        }

.moveall,
.removeall {
    border: 1px solid #ccc !important;
    &:hover

{
    background: #efefef;
}

}

// Only included because button labels are not showing

.moveall::after {
    content: attr(title);
}

.removeall::after {
    content: attr(title);
}

// Custom styling form
.form-control option {
    padding: 10px;
    border-bottom: 1px solid #efefef;
}

/* (A) GALLERY WRAPPER */
ul#photos > div, #furniturePhotos > div {
    width: 290px;
    height: 340px;
    padding: 0px 33px;
}

ul#photos div img.image, ul#photos div img.blank_image, img#preview_thumb,
#furniturePhotos div img.image, #furniturePhotos div img.blank_image {
    padding: 10px !important;
    width: 260px;
    height: 260px;
    transition: transform ease 0.5s;
    border: 0px !important;
    border-radius: 2em !important;
    background: white;
    --bs-table-bg: none;
    box-shadow: 0px 4px 24px 0px #00000007;
    margin: 10px;
    overflow: hidden;
}

img#preview_thumb {
    width: auto;
    height: 300px;
    max-width: 600px;
    max-height: 600px;
}

ul#photos {
    /* (A1) GRID LAYOUT - 3 IMAGES PER ROW */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* (A2) OPTIONAL WIDTH RESTRICT */
    margin: 0 auto;
    padding: 0;
}
    /* (B) GALLERY IMAGES */
    ul#photos img.image, ul#photos img.blank_image, #furniturePhotos img.image, #furniturePhotos img.blank_image {
        /* (B1) DIMENSION */
        width: 100%;
        height: 180px; /* optional */
        padding: 10px;
        /* (B2) COLORS */
        border: 1px solid #ddd;
        background: #fff;
        /* (B3) IMAGE RESIZE */
        /* cover | contain | fill | scale-down */
        object-fit: cover;
    }
/* (C) ON SMALL SCREENS - 2 IMAGES PER ROW */
@media only screen and (max-width: 600px) {
    ul#photos, #furniturePhotos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    25% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-out {
    100% {
        transform: scale(0.1);
        opacity: 0;
    }

    0% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gelatine {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    100% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes grow {
    0% {
        opacity: 0;
        transform: rotate(0deg) scaleX(0) scaleY(0);
    }

    70% {
        opacity: 1;
        transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@keyframes shrink {
    0% {
        opacity: 1;
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }

    100% {
        opacity: 0;
        transform: rotate(0deg) scaleX(0) scaleY(0);
    }
}


@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes reveal {
    0% {
        transform: translate(0,100%);
    }

    100% {
        transform: translate(0,0);
    }
}

@keyframes scaleY {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* (D) OPTIONAL ZOOM ON HOVER */
ul#photos img.image:hover, #furniturePhotos img.image:hover {
    z-index: 9;
    transform: scale(1.1);
    box-shadow: 0px 4px 24px 0px #00000015;
}

/* (E) FULLSCREEN MODE */
ul#photos .div-image-popup, #furniturePhotos .div-image-popup {
    width: 900px;
    overflow: hidden;
    max-height: 1024px;
}

ul#photos img.image-full, #furniturePhotos img.image-full {
    min-width: 367px;
    border-radius: 2em;
    max-width: 900px;
    max-height: 1024px;
}

ul#photos #cellule-image-full, #furniturePhotos #cellule-image-full {
    position: fixed;
    left: 30%;
    top: 5%;
    z-index: 999;
    text-align: center;
    width: inherit;
    /* max-height: 1024px; */
    overflow: auto;
}


#cellule-image-full.full {
    animation: zoom-in .3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%) 1;
}

#cellule-image-full.retracted {
    transform: scale(0.1);
    opacity: 0;
    animation: zoom-out .3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%) 1;
}

ul#photos #cellule-image-full .content-popup-group-image, #furniturePhotos #cellule-image-full .content-popup-group-image {
    padding: 1em;
    font-size: 14px;
    text-align: left;
    max-width: 870px;
}

    ul#photos #cellule-image-full .content-popup-group-image .popup-image-title, #furniturePhotos #cellule-image-full .content-popup-group-image .popup-image-title {
        font-size: 18px;
    }

ul#photos #cellule-image-full .icon-close-popup, #furniturePhotos #cellule-image-full .icon-close-popup {
    cursor: pointer;
}

ul#photos #cellule-image-full .bloc-bouton-image, #furniturePhotos #cellule-image-full .bloc-bouton-image {
    padding: 15px;
}

    ul#photos #cellule-image-full .bloc-bouton-image i, #furniturePhotos #cellule-image-full .bloc-bouton-image i {
        font-size: 18px;
    }

ul#photos img.image-full.full:hover, #furniturePhotos img.image-full.full:hover {
    z-index: 999;
    transform: none;
}

ul#photos .cellule-image {
    margin: 10px 0;
}

ul#photos div.image-title, ul#photos div.div-image-title, #furniturePhotos div.image-title, #furniturePhotos div.div-image-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    /*padding: 0 2em;*/
    transition: 0.3s;
}

ul#photos div.div-icon-title, #furniturePhotos div.div-icon-title {
    padding: 0 1em;
}

ul#photos .unwrap, #furniturePhotos .unwrap {
    text-overflow: initial !important;
    white-space: initial !important;
}

#iframe-photo {
    margin-left: -4em;
    width: 100%;
}
/*menu layout form */

.menu {
    position: relative;
    /*width: auto;*/
    overflow: auto;
}

    .menu div.parent.bg-dark {
        border-radius: 0 30px 30px 0 !important;
        display: block;
    }

        .menu div.parent.bg-dark nav {
            margin: 15px 0px;
            padding: 10px;
            /* height: 640px; */
        }

            .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column {
            }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item {
                    border-radius: 15px;
                    margin: 5px 0;
                }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li#nav-subitem-li-task {
                    cursor: pointer;
                }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item i.bi,
                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item svg.icon-menu,
                .form-label i.bi, .form-label svg.icon-menu {
                    margin-right: 20px;
                    font-size: 20px;
                }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link svg.bi.me-2 {
                    float: left;
                    width: 16px;
                    height: 16px;
                }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link svg.icon-menu,
                .logout svg.icon-menu, .form-label i.bi, .form-label svg.icon-menu {
                    width: 24px;
                    height: 24px;
                }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link {
                    padding: 20px 0px;
                    font-size: 14px;
                    &:hover

{
    color: white;
}

}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item #submenu-task {
    animation: scaleY .3s;
    & li.nav-subitem.nav-active

{
    font-weight: 900;
}

}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link:hover {
    color: white;
}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link:focus {
    color: white;
}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link .nav-div-text {
    display: none;
}

.menu div.parent.bg-dark .logout a#login-button {
    margin-right: 20px;
}

@media only screen and (max-width: 1650px) {
    .menu {
        position: relative;
        /*width: auto;*/
        overflow: auto;
    }

        .menu div.parent.bg-dark {
            border-radius: 0 30px 30px 0 !important;
            display: block;
            width: 85px !important;
        }

            .menu div.parent.bg-dark nav {
                margin: 15px 9px;
                padding: 0px;
            }

                .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column {
                }

                    .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item {
                        border-radius: 15px;
                        margin: 10px 0;
                        &:nth-child(1) a.nav-link .nav-div-text

{
    top: 25px;
}

&:nth-child(2) a.nav-link .nav-div-text {
    top: 99.5px;
}

&:nth-child(3) a.nav-link .nav-div-text {
    top: 174px;
}

&:nth-child(4) a.nav-link .nav-div-text {
    top: 248.5px;
}

&:nth-child(5) a.nav-link .nav-div-text {
    top: 323px;
}

&:nth-child(6) a.nav-link .nav-div-text {
    top: 397.5px;
}

&:hover #submenu-task {
    top: 472px;
}

}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item #submenu-task {
    display: none;
}

    .menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item #submenu-task svg {
        display: none;
    }

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item i.bi,
.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item svg.icon-menu,
.form-label i.bi, .form-label svg.icon-menu {
    margin-right: 0px;
    font-size: 20px;
}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link {
    padding: 15px 0px;
    font-size: 14px;
    &:hover

{
    color: white;
}

}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item:hover #submenu-task,
.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item:hover a.nav-link .nav-div-text {
    display: block;
    width: 200px;
    font-size: 14px;
    background-color: #3A3A3A;
    position: absolute;
    left: 65%;
    padding: 17px 40px 17px 15px;
    border-radius: 15px;
}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link:focus {
    color: white;
}

.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link .nav-text,
.menu div.parent.bg-dark nav ul.nav.nav-pills.nav-sidebar.flex-column li.nav-item a.nav-link .nav-div-text {
    display: none;
}

.menu div.parent.bg-dark .logout a#login-button {
    margin-right: 20px;
}

}
/*Header nav bar
 -------------------------------------------------- */
header nav.navbar .container-fluid .navbar-collapse ul.nav a.link-dark {
    padding: 5px;
}

header nav.navbar {
    box-shadow: none;
    border: none !important;
}

    header nav.navbar .navbar-collapse {
        margin-right: 5em;
    }




/*Table and component
 -------------------------------------------------- */
/* reset tableau*/
table#usersDataTable, table#countriesDataTable,
table#zonesDataTable, table#posDataTable, table#furnitureDataTable,
table#duratransDataTable, table#masterTasksDataTable,
table#tasksDataTable, table#inquiryDataTable, table#historicDataTable {
    border: 0px;
    --bs-table-bg: none;
}

div#cellule, #cellule-popup, #cellule-image-full, div#cellule-table-document, div#cellule-table-import, #SEARCH____X, input[type="text"], input[type="numeric"], input[type="email"], input[type="number"], input[type="date"], input[type="password"], input[type="file"], input[type="week"], select, .cf-select, .cf-select__items, .cellule-image {
    border: 0px !important;
    border-radius: 2em !important;
    background: white;
    --bs-table-bg: none;
    box-shadow: 0px 4px 24px 0px #00000015 !important;
    padding: 10px 20px !important;
}

.cf-select--multiple .cf-select__box--multiple {
    border: 0px !important;
    --bs-table-bg: none;
    padding: 10px 20px !important;
}

input[type="text"]:read-only, input[type="email"]:read-only, input[type="number"]:read-only,
input[type="date"]:read-only {
    background-color: #e9ecef;
    color: #777;
    cursor: not-allowed;
}

div#cellule table#usersDataTable tbody tr, div#cellule table#countriesDataTable tbody tr, div#cellule table#ZonecountriesDataTable tbody tr,
div#cellule table#zonesDataTable tbody tr, div#cellule table#posDataTable tbody tr,
div#cellule table#duratransDataTable tbody tr, div#cellule table#tasksDataTable tbody tr,
div#cellule table#masterTasksDataTable tbody tr, div#cellule table#inquiryDataTable tbody tr,
div#cellule table#historicDataTable tbody tr, div#cellule-table-document table#documentDataTable tbody tr,
div#cellule-table-import table#importDataTable tbody tr {
    transition: 0.3s;
    &:hover

{
    background-color: #3a3a3a10
}

}

div#cellule table#usersDataTable td, div#cellule table#countriesDataTable td, div#cellule table#ZonecountriesDataTable td,
div#cellule table#zonesDataTable td, div#cellule table#posDataTable td, div#cellule table#furnitureDataTable td,
div#cellule table#duratransDataTable td, div#cellule table#tasksDataTable td,
div#cellule table#masterTasksDataTable td, div#cellule table#inquiryDataTable td,
div#cellule table#historicDataTable td, div#cellule-table-document table#documentDataTable td,
div#cellule-table-import table#importDataTable td {
    font-size: 14px;
}

div#cellule table#usersDataTable td, div#cellule table#usersDataTable th,
div#cellule table#countriesDataTable td, div#cellule table#countriesDataTable th,
div#cellule table#ZonecountriesDataTable td, div#cellule table#ZonecountriesDataTable th,
div#cellule table#zonesDataTable td, div#cellule table#zonesDataTable th,
div#cellule table#posDataTable td, div#cellule table#posDataTable th,
div#cellule table#duratransDataTable td, div#cellule table#duratransDataTable th,
div#cellule table#tasksDataTable td, div#cellule table#tasksDataTable th,
div#cellule table#furnitureDataTable td, div#cellule table#furnitureDataTable th,
div#cellule table#masterTasksDataTable td, div#cellule table#masterTasksDataTable th,
div#cellule table#inquiryDataTable td, div#cellule table#inquiryDataTable th,
div#cellule table#historicDataTable td, div#cellule table#historicDataTable th,
div#cellule-table-document table#documentDataTable td, div#cellule-table-document table#documentDataTable th,
div#cellule-table-import table#importDataTable td, div#cellule-table-import table#importDataTable th {
    border: none;
}

    .form-check.form-switch input[type="checkbox"],
    div#cellule table#usersDataTable td input.form-check-input,
    div#cellule table#countriesDataTable td input.form-check-input,
    div#cellule table#ZonecountriesDataTable td input.form-check-input,
    div#cellule table#zonesDataTable td input.form-check-input,
    div#cellule table#posDataTable td input.form-check-input,
    div#cellule table#duratransDataTable td input.form-check-input,
    div#cellule table#tasksDataTable td input.form-check-input,
    div#cellule table#masterTasksDataTable td input.form-check-input,
    div#cellule table#inquiryDataTable td input.form-check-input,
    div#cellule table#historicDataTable td input.form-check-input,
    div#cellule-table-document table#documentDataTable td input.form-check-input,
    div#cellule-table-import table#importDataTable td input.form-check-input {
        background-color: #D4D4D4;
        border-color: #D4D4D4;
        padding: 10px;
        width: 40px !important;
        margin-left: -4em !important;
    }

.form-check.form-switch input[type="checkbox"] {
    margin-left: 0 !important;
}

    .form-check.form-switch input[type="checkbox"]:checked,
    div#cellule table#usersDataTable td input.form-check-input:checked,
    div#cellule table#countriesDataTable td input.form-check-input:checked,
    div#cellule table#ZonecountriesDataTable td input.form-check-input:checked,
    div#cellule table#zonesDataTable td input.form-check-input:checked,
    div#cellule table#posDataTable td input.form-check-input:checked,
    div#cellule table#duratransDataTable td input.form-check-input:checked,
    div#cellule table#tasksDataTable td input.form-check-input:checked,
    div#cellule table#masterTasksDataTable td input.form-check-input:checked,
    div#cellule table#inquiryDataTable td input.form-check-input:checked,
    div#cellule table#historicDataTable td input.form-check-input:checked,
    div#cellule-table-document table#documentDataTable td input.form-check-input:checked,
    div#cellule-table-import table#importDataTable td input.form-check-input:checked {
        background-color: #232323;
        opacity: 1;
    }

div#cellule table#usersDataTable td i.bi,
div#cellule table#countriesDataTable td i.bi,
div#cellule table#ZonecountriesDataTable td i.bi,
div#cellule table#zonesDataTable td i.bi,
div#cellule table#posDataTable td i.bi,
div#cellule table#duratransDataTable td i.bi,
div#cellule table#furnitureDataTable td i.bi,
div#cellule table#tasksDataTable td i.bi,
div#cellule table#masterTasksDataTable td i.bi,
div#cellule table#inquiryDataTable td i.bi,
div#cellule table#historicDataTable td i.bi,
div#cellule-table-document table#documentDataTable td i.bi,
div#cellule-table-import table#documentDataTable td i.bi {
    font-size: 20px;
    color: #292d32;
}

div#cellule table#duratransDataTable td i.bi {
    font-size: 16px;
    font-weight: bold;
}

div#cellule table#duratransDataTable td span a:first-child i.bi {
    margin-right: 10px;
}

.salePoint-flex {
    margin-left: 4%;
}

.ul-btn-move {
    padding: 25px;
    align-items: center;
}

    .ul-btn-move .li-btn-move {
        margin: 30px 0;
    }

/* style table sort */
.pagination a {
    color: black;
    float: left;
    padding: 8px 12px;
    text-decoration: none;
    transition: background-color .3s;
    font-size: 12px;
}

    /* Style the active/current link */
    .pagination a.active {
        background-color: dodgerblue;
        color: white;
    }

.tablesorter-header-filter::after {
    content: '';
    display: inline-flex;
    background-image: url('/icon/Vector.svg');
    background-size: 16px 16px;
    height: 16px;
    width: 16px;
}

.tablesorter-header-asc::after {
    content: '';
    display: inline-flex;
    background-image: url('/icon/arrow-solid.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    transition: transform ease 0.5s;
}

.tablesorter-header-desc::after {
    content: '';
    display: inline-flex;
    background-image: url('/icon/arrow-solid.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    transform: rotate(180deg);
    transition: transform ease 0.5s;
}
/* icon task manager */
.text-axis {
    display: inline-block;
    width: 70px;
}

.icon-axis-fragrance, .icon-axis-skincare,
.icon-axis-makeup, .icon-axis-hair {
    margin-right: 10px;
}

    .icon-axis-fragrance::after, .icon-axis-skincare::after,
    .icon-axis-makeup::after, .icon-axis-hair::after {
        content: '';
        display: inline-flex;
        background-size: 36px;
        background-repeat: no-repeat;
        height: 24px;
        width: 30px;
        background-position: right center;
    }

    .icon-axis-fragrance::after {
        background-image: url('/icon/Icone_Parfum.svg');
    }

    .icon-axis-skincare::after {
        background-image: url('/icon/Icone_Soin.svg');
    }

    .icon-axis-makeup::after {
        background-image: url('/icon/Icone_Makeup.svg');
    }

    .icon-axis-hair::after {
        background-image: url('/icon/Icone_HR.svg');
    }

.icon-image-download::after {
    content: '';
    display: inline-flex;
    background-image: url('/icon/donwload.svg');
    background-size: cover;
    height: 24px;
    width: 24px;
    background-position: center;
}

/*statut task manager*/
/*bleu*/
.text-statut-new,
.text-statut-sheduled {
    color: #007Bff;
}
/*rouge*/
.text-statut-refused,
.text-statut-late,
.hasError {
    color: #dc3545;
}
/*vert*/
.text-statut-validated,
.text-statut-assigned {
    color: #28A745;
}
/*jaune*/
.text-statut-Pending,
.text-statut-draft {
    color: #ffc107;
}
/* Add a grey background color on mouse-over */
.pagination a:hover:not(.active) {
    background-color: #ddd;
}


.pagination a.table-pagination {
    cursor: auto;
    font-size: 14px;
}

    .pagination a.table-pagination:hover:not(.active) {
        background-color: white
    }

div#bloc-pagination {
    justify-content: center;
    display: flex;
}
/* Menu onglet in content
 -------------------------------------------------- */
.cellule-submenu-back {
    margin: 15px 0;
}

    .cellule-submenu-back span.h3-submenu {
        font-size: 14px;
        font-weight: bold;
        margin-left: 10px;
    }

label.form-label, label.form-check-label {
    font-weight: 500;
}

.label {
    display: flex;
    float: left;
}

div#cellule #furnitureDataTable .form-check.form-switch {
    padding-left: 0;
}

div#cellule #furnitureDataTable .justify-content-center {
    text-align: center;
}

div#tabs-general .row .form-check.form-switch {
    margin: 5px;
    padding: 10px;
}

.col.sous-titre {
    padding: 10px;
}

div#cellule.store-contact-cellule,
div#cellule.store-type-cellule,
div#cellule.store-layout-cellule,
div#cellule.store-forminfo-cellule,
div#cellule.store-historic-cellule,
div#cellule.store-pos-cellule,
div#cellule.store-country-cellule,
div#cellule.filter-photo-cellule {
    padding: 20px 30px 20px 30px !important;
}

    div#cellule.store-contact-cellule input[type="text"], div#cellule.store-contact-cellule input[type="email"], div#cellule.store-contact-cellule input[type="number"],
    div#cellule.store-contact-cellule input[type="date"], div#cellule.store-contact-cellule input[type="password"], div#cellule.store-contact-cellule input[type="file"],
    div#cellule.store-contact-cellule select, div#cellule.store-contact-cellule .cf-select,
    div #cellule.store-type-cellule input[type="text"], div#cellule.store-type-cellule input[type="email"], div#cellule.store-type-cellule input[type="number"],
    div#cellule.store-type-cellule input[type="date"], div#cellule.store-type-cellule input[type="password"], div#cellule.store-type-cellule input[type="file"],
    div#cellule.store-type-cellule select,
    div #cellule.store-layout-cellule input[type="text"], div#cellule.store-layout-cellule input[type="email"], div#cellule.store-layout-cellule input[type="number"],
    div#cellule.store-layout-cellule input[type="date"], div#cellule.store-layout-cellule input[type="password"], div#cellule.store-layout-cellule input[type="file"],
    div#cellule.store-layout-cellule select,
    div #cellule.store-forminfo-cellule input[type="text"], div#cellule.store-forminfo-cellule input[type="email"], div#cellule.store-forminfo-cellule input[type="number"],
    div#cellule.store-forminfo-cellule input[type="date"], div#cellule.store-forminfo-cellule input[type="password"], div#cellule.store-forminfo-cellule input[type="file"],
    div#cellule.store-forminfo-cellule select,
    div #cellule.store-historic-cellule input[type="text"], div#cellule.store-historic-cellule input[type="email"], div#cellule.store-historic-cellule input[type="number"],
    div#cellule.store-historic-cellule input[type="date"], div#cellule.store-historic-cellule input[type="password"], div#cellule.store-historic-cellule input[type="file"],
    div#cellule.store-historic-cellule select,
    div #cellule.store-pos-cellule input[type="text"], div#cellule.store-pos-cellule input[type="email"], div#cellule.store-pos-cellule input[type="number"],
    div#cellule.store-pos-cellule input[type="date"], div#cellule.store-pos-cellule input[type="password"], div#cellule.store-pos-cellule input[type="file"],
    div#cellule.store-pos-cellule select,
    div #cellule.store-country-cellule input[type="text"], div#cellule.store-country-cellule input[type="email"], div#cellule.store-country-cellule input[type="number"],
    div#cellule.store-country-cellule input[type="date"], div#cellule.store-country-cellule input[type="password"], div#cellule.store-country-cellule input[type="file"],
    div#cellule.store-country-cellule select,
    div#cellule.filter-photo-cellule input[type="text"], div#cellule.filter-photo-cellule input[type="email"], div#cellule.filter-photo-cellule input[type="number"],
    div#cellule.filter-photo-cellule input[type="date"], div#cellule.filter-photo-cellule input[type="password"], div#cellule.filter-photo-cellule input[type="file"],
    div#cellule.filter-photo-cellule select, div#cellule.filter-photo-cellule .cf-select, {
        box-shadow: 5px 5px 20px 0px #00000010 !important;
    }

.svg-arrow-store-contact,
.svg-arrow-store-type,
.svg-arrow-store-layout,
.svg-arrow-store-forminfo,
.svg-arrow-store-historic,
.svg-arrow-store-pos,
.svg-arrow-store-country {
    position: relative;
    transform: rotate(270deg);
}

.svg-arrow-store-contact-active,
.svg-arrow-store-type-active,
.svg-arrow-store-layout-active,
.svg-arrow-store-forminfo-active,
.svg-arrow-store-historic-active,
.svg-arrow-store-pos-active,
.svg-arrow-store-country-active {
    transform: rotate(180deg);
}

.col.sous-titre + .col-svg svg {
    transition: all .3s ease-in-out;
}

div#store-contact-content,
div#store-type-content,
div#store-layout-content,
div#store-forminfo-content,
div#store-historic-content,
div#store-pos-content,
div#store-country-content {
    display: block;
    &.active

{
    display: none;
    animation: fadeOut .5s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%) 1;
}

&.desactive {
    display: block;
    animation: fade .5s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%) 1;
}

}

.col-svg {
    flex: 0 0 auto;
    width: 5.333333%;
}

a.link-dark {
    color: black;
    text-decoration: none;
}

div#tabs {
    border: none;
    background: transparent;
}

    div#tabs ul.ui-tabs-nav.ui-corner-all.ui-helper-reset.ui-helper-clearfix.ui-widget-header {
        background: transparent;
        border: none;
    }

    div#tabs ul.ui-tabs-nav li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab {
        background-color: transparent;
        color: black;
        font-weight: bold;
        font-size: 14px;
        border: none;
        margin-right: 15px;
        transition: width 0.2s ease;
    }

        div#tabs ul.ui-tabs-nav li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active {
            border-bottom: 3px #222 solid;
        }

    div#tabs ul.ui-tabs-nav li.ui-tabs-tab a.ui-tabs-anchor {
        color: black;
        padding: 0;
    }
/* Menu onglet in content
 -------------------------------------------------- */
div#maskContentpopup, div#maskContentpopupsec {
    z-index: 8;
    background: #000;
    opacity: 0.8;
    overflow: auto;
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
}

div#maskContentpopupsec {
    z-index: 1000;
}
/* Positionnez la forme Popup */
.login-popup {
    position: relative;
    text-align: center;
    width: 100%;
}
/* Masquez la forme Popup */
#cellule-popup {
    position: fixed;
    left: 45%;
    top: 40%;
    z-index: 1001;
    text-align: center;
    width: inherit;
}


    #cellule-popup.popup-anim {
        animation: gelatine .3s linear 1;
    }

#cellule-popup-new-image {
    /*    position: fixed;
    left: 25%;
    top: 20%;
    z-index: 9;
    text-align: center;
    width: inherit;*/
}
/*#cellule-popup-new-image.popup-anim {
        animation: zoom-in .3s linear 1;
    }*/
/* Styles pour le conteneur de forme */
.form-container {
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
}

.content-popup-group {
    padding: 2em 4em;
    font-size: 14px;
    text-align: center;
    display: block;
}
/* Largeur complète pour les champs de saisie */
.form-container input[type="text"],
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 22px 0;
    border: none;
    background: #eee;
}
    /*Quand les entrées sont concentrées, faites quelque chose */
    .form-container input[type="text"]:focus,
    .form-container input[type="password"]:focus {
        background-color: #ddd;
        outline: none;
    }
/* Stylez le bouton de connexion*/
.form-container .btn {
    background-color: #8ebf42;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}
/* Stylez le bouton pour annuler */
.form-container .cancel {
    background-color: #cc0000;
}


button#btn-popup-positif, button#btn-popup-negatif {
    border: 1px solid black;
    width: 85px;
    margin: 0 4em;
}

.row.bloc-bouton {
    display: block;
    padding: 15px;
}

h2.popup-titre {
    padding: 10px;
    display: none;
}


/*****Canvas wrapper chart js ******/
.canvas_wrapper {
    margin: 0 auto;
    position: relative;
}

.canvas_wrapper {
    width: 60%;
}

p.a_0, p.a_1,
p.a_2, p.a_3 {
    position: absolute;
    font-size: 0.9em;
}

p.a_0 {
    top: 2%;
    left: 50%;
}

p.a_1 {
    top: 40%;
    left: 63%;
}

p.a_2 {
    top: 55%;
    left: 30%;
}

p.a_3 {
    top: 15%;
    left: 41%;
}

p span {
    font-weight: bold;
    font-size: 0.9em;
}

/********** Pop up ********/
.up-drop {
    position: relative;
    width: 500px;
    height: 435px;
    border: 2px solid #BDBDBD;
    background: #F7F7F7;
    background-image: url('../img/background-loader.png');
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-position: center;
    background-color: #F1F1F1;
    cursor: pointer;
    transition: all cubic-bezier(.62,.28,.23,.99) 0.3s;
    border-radius: 2em;
}


.up-info-tmp {
    opacity: 0;
    position: absolute;
    transform: translateX(-60px);
    border-left-width: 5px;
    border-left-style: solid;
    padding-left: 5px;
    margin-top: -25px;
}

.up-box-logo {
    position: relative;
    z-index: 3;
}

.up-logo-banque {
    position: absolute;
    bottom: -10px;
    right: 5px;
    background-color: white;
    padding: 4px;
    border-radius: 40px;
    opacity: 0.15;
    transition: bottom cubic-bezier(.32,-.1,.5,1.5) 0.3s, opacity 0.3s;
    transition-delay: 0.15s;
    width: 30px;
    height: 30px;
    background-size: 26px;
    background-position-x: 5px;
    background-position-y: 5px;
    background-repeat: no-repeat;
}

.up-cardFile:hover .up-logo-banque {
    opacity: 1;
    bottom: -3px;
}

.up-banque-compte-emetteur img {
    height: 20px;
    margin-left: -10px;
}

.up-banque-compte-emetteur {
    max-width: 25px;
    padding: 0 5px;
}

.up-drop.dragovered {
    border-color: #0072c6;
    transform: scale(0.96);
}

div#popup-import-header, div#popup-import-info-header,
div#popup-header, div#popup-info-header {
    background: #212529;
    padding: 10px;
    margin: auto;
    color: white;
    border-radius: 25px 25px 0 0;
    &.error {
        background: #dc3545;
    }
    &.warning {
        background: #ffc107;
    }
    &.valid {
        background: #28A745;
    }
}
#popup-import-info .popup-import-contentWrapper{

}
div #popup-import, div#popup-loading, div#popup-import-Info, div#popup-info {
    border: 0px !important;
    border-radius: 2em !important;
    background: white;
    --bs-table-bg: none;
    box-shadow: 0px 4px 24px 0px #00000007 !important;
}

span#popup-import-headerText, span#popup-infos-headerText {
    font-weight: 500;
}

.popup-import-contentWrapper, .popup-infos-contentWrapper {
    padding: 15px;
}
.hidden{
    display: none; 
}
.show{
    display: block;
}

.hasError {
    text-align:center;
}
.border-valide, .border-warning, .border-error {
    border-left: 10px solid #28A745 !important;
}
.border-warning {
    border-color:#ffc107 !important;
}
.border-error {
    border-color:#dc3545 !important;
}

.del-benef-to-import {
    opacity: 0;
    transform: scale(0);
    cursor: pointer;
}

    .del-benef-to-import.show {
        opacity: 0.9;
        transform: scale(0.6);
    }

.line-24:hover .del-benef-to-import {
    opacity: 0.9;
    transform: scale(0.6);
}

#importDataTable {
    width: 100%;
}

#importDataTable tr:hover .del-benef-to-import {
    transform: scale(1);
}

#importDataTable tr .divError, #importDataTable tr .divWarning {
    opacity: 0;
}

#importDataTable tr:hover .divError, #importDataTable tr:hover .divWarning {
    opacity: 1;
    transform: translateX(20px);
}

#importDataTable tr:nth-child(2n+1) {
    background: #f7f7f7;
}

.divError, .divWarning {
    position: absolute;
    width: auto;
    max-width: 600px;
    background: #e74c3c;
    color: white;
    border: 1px solid #e74c3c;
    padding: 0 5px;
    transform: translateX(0px);
    transition: opacity, transform;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

.divWarning {
    background: orange;
    border-color: orange;
}

    .divError:after, .divWarning:after {
        content: "";
        opacity: 0;
        border-left: 15px solid #e74c3c;
        border-right: 14px solid transparent;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        left: -20px;
        top: 0;
        transform: rotate(180deg) translateX(0px);
        position: absolute;
        transition: opacity, transform;
        transition-duration: 0.2s;
        transition-timing-function: linear;
        margin-right: -10px;
        margin-left: 10px;
    }

    .divWarning:after {
        border-left-color: orange;
    }

#importDataTable tr:hover .divError:after, #importDataTable tr:hover .divWarning:after {
    opacity: 1;
    transform: rotate(180deg) translateX(20px);
}

.content-confirmation {
    max-height: 600px;
}

.border-valid + .border-error {
    margin-bottom: 15px;
}

.divEnTete {
    overflow: auto;
    margin: 5px 0 5px 23px;
}

    .divEnTete .divImg {
        float: left;
        width: 24px;
    }

    .divEnTete .divLblSociete {
        float: left;
        width: 55px;
    }

    .divEnTete .divCbbSociete {
        float: left;
    }

    .divEnTete .DivInfo {
        float: right;
    }

        .divEnTete .DivInfo .infoBenef {
            font-weight: bold;
            font-size: 12px
        }

            .divEnTete .DivInfo .infoBenef.Green {
                color: #1aa187;
            }

            .divEnTete .DivInfo .infoBenef.Red {
                color: #e74c3c;
            }
