/**
* 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.
*/
.aumodal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    opacity: 0.5;
}

#auModal.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1050;
    width: 100%;
    height: 100%;
    margin: 5% auto;
}
/* @media (min-width: 576px) {
    #auModal.modal {
        width: 90%;
    }
}
@media (min-width: 1023px) {
    #auModal.modal {
        width: 40%;
    }
} */

#auModal .modal-content{
    border: unset;
    background-color: white;
}

#auModal .btn {
    border-radius: calc(.3rem - 1px);
}

#auModal .modal-footer {
    text-align: center;
    padding-bottom: 1rem;
}

#auModal .modal-body {
    text-align: center;
    padding: 1rem;
}

#auModal label {
    float: left;
    font-weight: 400;
}

#auModal .modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

#auModal .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

@media (max-width: 768px) {
    #auModal .btn{
        margin-top: 0.8rem;
    }
}

#auModal .close {
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
#auModal .form-control{
    border: 1px solid #cbc6c6;
    border-radius: 0.3rem;
}

article.product-miniature:has(meta.product-to-hide) {
  display: none !important;
}
