/**
 *
 * 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
 *
 * @author    Enzo
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

 #discount-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #discount-popup-container {
    position: relative;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  #discount-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
  
  #discount-popup-close:hover {
    color: #333;
  }
  
  .discount-popup-content h2 {
    margin-top: 0;
    color: #72D66F;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .discount-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
  }
  
  #discount-code {
    display: inline-block;
    background-color: #f6f6f6;
    padding: 10px 15px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  #copy-discount-code {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  #copy-success-message {
    color: #4caf50;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .discount-popup-hidden {
    display: none !important;
  }
  
  .hidden {
    display: none;
  }
  
  .discount-description {
    margin-bottom: 15px;
    text-align: center;
  }
  
  .discount-expiry {
    font-size: 13px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
  }