@import "profil_page.css";
@import "instru_details.css";
@import "element_list_plateaux.css";
@import "instruments.css";
@import "carousel.css";
/* Fichier CSS qui permet de définir uniquement les formes, tailles, ...
(tout ce qui ne concerne pas les couleurs et fonts)
--> composants du site à ne pas changer
*/

/* TYPOGRAPHIE */
body {
    font-family: 'Jost', serif;
}
body.waiting * {
    cursor: progress;
}
.title {
    font-weight: bold;
    font-size: 1.2em;
}

.text-right {
    text-align: right !important;
}

/* MY-AUTO : center verticalement sur une colonne */
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

a {
    text-decoration: none;
}

/* NAVBAR */
.navbar {
    height: 90px;
}

/* FOOTER */
.footer-link:hover {
    font-weight: bold;
}

/* CONTENU SOUS LA NAVBAR */
.size_content {
    height: 90%; /* fallback if needed */
    height: calc(100vh - 90px);
}

/* BORDER RADIUS */
.border_radius, .card_list, .checkbox, .image, input[type=number], .btn, .btn_blue_outline, select {
    border-radius: 10px;
}

.half-field{
    width: 50%;
}

/* SCROLLBAR */
* {
    scrollbar-width: thin;
    scrollbar-radius: 5px;
}

.visible-scrollbar,
.yellow-scrollbar {
    display: block;
    overflow-y: scroll;
    overflow-x: hidden;
}

.yellow-scrollbar::-webkit-scrollbar, /* scrollbar classique */
#element_volet_central::-webkit-scrollbar, /* scrollbar pour le volet central */
.select2-results__options::-webkit-scrollbar, /* scrollbar pour les options du select2 */
.select2-selection--multiple::-webkit-scrollbar /* scrollbar pour les options sélectionnées du select2 */
{
    width: 8px;
    height: 8px;
    border-radius: 5px;
}

.yellow-scrollbar::-webkit-scrollbar-thumb, /* scrollbar classique */
#element_volet_central::-webkit-scrollbar-thumb, /* scrollbar pour le volet central */
.select2-results__options::-webkit-scrollbar-thumb, /* scrollbar pour les options du select2 */
.select2-selection--multiple::-webkit-scrollbar-thumb /* scrollbar pour les options sélectionnées du select2 */
{
    border-radius: 5px;
}

/* BUTTONS */
/* le bouton rectangulaire */
.btn {
    border: none;
    padding: 8px 20px;
}


/* bouton avec un border radius à 50 % */
.btn_rond, .small_btn_rond {
    border-radius: 50%;
    padding: 5px 10px 4px 10px;
    border: none;
}

.btn_rond {
    padding: 7px 10px 4px 10px;
    height: 40px;
    width: 40px;
}

.small_btn_rond {
    border-radius: 50%;
    padding: 3px 5px;
    height: 30px;
    width: 30px;
    border: none;
}
.edit_btn{
    padding: 2px 5px;
}

/* bouton sans fond mais avec une bordure & avec un border radius à 50 % */
.btn_blue_outline_rond {
    border-radius: 50% !important;
    height: 55px;
    width: 55px;
}

/* bouton logo % */
.btn-logo {
    margin: 0;
    height: 50px;
    font-size: 1.2em;
}

/* bouton sans fond mais avec une bordure */
.btn_blue_outline, .btn_red_outline {
    font-weight: bold;
    padding: 8px 10px;
}

.btn_blue_outline:hover, .btn_red_outline:hover {
    font-weight: normal;
}

/* paramètres pour les icones font awesome intégrés dans les btn */
.btn i, .btn_blue_outline i, .btn_blue_outline_rond em{
    padding: 0;
    margin: 0;
}

.btn i, .btn_blue_outline i {
    font-size: 1em;
}

.btn_blue_outline_rond em {
    font-size: 32px;
}

/* classe pour les champs multilines 'grand' */
.description {
    padding-bottom: 150px;
}

