/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * 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.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * 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.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
.ldbanner_container {
  width: 100%;
}
.ldbanner_container.notFullscreen {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.ldbanner_container #ldbanner {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: block;
}
.ldbanner_container #ldbanner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(to right, var(--ldbgcolor), transparent);
  z-index: 1;
}
.ldbanner_container #ldbanner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(to left, var(--ldbgcolor), transparent);
  z-index: 1;
}
.ldbanner_container #ldbanner .ldbanner_tick {
  min-width: 100%;
  height: 100%;
  white-space: nowrap;
}
.ldbanner_container #ldbanner .ldbanner_tick .ldbanner_content {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ldbanner_container .ldbanner_countdown {
  display: inline-flex;
  gap: 2px;
  margin-left: 8px;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
}
.ldbanner_container .ldbanner_countdown div {
  display: inline-block;
  padding: 3px 6px;
  background: var(--ldcolor);
  color: #fff;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}
.ldbanner_container .ldbanner_button {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 2px;
  font-size: 90%;
  margin-left: 8px;
  background-color: var(--ldcolor);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.ldbanner_container .ldbanner_countdown_before {
  margin-left: 64px;
}
.ldbanner_container .ldbanner_content_hidden {
  display: none;
}
.ldbanner_container.ldbanner_fixed {
  position: fixed;
  z-index: 999999999;
  top: 0;
}
