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

/**
* @TODO : Inherit all to be sure there won't be any theme override
*/
/* #countdown * {
    all: inherit;
} */
#countdown {
    margin: 10px auto;
    position: sticky;
    top: 0;
}
#countdown.ps17 {
    z-index: 20;
}
#countdown.ps16 {
    z-index: 9999999999;
}
#countdown .container.ps16 {
    padding: 10px;
}
#countdown .container {
    background-color: white;
    padding-top: 12px;
    padding-bottom: 10px;
    position: relative;
}
#countdown p {
    margin: 0;
}
#countdown .countdown-btn {
    cursor: auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: block;
    min-width: 188px;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    margin-bottom: 0;
}
#countdown .offer-poppromo {
    margin-right: 18px;
    display: inline-block;
    float: left;
    margin-top: 10px;
}
#countdown .countdown-timer {
    width: fit-content;
    display: inline-block;
    min-width: 100px;
}
#countdown .countdown-timer .countdown-numbers {
    font-size: 22px;
}
#countdown .countdown-timer .countdown-def {
    font-size: 9px;
}
#countdown .countdown-discount,
#countdown .countdown-amount {
    float: left;
    margin-right: 1%;
}
#countdown .countdown-time {
    float: right;
    margin-right: 25px;
}
#countdown .countdown-amount {
    margin-top: 8px;
}
#countdown .countdown-amount,
#countdown .countdown-time {
    padding-top: 0px;
}
#countdown .countdown-amount a {
    text-decoration: none;
    color: inherit;
}
#countdown .countdown-timer .countdown-numbers div,
#countdown .countdown-timer .countdown-def div {
    width: 40px;
    float: left;
    white-space: nowrap;
}
#countdown .countdown-timer .countdown-def div {
    line-height: 16px;
}
#countdown .close-banner span {
    position: absolute;
    right: 10px;
    top: 25%;
    border: 1px solid #fff;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 1;
}
#countdown .close-banner span.ps16 {
    border: 0;
    border-radius: 50% !important;
}
#countdown .close-banner span:hover {
    opacity: 0.4;
    transition: opacity 0.3s;
}
#countdown .fa-window-close::before {
    content: "\f057";
    display: block;
    font-family: "FontAwesome";
    font-size: 25px;
    line-height: 25px;
}

@media screen and (min-width: 769px) {
    #countdown .countdown-informations,
    #countdown .countdown-time {
        display: block !important;
    }
}

@media screen and (max-width: 768px) {
    #countdown .container {
        min-height: 100px;
    }
    #countdown .countdown-time {
        display: none;
        width: 100%;
        text-align: center;
        float: none;
        margin-top: 1em;
    }
    #countdown .countdown-time .countdown-timer div{
        text-align: left;
    }
}