/* BARRE DE RECHERCHE */
.searchbar,
.searchbar_list,
.searchbar_tray {
    border: none;
    padding: 10px;
}

#recherche_instrument {
    border:  var(--blue-dark-hover) 2px solid;
    border-radius: 5px;
}

/* INPUT TYPE NUMBER */
input[type="number"] {
    padding: 8px 10px;
    text-align: center;
}

/* SELECTEUR */
/* barre de recherche et select classique */
select {
    padding: 8px 0;
}

input, select {
    width: 100%;
}
input[type="date"] {
    border: 0;
}

/* select2 : select à choix multiple */
select, .select2-container--default .select2-selection--multiple {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 20px !important;
    border: 0 !important;
}

.select2-selection--multiple {
    overflow-y: auto;
}

#ref_prov_list{
    max-height: 40%;
    width: 90%;
    margin: 0 auto;
}

#element_volet_central {
    height: calc(100vh - 300px);
    overflow-y: auto;
    padding-right: 10px;
}



/* SWITCH */
.switch {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 30px;
  cursor: pointer;
  overflow: hidden;
}
.switch input {
  position: absolute;
  top: -30px;
  width: 0;
  height: 0;
}
.switch input + span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
}
.switch input + span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all .5s;
}
.switch input:checked + span:before {
  left: 34px;
}

/* CHECKBOX */
.checkbox {
    width: 17px;
    height: 17px;
}

/* IMAGES */
.image_list {
    height: 100px;
    width: 100px;
}
.image_volet_droit,
.resized_image_volet_droit {
    height: 280px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}
.resized_image_volet_droit{
    height: fit-content;
    width: 90%;
}
.resized_image_volet_droit .img_containers{
    max-width: 380px;
    max-height: 380px;
}

.image_preview {
    max-height: 200px;
    max-width: 300px;
}

/* PREVIEW IMAGE */
.sample {
    min-width: 185px;
    margin-top: 5px;
}
/* Container*/
.fileUpload {
    position: relative;
    overflow: hidden;
}
/* hide the actual file upload control by making it invisible */
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

#ImageList img {
    max-height: 160px;
    float: left;
    margin-left: 8px;
    margin-bottom: 8px;
}

.sample {
    padding-bottom: 25px;
}

/* IMAGE SUR LE VOLET DE DROITE DES INSTRUMENTS */
.img_instrument {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.img_instrument_volet_droite {
    display: block;
    width: 300px;
    height: auto;
    margin: auto;
}

/* IMAGE DANS LA CARD DS ALTERNATIVES */
.img_instrument_card {
    display: block;
    max-width: 100%;
    min-width: 50px;
    height: auto;
    margin: auto;
}

/* IMAGE DANS LA MODAL */
.img_instrument_modal_div {
    width: 65vw;
    height: auto;
    margin: 25px 0;
    display: table-cell;
    vertical-align: middle;

}

/* image de la modal du zoom instrumnt detail */
.image_mod {
    height: 800px
}


.border_radius_10 {
    border-radius: 10px;
    padding: 8px 10px;
}

.display_none {
    display: none;
}

.display {
    display: block;
}

.grid {
    display: grid;
}

/* CARD */
.card_alternative {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    border: 0 solid;
    min-width: 250px;
    margin-bottom: 5px;
}
.card_alternative:hover {
    cursor: pointer;
}

.card_size > span {
    font-size: 0.7em;
}

/* LIEN */
.lien:hover, .lien-blue:hover {
    font-weight: bold;
}
.lien, .lien-blue {
    text-decoration: underline;
}

/* MODAL */
#modal_instrument_details{
    max-width: 1000px;
    width: 750px ;
    margin: auto;
    display: table;
    height:100%;
}

