.live-main{
    color: white;
    font-family: 'comfortaa', sans-serif;
    margin: 40px 10%;
}

.title{
    font-size: 42px;
}

.subtitle{
    font-size: 20px;
}

.live-streams{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.channel{
    max-width: 450px;
    margin-right: 20px;
    display: none;
}

.channel-box{
    display: flex;
    border-radius: 10px;
}

.channel-img{
    width: 450px;
    border-radius: 10px;
    transition: 400ms;
    transform: scale(1.05);
}

.img-box{
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    transition: 200ms;
    border-radius: 10px;
}

.img-box:hover{
    color: #4A76B6;
}

.img-box:hover .channel-img{
    transform: scale(1.2);
}

#play {
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-size: 32px;
}

.channel-info{
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.program{
    display: block;
}

.program-title{
    margin: 0;
    font-size: 20px;
}

.program-time{
    margin: 0;
    margin-top: 5px;
    font-size: 18px;
    color: #5f5f5f;
}

.channel-logo{
    width: 55px;
    margin-left: auto;
}

.no-stream{
    display: block;
}

.guide-box{
    background-image: linear-gradient(to bottom left, #4A76B6, #262D4B);
    border-radius: 10px;
    padding: 35px;
    margin-top: 40px;
}

tr{
    color: white;
}

table{
    width: 100%;
    border-radius: 10px;
}

table, td {
    border: 1px solid white;
    border-collapse: collapse;
    padding: 10px;
}

.no-guide{
    display: none;
    text-align: center;
}

#guide{
    display: none;
}

@media only screen and (max-width: 1350px) {
    .channel-img{
        width: 300px;
    }

    .channel{
        max-width: 300px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .live-streams{
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 500px) {
    .channel{
        margin-right: 0px;
    }

    .live-streams{
        flex-wrap: wrap;
    }

    .guide-box{
        padding: 15px;
    }

    td {
        font-size: 14px;
        line-height: 16px;
    }
}