.npsMeter {
    border: 1px solid #F8F8FA;
    width: 220px;
    padding: 15px 19px 22px 19px;
    background: #F8F8FA;
    border-radius: 5px;
    text-align: center;
    margin: 0px auto;
}

.entrpriseDashboard .npsMeter {
    background: none;
    border: 0px;
    width: 260px;
    height: 260px;
}

.entrpriseDashboard .detractorsWrapper,
.entrpriseDashboard .promotersWrapper {
    font-size: 12px;
    margin-top: 5px;
}

.entrpriseDashboard .scaleLeft,
.entrpriseDashboard .scaleRight {
    font-size: 12px;
    margin-top: -10px;
}

.entrpriseDashboard .scaleLeft {
    float: left;
    margin-left: 7px;
}

.entrpriseDashboard .scaleRight {
    float: right;
    margin-right: 2px;
}

.entrpriseDashboard .detractorsWrapper {
    color: #FF1257;
    float: left;
    margin-left: -16px;
}

.entrpriseDashboard .promotersWrapper {
    color: #60BA94;
    float: right;
    margin-right: -14px;
}

.entrpriseDashboard .detractorsWrapper b,
.entrpriseDashboard .promotersWrapper b {
    font-size: 18px;
}


.npsMeter.npsMeterRight {
    float: right;
}

.npsMeter.npsMeterBottom {
    display: none;
}

.npsMeter .meter {
    margin-bottom: 14px;
    margin-top: 12px;
    position: relative;
}

.npsMeter .npsMeterTitle {
    font-weight: 600;
    font-size: 15px;
    line-height: 123.1%;
    text-align: center;
    color: #000000;
}

.npsMeter p {
    font-weight: normal;
    font-size: 15px;
    line-height: 123.1%;
    text-align: center;
    color: #000000; 
    margin: 0px;
}

.npsMeter .percent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    color: #60BA94;
    font-weight: 700;
    font-size: 30px;
}

.npsMeter .percent span {
    font-size: 20px;
    font-weight: 900;
}

.npsMeter .meter .meterGraph {
    position: relative;
    width: 180px;
    height: 90px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-left: 0px;
    overflow: hidden;
    padding-right: 180px;
}

.entrpriseDashboard .npsMeter .meter .meterGraph {
    width: 220px;
    height: 110px;
    padding-right: 220px;
}

.npsMeter .meter .meterGraph::before,
.npsMeter .meter .meterGraph::after {
    position: absolute;
}

.npsMeter .meter .meterGraph::before {
    content: '';
    width: inherit;
    height: inherit;
    border: 15px solid #E8E8E8;
    border-bottom: none;
    border-top-left-radius: 175px;
    border-top-right-radius: 175px;
}

.entrpriseDashboard .npsMeter .meter .meterGraph::before {
    border: 24px solid #60BA94;
    border-bottom: none;
}

.npsMeter .meter .meterGraph::after {
    content: '';
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: bold;
    color: cadetblue;
}

.npsMeter .meter .meterGraph li {
    position: absolute;
    top: 100%;
    width: inherit;
    height: inherit;
    border: 15px solid;
    border-top: none;
    border-bottom-left-radius: 175px;
    border-bottom-right-radius: 175px;
    transform-origin: 50% 0;

    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: linear;

    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.entrpriseDashboard .npsMeter .meter .meterGraph li {
    border: 25px solid; 
    border-top: none;
}

.npsMeter .meter .meterGraph li:nth-child(1) {
    z-index: 4;
    border-color: #60BA94;
    animation-name: rotate-one;
}

.entrpriseDashboard .npsMeter .meter .meterGraph li:nth-child(1) {
    border-color: #FF1257;
}

@media only screen and (max-width: 768px) {
    .npsMeter.npsMeterRight {
        display: none;
    }

    .npsMeter.npsMeterBottom {
        display: block;
        float: none;
        margin-top: 20px;
        width: unset;
    }

    .npsMeter.npsMeterBottom .meterGraph {
        margin: 0px auto;
    }
}