:root{
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
    --vermelho: #a10f0f;
}

.prod-detail{
    background: var(--gelo);
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.prod-detail img{
    max-width: 400px;
}

.buttons-top{
    display: flex;
    width: 100%;
    position: absolute;
    top: 20px;
    justify-content: space-between;
    align-items: center;
}

.buttons-top a{
    width: 40px;
    height: 40px;
    background-color: var(--branco);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto);
    border: 1px solid;
    font-size: 18px;
}

.buttons-top a:first-child {
    margin-left: 20px;
    margin-right: auto;
}

.buttons-top a:last-child {
    margin-right: 20px;
    margin-left: 5px;
}

.prod-content{
    margin-top: -50px;
    background: var(--branco);
    border-top-right-radius:20px ;
    border-top-left-radius:20px ;
    position: relative;
    z-index: 99;
}

.line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
}

.line b{
    font-size: 20px;
}



.btn-rates {
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    padding: 5px 10px;
    background: none;
    margin-right:  5px;
    width: 80px;
    font-size: 16px;
} 

.ri-thumb-up-fill{
    color: var(--vermelho);
}

.color-grey{
    color: rgb(66, 9, 9);
}

table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,td{
    padding: 1px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
th{
    background-color: #ddd;
}

.flex-40{
    flex:40%;

}

.flex-60{
    flex: 60%;
}

.riscado{
    text-decoration: line-through;
}

.princing{
    font-weight: 800;
    font-size: 22px;
}

.add-cart{
    width: 90%;
    height: 50px;
    border-radius: 15px;
    border: none;
    background-color: var(--vermelho);
    color: var(--branco);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800
    ;
}

.flex-100{
    flex: 1;
    text-align: center;
}