#top-channels {
    margin-bottom: 24px;
    /*display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;*/
    /*overflow-x: auto;*/
    /*width: 100%;*/
    /*height: 490px;*/
    /*overflow: hidden;*/
}

#top-channels a:hover {
    text-decoration: none;
}

#top-channels .channel-item{
    transition: all 300ms;
}

#top-channels a:hover .channel-item{
    background: rgba(0, 0, 0, 0.80);
}

#top-channels .swiper-wrapper {
    /*display: flex;*/
}

#top-channels .channel-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    padding: 24px;
    height: 212px;
}

#top-channels .channel-item-logo {
    text-align: center;
    border-bottom: 1px solid rgba(62, 85, 162, 0.70);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

#top-channels .channel-item-logo img {
    width: 100px;
    height: 100px;
    transform: translateZ(0);
}

#top-channels .channel-item-content {
    display: flex;
}

#top-channels .channel-item-artwork {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    border-radius: 4px;
    object-fit: cover;
}

#top-channels .channel-item-info {
    color: #fff;
    font-size: 12px;
}

#top-channels .channel-item-onair {
    color: red;
    margin-bottom: 8px;
}

#top-channels .channel-item-artist {
    margin-bottom: 4px;
}

#top-channels .channel-item-artist, #top-channels .channel-item-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 75px;
}

#top-channels .channel-item-artist, #top-channels .channel-item-title, #top-channels .channel-item-artwork {
    background: linear-gradient(90deg, rgba(188, 187, 187, .8), rgba(107, 107, 107, .8));
    border: none;
}

#top-channels .channel-item-onair-on {
    display: none;
}

@media screen and (max-width: 576px) {
    #top-channels {
        margin-bottom: 8px;
    }

    #top-channels .channel-item-logo img {
        width: 70px;
        height: 70px;
    }

    #top-channels .channel-item-artist, #top-channels .channel-item-title {
        max-width: 150px;
        font-size: 12px;
        height: 15px;
    }

    #top-channels .channel-item {
        height: 60px;
    }

    #top-channels .channel-item-logo {
        display: none;
    }

    #top-channels .channel-item-onair-on-label, #top-channels .channel-item-onair-on {
        display: inline;
    }
}


@media screen and (max-width: 320px) {
    #top-channels .channel-item-onair-on-label, #top-channels .channel-item-onair-on {
        display: block;
    }
}