td {
    transition: all 0.2s ease-in-out;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-back);
    color: var(--color-black);
    overflow-x: hidden;
}

.main-table {
    width: 100%;
    height: 100%;
    border-spacing: 0;
}

.main-table .first-ligne {
    height: 75px;
}

.main-table .first-ligne td {
    vertical-align: middle;
}

.main-table .first-column {
    width: 250px;
    max-width: var(--size-menu);
    overflow: hidden;
}

.main-table .td-icone-menu {
    background-color: var(--menu-dark);
    text-align: center;
}

.main-table .td-menu {
    background-color: var(--menu-light);
    vertical-align: top;
    color: white;
    padding: 0;
    padding-top: 20px;
}

.main-table .td-search-bar {
    background-color: var(--main-white);
    padding-left: 5%;
}

.table-search-bar {
    width: 100%;
    height: 100%;
    border-spacing: 10px 0px;
}

.table-search-bar td {
    padding: 10px;
}

.table-search-bar td.search-bar {
    vertical-align: middle;
}

.table-search-bar td.search-bar img {
    width: 25px;
    position: relative;
    top: 8px;
    padding-right: 20px;
}

.table-search-bar td.icone {
    width: 50px;
    text-align: center;
}

.table-search-bar td.icone img.img-icone {
    width: 25px;
    cursor: pointer;
}

.table-search-bar td.account {
    width: 200px;
    padding: 0;
}

.table-search-bar td.account img.img-icone {
    width: 50px;
}

.main-table .main-vue {
    vertical-align: top;
    border-left: 1px solid #cecece;
}

.td-icone-menu,
.td-search-bar {
    border-bottom: 1px solid #cecece;
}

div.informationImportante {
    padding: 15px;
    border-radius: 5px;
    border: 2px solid var(--color-red);
    color: var(--color-black);
}

div.informationImportante table {
    width: 100%;
}

div.informationImportante table button.fermer {
    border: 1px solid var(--color-black);
    padding: 10px;
    border-radius: 3px;
}


/* TEST */

ul {
    list-style-type: none;
}

li {
    display: inline-block;
}

input[type="radio"][id^="cb"] {
    display: none;
}

.label-profil {
    border: 1px solid var(--main-white);
    border-radius: 5px;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.label-profil::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.label-profil img {
    height: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

 :checked+.label-profil {
    border-color: var(--color-black);
}

 :checked+.label-profil::before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
}

 :checked+.label-profil img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
}

.profil-ico {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.note {
    padding: 0 !important;
}

.note-titre {
    font-size: 22px;
}

.infoIndex {
    border: none;
    border-top: 3px double var(--color-black);
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}

.infoIndex:after {
    color: var(--color-black);
    background-color: var(--main-back);
    content: "Données Administrateur";
    padding: 0 8px;
    position: relative;
    top: -13px;
    font-size: 18px;
}

.item-todolist::before {
    display: inline-block;
    content: " ";
    height: 6px;
    width: 6px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: var(--color-black);
}

.greenTask::before {
    background-color: green !important;
}

.orangeTask::before {
    background-color: var(--color-orange) !important;
}

.redTask::before {
    background-color: var(--color-red) !important;
}

.hoverA:hover {
    border-bottom: 1px solid var(--color-black) !important;
}

.closeBlue {
    filter: invert(72%) sepia(50%) saturate(4939%) hue-rotate(175deg) brightness(101%) contrast(105%);
}