/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 18 avr. 2023, 10:36:59
    Author     : yofer
*/

.bordure {
    margin: 10px;
}

.img {
    width: 20px;
    height: 20px;
}

.btn-reduc { /* On supprime le style des boutons de base */
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    outline: none;
}

.btn-reduc:hover {
  transform: scale(1.2);
}

.content-reductions {
    display: flex;
}

.item-reductions {
    width: 100%;
}

.item-donut {
    padding-left: 10px;
    width: 100%;
}


/* Dans Modal_HistoriqueReduction */
.tableau-historiques{
    overflow-y: scroll;
    overflow-x: hidden;
    height: 450px;
}

.head-sticky {
    position: sticky;
    top: 0;
    background-color: white;
}

.nav-plus {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.nav-plus a {
    display: block;
    margin: 5px;
    width: 300px;
}

.btn-plus {
    position: absolute;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0 4px 0 4px;
    top: 0;
    right: 0;
}

.btn-plus:hover{
    color: rgb(0, 0, 0);
    transition: 0.4s ease-in-out;
}

.btn-create {
    display: none;
    width: 100%;
    bottom: 10px;
}

.switch-popup {
    position: relative;
    left: 10px;
}

.vente-privee-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.vente-privee-link:hover {
    color:royalblue;
}

.modal-open {
    position: fixed;
    overflow: hidden;
}  

.tableau {
    overflow-x: hidden;
}

.input-usage {padding: 0px;}
    
@media (max-width: 991px) {
    .tableau{
        overflow-x: auto;
    }

    .btn-plus {
        visibility: hidden;
    }

    .btn-create {
        display: flex;
    }
}

@media (min-width: 992px) {
    .btn-plus {
      visibility: visible;
    }
}