.errorConnexionBackOffice{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.salonsLicenses{
    width: 100vw;
    height: 92vh;
    display: flex;
    background: white;
}

.listSalons{
    /* width: 50vw; */
    flex: 1;
    padding: 10px;
}

.exportXlsDiv{
    display: flex;
    font-size: 15px;
}

.exportXls{
    position: relative;
    font-weight: normal;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #10B981;
    color: #10B981;
}

.menuExport{
    display: none;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0;
    width: fit-content;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem 0.1rem rgba(90, 90, 90, 0.2);
    padding: 0.25rem;
    z-index: 1;
    transition: 0.2s ease-in-out;
}

.exportXls:hover .menuExport{
    display: flex;
}

.xlsP{
    padding: 0.5rem 1rem;
}

.xlsP:hover{
    background: #10B981;
    color: white;
    cursor: pointer;
    border-radius: 0.2rem;
}

.exportXls>img{
    height: 75%;
}

.refresh{
    width: 27px;
    height: 27px;
    position: absolute;
    top: 9px;
    left: 100px;
    border: 1px solid gray;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.refresh::after{
    font-family: 'Material Icons';
    content: "refresh";
    font-size: 20px;
    font-weight: bold;
    position: relative;
    top: 1px;
    opacity: 0.7;
    transition: 0.4s;
}

.refresh:hover::after{
    opacity: 1;
}

.statusSalon{
    position: absolute;
    top: 9px;
    left: 160px;
    height: 27px;
    border: 1px solid gray;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; 
}

.statusState{
    padding: 0 5px;
    height: 100%;
    display: flex;
    align-items: center;
}

.selectedState{
    background: gray;
    color: white;
}

.statusSeparator{
    height: 100%;
    width: 1px;
    background: gray;
    opacity: 0.7;
    transition: 0.4s;
}

.statusSeparator:hover{
    opacity: 1;
}

#allSalons_filter{
    display: flex;
}

.searchCell{
    height: 27px;
    width: 27px;
    background: var(--mainBlue);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}

.searchCell::after{
    font-family: 'Material Icons';
    content: "search";
    color: white;
    font-size: 20px;
    position: relative;
    top: 4px;
}

.dataTables_wrapper {
    font-size: 15px;
    padding: 10px;
    background: white;
    overflow-y: scroll;
}

#allSalons_wrapper{
    max-height: 90vh;
}

table{
    margin: 0 auto;
    width: 100%;
    clear: both;
    border-collapse: collapse;
    table-layout: fixed; 
    word-wrap:break-word; 
}

#allSalons_filter .dataTables_wrapper .dataTables_filter input {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border: 1px solid lightgray !important;
    border-right: none !important;
}

thead input {
    width: 90%;
    border-radius: 5px;
    border: 1px solid lightgray;
    padding: 5px;
}

tbody tr{
    cursor: pointer;
}

.adress{
    font-size: 12px;
    color: gray;
}

.infosBlock{
    /* width: 50vw; */
    /* flex: 1; */
    padding: 10px;
    overflow-y: scroll;
}
