.containera {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    gap: 20px;
    padding: 10px;
  }
  .video-player {
    flex: 3;
  }
  .ad-box {
    flex: 1;
    border: 1px solid #eee;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  :root {
    --plyr-color-main: #FDA41A;
  }
  @media (max-width: 768px) {
    .containera {
      flex-direction: column;
    }
    .ad-box {
      height: auto;
    }
  }
  .pill{background-color: #fff; text-decoration: none;}