/* Positionner un element en bas de la page */
.position_bas{
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor_zoom{
    cursor: zoom-in;
}

.texte_classique{
    font-size: 18px;
}

/* NOTIFICATION */
.notification {
    display: inline-block;
    position: fixed;
    transition: all 0.5s ease-in-out 0s;
    width: 25%;
    top: 20px;
    right: 20px;
    z-index: 250;
    border-radius: 10px;
}

.bold {
    font-weight: bold;
}


.hide {
    display:none
}


/* CGU & A PROPOS*/
.text-box{
    max-height: 58vh;
}
.para-height{
    margin: 0;
}
.para-ita{
    font-style: italic;
}
.font-normal{
    font-style: normal;
}

#partie_grise {
    height: 800px !important;
}

#table_histo {
    height: 700px;
}

/*Met une bordure sur le bas uniquement */
.border-bottom-only {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    text-align: left !important;
}

.a_btn {
    cursor: pointer;
}

.a_btn {
    text-decoration: none;
}

#commentaire {
    height: 100px;
}

.ten_rem {
    width: 10rem;
    height: 10rem
}

.pointer {
    cursor: pointer;
}

.disabled{
    pointer-events: none;
}
.display-block{
    display: block;
}

.size-large{
    font-size: large;
}

.disabled-link {
    pointer-events: none;
}


#popup_info_perso{
    justify-content: center;
    height: 100%;
}

.display-block{
    display: block;
}

.align-bot {
    position: absolute;
    bottom: 5px;
}
.disabled_btn{
    background-color: var(--grey);
    pointer-events: none;
}
.custom_modal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fw_normal{
    font-weight: normal;
}

#popup_profil{
    display: none;
    position: absolute;
    right: 13px;
    transform: translateY(45%);
    width: 18vw;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    z-index: 250;
    align-items: flex-start;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.3);
}

#popup_profil_infos,#popup_info_perso{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.txt_overflow_ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.error_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.change_btn::-webkit-inner-spin-button,
.change_btn::-webkit-outer-spin-button{
    appearance: none;
}

/* change number button */
.change_btn{
    width: 75px;
    height: 30px;
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: text !important;
    border-top: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
}

.btn_red_disp{
    margin-top: 50px;
}

.logo_img,
.logo_img_borderless{
    max-height: 200px;
    max-width: 300px;
    border: solid 1px var(--blue-dark) ;
    border-radius: 10px;
}
.logo_img_borderless{
    border: none;
}
.text-center{
    text-align:center;
}

.btn_group{
    padding: 2px 5px;
    font-size: fit-content;
    line-height: 15px;
}

#list_ets_ul{
    max-height: 150px;
    overflow-y: scroll;
}

.subscriptions_img, 
.formules_img{
    max-width: 100%;
}

.dragging {
    opacity: 0.5; 
    border: dashed 2px var(--yellow);
  }
  
.dragging-over-upper {
    -webkit-box-shadow: 0px -5px 0px 0px #F5B400; 
    box-shadow: 0px -5px 0px 0px #F5B400;
}

.dragging-over-lower {
    -webkit-box-shadow: 0px 5px 0px 0px #F5B400; 
    box-shadow: 0px 5px 0px 0px #F5B400;
}
.head_info {
    width: 3%;
}

.infos {
    position: relative;
}

.infos_text,
.notes_text,
.infos_text_bis {
    visibility: hidden;
    width: 25vw;
    background-color: var(--blue-dark);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 25px 45px;
    line-height: 22px;
    font-weight: normal;
    font-family: 'Jost', serif;
    font-size: 15px;
    position: absolute;
    z-index: 1;
}
.infos_text_bis{
    right: -24vw;
    top: 4px;
    padding: 25px 45px 15px;
    font-style: normal;
    font-size: 17px;
    line-height: 25px;
}
.notes_no_break{
    white-space: nowrap;
    width: fit-content;
}
.notes_text{
    right: 16px;
    bottom: 0px;
}

.infos:hover .infos_text,
.infos:hover .notes_text,
.infos:hover .infos_text_bis {
    visibility: visible;
}

#infos_change_block,
#current_purchase_form{
    border: solid 1px #b6b6b6;
    border-radius: 10px;
    padding: 10px 0 ;
}
#current_purchase_form{
    padding: 12px 25px
}

