/*
    ESTILIZAÇÕES PLAYER CBN
*/

.player-container *{
    display: flex;
}

.player-container {
    max-height: 400px;
    height: 100%;
    border-radius: 5px;
    /* background-image: url('https://s2-g1.glbimg.com/0NywVqRha19jx8Z-O4ao-waPjv0=/0x0:4608x3072/1008x0/smart/filters:strip_icc()/i.s3.glbimg.com/v1/AUTH_59edd422c0c84a879bd37670ae4f538a/internal_photos/bs/2019/R/e/QwuAjqTByMkUdBgXbrzg/9.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
}

.player-title {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid white;
}

.player-body {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    align-items: center;
}

.player-live-badge {
    padding: 20px 0;
    justify-content: center;
    align-items: center;
}
.live-badge {
    width: 120px;
    padding: 10px 10px;
    font-weight: 500;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    background-color: red;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
}

.player-radio-name h2{
    font-weight: 700;
}

.player-camera, .player-phone {
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.player-camera img, .player-phone img {
    filter: brightness(0) invert(1);
    width: 50px;
    height: 50px;
}

.player-radio-options {
    gap: 20px;
}

@media (max-width: 995px) {
    .player-container {
        margin: 10px auto;
    } 
}
@media (max-width: 289px) {
    .player-radio-name h5 {
      font-size: 12px;
    } 
}

@media(max-width: 300px) {
    .player-description {
        display: none;
    }
}