/*
|--------------------------------------------------------------------------
| Review Box - Frontend Style
|--------------------------------------------------------------------------
*/


.rb-review-box {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 35px;

    margin-top: 45px;

    margin-bottom: 30px;

    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;

}



/*
|--------------------------------------------------------------------------
| Parte sinistra
|--------------------------------------------------------------------------
*/


.rb-review-main {

    flex: 1;

}



.rb-review-title {

    font-size: 22px;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 30px;

    line-height: 1.2;

}




.rb-review-row {

    display: flex;

    align-items: center;

    gap: 20px;

}



.rb-review-left {

    flex: 1;

}



.rb-review-label {

    font-size: 18px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 12px;

}




/*
|--------------------------------------------------------------------------
| Barra
|--------------------------------------------------------------------------
*/


.rb-bar-container {

    width: 100%;

    height: 14px;

    background: #dddddd;

    overflow: hidden;

}



.rb-bar {

    height: 100%;

    width: 0;

    transition: width 1.5s ease;

}





.rb-score-small {

    font-size: 24px;

    font-weight: 800;

    min-width: 55px;

    text-align: right;

}





/*
|--------------------------------------------------------------------------
| Box voto grande
|--------------------------------------------------------------------------
*/


.rb-final-score {

    width: 170px;

    height: 170px;

    flex-shrink: 0;

    border: 7px solid;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: transparent;

}




.rb-score-number {

    font-size: 68px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;

}



.rb-score-text {

    margin-top: 8px;

    font-size: 12px;

    font-weight: 700;

    text-align: center;

    text-transform: uppercase;

}



/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/


@media (max-width: 768px) {


    .rb-review-box {

        flex-direction: column;

        padding: 25px;

        gap: 30px;

    }



    .rb-review-title {

        font-size: 20px;

    }



    .rb-final-score {

        width: 140px;

        height: 140px;

    }



    .rb-score-number {

        font-size: 55px;

    }


}