.annotation_input_div{
    position: relative;
}

.dropdown_annotation{
    display: none;
    position: absolute;
    max-height: 250px;
    width: 100%;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 3000;
}

.annotation_ul{
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.annotation_li{
    color: black !important;
    padding: 6px;
    cursor: pointer;
}

.annotation_li:hover{
    background-color: var(--blue-light2) !important;
    color: white;
}

.connexion_content{
    margin-top: auto;
    margin-bottom: auto;
}

.btn_width{
    width: fit-content;
}

.add_instrument_infos,
.add_instrument_infos_position{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}
.add_instrument_infos_position{
    justify-content: start;
    flex-direction: row;
    align-items: end;
}

.add_instrument_infos_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 2px 0px #C7DCFF;
    padding: 15px 5px;
    border-radius: 10px;
    margin-bottom: 10px;
}
#wraped_menu{
    display: none !important;
}

.unwraped_menu{
    display: flex;
    justify-content: space-between;
}
#wrap_svg{
    width: 50px;
}
.volet_gauche_form_div{
    height: calc(92vh - 226px) !important;
}
#create_list_btn_div{
    width: 100%;
    margin: 0;
}
.fit_width{
    width: fit-content;
}

#btn_chevron_gauche_profil,
#btn_chevron_central_profil{
    display: none;
}

#resp_display_result{
    display: none;
    margin-top: 25px;
    text-align: center;
}

.volet_droit_list_form{
    height: calc(59vh - 44px);
}

/* temporary responsive css */

@media screen and (max-width : 1220px){
    .add_instrument_infos{
        flex-direction: column;
    }
    .footer-content {
        justify-content: center;
        flex-wrap: wrap;
    }
    .navbar {
        height: fit-content;
    }
    .formula_container{
        overflow-x: scroll;
    }
}

@media screen and (max-width : 992px){
    
    .connexion_content_container,
    .add_instrument_infos_position{
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .connexion_content{
        width: 90%;
    }
    .connexion_logo{
        margin-bottom: 20px;
    }
    .add_instrument_infos_description,
    .add_instrument_infos_id,
    .add_instrument_infos_number {
        margin-bottom: 10px;
        width: 100%;
    }
    .add_instrument_infos_id,
    .add_instrument_infos_description {
        text-align: center !important;
    }
    #popup_profil{
        width: 24vw;
    }
}

@media screen and (max-width : 768px){
    #volet_central{
        display: none;
    }
    #resp_display_result{
        display: block;
    }
    #volet_gauche,
    #volet_droit{
        height: 100%;
        width: 100%;
    }
    #volet_droit{
        position: absolute;
        right: 0;
    }
    .column_center,
    .inst_detail_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .row_center{
        flex-direction: row;
        align-items: center;
    }
    span.select2-container,
    .half-field,
    .list_interaction,
    .list_interaction div,
    .card_list_content_inst_infos,
    #volet_central,
    #volet_content,
    .form_profil,
    .width_100_respo,
    .inst_detail_ref_list,
    .inst_detail_ref_wrap,
    .position_infos_text{
        width: 100% !important;
    }
    .list_interaction {
        margin-left: 0 !important;
    }
    .list_interaction div {
        margin-bottom: 5px;
    }
    .form_blocks{
        width: 90%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .connexion_logo{
        margin-top: 10px;
        margin-bottom: 25px;
    }
    .connexion_content{
        font-size: 3rem;
    }
    #interaction_container{
        margin-bottom: 15px;
    }
    #ajouter_a_liste,
    #ajouter_a_plateau {
        padding: 0;
        font-size: .9rem;
    }
    .image_list{
        width: 252px !important;
        height: 252px !important;
    }
    #wraped_menu{
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .unwraped_menu{
        display: none !important;
    }
    #volet_nav{
        position: fixed;
        width: 75%;
        height: 100%;
        z-index: 250;
        transition: right 0.5s ease;
        left: -75%;
    }
    #volet_nav.active {
        left: 0;
    }    
    #btn_chevron_gauche_profil,
    #btn_chevron_central_profil{
        display: block;
    }
    .div_btn_profil{
        text-align: center !important;
        margin:20px 0;
    }

    .btn_profil{
        width: fit-content !important;
    }
    .form_profil_fields{
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    #pagination{
        bottom: 25px;
    }
    .no_margin_resp{
        margin: 0 !important;
    }
    
    input#id_username,
    input#id_password{
        font-size: 25px;
    }
    .error_message{
        font-size: 15px;
    }
    .inst_detail_ref_list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .inst_detail_img_wrap{
        max-width: 100%;
    }
    .cursor_zoom{
        pointer-events: none;
    }
    .inst_detail_ref{
        width: 50%;
    }
}
@media screen and (max-width : 380px){
    .image_list{
        height: 200px !important;
        width: 200px !important;
    }
}

