/**
* 2007-2025 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-2025 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.
*/

.pconfigurator-wrapper h2 {
    color: #0b63ad;
}

.pconfigurator-card {
    background: #f7f7f7;
    border-radius: 15px;
    padding: 1.75rem;
}

.pconfigurator-products {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.pconfigurator-item {
    border-bottom: 1px solid #666;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.pconfigurator-item.pconfigurator-item--placeholder {
    display: none;
}

.pconfigurator-item h3 {
    color: #0b63ad;
}

.pconfigurator-item--left {

}

.pconfigurator-item--right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
}

.pconfigurator-item__btns {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
}

.pconfigurator-item__btns .btn.active {
    color: #fff;
}

.pconfigurator-item__inputs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
}

.pconfigurator-item__inputs input {
    max-width: 140px;
}

.pconfigurator-item__inputs span {
    font-weight: 600;
}

.pconfigurator-item__options:not(.active),
.pconfigurator-item__inputs:not(.active) {
    display: none;
}

.pconfigurator-item__remove {
    position: absolute;
    top: 14px;
    right: 0;
}

.pconfigurator-item__remove button {
    font-weight: 600;
    background: none;
    border: none;
    color: #ff4c4c;
}

.pconfigurator-item__qty input {
    max-width: 60px;
}

.pconfigurator-item__price {
    font-size: 2rem;
    font-weight: 500;
    text-align: right;
    color: #0b63ad;
}

.pconfigurator-totals {
    margin-top: 1.75rem;
}

.pconfigurator-list {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

.pconfigurator-list .pconfigurator-list__item {
    line-height: 1.8;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.pconfigurator-list .pconfigurator-list__item::before {
    content: '';
    background: rgba(0, 0, 0, .15);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.pconfigurator-list .pconfigurator-list__item--lg::before {
    bottom: 16px;
}

.pconfigurator-list .pconfigurator-list__item .label {
    background: #f7f7f7;
    padding-right: 1ch;
    position: relative;
}

.pconfigurator-list .pconfigurator-list__item .value {
    font-weight: 600;
    color: #0062ae;
    background: #f7f7f7;
    padding-left: 1ch;
    position: relative;
}

.pconfigurator-list__item.pconfigurator-list__item--lg {
    font-size: 1.5rem;
    line-height: 2;
}

.pconfigurator-list__item.pconfigurator-list__item--lg .label {
    color: #0062ae;
}

.pconfigurator-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}