.ts-promotional-block{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    min-height: 443px;
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 16px;
    color: #fff;
    padding: 0px 24px;
  }
  .ts-promotional-block::before{
    content: "";
    top: 0;
    left: 0;
    right: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.015);
    position: absolute;
    z-index: 2;
  }
  
  .ts-promotional-block .img-avatar{
    width: 64px;
    height: 64px;
    border-radius: 100%;
    overflow: hidden;
  }
  
  
  .ts-promotional-block .content-wrapper{
    position: relative;
    z-index: 3;
  }
  
  /* Marquee styles */
  .marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    font-size: 36px;
    font-weight: 600;
    opacity: .15;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .marquee__content {
      animation-play-state: paused !important;
    }
  }
  
  .enable-animation .marquee__content {
    animation: scroll 10s linear infinite;
  }
  
  .marquee--reverse .marquee__content {
    animation-direction: reverse;
  }
  
  
  
  .marquee--fit-content {
    max-width: fit-content;
  }
  
  .marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .enable-animation .marquee--pos-absolute .marquee__content:last-child {
    animation-name: scroll-abs;
  }
  
  @keyframes scroll-abs {
    from {
      transform: translateX(calc(100% + var(--gap)));
    }
    to {
      transform: translateX(0);
    }
  }
  
  .ts-promotional-block .marquee-ab-top{
    position: absolute;
    top: 0px;
    left: 0x;
  }
  .ts-promotional-block .marquee-ab-bottom{
    position: absolute;
    bottom: 0px;
    left: 0x;
  }
  
  .ts-promotional-block .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ts-promotional-block .content-wrapper .brand-name{
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 10px;
  }
  .ts-promotional-block p{
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5rem;
  }
  .ts-promotional-block .text{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5rem;
  }
  
  .w-fit-content{
    width: fit-content;
  }
  
  .ts-btn.btn-light.outline{
    border-color: #fff;
    color: #fff;
  }
  
  .marquee__content > * {
    flex: 0 0 auto;
    color: #fff;
    margin: 2px;
    padding: 1rem 2rem;
    text-align: center;
  }