
body{
background-color: #121212;
color: #b3b3b3;
margin: 0;
font-family: "Montserrat",sans-serif;;
}

.dashboard {
    width: 100%;
    height: 100vh;
    display: flex;
}

.navigation {
    height: 100%;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    font-size: 14px;
}

.tableau {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 4px 8px 8px 4px;
}

.ecran {
    width: 25%;
    height: 50%;
}

.ecran8 {
    width: 25%;
    height: 50%;
}

.ecran7 {
    width: 25%;
    height: 50%;
}

.ecran6 {
    width: calc(100%/3);
    height: 50%;
}

.ecran5 {
    width: calc(100%/3);
    height: 50%;
}

.ecran4 {
    width: 50%;
    height: 50%;
}

.ecran3 {
    width: 50%;
    height: 50%;
}

.ecran2 {
    width: 100%;
    height: 50%;
}

.ecran1 {
    width: 100%;
    height: 100%;
}

.iframe {
    width: 100%;
    height: 100%;
}

.svg {
    height: 20px;
    margin-bottom: 7px;
}

.label {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.checkbox {
    display:flex;
    flex-direction: column;
    width: 100%;
}

.checkbox {
    cursor: pointer;
}

.input {
    display: none;
    cursor: pointer;
}

.input ~ label {
    color: red;
    fill: red;
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
}

.input:checked ~ label {
    fill: green;
    color: green;
    cursor: pointer;
}

.input ~ label:hover {
    background-color: rgb(24,24,24);
    border-left: 5px solid grey;
    cursor: pointer;
}

