.layout-align{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 30px 0;
}

#nps-container{
    width: 300px;
    height: 150px;
    border-top-left-radius: 360px;
    border-top-right-radius: 360px;
    overflow: hidden;
    position: relative;
}
#nps-indicador{
    position: absolute;
    left: 20%;
    top: 40%;
    width: 60%;
    height: 60%;
    border-top-left-radius: 360px;
    border-top-right-radius: 360px;
    background-color: #ffffff;
    z-index: 2;
}
#nps-parte-negativa{
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 4;
    width: 100%;
    height: 100%;
    border-top-left-radius: 360px;
    border-top-right-radius: 360px;
    background-color: #F44336;
    transform-origin: bottom center;
    transform: rotate(-92deg);
    z-index: 0;
}
#nps-parte-positiva{
    position: absolute;
    right: 0%;
    top: 0%;
    z-index: 4;
    width: 100%;
    height: 100%;
    border-top-left-radius: 360px;
    border-top-right-radius: 360px;
    background-color: #0093D7;
    transform-origin: bottom center;
    transform: rotate(92deg);
    z-index: 0
}

.nps-flecha {
    position: absolute;
    top: 40%;
    left: -250%;
    width: 300%;
    height: 15px;
    background-color: #ffffff;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 5%;
    border-bottom-right-radius: 5%;
    transform-origin: right center;
    transform: rotate(90deg); /* Neutral por defecto */
    transition: transform 0.5s ease-in-out; /* Agregar animación suave */
}

.numeric_scale_bar{
    height: 0%;
    transition: height  0.5s ease-in-out;
}

.classification_bar{
    width: 0%;
    transition: width  0.5s ease-in-out;
}

#nps-contenedor-flecha {
    position: absolute;
    left: 41%;
    top: 59%;
    width: 20%;
    height: 35%;
    background-color: #ffffff;
    z-index: 2;
}
#scorer-nps-value-container {
    position: absolute;
    top: 45%;
    width: 100%;
    z-index: 2;
}

#nps-divisor_grafica {
    position: absolute;
    left: 48%;
    top: 0;
    width: 4%;
    height: 43%;
    background-color: #fff;
    z-index: 2;
}

/* Estilo del tooltip personalizado */
.chartjs-tooltip {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    pointer-events: none;
    font-size: 14px;
    z-index: 9000;
}
