/**
* 2007-2021 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-2021 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.
*/
.CouponBox {
    display: flex;
    flex-direction: column;
    background: #f2f2f2;
    padding: 1rem;
    border-radius: 25px;
    margin-bottom: 20px;
}
.CouponBoxForm {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.chargeBox {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 25px;
    padding: 1rem;
}

.BtnCharge {
    border: #07c774;
    border-radius: 5px;
    background: #07c774;
}

.chargeBox span {
    width: 50%;
    text-align: center;
    font-size: 16px;
}

.CouponBox form {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
}

.CouponCharge {
    position: relative;
}

.CouponCharge input {
    border: 1px solid #07c774;
    border-radius: 5px;
    height: 32px;
    padding: 2px 10px;
}

span.CurrencyPriceCharge {
    display: flex;
    justify-content: center;
    left: 0;
    height: 32px;
    position: absolute;
    top: 0;
    padding: 0 3px;
    align-items: center;
    background: #f2f2f2;
    border-radius: 5px 0 0 5px;
    border: 1px solid #07c774;
    border-right: 0;
}


.HistoryCoupon {
    flex-direction: column;
    display: flex;
    padding: 1rem;
    border-radius: 5px;
}

.HeaderHistoryCoupon {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    background: #07c774;
    color: #fff;
}

.HeaderHistoryCoupon span {
    width: 50%;
    text-align: center;
    border: 1px solid #07c774;
}

.RowHistoryCoupon span ,.HeaderHistoryCoupon span {
    text-align: center;
    width: 50%;
    height:40px;
    border: 1px solid #07c774;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.RowHistoryCoupon {
    display: flex;
    justify-content: space-between;
}

.RowHistoryCoupon.ChargeCP {
    background: #e7fff5;
}

.RowHistoryCoupon.DeChargeCP {
    background: #ffe9f2;
}
