﻿/*KPI*/
.kpiContainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.kpiGraph {
    height: 300%;
    width: 100%;
    overflow: hidden;
}

.cadreGraphOptionsContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.cadreGraphDetailFiltres {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.KpiFullscreenContainer {
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 0 2rem 2rem 2rem;
    overflow: hidden;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.kpi-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    min-height: 3rem;
    max-height: 3rem;
    overflow: hidden;
    padding: 0 1rem;
    text-overflow: ellipsis;
}

/*FAVORI*/
.container-favoris {
    width: 100%;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    max-height: 100%;
    overflow: auto;
}

@media (min-width: 600px) {
    .container-favoris {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 900px) {
    .container-favoris {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .container-favoris {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 2000px) {
    .container-favoris {
        grid-template-columns: repeat(4, 1fr);
    }
}

.favoriContainer {
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 1;
}

.favoriEnabled {
    color: #ffd400;
}

.favoriDisabled {
    color: #808080;
}

.container-favoris-item {
    width: 100%;
    height: 20rem;
    position: relative;
    overflow: hidden;
    border: 1px solid black;
}

.containerSpinner {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}


/*CARLOSS*/

.kpi-builder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.kpiCarlossBuilderItem{
    min-height:12rem;
    min-width:12rem;
    height:100%;
    width:100%;
}



/*ACHAT EVALUATION*/

.kpi-achat-evaluation-builder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.kpi-achat-evaluation-builder-item {
    min-height: 12rem;
    min-width: 12rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.note-moyenne {
    text-align: center;
    width: 100%;
}