/**
* 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.
*/
.perso_disabled {
    cursor: not-allowed;
    opacity: .65;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.perso_add {
    position: relative;
    text-transform: initial;
    font-weight: 400;
    font-size: 16px;
    /* padding: 10px 20px 10px 44px; */
    line-height: 14px;
    height: 40px;
    color:white;
    /* background: #1b82d6; */
    /* border-color: #1b82d6; */
}

#option-blockcart-modal {
    color: #232323;
}
#option-blockcart-modal .modal-dialog {
    max-width: 1140px;
    width: 100%;
}
#option-blockcart-modal .modal-header {
    background: #fff;
}
#option-blockcart-modal .modal-header .close {
    opacity: 1;
}
#option-blockcart-modal .modal-title {
    color: #353943;
    font-size: 1rem;
    font-weight: 400;
}
#option-blockcart-modal .modal-title i.material-icons {
    margin-right: 1.875rem;
    color: #4cbb6c;
}
#option-blockcart-modal .modal-body {
    background: #fff;
    padding: 3.125rem 1.875rem;
}
#option-blockcart-modal .divide-right {
    border-right: 1px solid #dbdbdb;
}
#option-blockcart-modal .product-image {
    width: 100%;
    max-width: 9.375rem;
    display: block;
    margin: 0 0 0 auto;
}
#option-blockcart-modal .product-name {
    color: #2fb5d2;
    font-size: 1.125rem;
}
#option-blockcart-modal .modal-body .divide-right span {
    display: inline-block;
    margin-bottom: .3125rem;
}
#option-blockcart-modal .cart-content {
    padding-left: 2.5rem;
}
#option-blockcart-modal .cart-content p.cart-products-count {
    font-size: 1rem;
    color: #6c868e;
    font-weight: 600;
}
#option-blockcart-modal .cart-content p {
    color: #363a42;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 .5rem;
}
#option-blockcart-modal .cart-content .cart-content-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
#option-blockcart-modal .cart-content .cart-content-btn .btn {
    white-space: inherit;
}
#option-blockcart-modal .cart-content .btn {
    margin-bottom: .625rem;
}
#option-blockcart-modal .cart-content .cart-content-btn button {
    margin-right: .9rem;
}
@media (max-width: 991px) {
    #option-blockcart-modal .modal-dialog {
        width: calc(100% - 20px);
    }
    #option-blockcart-modal .modal-body {
        padding: 1.875rem;
    }
    #option-blockcart-modal .product-image {
        width: 100%;
        display: block;
        max-width: 15.63rem;
        margin: 0 auto .9375rem;
    }
    #option-blockcart-modal .product-name, #product-availability {
        margin-top: .625rem;
    }
    #option-blockcart-modal .cart-content {
        padding-left: 0;
    }
}

.elecs:hover:after {
    position: absolute;
    content: attr(title);
    display: inline-block;
    /* left: 0px;
    top: 0px; */
    left: -5px;
    padding: 5px;
    background-color: black;
    color: white;
}

.custom_input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .25);
    padding: 5px 5px;
    outline: none;
}

.custom_nl {
    text-align: right;
    padding: 5px 10px 0 0;
    margin:0 0 9px 0;
}

/* loader */
.loader {
    position: absolute;
    top: 30%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid red;
    border-bottom: 16px solid red;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 99;
}
    
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}