/* Sidenav menu */
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 300;
    top: 0;
    right: -250px;
    background-color: #ffffff;
    border-left: var(--blue-dark) 2px solid;
    padding-top: 10px;
    padding-left: 15px;
    transition: right 0.5s ease;
  }
  
  .sidenav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .sidenav button,
  .wrap_menu_links{
    margin-bottom: 10px;
  }

  .sidenav a,
  .sidenav span {
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
  }
  .sidenav span{
    font-size: 20px;
  }
  .sidenav a {
    font-size: 23px;
  }
  
  .sidenav a:hover {
    color: #111;
  }
  
  /* Active class */
  .sidenav.active {
    right: 0;
  }
  
  /* Close btn */
  .sidenav .close {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }

  .user_role_menu{
    margin-bottom: 50px;
  }

.card_animate{
    position: relative; 
    transition: transform 0.5s ease-in-out; 
}

.img_logo_na{
    max-width: 20%;
}

.cadre { 
    box-shadow: 1px 1px 6px -1px  rgba(0,0,0,0.66);
    border-radius: 10px;
}

.no_list_decorator{
    list-style-type: none;
}

.validated_sub svg {
    height: 70px;
}


#percs_img {
    max-height: 65vh;
}
/* #percs_img {
    height: 0;
    transition: height 0.5s ease-in-out;
}

#percs_img.show {
    height: 500px; 
    transition: height 0.5s ease-in-out;
} */

.now-container {
    display: flex;
    align-items: center;
  }
  
.line {
flex: 1;
border-top: 1px solid black;
}

.now-text {
padding: 0 10px;
}

.inst_details_infos_shown{
    opacity: 1;
    max-height: 70%;
    overflow: hidden;
    transition: opacity 0.75s ease-in-out;
}

.inst_details_infos_hide{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.75s ease-in-out;
}



#log_infos{
    margin-top: 10px;
    text-align: center;
}

#log_table,
#note_archive_table{
    height: 100%;
    width: 100%;
    list-style: none;
    padding-left: 0;
}

#bundle_list_container{
    max-height: 35vh;
    overflow-y: scroll;
    padding: 0 10px;
}

#log_table li,
#bundle_list_container li,
#note_archive_table li{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    border-radius: 5px;
    padding: 2px 5px;
}
#bundle_list_container li{
    padding: 0;
}
.log_table_start{
    width: 11%;
}
.log_table_number{
    width: 3%;
}

.pagination_btn{
    border-radius: 50%;
    background: none;
    padding: 0 7px;
    border: 2px solid #52B59B;
    border-style: groove;
}

#operation_selected_plus,
#operation_selected_minus,
#catalogues_switch,
#documents_switch{
    margin: 0;
}

.selected,
.not_selected{
    padding: 8px 10px;
    border-radius: 10px;
    background-color: var(--yellow);
    transition: background-color 0.5s ease;
}
.not_selected{
    background-color: var(--grey);
}


