/* =========================================================
   MY LISTS BLOCK
========================================================= */

.mix-movies-con {
    width: 100%;
    margin-bottom: 40px;
}


/* =========================================================
   HEADER
========================================================= */

.header-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}


/* =========================================================
   TITLE
========================================================= */

.title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}


/* =========================================================
   MYLIST TABS
========================================================= */

.mylists-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 0 25px;
    padding: 0;

    list-style: none;
}


/* =========================================================
   TAB ITEM
========================================================= */

.mylists-tabs li {
    display: flex;
    align-items: center;

    background: #1d1c21;

    border-radius: 100px;

    transition: .25s ease;
}


/* =========================================================
   ACTIVE TAB
========================================================= */

.mylists-tabs li.active {
    background: linear-gradient(
        135deg,
        #6a37d1 0%,
        #3385ea 100%
    );
}


/* =========================================================
   TAB LINK
========================================================= */

.mylists-tabs li a {
    display: flex;
    align-items: center;

    padding: 10px 16px;

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================================
   TAB COUNT
========================================================= */

.mylists-tabs li span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;

    margin-right: 10px;

    border-radius: 100px;

    background: rgba(255,255,255,.08);

    color: #b8bcc9;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   ACTIVE COUNT
========================================================= */

.mylists-tabs li.active span {
    background: rgba(255,255,255,.18);
    color: #fff;
}


/* =========================================================
   HOVER
========================================================= */

.mylists-tabs li:hover {
    background: #292931;
}

.mylists-tabs li.active:hover {
    background: linear-gradient(
        135deg,
        #7c45e8 0%,
        #4593ff 100%
    );
}


/* =========================================================
   DLE CONTENT
========================================================= */

#dle-content {
    margin-left: -10px;
    margin-right: -10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .header-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .title {
        font-size: 20px;
    }

    .mylists-tabs {
        gap: 8px;
    }

    .mylists-tabs li a {
        padding: 8px 14px;
        font-size: 13px;
    }

}