
.pointer{
    width: 9px;
    height: 9px;
    background-color: #D51C17;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    opacity: 1;
    animation: aovivo 2s infinite;
}
@keyframes aovivo {
    0% {
      background-color: #c7c7c7;
    }
  
    50% {
      background-color: #D51C17;
    }
  
    100% {
      background-color: #c7c7c7;
    }
  }
.aovivo-massa{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-height: 200px;
    gap: 30px;
    padding: 20px;
}
.aovivo-player{
    position: relative;
    width: 280px;
    height: 160px;
    box-shadow: 0px 15px 20px #0000000D;
    border-radius: 5px;
    background-color: #868686;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aovivo-player iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.aovivo-player button{
    position: relative;
    background-color: #D51C17;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aovivo-player button img{
    width: 14px;
    height: 14px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(62deg) brightness(104%) contrast(105%);
}
.aovivo-content{
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #ffffff;
}
.aovivo-massa h2{
    font-weight: "Poppins-Bold";
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.13px;
    text-shadow: 0px 5px 10px #0000000D;
    color: #FFFFFF;
}
.onAir{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.02px;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color: #FFFFFF;
    width: fit-content;
    padding: 5px 8px;
    gap: 9px;
}

@media (max-width: 590px) {
    .aovivo-massa{
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
        padding: 37px 20px;
        max-height: 100%;
    }
    .aovivo-player{
        width: 320px;
        height: 183px;
    }
    .aovivo-content{
        align-items: center;
        justify-content: center;
    }
}