body {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 29px;
    padding: 0;
    margin: 0;
    color: #676E8A;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 78px;
    background: #fff;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
    box-shadow: 0px 16px 15px 0px rgb(0 0 0 / 7%);
}

.sidebar.open {
    width: 250px;
}

.sidebar .logo-details {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar .logo-details .icon {
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
    color: #676E8A;
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
    opacity: 1;
}

.sidebar .logo-details #btn {
    color: #676E8A;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all 0.4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
    text-align: right;
}

.sidebar .accordion-button::after {
    display: none;
}
.sidebar.open .accordion-button::after {
    display: block;
}

.sidebar i {
    height: 60px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
}

.sidebar li li i {
    height: 30px;
    min-width: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}

.sidebar svg {
    color: #676E8A;
    height: 25px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
}

.sidebar .nav-list {
    margin-top: 20px;
    height: 100%;
}

.sidebar li {
    position: relative;
    /*margin: 8px 0;*/
    list-style: none;
}

.sidebar li>.tooltip {
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0s;
}

.sidebar li:hover>.tooltip {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar.open li>.tooltip {
    display: none;
}

.sidebar input {
    font-size: 15px;
    color: #676E8A;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 100%;
    width: 50px;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #fff;
}

.sidebar.open input {
    padding: 0 20px 0 50px;
    width: 100%;
}

.sidebar .bx-search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    background: #1d1b31;
    color: #FFF;
}

.sidebar.open .bx-search:hover {
    background: #1d1b31;
    color: #FF7E41;
}

.sidebar .bx-search:hover {
    background: #FFF;
    color: #FF7E41;
}

.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #fff;
}

.sidebar li a{
    color: #676E8A;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.4s;
}

.sidebar li a:hover,
.sidebar li a:focus,
.sidebar li a.active{
    background: #FFF;
    color: #FF7E41;
}

.sidebar li a .links_name {
    display: none;
}
.sidebar.open li a .links_name {
    display: block;
}


.sidebar.open li a .accordion{
    padding-left: 10%;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.sidebar li a:hover i {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.dropdown-toggle:hover,
.nav-link svg:hover {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.dropdown-item:hover,
.dropdown-item svg:hover {
    transition: all 0.5s ease;
    color: #FF7E41;
}

.sidebar li.profile {
    position: fixed;
    height: 60px;
    width: 78px;
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #fff;
    transition: all 0.5s ease;
    overflow: hidden;
}

.sidebar.open li.profile {
    width: 250px;
}

.sidebar li .profile-details {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sidebar li img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}



.sidebar li.profile .job {
    font-size: 12px;
}

.sidebar .profile #log_out {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    transition: all 0.5s ease;
}

.sidebar.open .profile #log_out {
    width: 50px;
    background: none;
}

.home-section {
    position: relative;
    background: #fff;
    /*min-height: 100vh;*/
    top: 0;
    left: 78px;
    width: calc(100% - 78px);
    transition: all 0.5s ease;
    /*z-index: 2;*/
}

.sidebar.open ~ .home-section {
    left: 250px;
    width: calc(100% - 250px);
}

.home-section .text {
    display: inline-block;
    color: #676E8A;
    font-size: 25px;
    font-weight: 500;
    margin: 18px
}

@media (max-width: 420px) {
    .sidebar li .tooltip {
        display: none;
    }
}

thead input {
    width: 100%;
}

ol, ul {
    padding-left: 0;
}

.table-responsive {
    margin-right: 1%;
}

#Action {
    display: none
}

.donnee_tableau {
    color: black;
}

.donnee_tableau:hover {
    color: #1fa9be;
}

.bg-white {
    color: #212529 !important;
    background-color: #fff !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
    border-bottom: 1px solid #DCDFE8 !important;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    color: #110A57;
}

.table .ligth {
    white-space: nowrap;
}

h4 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    margin: 0px;
    line-height: 1;
    color: #110A57;
    font-size: 1.44em;
}

