/**
* 2007-2022 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

/*** HOME ***/
.card.card_account.customer_dbbudget h1 {
    margin-bottom: 1rem;
}
.card.card_account.customer_dbbudget table {
    margin-top: 2rem;
    width: 100%;
}
.card.card_account.customer_dbbudget table thead {
    background-color: var(--primary_color);
    color: #FFF;
}
.card.card_account.customer_dbbudget table th,
.card.card_account.customer_dbbudget table td {
    padding: 16px;
}
.card.card_account.customer_dbbudget table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

/*** PRESUPUESTO ***/
.customer_dbbudget .num_presu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.customer_dbbudget .num_presu .presupuesto {
    font-size: 18px;
    font-weight: 700;
}
.customer_dbbudget .num_presu .fecha {
    margin-left: auto;
}
.customer_dbbudget .actions_sup {
    margin-bottom: 24px;
}
.customer_dbbudget .actions_sup .btn {
    margin-right: 8px;
}
.customer_dbbudget .info_budget {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 24px;
    border: 1px solid #E0E0E0;
}
.customer_dbbudget .info_budget > .title {
    font-size: 16px;
    font-weight: 800;
    padding: 16px;
    border-bottom: 1px solid #E0E0E0;
    width: 100%;
}
.customer_dbbudget .info_budget > .address {
    width: 70%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-right: 1px solid #E0E0E0;
}
.customer_dbbudget .info_budget .resumen {
    width: 30%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.customer_dbbudget .info_budget > .address .title,
.customer_dbbudget .info_budget > .resumen .title {
    font-weight: 700;
    margin-bottom: 16px;
}
.customer_dbbudget .info_budget > .address span,
.customer_dbbudget .info_budget > .resumen span {
    margin-bottom: 4px;
}
.customer_dbbudget .info_budget > .resumen .item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.customer_dbbudget .info_budget > .resumen .item .value {
    margin-left: auto;
}
.customer_dbbudget .info_budget > .resumen .item.total {
    margin-top: 8px;
}
.customer_dbbudget .info_budget > .resumen .item.total .name {
    font-weight: 700;
}
.customer_dbbudget .product {
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid #E0E0E0;
}
.customer_dbbudget .product:last-child {
    border-bottom: 0;
}
.customer_dbbudget .product .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.customer_dbbudget .product .content img {
    width: 100px;
    margin-right: 20px;
}
.customer_dbbudget .product .content .name {
    width: calc(35% - 20px);
    margin-right: 20px;
}
.customer_dbbudget .product .content .attributes {
    width: calc(25% - 20px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.customer_dbbudget .product .content .attributes .attribute {
    margin-bottom: 8px;
}
.customer_dbbudget .product .content .price {
    width: calc(20% - 20px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-left: auto;
}
.customer_dbbudget .product .content .price .item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.customer_dbbudget .product .content .price .item .value {
    margin-left: auto;
    margin-top: 8px;
}
.customer_dbbudget .product .totals {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #E0E0E0;
    text-align: right;
}
.customer_dbbudget .product .totals .precio {
    font-size: 18px;
    font-weight: 700;
}
.customer_dbbudget .action_bottom {
    display: flex;
    justify-content: center;
}
