.fl-responsive-video {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.fl-responsive-video__link {
  display: block;
  width: 100%;
}

.fl-responsive-video__media {
  width: 100%;
  height: auto;
  display: block;
}


    .shine-on {
      position: relative;
      overflow: hidden;
      border: 3px solid transparent;
      border-radius: 10px;
      z-index: 1;
    }
    .shine-on:before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      border-radius: 10px;
      background: linear-gradient(
        90deg,
        rgba(128, 0, 128, 0) 0%,
        rgba(242, 232, 242, 0.85) 50%,
        rgba(128, 0, 128, 0) 100%
      );
      z-index: -1;
      animation: shine-move 2s linear infinite;
    }

    @keyframes shine-move {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