.dropdown_hidden {
    padding-left: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
}
.dropdown_shown{
    padding-left: 10px;
    overflow: hidden;
    max-height: 100%;
    transition: max-height 0.5s ease;
}

#ets_options{
    padding-left: 15px;
}
.height_fit{
    height: fit-content;
}

.stock_post_block{
    width: 6%;
}
.stock_btn_wrapper{
    margin-bottom: 20px;
    /* width: 20%; */
}
.float_left{
    float: inline-start;
}
.all_img_container{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: scroll;
    background-color: var(--blue-light);
    border-radius: 10px;
    padding: 20px;
}

.single_img_container{
    position: relative;
    width: 48%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px white;
    padding: 10px;
    border-radius: 10px;
}

.select_img_spe{
    transition: all .5s;
}
.select_img_spe:hover{
    transform: scale(1.05);
}

.del_logo{
    position: absolute;
    right: 0;
    top: 0;
    height: fit-content;
    transform: translate(50%,-50%);
}

#dropdown_liste,
#dropdown_plateau{
    text-align: center;
}

.select_mimic{
    max-height: 550px;
    width: 100%;
    display: block;
    overflow: scroll;
    list-style: none;
    text-align: start;
    line-height: 29px;
}

#select_opts_list_display{
    width: 100%;
    height: 40px;
    background-color: red;
    cursor: pointer;
}

#choix_list,
#choix_tray{
    padding: 5px 5px 0 5px;
    margin-bottom: 0;
    border-radius: 5px;
}

.li_list,
.li_tray{
    cursor: pointer;
    padding: 0 5px;
    border-radius: 5px;
}
#ajust-height{
    display: flex;
    justify-content: start;
    flex-direction: column;
}
.label-cross{
    position: relative;
}
.cross-btn{
    position: absolute;
    margin-left: -50px;
    margin-top: 7px;
    margin-left: -50px; 
    z-index: 100
}

.hidden_infos{
    height: 0vh;
    overflow: hidden;
    transition: height ease 0.5s;
}
.extended_infos{
    padding: 20px 10px;
    height: 70vh;
    overflow-y: scroll;
    transition: height ease 0.5s;
    
}
.to_scroll,
.show_infos{
    height: 20vh;
    overflow-y: scroll;
    transition: height ease 0.5s;   
}
.to_scroll{
    padding: 20px 10px;
    box-shadow: inset 0px 0px 15px -3px rgb(0, 0, 0,0.1);
    border-radius: 10px;
}

.show_infos{
    overflow-y:initial;
    display: block;
    height: 50vh;
    border-top: 1px solid #cecccc;
}
#toggle_infos{
    position: relative;
}
#hide_infos_block{
    position: absolute;
    right: 0;
    top: 2px;
}

.bundle_li,
.bundle_li_infos{
    border-radius: 5px;
    transition: background-color ease 0.5s;
}

.bundle_li_infos{
    display: flex;
    flex-direction: row;
    width: 90%;
}

.bundle_li_name{
    width: 85%;
    padding: 5px;
}
.bundle_li_price{
    text-align: center;
    padding: 5px 0;
    width: 15%;
}
.delete_bundle{
    width: 10%;
    padding: 5px 10px;
    text-align: center;
}
#btn_open_create_provider,
#btn_manage_filed_repair_providers,
#btn_manage_up_repair_providers {
	line-height: 34px;
}
#repair_prov_list{
    display: flex;
}

#menu_dropdown,
.basic_menu {
    position: relative;
    display: inline-block;
}

.dropdown-content,
.basic_menu_content {
    display: flex;
    visibility: hidden;
    max-height: 0;
    flex-direction: column;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
    overflow: hidden;
    transition: max-height ease 0.7s;
}
.basic_menu:hover .basic_menu_content{
    visibility: visible;
    max-height: 500px;
    display: flex;
    transition: max-height ease 0.7s;
    width: max-content;
}

.menu_opts{
    padding: 12px 16px;
    transition: background-color ease 0.5s;
}

