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

body#checkout .payment-option-warnings .alert-warning {
    margin-top: 0rem;
    margin-left: 25px;
    -moz-border-radius: 0px 0px 15px 15px;
    -webkit-border-radius: 0px 0px 15px 15px;
    border-radius: 0px 0px 15px 15px;
}

#lcagreedpayment-custom-radio {
    cursor:pointer;
}

#lcagreedpayment-custom-radio .custom-radio.forbidden:before {
   /* pintado completo sin usar el circulo previo, solapa dibujo
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    top: 0px;
    left: 0px;
    border: 2px solid red;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;*/

    content: ''; 
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;


}
#lcagreedpayment-custom-radio .custom-radio.forbidden:after {
    content: '';
    position: absolute;
    height: 14px;
    width: 2px;
    top: calc(50% - 7px);
    left: calc(50% - 1px);
    background: red;
    transform: rotate(135deg);
    transform-origin: center center; 
}
#lcagreedpayment-custom-radio .custom-radio.forbidden {    
    border: 2px solid red
}


#lcagreedpayment-custom-radio .forbidden {
    cursor: not-allowed;
}