* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.6em;
    color: #FFF;
    background-color: #18191a;
}

a:link, a:visited {
    color: #eee;
    text-decoration: none;
}

a:hover, a:active {
    color: #54b264;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    font-weight: normal;
    color: #eee;
    margin: 0 0 0.5em;
    padding: 0;
}

h4 {
    color: #666666;
    margin: 0.35em 0 0.25em;
    padding: 0;
}

ul { list-style: none; margin: 0; padding: 0; }
.clearfix { clear: both; margin: 0; padding: 0; content: ' '; }

/**********************************************************/
/* HEADER */
/**********************************************************/
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(24, 25, 26, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
    .header__bar {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 10px 0;
    }
    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .logo img {
        display: block;
        height: auto;
        width: auto;
    }

    .top-menu {
        flex: 1 1 auto;
        min-width: 0;
    }
    .top-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 2px;
    }
    .top-menu ul li { display: flex; }

    .top-menu ul li a, .top-menu ul li a:visited {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #ccc;
        transition: background-color .15s ease, color .15s ease;
    }
    .top-menu ul li a:hover, .top-menu ul li a:active {
        background: rgba(84, 178, 100, 0.12);
        color: #54b264;
        font-weight: 500;
        text-decoration: none;
    }

    .search {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        background: #101112;
        border: 1px solid #333;
        border-radius: 999px;
        padding: 4px 4px 4px 16px;
        width: 260px;
        transition: border-color .15s ease;
    }
    .search:focus-within {
        border-color: #54b264;
    }
    .search input[type=text] {
        flex: 1 1 auto;
        min-width: 0;
        border: none;
        background: transparent;
        color: #eee;
        font-size: 14px;
        padding: 8px 0;
    }
    .search input[type=text]:focus { outline: none; }
    .search button {
        flex-shrink: 0;
        border: none;
        background: #54b264;
        color: #101112;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color .15s ease;
    }
    .search button:hover { background: #6cc97a; }

    .header-account {
        flex: 0 0 auto;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        border: none;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
    }
    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: #eee;
        border-radius: 2px;
        transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/**********************************************************/
/* NAVIGATION MENU (genuri) */
/**********************************************************/
.topnav {
    margin: 12px 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.topnav ul {
    list-style: none;
    margin: 0;
    padding: 0 2px;
    display: flex;
    gap: 8px;
    width: max-content;
}
.topnav ul li { display: block; }

.topnav ul li a {
    display: block;
    padding: 6px 16px;
    border-radius: 999px;
    background: #1f2021;
    border: 1px solid #2f3031;
    font-size: 13px;
    color: #ccc;
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.topnav ul li a:hover {
    text-decoration: none;
    color: #54b264;
    border-color: #54b264;
}
.topnav ul li a.active,
.topnav ul li.active a {
    background: #54b264;
    border-color: #54b264;
    color: #101112;
}

/**********************************************************/
/* WRAPPER */
/**********************************************************/    
.container {
    /*
    min-width: 990px;
    max-width: 1004px;
    max-width: 719px;
    margin: 0 auto;
    */
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    /*padding: 20px;*/
    /*background: #141414;*/
    /*border-radius: 20px;*/
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}

.sidebar-left {
    position: relative;
    width: 25%;
}

.content {
    position: relative;
    width: 100%;
}
.wrap {
    /* background: #262626; */
}

.copyright {
    border-radius: 10px;
    margin: 10px 0 50px 0;
}

.icon {
    padding: 5px 0 5px 25px;
}
.icon-home { background: url('images/housex24.png') left center no-repeat; }
.icon-songs { background: url('images/musicx24.png') left center no-repeat; }
.icon-albums { background: url('images/spotifyx24.png') left center no-repeat; }
.icon-artists { background: url('images/userx24.png') left center no-repeat; }
.icon-top { background: url('images/spotifyx24.png') left center no-repeat; }
.icon-playlist { background: url('images/spotifyx24.png') left center no-repeat; }
/*
.icon-home { background: url('images/housex24.png') left center no-repeat; }
.icon-home { background: url('images/housex24.png') left center no-repeat; }
.icon-home { background: url('images/housex24.png') left center no-repeat; }
*/

/* =======================================
SIDEBAR
======================================= */
.sidebar-menu {
    padding: 15px 15px 20px 0;
    margin: 0;
}
.sidebar-menu ul { list-style: none; margin: 0; padding: 0; }
.sidebar-menu ul li {
    display: block;
    padding: 0 10px;
    
    margin: 5px;
    padding: 5px 15px;
}
.sidebar-menu ul li a, .sidebar-menu ul li a:visited { color: #000; }
.sidebar-menu ul li:hover {
    color: #000;
    background: #ffcb19;
    border-radius: 10px;
}

.block-title {
    text-transform: capitalize;
    color: #54b264;
    font-size: 18px;
    padding: 0 0 0px 0;
    margin: 0 0 10px 12px;
    /* font-weight: bold; */
}

.box {
    margin: 0 10px 10px 0;
}
.box-title {
    font-family: Arial,"Trebuchet MS",Verdana;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #000;
    background: #262626;
    padding: 10px 10px;
}
.box-body {
    border-radius: 10px;
    background: #262626;
    padding: 10px;
}
.box-body2 {
    background: #323232;
    padding: 5px;
}
.box-body2 a { color: #eee; text-decoration: none; }
.box-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.box-body ul li {
    line-height: 22px;
    border-bottom: 1px solid #404040;
    margin: 0;
    display: block;
    padding: 5px 10px;
}
.box-body ul li:last-child { border: none; }
.box-body ul li a, .box-body ul li a:visited {
    /* color: #eee; */
    text-decoration: none;
}
.box-body ul li:last-child a { border: none; }
.box-body li a:hover { color: #f69f04; text-decoration: underline; }


.box-body form.search {
    display: flex;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-between;
}
.box-body form.search input[type=text] {
    padding: 5px;
    border: none;
    float: left;
    width: 70%;
    background: #f1f1f1;
}

.box-body form.search button {
    width: 30%;
    padding: 5px;
    background: #2196F3;
    border: none;
    color: white;
    border-left: none;
    cursor: pointer;
}
.box-body form.search::after { content: ""; clear: both; display: table; }

.banner_280 { margin: 0 0 10px 0; }

.badge { display: block; text-align: center; font-size: 15px; color: #fff; padding: 10px 15px; }
.badge:after {
    content: "";
    display: table;
    clear: both;
}
.badge a { color: #fff; }
.bg-red { background-color: #dd4b39 !important;  }
.bg-black { background-color: #000 !important;  }
.bg-yellow { background-color: #f39c12 !important;  }
.bg-purple { background-color:#555299 !important;  }
.bg-green { background: #8AC007 !important; }
.linkdown {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #94041F;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
}

/**********************************************************/
/* BREADCRUMBS */
/**********************************************************/
.breadcrumbs {
    font-size: 12px;
    color: #888;
    margin: 10px 0;
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #555;
}
.breadcrumbs a:link, .breadcrumbs a:visited {
    color: #999;
}
.breadcrumbs a:hover, .breadcrumbs a:active {
    color: #54b264;
    text-decoration: underline;
}
.breadcrumbs li[aria-current="page"] {
    color: #eee;
}

/**********************************************************/
/* PANEL */
/**********************************************************/
.panel {}
.panel-heading {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 0 10px 30px;
    margin: 0 0 10px 0;
    line-height: 17px;
    position: relative; 
    overflow: hidden; 
    /*border-bottom: 1px solid #ccc;*/
}

.panel-heading::before {
    background-color: #242526;
    content: ' ';
    min-width: 20px;
    height: 18px;
    position: absolute;
    left: 0;
}

.panel-heading::after {
    margin-left: 10px;
    width: 100%;
    background-color: #242526;
    content:' ';
    min-width: 20px;
    height: 18px;
    position: absolute;
}
.panel-title {
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    padding: 5px 0;
    margin: 2px 0 5px 0;
    border-bottom: 1px solid #eee;
}
.panel {}
.panel ul {}
.panel ul li { padding: 0 0 5px 2px; }
.panel ul.years li {
    line-height: 24px;
    width: 50%;
    float: left;
    list-style: none;
    padding: 0;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }


/**********************************************************/
/* BLOG */
/**********************************************************/
.articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.article-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #242526;
    border-radius: 8px;
    padding: 12px;
}
.article-card__thumb {
    flex-shrink: 0;
    display: block;
    width: 180px;
    height: 101px;
    border-radius: 6px;
    overflow: hidden;
}
.article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.article-card__date {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}
.article-card__title {
    font-size: 16px;
    margin: 0 0 6px 0;
    line-height: 1.3;
}
.article-card__title a, .article-card__title a:visited { color: #eee; }
.article-card__title a:hover { color: #54b264; }
.article-card__excerpt {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .articles {
        grid-template-columns: 1fr;
    }
    .article-card__thumb {
        width: 120px;
        height: 68px;
    }
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}
.blog-post__hero {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.blog-post__hero img {
    display: block;
    width: 100%;
    height: auto;
}
.blog-post__title {
    font-size: 24px;
    margin: 0 0 6px 0;
}
.blog-post__meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.blog-post__lead {
    font-size: 16px;
    font-weight: 700;
    color: #eee;
    padding: 12px 16px;
    background: #242526;
    border-left: 3px solid #54b264;
    border-radius: 4px;
    margin: 0 0 20px 0;
}
.blog-post__content {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

/**********************************************************/
/* CONTACT */
/**********************************************************/
.contact-intro {
    color: #ccc;
    margin-bottom: 20px;
}
.contact-form {
    max-width: 560px;
}
.contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.contact-form__row label {
    font-size: 13px;
    color: #54b264;
}
.contact-form__row input,
.contact-form__row textarea {
    background: #101112;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px 12px;
    color: #eee;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s ease;
}
.contact-form__row input:focus,
.contact-form__row textarea:focus {
    outline: none;
    border-color: #54b264;
}
.contact-form__row textarea {
    resize: vertical;
}
.contact-form__submit {
    border: none;
    background: #54b264;
    color: #101112;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color .15s ease;
}
.contact-form__submit:hover {
    background: #6cc97a;
}
.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-errors {
    background: rgba(204, 51, 51, 0.12);
    border: 1px solid #cc3333;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 16px;
}
.contact-errors ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}
.contact-errors li {
    color: #ff8080;
    font-size: 13px;
}
.contact-success {
    background: #242526;
    border-left: 3px solid #54b264;
    border-radius: 6px;
    padding: 20px;
    max-width: 560px;
}
.contact-success h2 {
    color: #54b264;
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-success p {
    color: #ccc;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

/**********************************************************/
/* LEGAL PAGES (DMCA, Politica) */
/**********************************************************/
.legal-content {
    max-width: 760px;
}
.legal-content p {
    color: #ccc;
    line-height: 1.7;
    margin: 0 0 14px 0;
}
.legal-content h2 {
    color: #eee;
    font-size: 17px;
    margin: 24px 0 10px 0;
    padding-top: 4px;
    border-top: 1px solid #2f3031;
}
.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}
.legal-content ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
    list-style: disc;
}
.legal-content li {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 6px;
}
.legal-content a {
    color: #54b264;
}
.legal-content a:hover {
    text-decoration: underline;
}

/**********************************************************/
/* WIDGETS */
/**********************************************************/
.widgets {
    padding: 20px 0 10px 0;
    margin: 10px 0 0 0;
}
.widget {
    width: 33.33333%;
}
.widget-title {
    font-size: 16px;
    color: #444;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}
.widget-content p {
    margin: 0 0 10px 0;
}
.widget-content ul {
    list-style: none;
}
.widget-content ul li {
    background: url(images/white-arrow.png) no-repeat 0 6px;
    padding: 0 0 0 15px;
    margin: 3px 0 0 0;
}
.widget-content ul li a, .widget-content ul li a:visited {
    text-shadow: none;
    color: #b8b8b8;
}

/**********************************************************/
/* FOOTER */
/**********************************************************/
.footer {
    padding: 10px 10px;
    text-align: center;
}

.copyright {
    background: #242526;
    text-align: center;
    padding: 15px;
}

.float-left { float: left; }
.float-right { float: right; }

/**********************************************************/
/* PAGINARE */
/**********************************************************/
.paginate {
    padding: 5px
}
.paginate ul li {
    display: inline-block;
    padding: 3px 10px;
    margin-right: 4px;
    border-radius: 5px;
    /*border: solid 1px #c0c0c0;
    background: #fefefe;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, .8), 0px 1px 3px rgba(0, 0, 0, .1);*/
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    /*color: #54b264;*/
    /*text-shadow: 0px 1px 0px rgba(255, 255, 255, 1)*/
}
.paginate ul li.active {
    border: none;
    background: #54b264;
    /*box-shadow: inset 0px 0px 8px rgba(0, 0, 0, .5), 0px 1px 0px rgba(255, 255, 255, .8);*/
    color: #fff;
    /*text-shadow: 0px 0px 3px rgba(0, 0, 0, .5)*/
}
.highlight {
    color: #0c0c0c;
    background-color: #f0c85a;
    padding: 0 3px;
    border-radius: 3px;
}

/* ===================================
TABS
====================================*/
.tab-menu {
    margin: 0;
    padding: 0;
    margin: 0;
    text-align: center;
}
.tab-menu:after {
    content: "";
    display: table;
    clear: both;
}

.tab-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-menu ul li {
    bottom: 0;
    position: relative;
    vertical-align: bottom;
    display: inline-grid;
    margin: 0 auto;
    padding: 0;
    width: 30%;
}
.tab-menu ul li:after { clear: both; content: ""; }

.tab-menu ul li a {
    background-color: #f3f3f3;
    color: #000;
    margin: 0 5px;
    cursor: pointer;
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #777;
    text-decoration: none;
}

.tab-menu ul li a:hover {
    background-color: #333333;
    color: #fff;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 10px;
    margin: -1px 0 0 0;
    font-size: 14px;
    background: #fff;
    border: 1px solid #777;
    z-index: -1;
}

/* ===========================
RATING SYSTEM */
.like-dislike-box {
    margin: 0 0 5px 0;
    padding: 0;
}
.like-dislike-box:after {
    content: "";
    display: table;
    clear: both;
}
.like-dislike-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.like-dislike-box ul li {
    width: 50%;
    float: left;
    background: #ccc;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}
.like-dislike-box ul li.like {
    color: #fff;
    background-color: green;
}
.like-dislike-box ul li.dislike {
    color: #fff;
    background-color: #aa0000;
}
.like-dislike-box ul li.disabled {
    pointer-events: none;
    background-color: #969595;
    color: #fff;
}
#alertFadeOut-succes {
    border: 1px solid #5ab75c;
    margin: 10px 0 0 0 ;
    background-color: #fefefe;
    color: #fff;
}
#alertFadeOut-succes {
    border: 1px solid #5ab75c;
    margin: 10px 0 0 0 ;
    background-color: #fefefe;
    color: #fff;
}
#alertFadeOut-favorited {
    border: 1px solid #4aafcd;
    margin: 10px 0 0 0 ;
    background-color: #fefefe;
    color: #4aafcd;
}

._hot {
    color: #B80C09;
}
a.catlink { color: green; }

/* ============================== */
/* MOVIE LIST */
/* ============================== */
.movielist {
    display: flex;
    flex-flow: row wrap;
}
.movie-i {
    /*width: 25%;*/
    width: calc(100% / 6);
    min-width: 0;
}
.pack {
    position: relative;
    padding: 5px;
    margin: 5px;
    background: #242526;
}
.thumb {
    position: relative;
    overflow: hidden;
}
.thumb img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.length {
    background: url(images/icon-clock.png) 5px 4px no-repeat;
    position: absolute;
    bottom: 10px;
    right: 5px;
    background-color: #000;
    color: #fff;
    font-size: 13px;
    padding: 1px 5px 1px 25px;
    border-radius: 2px;
    opacity: .8;
}
.title {
    font-weight: 700;
    line-height: 1.1;
    font-family: sans-serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    bottom: 0;
    margin: 5px 0 0 0;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.title a, .title a:visited {
    /*color: #000;*/
}
.lastepisodes {
    display: flex;
    flex-flow: row wrap;
}
.card_episod {
    font-size: 14px;
    /* font-weight: 600; */
    /* letter-spacing: .4px; */
    color: #fefefe;
    position: absolute;
    padding: 3px 7px;
    top: 0;
    left: 0;
    background-color: #bf0000;
    /* border: 1px solid transparent; */
    /* border-bottom-right-radius: 4px; */
    z-index: 2;
    opacity: .8;
}
/* ==================================================================================================== */
/* ========== */
/* MOVIE PAGE */
/* ========== */
/* ==================================================================================================== */
.about-movie {
    color: #f7f7f7;
    margin: 0 0 10px 0;
}
.movie-thumbnail {
    float: left;
    width: 20%;
    /* margin: 0 10px 0 0; */
}
    .movie-thumbnail img {
        width: 100%;
    }
    .movie-thumbnail > .fix {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

.movie-data {
    float: left;
    width: 80%;
}
.movie-title {
    padding: 0 0 10px 0;
    font-size: 22px!important;
    font-weight: normal;
}

.plot_summary {
    padding: 10px;
    background: #242526;
    border-radius: 10px;
    margin: 0 0 0 10px;
}
.summary_text {
    display: block;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #464646;
    padding: 0 0 10px 0;
    /*line-height: 18px;*/
}
.credit_summary_item {
    padding-bottom: 1px;
}

h4.inline {
    color: #6db764;
    display: inline;
    padding: 0 0.2em 0 0;
}

.filmography {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filmography-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #242526;
    border-radius: 4px;
    padding: 8px 12px;
}
.filmography-item__thumb img {
    display: block;
    width: 46px;
    height: 68px;
    object-fit: cover;
    border-radius: 3px;
}
.filmography-item__body {
    flex: 1;
    min-width: 0;
}
.filmography-item__title {
    display: block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.filmography-item__title:hover {
    color: #54b264;
}
.filmography-item__role {
    color: #999;
    font-size: 13px;
    margin-top: 2px;
}
.filmography-item__role .character {
    color: #ccc;
}
.filmography-item__year {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}
.filmography-item--more {
    color: #888;
    font-style: italic;
}

.disabled { color: #666; font-style: italic; }
.sidebarpublish { font-size: 12px; color: #666; font-style: italic; }
.sidebarauthor { font-size: 12px; color: #747474; }
/* ========== */
/* RECOMANDATE - BOTTOM OF SERIE, MOVIE, TV SHOW */
/* ========== */

.recomandate {
    border-bottom: 1px solid #363636;
    border-top: 1px solid #363636;
    padding: 10px 0 0 0;
    color: #000;
}

/* ==================================================================================================== */
/* ========== */
/* SERIES PAGE */
/* ========== */
/* ==================================================================================================== */
.listaSezoane {

}
.list ul li a, .list ul li a:visited {
    color: #54b264;
}
.accordion-section-title {
    font-size: 16px;
    padding: 5px 15px;
    margin: 0;
    background: #3e3e3e;
    border-bottom: 1px solid #000;
}
.accordion-section-title:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #fff;
    float: right;
    margin-left: 5px;
}
.accordion-section-title.active {
    background: #bf0000;
    color: #fff;
}
.accordion-section-title.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.accordion-section-content {
    display: none;
    padding: 5px 15px;
    background: #1a1a1a;
}
.ssep {
    padding: 5px 15px;
    margin: 1px 0;
    color: #888;
}
.ssep a, .ssep a:visited { color: #6db764; }
.ssep a:hover, .ssep a:active { color: #fff; }
.ssep-thumb {
    width: 100px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 10px;
}
.ssepplay {
    float: right;
}

.accordion {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 15px;
    margin: 0 0 10px 0;
}
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}


.play-movie {
    background: #000;
    color: #fff;
    margin: 0 0 10px 0;
}

.player-subtitle-label {
    padding: 6px 10px;
    font-size: 13px;
    color: #ccc;
    background: #1a1a1a;
    border-bottom: 1px solid #111;
}

.player-container {
    border: 1px solid #111;
    padding: 0 0 2px 0;
}
.player {
    width: 100%;
    min-height: 200px;
    position: relative;
}
.player iframe {
    width: 100%!important;
}
.movie-tabs {
    margin: 0;
    padding: 0;
}
.movie-tabs > ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-flow: row wrap;
    border-bottom: 3px solid #747474;
    background: #444;
}
.movie-tabs > ul > li {
    background: #444;
    color: #fff;
    padding: 10px 15px;
    margin: 0;
    cursor: pointer;
}
.movie-tabs > ul > li.active {
    border: none;
    background: #747474;
    color: #fff;
}


span.character {
    font-size: 14px;
    color: green;
}


/* LOGIN */
.form-group {
     padding: 10px 0;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: orange;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

form input {
    background: #444;
    border: none;
    padding: 5px;
    color: #fff;
}
label {
    color: #6db764;
}

/* ==================================================================================================== */

/* EPISODE PAGE */
/* ==================================================================================================== */
.episode-navigation {
    width: 100%;
    margin: 10px 0;

    line-height: 30px;
    text-transform: uppercase;
    font-weight: bolder;
    display: block;
    position: relative;
    text-align: center;
    background: #000;
}

.episode-navigation ul {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.episode-navigation ul li {
    width: calc(100% / 3);
    float: left;
    text-align: center;
    border-right: solid 1px #444;
    padding: 10px 0;
}
.episode-navigation ul li:last-child { border: none; }
.episode-navigation ul li:hover {
    background: #d10000;
}

.episode-navigation ul li a, .episode-navigation ul li a:visited {
    color: #fff;
}
.episode-navigation ul li a.disabled {
    opacity: .3;
    cursor: not-allowed;
}

.episode-navigation ul li.prev-button:before {
    content: "← ";
}

.episode-navigation ul li.next-button:after {
    content: " →";
}
/* ==================================================================================================== */

/* TABLET & MOBILE */
/* ==================================================================================================== */

/*@media screen and (max-width: 600px) {
    .container {
        width: 100%;
        margin: 0 auto;
    }
    .wrapper {
        padding: 1px;
        overflow: hidden;
    }

    .content {
        display: block;
        margin: 0;
        padding: 0;
        width: auto;
    }

    

    .updated {
        font-size: 11px;
    }
    .linkmel a, .linkmel a:visited {
        font-size: 14px;
    }
}*/

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    .content {
        float: none;
        width: auto;
    }
    .movie-i {
        width: calc(100% / 5);
    }

    .nav-toggle { display: flex; }
    .header__bar { flex-wrap: wrap; }
    .header-account { display: none; }
    .logo img { height: 36px; width: auto; }
    .search { flex: 1 1 auto; width: auto; order: 2; }
    .nav-toggle { order: 3; }
    .top-menu {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }
    .top-menu.is-open {
        max-height: 400px;
        overflow-y: auto;
    }
    .top-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 8px 0;
    }
    .top-menu ul li a { padding: 10px 12px; }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .content {
        float: none;
        width: auto;
    }
    .movie-i {
        width: calc(100% / 4);
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
    .movie-i {
        width: calc(100% / 3);
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 425px) {
    body {
        font-size: 16px;
        line-height: 25px;
        overflow-x: hidden;
    }
    .container {
        padding: 0;
    }
    .sidebar-left  {
        display: none;
        position: relative;
        width: 100%;
    }

    .header {
        margin: 0 0 5px 0;
    }
        .header .container { background: none; }

    .topnav {
        margin: 0 0 5px 0;
    }
    .row {
        display: block;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
    }
    .sidebar {
        float: none;
        display: none;
    }
    .content {
        width: auto;
        float: none;
        display: block;
        padding: 5px;
        border-radius: 0;
    }

    .movie-thumbnail {
        float: none;
        width: 60%;
        margin: 0 auto;
    }
    .movie-data {
        float: none;
        width: 100%;
    }
        .summary_text { line-height: 22px; }

    .movie-i {
        width: 50%;
    }
        .pack { padding: 2.5px; }
    .widgets {
        display: none;
    }

}
