@-webkit-keyframes marquee {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }
  @keyframes marquee {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }
  .b-marquee-line__flow {
    background: #f0f0f0;
    font-size: 0;
    line-height: 0;
    height: calc(100dvw / 1440 * 81) !important;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .b-marquee-line__flow-in {
    display: block;
    height: calc(100dvw / 1440 * 81) !important;
  }
  .cssanimations .b-marquee-line__flow-in {
    width: 200%;
    position: absolute;
    overflow: hidden;
    -webkit-animation: marquee 10s linear infinite;
    animation: marquee 10s linear infinite;
  }
  .b-marquee-line__flow-block {
    white-space: nowrap;
  }
  .no-cssanimations .b-marquee-line__flow-block:last-child {
    display: none;
  }
  .cssanimations .b-marquee-line__flow-block {
    white-space: nowrap;
    float: left;
    width: 50%;
  }
  .b-marquee-line__flow-item {
    height: calc(100dvw / 1440 * 81) !important;
    width: calc(100dvw / 1440 * 260) !important;
    margin-left: calc(100dvw / 1440 * 20) !important;
  }