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

.swiper-newsbar {
    width: 100%;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }
  .swiper-vertical {
    touch-action: pan-x;
}
.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}
.c-newsbar {
    background: var(--ap-gold-500, #B39A5A);
}
.c-newsbar-content {
    display: flex;
    flex-wrap: nowrap;
    height: 32px;
}
.c-newsbar-title {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-right: 8px;
}
.c-newsbar-title:before {
    content: '';
    width: 10000px;
    display: block;
    background: #030309;
    height: 100%;
    left: 0;
    position: absolute;
    transform: translateX(-97%);
    z-index: -1;
}
.c-newsbar-items {
    position: relative;
    z-index: 7;
    background: #b39a5a;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.c-newsbar-items:after {
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='42' viewBox='0 0 7 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 42V0L7 21L0 42Z' fill='%23030309'/%3E%3C/svg%3E%0A");
    height: 100%;
    width: 7px;
    content: '';
    left: 0;
    position: absolute;
    z-index: 99;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}
.swiper-newsbar a {
    color: var(--ap-dark-900, #030309);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    overflow: hidden;
    white-space: nowrap;
}
.swiper-newsbar-item {
    padding: 4px 16px 4px 23px;
}
@media (min-width: 768px){
    .swiper-newsbar a {
        font-size: 20px;
        line-height: 24px;
    }
}