.dataTables_wrapper .dataTables_filter input {
    border-color: #DCDFE8;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

tr {
    background-color: #ebf0ff;
}

.data-table .badge {
    font-size: 16px;
    padding: 8px 10px;
}

.badge {
    padding: 0.3em 0.6em;
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.bg-success {
    background-color: #78c091 !important;
}

.bg-success:hover {
    opacity: 1
}

.badge-index {
    font-size: 90%;
}



.bg-danger {
    color: #fff !important;
    background-color: #F53A3A !important;
}

.bg-warning {
    color: #fff !important;
    background-color: #ff9770 !important;
}

.btn-success {
    background-color: #1fa9be !important;
    border: 1px solid #1fa9be !important;
    border-radius: 10px !important;
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-success:visited {
    background-color: #1fa9be !important;
    border: 1px solid #1fa9be !important;
    border-radius: 10px !important;
}

.btn-primary {
    background-color: #1fa9be;
    border: 1px solid #1fa9be;
    border-radius: 10px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
    background-color: #1fa9be;
    border: 1px solid #1fa9be;
    border-radius: 10px;
}

.btn-secondary {
    background-color: #808A94;
    border: 1px solid #808A94;
    border-radius: 10px;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:visited {
    background-color: #808A94;
    border: 1px solid #808A94;
    border-radius: 10px;
}

.btn-danger {
    background-color: #CC0000;
    border: 1px solid #CC0000;
    border-radius: 10px;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:visited {
    background-color: #CC0000;
    border: 1px solid #CC0000;
    border-radius: 10px;
}

.retour{
    background-color: #78c091 !important;
    border: 1px solid #78c091 !important;
    border-radius: 10px !important;
}

.dataTables_length {
    padding-right: 5%;
    margin-top: 0.5%;
}

button.dt-button, div.dt-button, a.dt-button, input.dt-button {
    color: #fff;
    opacity: 0.5;
    background-color: #65676E;
    border: 1px solid #65676E;
    border-radius: 10px;
}

.button.dt-button:hover, div.dt-button:hover, a.dt-button:hover, input.dt-button:hover,
.button.dt-button:active, div.dt-button:active, a.dt-button:active, input.dt-button:active,
.button.dt-button:focus, div.dt-button:focus, a.dt-button:focus, input.dt-button:focus,
.button.dt-button:visited, div.dt-button:visited, a.dt-button:visited, input.dt-button:visited {
    transition: 0.5s;
    opacity: 1 !important;
    background-color: #65676E;
    border: 1px solid #65676E;
}

.profile-menu .dropdown-menu {
    right: 0;
    left: unset;
}

.fa-fw {
    margin-right: 10px;
    right: 0;
    left: unset;
}


.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #676E8A;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar {
    /*position: fixed;*/
    /*left: 0;*/
    /*top: 0;*/
    /*height: 100%;*/
    /*width: 78px;*/
    background: #fff;
    /*padding: 6px 14px;*/
    z-index: 99;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 7%);
}

.login-content {
    position: relative;
    height: 100vh;
    z-index: 99;
}

.auth-card {
    border: 2px solid #DCDFE8;
    border-radius: 5px;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.card {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #DCDFE8;
    box-shadow: none;
}

.card .card-header {
    background: transparent;
    border-radius: 0;
    padding: 20px 20px;
    margin-bottom: 0;
    -ms-flex-align: center !important;
    align-items: center !important;
    border: 0;
    border-bottom: 1px solid #DCDFE8;
}

.login-form {
    width: 350px;
    margin: 0 auto;
    padding: 30px 0;
}

.login-form form {
    color: #434343;
    border-radius: 1px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 16px 15px 0px rgb(0 0 0 / 7%);
    padding: 30px;
}

.login-form h4 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.login-form .avatar {
    color: #fff;
    margin: 0 auto 30px;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 9;
    background: #78c091 !important;
    padding: 15px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.login-form .avatar i {
    font-size: 62px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-control, .login-form .btn {
    min-height: 40px;
    border: 1px solid #DCDFE8;
    border-radius: 10px;
    transition: all 0.5s;
}

.login-form .close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.btn-block {
    background: #78c091 !important;
    text-align: center;
    margin-left: 25%;
    opacity: 1;
}

.btn-block:hover {
    background: #78c091 !important;
    text-align: center;
    margin-left: 25%;
    opacity: 1;
}


.login-form .btn:hover, .login-form .btn:focus {
    background: #42ae68;
}

.login-form .checkbox-inline {
    float: left;
}

.login-form input[type="checkbox"] {
    margin-top: 2px;
}

.login-form .forgot-link {
    float: right;
}

.login-form .small {
    font-size: 13px;
}

.login-form a {
    color: #4aba70;
}

.form-error {
    color: #ba3939;
    /*background: #ffe0e0;*/
    /*border: 1px solid #a33a3a;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: transparent;
}

button.dt-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled), input.dt-button:hover:not(.disabled) {
    color: #fff;
    opacity: 0.5;
    background-color: #65676E;
    border: 1px solid #65676E;
    border-radius: 10px;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
}

.form-group ul {
    padding-left: 2.5%;
}

.form-group ul li {
    color: #ff9770 !important;
}

.row_accueil {
    margin-right: 0;
}

.accordion-item {
    border: none ;
}

.accordion-button:not(.collapsed) {
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: none;
    color: #FF7E41;
}

.accordion-button{
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

/*.newArticle {*/
/*    border-color: rgba(126, 239, 104, 0.8);*/
/*    box-shadow: 0 1px 1px rgb(0 0 0 / 8%) inset, 0 0 8px #32bdea;*/
/*}*/
.dataTables_filter {
    float: left !important;
}

.dataTables_wrapper .dataTables_length {
    float: right;
}

div.dt-buttons {
    float: right;
}

/*.btn-password{*/
/*    background-color: red;*/
/*}*/

.link-fiche{
    color: #676E8A;
    transition: 0.8s;
}

.link-fiche:hover{
    color: #FF7E41;
}

.form-control {
    border: 1px solid #ced4da;
}

.form-control:focus {
    border: 1px solid #1fa9be;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.form-select:focus {
    border: 1px solid #1fa9be;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.inputPrice {
    position:relative;
}
.inputPrice::after {
    position:absolute;
    right: 0;
    top: 4px;
    content: "€";
    display: block;
    width: 25px;
    line-height: 31px;
    height: 31px;
    color: #9D9D9D;
}

.text_has_stock{
    font-size: 16px;
    color: #CC0000;
}

.text_has_stock i{
    font-size: 50px;
    color: #CC0000;
}