
.pricing-table-top {
    position: relative;
}

 
.performance-gradient {
    display: block;
    background: rgb(255,177,67);
    background: linear-gradient(190deg, rgba(255,177,67,1) 10%, rgb(12, 137, 171) 50%, rgb(0, 180, 6) 100%);
    width: 100%;
    height: 17px;
    font-size: 13px;
    line-height: 1em;
    font-style: italic;
    opacity: .5;
    transition-duration: 2s;
    padding: 2px;
}

.performance-gradient:hover {
    opacity: 1;
    transition-duration: .5s;
}

.performance-gradient:before {
    content: '◄ Fast, Light, Less Support ';
    float: center;
    width: 39%;
    color: white;
    text-align:right;
}

.performance-gradient:after {
    content: 'Faster, More Optimized, More Competitive, More Support ►'; 
    float: right;
    text-align:left;
    width: 59%;
    color: white;
}

@media(max-width: 980px) {
    .performance-gradient {
        display: none;
    }
}