@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
.video-playerConmebol24 {
    width: 100%;
    margin: 0 auto;
    background: #004D9E;
    border-radius: 15px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }
  
  .video-remoteConmebol24 {
    width: 20%;
    float: left;
  }
  
    .remote-buttonConmebol24 {
      display: block;text-align: center;
      margin-bottom: 2px;
      color: #FFF;
      cursor: pointer;
      padding: 1em;
      font-size: 16px;
    }
  
    /* .remote-button.current {
      background: #15528D !important;
      color: #FFF;
      cursor: default !important;
    } */
  
    .remote-buttonConmebol24:hover {
      background: #051F30;
      color: #FFF;
    }
  
  .video-holderConmebol24 {
    width: 80%;
    float: left;
  }
  
    .video-singleConmebol24 {
      opacity: 0;
      display: none;
      transition: opacity 1s;
    }
  
    .video-singleConmebol24.current {
      display: inherit;
      opacity: 1;
    }
  
    .embed-containerConmebol24 {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      max-width: 100%;
    }
  
    .embed-containerConmebol24 iframe,
    .embed-containerConmebol24 object,
    .embed-containerConmebol24 embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0 15px 15px 0;
    }
  
  @media screen and (max-width: 767px) {
    
    .video-remoteConmebol24,
    .video-holderConmebol24  {
      float: none;
      width: 100%;
    }
    
  }
  
  .clearme:after {
    content: "";
    display: table;
    clear: both;
  }