/* Container general */
.tabs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* channel-tab BUTTONS - orizontal */
.tabs-buttons {
    display: flex;
    border: 1px solid #707070;
    margin: auto;
    width: 100%;
    border-radius: 8px;
    background-color: #1e1e1e;
}

.channel-tab-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #1e1e1e;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

/* channel-tab activ (singura culoare) */
.channel-tab-btn.active {
    background: #000000;
    box-shadow: 0 0 0 2px #eb1010;
    z-index: 1;
}

/* channel-tab CONTENTS - vertical */
.tabs-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.channel-tab-content {
    display: none;
    width: 100%;
    padding: 15px 0;
}

/* Content activ */
.channel-tab-content.active {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}


.channel_item {
    flex: 0 0 auto;
    width: calc(16.666% - 10px);
    margin: 0 5px 2%;
    position: relative;
}

.channel-tab-content .add-to-channel-list {
    position: absolute;
    top: 6px;
    right: 6px;
}

.channel-tab-content .top span {
    top: 38px;
}

.channel-tab-content .is_live::after {
    content: "Live";
    display: block;
    position: absolute;
    width: 50px;
    height: 20px;
    background: #eb1010;
    background-image: url(../images/icon-live-show.svg);
    background-repeat: no-repeat;
    background-position: 2px;
    background-size: 15px;
    border-radius: 3px;
    font-size: 12px;
    top: 6px;
    left: 6px;
    padding-left: 20px;
    padding-top: 1px;
}
.channel-tab-btn:not(.active):not(:last-child)::after {
    content: "";
    height: 40px;
    width: 1px;
    position: absolute;
    right: 0;
    background: #707070;
    top: 5px;
}
@media all and (max-width: 560px) {
    .channel-tab-btn:not(.active):not(:last-child)::after {
        right: -7px;
    }
    .tabs-buttons {
        overflow-x: scroll;
    }
    .channel-tab-btn {
        white-space: nowrap;
        padding: 0.7rem 0.5rem;
        margin: 3px;
    }
}