:root {
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
}

.prod-detail {
    background: var(--gelo);
    width: 100%;
    height: 450px;
    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;
}

#precopromo-detalhe{
    margin-left: 10px;
    font-size: 30px;
}

#imagem-detalhe{
    width: 100%;
    height: 100%;
}

.riscado{
    display: none;
}

.buttons-top a {
    width: 40px;
    height: 40px;
    background-color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto);
    border: 1px solid var(--gelo);
    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: 10;
}

.line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
}

.line b{
    font-size: 20px;
}


.promo-btn {
    display: none; /* ISSO DEIXA O BOTÃO INVISIVEL */
    width: 30%;
    background: #ef4d4d;
    border-radius: 8px;
    border: none;
    padding: 10px;
    color: var(--branco);
}

.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(--verde);
}

.color-gray{
    color: gray;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px 5px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

th{
    background-color: #ebebeb;   
}

.flex40{
    flex: 40%;
}

.flex60{
    flex: 60%;
}

.riscado{
    text-decoration: line-through;
}

.pricing{
    font-weight: 800;
    font-size: 22px;
}

.add-cart {
    width: 90%;
    height: 50px;
    border-radius: 15px;
    border: none;
    background-color: var(--verde);
    color: var(--branco);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
}

.toolbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--verde);
    z-index: 99;
}

.toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.description-container {
    background: var(--branco);
    border: 2px solid var(--cinza-claro);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.description-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.like-detalhe{
    display: none;
}

.star {
    color: gold;
    font-size: 24px;
    margin-right: 2px;
}