.note_card_container{
    height: 75px;
}
.note_card_left{
    background-color: var(--white);
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.note_card_right{
    border-radius: 0 10px 10px 0 ;
    padding: 0;
    display: flex;
    align-items: center;
}
.dl_note{
    width: 35px;
}

#log_datas_n_inputs,
#delete_log_container{
    transition: max-height ease 0.75s;
}

#delete_log_container{
    max-height: 0px;
    overflow: hidden;
}

#log_datas_n_inputs{
    max-height: 75vh;
}
#prov_results_container,
.scroll_y{
    overflow-y: scroll;
}

#left_note_archives_block,
#left_date_block{
    max-height: 100%;
    overflow: hidden;
    transition: max-height 0.75s ease;
}

#left_note_archives_block{
    max-height: 0%;
}
#notes_archives{
    overflow-y: scroll;
    max-height: 77%;
    margin-bottom: 15px;
}
#prov_list_side{
    display: none;
}
.uppercase {
    text-transform: uppercase;
}
.text_small{
    font-size: small;
}
.zomm_modal{
    align-items: center;
    width: 71vw;
}

.rotated_chevron{
    transform: rotate(180deg);
    transition: transform ease 0.75s;
}
.not_rotated_chevron{
    transform: rotate(0);
    transition: transform ease 0.75s;
}
.card_list_second_container{
    width: -moz-available;
    width: -webkit-fill-available;
}

#left_container{
    width: 27.60%;
    display: flex;
    align-items: center;
}
#right_container{
    width: 72.40%;
    padding: 0 8vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#square_info{
    height: 80%;
    border: 2px solid var(--blue-dark);
    width: 100%;
    display: flex;
    flex-direction: column;
}
.infos_container{
    height: 78.4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.8vh;
}
#container_title{
    padding-left: 35px;
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.1vw;
}
#dots_container{
    height: 13px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 25px 0 20px;
}
.dots_info{
    background-color: #FFC52726;
    width: 13px;
    height: 13px;
}

.info_enable,
.dots_info:hover{
    background-color: var(--yellow);
}
.block_info{
    width: 85.5%;
    height: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.txt_block{
    width: 59%;
    padding-left: 6.4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img_block{
    max-height: 100%;
    width: 41%
}
.img_block img{
    width: 100%;
}
.info_title{
    color: var(--yellow);
    font-weight: bold;
    font-size: 1vw;
}
.info_txt{
    font-size: 0.9vw;
}
#previous_chart,
#next_chart{
    padding: 20px 29px;
    border-radius: 16px;
    left: 7.3vw;
    top: 50%;
    transform: translateY(-7px);
}

#next_chart{
    left: initial;
    right: 7.2vw;
}
#chart_canvas{
    width: 100%;
    max-width: 44vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loadSpiner{
    position: absolute;
    top: 50%;
    right: 50%;
}
#msg_pop_up{
    display: none;
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    font-weight: bold;
    font-style: italic;
    font-size: 1.5vw;
}

.dropDiv {
    cursor: pointer;
  }
   

.dropdown-content div a{
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.show_dropdown{
    visibility: visible;
    max-height: 500px;
    display: flex;
    transition: max-height ease 0.7s;
}

#preview_pdf{
    width: 90% ;
    height: 100%;
}
.pdf_error{
    max-height: 150px;
}
#loading_screen{
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    background-color: var(--grey);
    top: 0;
    left: 0;
    opacity: 0.6;
    display: none;
    justify-content: center;
    align-items: center;
}
.word_break{
    word-break: break-word;
}
#inventory_ul,
#stock_ul{
    height: 30vh;
    max-height: 30%;   
}
#inventory_actions_block > div:first-of-type{
    position: relative;
    display: inline-block;
    width: fit-content;
}
.quantity_selector{
    display: none;
    position: absolute;
    transform: translate(0%,-30%);
    top: 0;
    right: 0;
    z-index: 20;
}
.quantity_ul{
    height: 180px;
    width: 70px;
    overflow-y: scroll;
    text-align: center;
    padding: 0;
}
.number_selector{
    width: 70px;
    height: 60px;
    display: inline-block;
    border-radius: 7px;
    text-align: center;
    padding-top: 13px;
    font-size: 25px;
}
.qtt_li{
    padding: 5px 0;
}
.location_container{
    padding: 15px 0;
    border-radius: 15px;
    font-style: italic ;
}

