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

.product-quantity .add{
    display: none;
}
.add_preorde_prod{
    display: none;
}
.preorder{
	/*display: none;*/
}

.atc_spinner {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
     
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@media (min-width: 576px) {
  #mod_preorder .modal-dialog {
    max-width: 400px;
}  
}
.mass_succes{
    display: none;
}

.page-preorder .card-block{
    padding: 1.25rem 0rem !important;
}

.add_preorde_prod{
      position: absolute;
    top: 7px;
    z-index: 1;
    right: 13px;
}
.add_preorde_prod button{
        padding: 0.6rem;
    border-radius: 5px;
    outline: none !important;
}
.add_preorde_prod i{
        margin: 0rem !important;
}
.tit_prod_preorder{
           font-size: 22px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 19px;
}

#mod_preorder .divide-left {
    border-left: 1px solid #ededed;
}

#mod_preorder .product-name {
    color: #262626;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: normal;
}