.potencia-venda {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.icon-bolt {
    border-radius: 50%;
    background-color: #7d2eff;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.icon-bolt:after {
    content: " ";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #7d2eff;
}

.icon-bolt img {
    width: 40px;
}

.container-bar {
    width: 70%;
    position: relative;
    left: -5px;
    background-image: linear-gradient(to right, #fcce00, #fcce00, #d56511);
    border-radius: 0 60px 60px 0;
}

.bar-volt {
    height: 1.8em;
    width: 85%;
    position: relative;
    left: 15%;
    display: flex;
    align-items: center;
    animation: grow_volt 1s linear;
}

.value-power {
    position: absolute;
    top: -35px;
    color: #7d2eff;
    font-weight: bold;
    font-size: 1.25em;
    transform: translate(-50%);
    -webkit-font-smoothing: antialiased;
}

.value-power-display {
    height: 45px;
    min-width: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: #ff9400;
    position: relative;
    transform: translate(-50%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    font-size: 0.750em;
}
