#maiola-pesquisa .mp-nps {
    margin-top: 20px;

    display: grid;
    grid-template-columns: repeat(11, 1fr);

    gap: 7px;
}

#maiola-pesquisa .mp-nps button {
    height: 44px;

    background: #ffffff;

    border: 1px solid var(--borda);
    border-radius: 6px;

    color: var(--texto);

    cursor: pointer;
}

#maiola-pesquisa .mp-nps button.selected {
    background: var(--azul);

    border-color: var(--azul);

    color: #ffffff;
}

#maiola-pesquisa .mp-nps-labels {
    margin-top: 7px;

    display: flex;
    justify-content: space-between;

    color: var(--cinza);

    font-size: 11px;
}

#maiola-pesquisa .mp-label {
    display: block;

    margin-top: 28px;
    margin-bottom: 8px;

    color: var(--texto);

    font-size: 14px;
    font-weight: 600;
}

#maiola-pesquisa .mp-label span {
    color: var(--cinza);

    font-weight: 400;
}

#maiola-pesquisa textarea {
    width: 100%;

    min-height: 90px;

    padding: 13px;

    border: 1px solid var(--borda);
    border-radius: 8px;

    outline: none;

    resize: vertical;
}

#maiola-pesquisa textarea:focus {
    border-color: var(--azul);
}

@media (max-width: 767px) {

    #maiola-pesquisa .mp-nps {
        grid-template-columns: repeat(6, 1fr);
    }

}