#location_div{
    font-size: 25px;
    font-weight: bold;
}
.btn_tablet{
    height: 80px;
    font-size: 20px;
}
#location_input,
#code_input{
    padding: 0.1rem .75rem;
    line-height: 0.4
}

.fa-layers{
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    vertical-align: -0.125em;
    width: 1em;
}
.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-layers svg.svg-inline--fa {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.fa-layers svg.svg-inline--fa {
    transform-origin: center center;
}
svg.svg-inline--fa:not(:host),
svg.svg-inline--fa:not(:root) {
    overflow: visible;
    box-sizing: initial;
}
.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
  }

  .svg_container svg{
    height: 20px;
    width: 20px;
    fill: var(--white);
  }
  
  .btn_icon{
    padding: 10px 12px 12px;
    height: 50px;
    width: 50px;
    border: 2px solid var(--blue-dark);
    border-radius: 5px;
  }
  .center_div{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stock_menu_btn{
    height: 50px;
  }
  .logo_bgd{
    background: url('/static/assets/images/w_pastille.svg') no-repeat left;
    background-position: 50%;
    background-size: 20px;
  }
  .smaller_font {
    font-size: .9rem;
  }
  .stock_advice,
  .stock_advice_black{
    border: solid 2px var(--black-light);
    border-radius: 5px;
    padding: 2px;
    font-size: 13px;
    width: 25px;
  }
  .stock_advice svg,
  .stock_advice_black svg{
    width: 15px;
    height: 15px;
  }

  .helper_container{
    bottom: 8px;
    right: 8px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    z-index: 20;
  }
  .helper_container div {
    transform: translateY(2%);
  }
  .helper_container svg {
    width: 20px;
  }
  .visible{
    visibility: visible;
  }
  #helper_text {
    width: 30vw;
    height: fit-content;
    right: 8px;
    bottom: 0;
    transform: translate(0%,-95%);
    line-height: 25px;
  }

  .no_highlight::selection{
     background-color: transparent;
  }

.change_btn::-webkit-inner-spin-div,
.change_btn::-webkit-outer-spin-div {
  -webkit-appearance: none;
}

.number-input input:focus{
    outline: none;
}

.number-input {
  display: inline-flex;
  flex-direction: column;
}
.btn_change_up,
.btn_change_down{
    border-radius: 10px 10px 0 0;
    transition: background-color ease 0.5s;
}

.btn_change_down{
    border-radius: 0 0 10px 10px;
}
.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input div {
  outline:none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.7rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input div:before,
.number-input div:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 0.5rem;
  height: 2px;
  transform: translate(-50%, 160%);
}
.number-input div.plus:after {
  transform: translate(-50%, 150%) rotate(90deg);
}

.number-input .change_btn {
  padding: .5rem;
  text-align: center;
}

.ten_vw{
    width: 10vw;
}

.price_input{
    padding: 5px;
    text-align: right !important;
}
.inway_pastille_active,
.inway_pastille_inactive{
    width: 15px;
    position: absolute;
    transform: translate(5%,25%);
    left: 0;
    z-index: 100;
    top: 0;
    cursor: pointer;
    pointer-events: all;
}
.inway_pastille_active{
    cursor: none;
    pointer-events: none;
}
.inway_pastille_active svg path,
.inway_pastille_inactive svg path{
    fill: var(--black);
    transition: fill ease 0.5s;
}
.inway_pastille_inactive svg path{
    fill: var(--grey);
}

.inway_pastille_inactive:hover svg path{
    fill: var(--green);
}