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

.coupon-container {
    background: #f0ede8;
    border-radius: 5px;
    padding: 30px 30px 20px;
    margin-bottom: 20px;
}

.coupon-type {
    font-family: 'GroteskPro-Bold';
    font-size: 14px;
    color: #000;
    opacity: 25%;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.coupon-text {
    font-family: 'GroteskPro-SemiBold';
    font-size: 34px;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    line-height: normal;
}

.coupon-details {
    font-family: 'GroteskPro-SemiBold';
    font-size: 12px;
    color: #000;
    margin-top: 20px;
    text-align: center;
}

.white-separator {
    border-bottom: 1px solid #fff;
    margin-top: 20px;
}

.coupon-code {
    text-align: center;
    background: #fff;
    border-radius: 5px 0 0 5px;
    border: 1px solid #000;
    font-family: 'GroteskPro-Bold';
    font-size: 24px;
    letter-spacing: 2px;
    height: 50px;
    color: #000;
}

.coupon-copy-btn {
    border: 1px solid #000;
    border-radius: 0 5px 5px 0;
    text-align: center;
    background: #000;
    color: #fff;
    height: 50px;
    font-family: 'GroteskPro-Bold';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.coupon-shop-btn {
    padding: 14px 0;
    font-family: 'GroteskPro-Bold';
    font-size: 18px;
    text-transform: capitalize;
}

.coupon-container .cm-btn {
    padding: 0;
}

@media (min-width: 768px) {
    .white-separator {
        margin: 0;
    }

    .coupon-type, 
    .coupon-text, 
    .coupon-details {
        text-align: left;
    }
}