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

@media screen and (max-width: 991px){
  .payment-primary {
    margin-left: 0;
    margin-right: 0;    
  }
}

.payment-primary .payment_module {
    border-radius: 10px;
    border: 1px solid #D1D3D4;
    padding: 10px;  
    
}

.payment-primary .payment-primary-header {
   text-align: center; 
   text-transform:none;
   font-weight: bold;
}

.payment-primary .payment-primary-header img{
    width: 30px;
}

.payment-primary .card-button {
   font-size: 18px;
   text-align: center;
   background-color: #26A86D;
   margin: auto;
   text-transform: uppercase;
   color: #FFF;
   font-weight: bold;
   padding: 10px 12px;
   display: block;
   width: 80%;
}

.payment-primary .card-button-apple {
  background-color: #000; /* Apple style : noir intense */
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 200;
  border: none;
  padding: 10px 12px;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block;
  width: 80%;
  margin: 10px auto;
  text-align: center;
}

.payment-primary .card-button:hover, .payment-primary .card-button-apple:hover {
    text-decoration: none;
}

.payment-primary .other-payments-method {
    display: block;
    width: 80%;
    text-align: center;
    margin:10px auto;
    color:#000;
    font-style: italic; 
}

.payment-primary .payment_module .payment-primary-description {
    text-align: center;
    width: 50%;
    margin:15px auto;
}



