.channel_list{
    padding-bottom: 10px;
}

.channel_list_name .icon{
    cursor: pointer;
}

.channel_list_name_items{
    padding: 15px 0 0 15px;
}

.channel_list_name{
    display: inline-block;
    padding: 0 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #333333;
    position: relative;
    cursor: pointer;
}

.channel_list_item{
    padding: 10px 0;
    margin: 10px 0;
    border-radius: 10px;
}

.channel_list_name_items{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width : 1000px) {
    .channel_list_name_items {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width : 800px) {
    .channel_list_name_items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width : 600px) {
    .channel_list_name_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width : 361px) {
    .channel_list_name_items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.channels_box_item{
    display: flex;
    align-items: center;
    padding: 5px 0;
    gap: 5px;
    cursor: pointer;
}

.channels_box_item .channels_box_item_img{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.channels_box_item .channels_box_item_name{
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.channel_box_item_info_box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}


.channels_box_item{
    display: flex;
    align-items: center;
    padding: 5px 0;
    gap: 5px;
    cursor: pointer;
}

.channels_box_item .channels_box_item_img{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.channels_box_item .channels_box_item_name{
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.channel_box_item_info_box {
    display: flex;
    gap: 30px;
}

.channel_list_name span{
    background: #00589F;
    border-radius: 7px;
    display: inline-block;
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    margin-left: 10px;
}