#sp_checkout_body #listado_productos{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

#sp_checkout_body .producto{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: var(--sp_checkout_color_blanco);
    gap: 24px;
    border-radius: 0px;
    padding: 16px;
    position: relative;
    box-shadow: 12px 8px 18px 0px #00000014;
}

#sp_checkout_body .producto:after{
    content: none;
}

#sp_checkout_body .producto .imagen{
    width: 110px;
    margin-right: 40px;
}


#sp_checkout_body .producto .imagen img{
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0px;
}


#sp_checkout_body .producto .informacion{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}


#sp_checkout_body .producto .informacion .nombre_peso{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
    color: var(--sp_checkout_color_negro);
}


#sp_checkout_body .producto .informacion .nombre{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}


#sp_checkout_body .producto .informacion .peso{
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}


#sp_checkout_body .producto .detalles{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#sp_checkout_body .producto .precio{
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0px;
    height: 100%;
}


#sp_checkout_body .producto .precio_anterior{
    font-size: 18px;
    font-weight: 400;
    color: var(--sp_checkout_color_gris_medio);
}


#sp_checkout_body .producto .precio_final{
    font-size: 24px;
    font-weight: 700;
    color: var(--sp_checkout_color_negro);
}


#sp_checkout_body .producto .precio_por_unidad{
    font-size: 14px;
    color: var(--sp_checkout_color_gris_medio);
    text-align: right;
}


#sp_checkout_body .producto .quitar_producto{
    position: absolute;
    top: 16px;
    right: 16px;
}


#sp_checkout_body a.remove {
    width: 32px;
    height: 32px;
}


#sp_checkout_body #acciones_carrito{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
}


#sp_checkout_body .cantidad{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}


#sp_checkout_body .return-to-shop a.wc-backward{
    max-width: 260px!important;
    text-align: center!important;
}


@media screen and (max-width:768px){
    #sp_checkout_body #acciones_carrito{
        flex-direction: column!important;
        margin: auto!important;
        max-width: 330px!important;
    }


    #sp_checkout_body .producto {
        flex-wrap: wrap!important;
        gap: 12px!important;
        padding: 16px 10px!important;
    }


    #sp_checkout_body .producto .imagen {
        width: 100%!important;
        margin-right: 0px!important;
    }


    #sp_checkout_body .producto .imagen img {
        width: 30%!important;
        aspect-ratio: 1!important;
    }


    #sp_checkout_body .producto .informacion {
        width: calc(50%)!important;
        gap: 10px!important;
    }

    #sp_checkout_body .producto .informacion {
        width: calc(50%)!important;
        gap: 10px!important;
    }

    #sp_checkout_body .producto .cantidad {
        gap: 10px!important;
    }
}

@media screen and (max-width:424px){
    #sp_checkout_body .producto {
        flex-direction: column;
    }

    #sp_checkout_body .producto .detalles{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    #sp_checkout_body .cantidad {
        justify-content: center;
    }

    #sp_checkout_body .producto .informacion .nombre {
        text-align: center;
    }

    #sp_checkout_body .producto .imagen {
        text-align: center;
    }

    #sp_checkout_body .producto .informacion {
        width: calc(100%) !important;
    }
}

.txt_impuestos{
    font-size: 12px!important;
}
