.nps-container {
    border-radius: 38px 0px 0px 38px;
    border-top: 1px solid #B9B9B9;
    border-bottom: 1px solid #B9B9B9;
    border-left: 1px solid #B9B9B9;
    background: #D91E49;
    cursor: pointer;

    height: 66px;
    padding: 4px 10px 4px 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    right: calc(-100% + 70px);
    position: relative;
    transition: all .2s ease-in;
}

.nps-container .btn-nps {
    background: none;
    border: none;
    outline: none !important;
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: left;
}

@media (hover: hover) {
    .nps-container:hover {
        right: 0;
    }
}

@media (max-width: 768px) {
    .nps-container {
        width: 168px;
        padding: 4px 6px 4px 4px;
        height: auto;
        right: calc(-100% + 58px);
    }

    .nps-container img {
        width: 48px;
    }

    .nps-container .btn-nps {
        font-size: 12px;
    }

    .btn-nps:active {
        right: 0;
    }

    .nps-container.active {
        right: 0;
    }

}
