	body {
        margin: 0 !important;
        font-size: 12px;
        font-family: Arial, Helvetica, sans-serif;
        text-align: center;
        color: #929292;
        background: #000;
    }

    h1,
    h2,
    h3,
    ul,
    ul li {
        margin: 0;
        padding: 0;
    }

    h1,
    h2,
    h3 {
        font-size: 18px;
        color: #fff;
    }

    ul li {
        list-style: none;
    }

    a {
        color: #a1a1a1;
        text-decoration: underline;
    }

    a img {
        border: 0;
    }

    :focus {
        outline: 0;
    }

    .clear {
        clear: both;
    }

    .top {
        background: #101010;
    }

    .menumobile {
        background: #151515;
        border-bottom: solid 1px #202020;
        border-top: solid 1px #202020;
    }

    .rmobil,
    .rmobil2 {
        height: auto !important;
    }

    ifx {
        border: 0;
    }

    .navbar3,
    .navbar3 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    .navbar3 {
        width: 100%;
        border-top: 1px solid #39cfff;
        background-color: #1a1a1a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 100;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logof {
        display: flex;
        align-items: left;
        text-decoration: none;
        font-size: 25px;
        font-weight: 700;
        letter-spacing: 0.6px;
        animation: logoPulse 1.2s ease-out 1;
    }

    .play-icon1 img {
        width: 26px;
        height: 26px;
        display: block;
        margin-right: 4px;
    }

    .logof span {
        line-height: 1;
    }

    .logof .filme {
        color: #ffffff;
    }

    .logof .subtitratehd {
        color: #39cfff;
    }

    .logof .hd1 {
        color: #ffffff;
        font-weight: 800;
        margin-left: 1px;
        text-shadow: 0 0 4px rgba(57, 207, 255, 0.7), 0 0 10px rgba(57, 207, 255, 0.5);
    }

    @keyframes logoPulse {
        0% {
            transform: scale(0.92);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @media (max-width:768px) {
        .logof {
            font-size: 26px;
        }
        .play-icon1 {
            width: 24px;
            height: 24px;
            margin-right: 4px;
        }
    }

    .navbar3 ul {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .navbar3 ul li a {
        text-transform: none !important;
        color: #fff;
        font-size: 16px;
        transition: 0.3s;
        padding: 6px 12px;
        border-radius: 12px;
    }

    .navbar3 ul li a:hover {
        color: #39cfff;
        background-color: #2a2a2a;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.open div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .cautare-form {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
        min-width: 150px;
    }

    .cautare-form input {
        padding: 5px 10px;
        border-radius: 4px;
        border: none;
        outline: none;
        font-size: 14px;
    }

    .cautare-form button {
        padding: 5px 10px;
        border: none;
        background-color: #39cfff;
        color: #fff;
        border-radius: 4px;
        cursor: pointer;
        transition: 0.3s;
    }

    .cautare-form button:hover {
        background-color: #fff;
        color: #000;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    @media (max-width:768px) {
        .navbar3 {
            flex-wrap: wrap;
            padding: 10px 16px;
        }
        .hamburger {
            display: flex;
            transform: scale(1.25);
            margin-left: auto;
        }
        .navbar3 ul {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1a1a1a;
            border-top: 1px solid #303030;
            border-bottom: 1px solid #303030;
            padding: 6px 0;
            gap: 6px;
        }
        .navbar3 ul.active {
            display: flex;
        }
        .navbar3 ul li {
            margin: 4px 0;
            text-align: left;
        }
        .navbar3 ul li a {
            display: block;
            width: 100%;
            font-size: 16px;
            padding: 5px;
            border: 1px solid #444;
            border-radius: 7px;
            background-color: #303030;
            transition: 0.3s;
        }
        .navbar3 ul li a:hover {
            background-color: #2a2a2a;
            color: #39cfff;
            border-color: #39cfff;
        }
        .cautare-form {
            display: none;
            width: 100%;
            margin-top: 4px;
            padding: 6px 8px;
        }
        .navbar3 ul.active+.cautare-form {
            display: flex;
        }
        .cautare-form input {
            flex: 1;
            font-size: 16px;
            padding: 10px 12px;
            border-radius: 6px;
        }
        .cautare-form button {
            padding: 6px 10px;
            font-size: 15px;
            border-radius: 6px;
        }
    }
	.slider-seriale {
        position: relative;
        overflow: hidden;
        margin: 10px 0;
        width: 100%;
    }

    .slider-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-behavior: smooth;
    }

    .slider-track::-webkit-scrollbar {
        display: none;
    }

    .slide-item {
        flex: 0 0 140px;
        max-width: 140px;
        text-decoration: none;
        color: #fff;
    }

    .label-serial {
        position: absolute;
        top: 5px;
        left: 5px;
        background: rgba(255, 0, 0, 0.8);
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 3px;
        z-index: 5;
        pointer-events: none;
        user-select: none;
    }

    .slide-thumb {
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        width: 140px;
        height: 200px;
    }

    .slide-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .slide-thumb .play-icon {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        opacity: 0;
        transition: .3s;
    }

    .slide-thumb:hover .play-icon {
        opacity: 1;
    }

    .slide-title {
        display: block;
        font-size: 12px;
        text-align: center;
        margin-top: 4px;
        opacity: .85;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, .7);
        border: 0;
        color: #fff;
        font-size: 28px;
        width: 34px;
        height: 64px;
        cursor: pointer;
        z-index: 10;
    }

    .slider-btn.prev {
        left: 0;
    }

    .slider-btn.next {
        right: 0;
    }
	/* ===== FOOTER – ACTUALIZAT ===== */

.site-footer-wrap {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

.site-footer-hd {
    background: #1a1a1a;
    padding: 40px 20px 20px 20px;
    color: #ccc;
}

.site-footer-left {
    flex: 1.3;
}

.site-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #c5c5c5;
}

.site-footer-columns {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* TITLURI COLOANE */
.site-footer-columns .site-footer-col h3 {
    color: #39cfff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* LINKURI – FIX DEFINITIV */
.site-footer-columns .site-footer-col a {
    display: block !important;
    width: 100% !important;
    color: #c5c5c5;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
}

/* HOVER */
.site-footer-columns .site-footer-col a:hover {
    color: #fff;
}

/* LINIE SEPARATOARE */
.site-footer-line {
    margin-top: 10px;
    border-top: 1px solid #333;
}

/* COPYRIGHT */
.site-footer-copy {
    text-align: center;
    color: #c5c5c5;
    font-size: 14px;
    margin-top: 15px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .site-footer-wrap {
        flex-direction: column;
    }

    .site-footer-columns {
        flex-direction: column;
        gap: 15px;
    }
}
    @media (max-width: 1024px) {
        .navbar3 {
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .hamburger {
            display: flex;
        }
        .navbar3 ul {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1a1a1a;
            border-top: 1px solid #303030;
            border-bottom: 1px solid #303030;
            padding: 4px 0;
            gap: 5px;
        }
        .navbar3 ul.active {
            display: flex;
        }
        .navbar3 ul li {
            margin: 3px 0;
            text-align: left;
        }
        .navbar3 ul li a {
            display: block;
            width: 100%;
            font-size: 15px;
            padding: 6px 12px;
            border-radius: 6px;
            background-color: #303030;
            border: 1px solid #333;
            transition: 0.3s;
        }
        .navbar3 ul li a:hover {
            color: #39cfff;
            border-color: #39cfff;
            background-color: #2a2a2a;
        }
        .cautare-form {
            display: none;
            width: 100%;
            margin-top: 8px;
            padding: 12px 14px;
        }
        .navbar3 ul.active+.cautare-form {
            display: flex;
        }
        .cautare-form input {
            flex: 1;
            font-size: 15px;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .cautare-form button {
            padding: 8px 12px;
            font-size: 14px;
            border-radius: 6px;
        }
    }

    .main {
        width: 1254px;
        margin: auto;
        text-align: left;
    }

    .content {
        width: 1254px;
        float: left;
    }

    .posts1 {
        width: 1254px;
        float: right;
    }

    .posts1 .post-date {
        margin: 6px 4px 4px 0;
        float: left;
    }

    .posts1 .post-title {
        padding: 1px 2px;
        font-size: 12px;
        color: #929292;
        height: 20px;
        width: 230px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: 20px;
        margin: 0;
    }

    .posts1 a {
        color: #00cccc;
    }

    .posts1 .titlu {
        width: 1254px;
        margin: 5px 0 15px 2px;
        color: #fff;
        text-indent: 10px;
        line-height: 29px;
        background: 0 0;
        border-bottom: solid 1px #303030;
        float: left;
    }

    .posts1 .titlu1 {
        width: 1252px;
        margin: 5px 0 16px;
        color: #a0a0a0;
        text-transform: initial;
        text-indent: 10px;
        line-height: 29px;
        background: #222;
        border: solid 1px #a0a0a0;
        text-align: left;
        border-radius: 2px;
    }

    .posts1 .titlu1 b {
        color: #39cfff;
    }

    .posts1 .post {
        width: 244px;
        float: left;
        margin: 0 3px 12px;
        box-shadow: 0px 0px 3px #606060;
        position: relative;
    }

    .posts1 .post a,
    .posts1 .post .film {
        width: 242px;
        color: #929292;
        float: left;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 6px;
    }

    .posts1 .post .link a,
    .posts1 .post .post-title a {
        width: 240px;
        border-radius: 0;
    }

    .posts1 .post a img,
    .posts1 .post .film img {
        width: 240px;
        height: 359px;
        min-height: 155px;
        border-radius: 6px;
        border: 2px solid #000;
        display: block;
    }

    .posts1 .post .link {
        width: 240px;
        height: 29px;
        display: block;
        overflow: hidden;
        padding: 1px 2px;
    }

    .sdescriere {
        color: #fff;
        text-align: justify;
    }

    .sdescriere b {
        color: #929292;
    }

    .single-post .video-category {
        width: 99%;
        float: left;
        margin-top: 3px;
        text-align: left;
    }

    .single-post .video-tags {
        width: 580px;
        float: left;
        margin-top: 8px;
        min-height: 50px;
    }

    .single-post .view {
        background-position: -11px -123px;
        height: 19px;
        padding: 3px 0 1px 38px;
        margin: 5px 0;
        color: #39cfff;
        float: right;
    }

    .single-post h2 {
        margin: 10px 0;
    }

    .descriere {
        background: #151515;
        width: 730px;
        height: 134px;
        padding: 5px;
        float: left;
        margin-bottom: 5px;
        line-height: 25px;
        text-align: left;
        text-transform: uppercase;
        font-size: 16px;
    }

    .adde {
        background-position: -324px -56px;
        display: block;
        height: 15px;
        width: 15px;
        position: absolute;
        border: 1px solid #000;
        border-radius: 3px;
        margin: 3px 0 0 3px;
        opacity: .75;
        overflow: hidden;
        z-index: 50;
    }

    .post-ratings {
        width: 100%;
        color: #39cfff;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
    }

    .addd {
        background: url(//filmesubtitratehd.ro/wp-content/themes/mobilx/images/fav1.png) 0 0 no-repeat;
        height: 19px;
        padding: 3px 0 1px 30px;
        margin: 5px 0;
        color: #39cfff;
        float: right;
    }

    i.icov {
        background-position: -467px -9px;
        display: block;
        height: 14px;
        width: 15px;
        float: left;
        margin-right: 2px;
        opacity: .75;
    }

    .viz {
        float: right;
        background: rgba(0, 0, 0, .8);
        color: #fff;
        opacity: .9;
        border-radius: 3px;
        padding: 0 4px 2px 2px;
        height: 12px;
    }

    @media (min-width:1020px) and (max-width:1254px) {
        .navbar,
        .posts1,
        .main,
        .posts1 .titlu,
        .content {
            width: 1000px;
        }
        .adde {
            display: none;
        }
        .posts1 .titlu1 {
            width: 998px;
        }
    }

    @media (min-width:750px) and (max-width:1020px) {
        .navbar,
        .posts1,
        .main,
        .posts1 .titlu,
        .content {
            width: 750px;
        }
        .posts1 .titlu1 {
            width: 748px;
        }
        .populare {
            display: none;
        }
    }

    @media (min-width:510px) and (max-width:750px) {
        .single-post .video-tags a,
        .single-post .video-category a {
            padding: 4px;
            margin: 2px;
            border-radius: 5px;
            background: #212020;
            display: inline-block;
        }
        .video_block {
            width: 100%;
            margin-left: 0;
        }
        .addd {
            padding: 3px 5px 1px 30px;
        }
        .adde,
        .user-bar,
        .single-post .view {
            display: none;
        }
        .single-post .video-tags,
        .descriere {
            width: 490px;
            height: 100%
        }
        .single-post .video-tags {
            width: 96%;
            height: 100%;
            margin-left: 5px;
        }
        .posts1 .titlu1 {
            width: 100%
        }
        .pull {
            display: block;
        }
        .pull2 {
            display: block;
        }
        .menumobile {
            margin: 0 auto;
            width: 500px;
        }
        .vizionate,
        .populare,
        .filme,
        .categorii,
        .tags,
        .favorite {
            border-bottom: 1px solid #303030;
            float: left;
            line-height: 30px;
            width: 100%
        }
        .posts1 .titlu1 {
            width: 100%;
            height: auto;
            border: 0;
        }
        .posts1 .post {
            width: 48%;
            float: left;
            margin: 2px;
        }
        .vizualizari {
            display: none;
        }
        .posts1 .post a,
        .posts1 .post .film,
        .posts1 .post .post-title a {
            width: 100% !important;
            font-size: 16px;
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            width: 99%;
            height: 30.25vw;
            min-height: 168px;
        }
        .posts1 .post-title {
            width: 98% !important;
            height: 40px;
        }
        .posts1 .titlu {
            margin: 5px 0 3px;
        }
        .posts1 .sin a {
            float: left;
            width: 48%;
            height: auto;
            z-index: 1001;
        }
        .posts1 .sin a img {
            display: block;
            float: left;
            width: 100%;
            height: 180px;
            padding-left: 3px;
            z-index: 1002;
        }
        .posts1 .sin .link {
            padding-top: 25px;
            float: left;
            width: 48%;
            margin-left: 2%;
            height: auto;
        }
        .posts1 .sin .link a {
            width: 98%;
            border-radius: 0;
            font-size: 18px;
        }
        .sin .vizualizari {
            right: 2%;
            display: block;
            float: right;
            height: 20px;
            padding: 0 10px 5px 50px;
            margin: 4px 0 0;
            font-size: 12px;
            line-height: 15.5px;
            -moz-border-radius: 4px;
            -o-border-radius: 4px;
            -ms-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px;
            vertical-align: baseline;
            width: unset;
            z-index: 1006;
        }
        .sin .viz {
            border-radius: 9px;
            padding: 3px 6px 4px 4px;
            background: #292929;
            z-index: 1007;
        }
        .content .sin {
            margin: 0;
            width: 100%;
            padding: 10px 0;
            height: auto;
            box-shadow: unset;
            border-bottom: 1px solid #313131;
            float: left;
        }
        .descriere {
            padding: 0;
            width: 100%
        }
        .posts1 .post-date {
            margin: 6px 4px 4px 5px;
        }
        .single-post .video-category {
            margin-left: 5px;
            width: 99%
        }
    }

    @media only screen and (max-width:510px) {
        .single-post .video-tags a {
            padding: 4px;
            margin: 2px;
            border-radius: 5px;
            background: #212020;
            display: inline-block;
        }
        .video_block {
            width: 100%;
            margin-left: 0;
        }
        .top {
            height: 82px;
            display: block;
            top: 0;
            left: 0;
            z-index: 1001;
            background: 0 0;
        }
        .posts1 .titlu h1 {
            line-height: 24px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-indent: 1px;
        }
        .hed {
            position: absolute;
        }
        .navbar,
        .posts1,
        .main,
        .posts1 .titlu,
        .content {
            width: 100%
        }
        .posts1 .titlu1 {
            width: 100%;
            height: 20px;
            border: 0;
            margin: 5px 0 3px;
        }
        .addd {
            float: left;
            margin: 5px;
        }
        .adde,
        .user-bar,
        .single-post .view {
            display: none;
        }
        .single-post .video-category {
            width: 290px;
            height: 100%
        }
        .single-post .video-tags {
            width: 96%;
            height: 100%;
            margin-left: 5px;
            margin-top: 0 !important;
            margin-bottom: 0;
            text-align: center;
            font-size: 16px;
        }
        .video-tags h1 {
            border-bottom: solid 1px #202020;
            font-size: 16px;
            margin: 5px 0;
        }
        .posts1 .post {
            margin-left: auto;
            margin-right: auto;
            width: 73%;
            float: unset;
            margin-top: 3px;
        }
        .posts1 .titlu {
            margin: 5px 0 3px;
        }
        .vizualizari {
            width: 260px;
            margin: 141px 0 0 36px;
        }
        .posts1 .post a,
        .posts1 .post .film {
            width: 100%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            width: 300px;
            height: 444px;
            min-height: 168px;
            border: 0;
        }
        .vizualizari {
            display: none;
        }
        .posts1 .post-title,
        .posts1 .post .post-title a {
            width: 300px;
            font-size: 18px;
            height: 62px;
            text-align: left;
        }
        #voteingbox {
            display: none;
        }
        .pull {
            display: block;
        }
        .pull2 {
            display: block;
        }
        .menumobile {
            margin: 0 auto;
            width: 100%
        }
        .content .sin {
            margin: 0;
            width: 100%;
            padding: 10px 0;
            height: auto;
            box-shadow: unset;
            border-bottom: 1px solid #313131;
            float: left;
        }
        .single-post .video-tags {
            width: 96%;
            height: 100%;
            margin-left: 5px;
        }
        .vizionate,
        .populare,
        .filme,
        .categorii,
        .tags,
        .favorite {
            border-bottom: 1px solid #303030;
            float: left;
            line-height: 30px;
            width: 100%
        }
        .posts1 .sin a {
            float: left;
            width: 48%;
            height: auto;
            z-index: 1001;
        }
        .sidebar .tagcloud {
            padding: 0 0 15px;
            text-align: justify;
            line-height: 25px;
            font-size: 16px;
        }
        .posts1 .sin a img {
            display: block;
            float: left;
            width: 100%;
            height: 110px;
            padding-left: 3px;
            z-index: 1002;
        }
        .posts1 .sin .link {
            padding-top: 25px;
            float: left;
            width: 48%;
            margin-left: 2%;
            z-index: 1004;
        }
        .posts1 .sin .link a {
            width: 98%;
            border-radius: 0;
            z-index: 1005;
        }
        .sin .vizualizari {
            right: 2%;
            display: block;
            float: right;
            height: 20px;
            padding: 0 10px 5px 50px;
            margin: 4px 0 0;
            font-size: 12px;
            line-height: 15.5px;
            -moz-border-radius: 4px;
            -o-border-radius: 4px;
            -ms-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px;
            vertical-align: baseline;
            width: unset;
            z-index: 1006;
        }
        .sin .viz {
            border-radius: 9px;
            padding: 3px 6px 4px 4px;
            background: #292929;
            z-index: 1007;
        }
        .descriere {
            padding: 0;
            line-height: 25px;
            width: 100%;
            height: 100%;
            top: 429px;
            z-index: 1;
            text-transform: uppercase;
            font-size: 16px;
        }
        .posts1 .post-date {
            margin: 6px 4px 4px 5px;
        }
        .single-post .video-category {
            margin-left: 5px;
            width: 96%
        }
    }

    @media (max-width:1254px) and (min-width:1020px) {
        .reclama2 {
            background: #151515;
            float: right;
            width: 300px;
            height: 250px;
            padding: 74px 98px 75px;
            margin-right: 0;
            margin-bottom: 5px;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .video-player,
        .video-player ifx {
            width: 500px;
            height: 285px;
        }
    }

    @media only screen and (max-width:510px) {
        .video-player,
        .video-player ifx {
            width: 100%;
            height: 56.25vw !important;
            z-index: 1020;
            background: #000;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .video-player,
        .video-player ifx {
            width: 100%;
            height: 56.25vw;
        }
    }

    @media (max-width:1254px) and (min-width:1020px) {
        .video_block,
        .video-player,
        .video-player ifx {
            width: 745px;
        }
        .descriere {
            width: 740px;
        }
        .single-post .video-tags,
        .single-post .video-category {
            width: 99%;
            margin-top: 0;
        }
        .reclama2 {
            background: #151515;
            float: right;
            width: 300px;
            height: 250px;
            padding: 74px 98px 75px;
            margin-right: 0;
            margin-bottom: 5px;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .reclama2 {
            margin: auto;
            float: none;
            padding: 0;
            margin-right: auto;
            display: table;
        }
        .posts1 {
            text-align: center;
        }
        .posts1 .post {
            display: inline-block;
            float: none;
        }
        .posts1 .post a,
        .posts1 .post .film,
        .posts1 .post .post-title a {
            text-align: left;
        }
    }

    @media only screen and (max-width:510px) {
        .reclama2 {
            margin: auto;
            float: none;
            padding: 0;
            margin-right: auto;
            display: table;
        }
        .posts1 .post a,
        .posts1 .post .film,
        .posts1 .post .post-title a {
            text-align: left;
        }
        .posts1 {
            text-align: center;
        }
        .posts1 .post {
            display: inline-block;
            float: none;
        }
    }

    @media (max-width:1020px) and (min-width:750px) {
        .adde {
            display: none;
        }
        .reclama2 {
            margin: auto;
            float: none;
            padding: 0;
            margin-right: auto;
            display: table;
        }
    }

    @media only screen and (max-width:420px) {
        ul.right {
            margin: 39px 5px 0 0 !important;
        }
        .pull,
        .pull2 {
            margin: 23px 5px 0 0;
        }
    }

    ul.right {
        float: right;
        margin: 41px 5px 0 0;
    }

    ul.right li {
        display: inline-block;
        letter-spacing: normal;
        position: relative;
    }

    ul.right li a {
        display: block;
        border: 1px;
        border-color: #a0a0a0;
        border-bottom: 0;
        background: 0 0;
        padding: 0;
        vertical-align: top;
        width: 63px;
        height: 27px;
        line-height: 27px;
        color: #39cfff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    a#language-selector {
        padding: 1px;
    }

    .lang small {
        display: inline-block;
        margin-right: 2px;
        margin-left: 2px;
        position: relative;
        top: -1px;
        text-shadow: 1px 1px #444;
    }

    .lang span {
        background: url(https://filmesubtitratehd.ro/wp-content/themes/mobilx/images/sprite7.png) no-repeat 0 0;
        display: inline-block;
        height: 20px;
        margin: 0;
        width: 24px;
        position: relative;
        top: 4px;
    }

    span.arrow,
    .lang span.arrow {
        background: url(https://filmesubtitratehd.ro/wp-content/themes/mobilx/images/sprite7.png) -845px -190px;
        display: inline-block;
        height: 11px;
        width: 11px;
        position: relative;
        top: 3px;
    }

    ul.dropDownMenu {
        display: none;
        background: #3d3d3d;
        border-color: #a0a0a0;
        border-image: none;
        border-style: none solid solid;
        border-width: medium 1px 1px;
        position: absolute;
        right: 0;
        top: 27px;
        z-index: 12;
        -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
        -o-box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
        -ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
        box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    }

    ul.dropDownMenu li {
        border: medium none;
        display: block;
    }

    ul.right li ul li a {
        color: #999;
        font-weight: 400;
        border: 0;
        display: block;
        height: 24px;
        vertical-align: middle;
    }

    .lang ul.dropDownMenu span {
        margin: 2px auto 2px;
        display: block;
    }

    .ro span,
    .lang .ro span {
        background-position: -155px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .es span,
    .lang .es span {
        background-position: -130px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .fr span {
        background-position: -230px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .de span,
    .lang .de span {
        background-position: -180px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .nl span,
    .lang .nl span {
        background-position: -205px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .it span,
    .lang .it span {
        background-position: -105px -96px;
        width: 24px;
        height: 20px;
        top: 2px !important;
    }

    .rmobil,
    .rmobil2 {
        text-align: center;
        display: block;
    }

    @media only screen and (min-width:1020px) {
        .rmobil2 {
            display: none;
        }
    }

    @media only screen and (min-width:1254px) {
        .rmobil {
            background: #151515;
            float: right;
            width: 300px;
            height: 250px;
            padding: 72px 98px 72px 95px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
    }

    .notificatins--bar {
        z-index: 1100 !important;
    }

    .paginator {
        display: flex;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px !important;
        height: 61px;
    }

    .paginator span,
    .paginator a {
        display: inline-block;
        float: none;
    }

    .textreclama {
        text-align: right;
        width: 300px;
        color: #fff;
        font-size: 11px;
        margin: 0 auto 2px;
        font-weight: 400;
    }

    @media (max-width:750px) and (min-width:510px) {
        div#ass {
            position: absolute;
            left: 0;
            width: 42%;
            height: 44.25vw !important;
        }
        div#ass1 {
            position: absolute;
            left: 58%;
            width: 42%;
            height: 44.25vw !important;
        }
        div#ass2 {
            position: absolute;
            left: 41%;
            width: 18%;
            height: 24vw;
        }
        div#ass3 {
            position: absolute;
            left: 39%;
            width: 22%;
            height: 13vw;
            top: 100%
        }
        div#ass4 {
            position: absolute;
            left: 92%;
            width: 8%;
            height: 56.25vw;
        }
    }

    @media (max-width:510px) {
        div#ass {
            position: absolute;
            left: 0;
            width: 42%;
            height: 46.25vw !important;
        }
        div#ass1 {
            position: absolute;
            left: 58%;
            width: 42%;
            height: 46.25vw !important;
        }
        div#ass2 {
            position: absolute;
            left: 40%;
            width: 20%;
            height: 24vw;
        }
        div#ass3 {
            position: absolute;
            left: 39%;
            width: 22%;
            height: 14vw;
            top: 77%
        }
        div#ass4 {
            position: absolute;
            left: 92%;
            width: 8%;
            height: 64vw;
        }
    }

    .adskeeper {
        width: 984px;
        height: auto;
        padding: 0;
        float: left;
        margin-bottom: 0;
        line-height: 15px;
        text-align: left;
    }

    @media (max-width:1254px) and (min-width:1020px) {
        .adskeeper {
            width: 735px;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .adskeeper {
            padding: 0;
            width: auto;
        }
    }

    @media only screen and (max-width:510px) {
        .adskeeper {
            padding: 0;
            width: auto;
            top: 429px;
            z-index: 1;
        }
    }

    @media only screen and (max-width:750px) {
        .pull2 {
            float: none;
            margin: 3px 0 0 5px;
            position: absolute;
            top: 0;
            left: 0;
        }
        .pull {
            float: none;
            margin: 3px 5px 0 0;
            position: absolute;
            top: 0;
            right: 0;
        }
        .menumobile {
            background: #000;
            border-bottom: solid 1px #000;
            border-top: solid 1px #000;
        }
        .top {
            height: 62px;
        }
    }

    .resp-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-bottom: 28%;
        background: #151515;
    }

    .resp-ifx {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    @media only screen and (max-width:690px) {
        .resp-container {
            padding-bottom: 30%
        }
    }

    @media only screen and (max-width:615px) {
        .resp-container {
            padding-bottom: 33%
        }
    }

    @media only screen and (max-width:580px) {
        .resp-container {
            padding-bottom: 35%
        }
    }

    @media only screen and (max-width:530px) {
        .resp-container {
            padding-bottom: 39%
        }
    }

    @media only screen and (max-width:480px) {
        .resp-container {
            padding-bottom: 89%
        }
    }

    @media only screen and (max-width:444px) {
        .resp-container {
            padding-bottom: 94%
        }
    }

    @media only screen and (max-width:400px) {
        .resp-container {
            padding-bottom: 99%
        }
    }

    @media only screen and (max-width:342px) {
        .resp-container {
            padding-bottom: 100%
        }
    }

    @media only screen and (max-width:320px) {
        .resp-container {
            padding-bottom: 110%
        }
    }

    .resp-container2 {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-bottom: 35%
    }

    .resp-ifx2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    @media only screen and (min-width:300px) {
        .resp-container2 {
            padding-bottom: 246%
        }
    }

    @media only screen and (min-width:320px) {
        .resp-container2 {
            padding-bottom: 236%
        }
    }

    @media only screen and (min-width:340px) {
        .resp-container2 {
            padding-bottom: 230%
        }
    }

    @media only screen and (min-width:350px) {
        .resp-container2 {
            padding-bottom: 228%
        }
    }

    @media only screen and (min-width:370px) {
        .resp-container2 {
            padding-bottom: 222%
        }
    }

    @media only screen and (min-width:400px) {
        .resp-container2 {
            padding-bottom: 218%
        }
    }

    @media only screen and (min-width:420px) {
        .resp-container2 {
            padding-bottom: 214%
        }
    }

    @media only screen and (min-width:446px) {
        .resp-container2 {
            padding-bottom: 206%
        }
    }

    @media only screen and (min-width:481px) {
        .resp-container2 {
            padding-bottom: 70%
        }
    }

    @media only screen and (min-width:510px) {
        .resp-container2 {
            padding-bottom: 67%
        }
    }

    @media only screen and (min-width:550px) {
        .resp-container2 {
            padding-bottom: 62%
        }
    }

    @media only screen and (min-width:580px) {
        .resp-container2 {
            padding-bottom: 60%
        }
    }

    @media only screen and (min-width:600px) {
        .resp-container2 {
            padding-bottom: 56%
        }
    }

    @media only screen and (min-width:630px) {
        .resp-container2 {
            padding-bottom: 60%
        }
    }

    @media only screen and (min-width:700px) {
        .resp-container2 {
            padding-bottom: 48%
        }
    }

    @media only screen and (min-width:1020px) {
        .resp-container2 {
            padding-bottom: 40%
        }
    }

    @media only screen and (min-width:1254px) {
        .resp-container2 {
            padding-bottom: 36%
        }
    }

    .scrollableContainer {
        background: #000000;
        overflow: hidden;
        overflow-x: auto;
        padding-bottom: 10px;
        box-sizing: border-box;
        margin: 0 auto;
        white-space: nowrap;
        width: 68%;
        display: inline-block;
    }

    span.actual {
        border: solid 1px #39cfff !important;
    }

    .nextback {
        margin-right: 2px !important;
        margin-left: 2px !important;
        width: 19% !important;
        height: 14px;
        background: #202020 !important;
        color: #39cfff !important;
    }

    .backinactiv {
        background: #151515 !important;
        color: #bbb !important;
    }

    @media only screen and (max-width:350px) {
        .paginator span,
        .paginator a {
            padding: 16px 11px 15px !important;
        }
    }

    .mcprice {
        display: none !important;
    }

    @media (max-width:5019px) and (min-width:751px) {
        .descriere {
            height: 100% !important;
        }
    }

    @media (max-width:1019px) and (min-width:300px) {
        .menumobile {
            border: 0 !important;
        }
        .single-post {
            margin-top: 0 !important;
        }
        .video_block {
            margin-top: 0 !important;
        }
        .mobiltitlu {
            margin: 10px 0 3px !important;
            position: relative;
            display: table;
            float: left;
        }
        .rmobil,
        .rmobil2 {
            position: relative;
            display: table;
            margin: 0 auto;
            width: 100%
        }
    }

    @media (min-width:1020px) {
        .mobiltitlu {
            display: none;
        }
        .video-tags h1 {
            line-height: 30px;
        }
    }

    .single-post .video-etichetele {
        width: 800%;
        float: left;
        margin-top: 3px;
        text-align: left;
    }

    @media only screen and (max-width:1254px) {
        .single-post .video-etichetele {
            width: 96%
        }
    }

    @media (max-width:339px) and (min-width:300px) {
        .posts1 .post {
            width: 96%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:360px) and (min-width:340px) {
        .posts1 .post {
            width: 83%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:380px) and (min-width:361px) {
        .posts1 .post {
            width: 79%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:400px) and (min-width:381px) {
        .posts1 .post {
            width: 76%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:420px) and (min-width:401px) {
        .posts1 .post {
            width: 73%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:440px) and (min-width:421px) {
        .posts1 .post {
            width: 69%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:460px) and (min-width:441px) {
        .posts1 .post {
            width: 66%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:480px) and (min-width:461px) {
        .posts1 .post {
            width: 63%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:500px) and (min-width:481px) {
        .posts1 .post {
            width: 61%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media (max-width:510px) and (min-width:501px) {
        .posts1 .post {
            width: 59%
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            min-height: 168px;
        }
    }

    @media only screen and (min-width:750px) {
        .top {
            background: #1e1e1e;
        }
        .main {
            margin-top: 10px;
        }
        .posts1 .titlu1 {
            border: 0;
        }
    }

    @media (max-width:1019px) and (min-width:300px) {
        .rmobil250 {
            height: 250px;
            display: block;
        }
    }

    .deindex {
        width: 100% !important;
        float: left !important;
    }

    .deindex p {
        font-size: 15px !important;
        text-transform: uppercase !important;
        text-align: justify !important;
        padding: 0 10px !important;
        height: 100%;
        border: 0;
        display: block;
        color: #fff;
    }

    @media only screen and (max-width:510px) {
        .paginator,
        .footer,
        .footer .footer-links,
        .sidebar {
            width: 100% !important;
        }
    }

    .paginator {
        display: flex;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px !important;
    }

    .paginator span,
    .paginator a {
        display: inline-block;
        margin: 2px 2px 2px 0;
        padding: 16px 20px 15px;
        text-decoration: none;
        border: solid 1px #202020;
    }

    @media only screen and (max-width:510px) {
        .paginator,
        .footer,
        .footer .footer-links,
        .sidebar {
            width: 100%
        }
    }

    .sidebar {
        border-top: solid 1px #202020;
        margin-top: 10px;
        font-size: 12px;
        float: left;
    }

    .center {
        text-align: center !important;
    }

    .sidebar p {
        margin: 5px !important;
        font-size: 16px !important;
        text-transform: initial !important;
        color: #fff !important;
        text-align: center;
    }

    @media only screen and (max-width:510px) {
        .sidebar .tagcloud {
            padding: 0 10px 15px !important;
        }
    }

    .sidebar .tagcloud {
        text-align: justify !important;
        line-height: 25px !important;
        font-size: 16px !important;
    }

    .siteuri {
        text-align: center !important;
    }

    .siteuri a {
        font-size: 15pt !important;
        color: #39cfff !important;
        text-decoration: none !important;
        padding: 4px !important;
        margin: 2px !important;
        border-radius: 5px !important;
        background: #151515 !important;
    }

    @media only screen and (max-width:750px) {
        .tagcloud a {
            display: inline-block !important;
        }
    }

    .footer {
        width: 100% !important;
        margin: 0 auto 0 auto !important;
        background: #131313 !important;
        border-top: solid 1px #202020 !important;
        display: inline-block !important;
    }

    @media only screen and (max-width:510px) {
        .footer,
        .footer .footer-links {
            margin: 0 auto !important;
        }
    }

    .footer .footer-links ul {
        text-align: center !important;
    }

    @media only screen and (max-width:750px) {
        .footer .footer-links ul li {
            display: grid !important;
            margin: 0 10px !important;
        }
        .footer p {
            margin: 12px 0 0 !important;
        }
    }

    .footer p {
        text-align: center !important;
    }

    .footer b {
        color: #39cfff !important;
    }

    .single-post h1,
    .single-post h2,
    .single-post h3,
    .single-post h4,
    .single-post h5,
    .single-post h6 {
        margin: 10px 0 !important;
    }

    @media only screen and (max-width:300px) {
        .posts1 .post a img,
        .posts1 .post .film img {
            width: 100%;
            height: 100%;
            min-height: 100%
        }
        .posts1 .post {
            height: auto;
        }
        .rmobil2 img {
            width: 100%;
            height: 100%;
            border: 0 !important;
        }
        .textreclama {
            width: 95%
        }
    }

    @media (max-width:1019px) and (min-width:300px) {
        .bemic {
            height: 117px;
            display: inline-block;
        }
        .bemare {
            height: 267px;
            display: inline-block;
        }
        .tubemic {
            display: block;
            height: 100px;
        }
        .tubemare {
            display: block;
            height: 250px;
        }
        .tubemare a img {
            width: 300px;
            height: 250px;
            display: block;
            margin: 0 auto;
            border: 0;
        }
        .tubemic a img {
            width: 300px;
            height: 100px;
            display: block;
            margin: 0 auto;
            border: 0;
        }
    }

    .notificatins--bar {
        top: 35% !important;
    }

    @media only screen and (min-width:510px) {
        .notificatins--bar {
            top: 35% !important;
        }
    }

    @media (max-width:1019px) and (min-width:410px) {
        .rmobil2 #banner1 ifx#frame,
        .rmobil2 #banner2 ifx#frame {
            width: 100%;
            height: 100%;
            max-width: 400px;
            position: relative;
            display: block;
            margin: 0 auto;
            left: 0;
        }
        .rmobil2 #banner3 ifx#frame {
            width: 100%;
            height: 333.33px;
            max-width: 400px;
            position: relative;
            display: block;
            margin: 0 auto;
            left: 0;
        }
        .rmobil,
        .rmobil2 {
            max-width: 400px;
            height: 150px;
        }
        .rmobilmare {
            height: 333.33px;
        }
    }

    @media only screen and (max-width:510px) {
        .posts1 .post {
            width: 300px;
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            top: 0;
            left: 0;
            width: 300px;
            height: 444px;
            border-radius: 0;
        }
        .videopv {
            position: absolute;
            top: 0;
            width: 100%;
            height: 56.25vw !important;
            background: #000;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .navbar,
        .posts1,
        .main,
        .posts1 .titlu,
        .content {
            width: 510px;
        }
        .posts1 .post {
            width: 244px;
            float: left;
            margin: 0 3px 12px;
            box-shadow: 0px 0px 3px #606060;
            position: relative;
        }
        .posts1 .post a,
        .posts1 .post .film {
            width: 242px;
            color: #929292;
            float: left;
            text-decoration: none;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .posts1 .post a img,
        .posts1 .post .film img {
            width: 240px;
            height: 348px;
            min-height: 155px;
            border: 2px solid #000;
        }
        .menumobile {
            background: #151515;
            width: 100%
        }
        .posts1 .post .post-title a {
            font-size: 14px !important;
        }
    }

    @media only screen and (max-width:300px) {
        .rmobil2 #banner1 ifx#frame,
        .rmobil2 #banner2 ifx#frame {
            width: 100%;
            height: 100%
        }
        .rmobil2 #banner3 ifx#frame {
            width: 100%
        }
    }

    .post:hover {
        box-shadow: 0px 0px 3px #606060 !important;
    }

    .bmicnormal {
        width: 300px;
        height: 100px;
    }

    .bmarenormal {
        width: 300px;
        height: 250px;
        margin-bottom: 2px;
    }

    @media (max-width:409px) and (min-width:300px) {
        .rmobil,
        .rmobil2 {
            height: 100px;
        }
        .rmobilmare {
            height: 250px;
        }
    }

    div#output {
        width: 740px;
        height: 439px;
    }

    @media (max-width: 1254px) and (min-width: 1020px) {
        div#output {
            width: 745px;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        div#output {
            width: 100%;
            height: 56.25vw;
        }
    }

    @media only screen and (max-width: 510px) {
        div#output {
            width: 100%;
            height: 56.25vw !important;
            z-index: 1020;
            background: #000;
        }
    }

    @media only screen and (max-width: 1020px) {
        .androidpatrat {
            background: #161cd400 !important;
            color: #fff !important;
            float: left;
            right: 10%;
            width: 14%;
            height: 18%;
            position: absolute;
            bottom: 14%;
        }
        .iphonepatrat {
            background: #d4171600 !important;
            color: #fff !important;
            float: left;
            left: 0%;
            width: 14%;
            height: 18%;
            position: absolute;
            top: 0%;
        }
        .patratpeste {
            background: #f0242300 !important;
            color: #fff !important;
            float: left;
            left: 15%;
            width: 70%;
            height: 55%;
            position: absolute;
            top: 10%;
        }
    }

    div#player {
        position: relative;
    }

    @media only screen and (max-width: 1019px) {
        div#banner1,
        div#banner2,
        .rmobil2 #banner1 ifx#frame,
        .rmobil2 #banner2 ifx#frame {
            width: 300px !important;
            height: 100px !important;
            display: initial;
        }
        div#banner3,
        .rmobil2 #banner3,
        ifx#frame {
            width: 300px !important;
            height: 250px !important;
            display: initial;
        }
    }

    .txtcentru,
    .txtcentru a {
        text-align: center !important;
        line-height: 31px;
    }

    .rmobil3mic {
        display: none;
    }

    @media only screen and (max-width: 1019px) {
        .rmobil3mic {
            position: relative;
            display: table;
            margin: 0 auto;
            width: 300px;
            height: auto !important;
            padding: 3px 0;
        }
        .rmobil3mic ifx#frame {
            width: 100% !important;
            height: 50px !important;
            display: initial;
        }
        .rmobil3mic ifx#frame a img {
            height: 30px !important;
        }
    }

    .anunt {
        text-align: center !important;
        font-size: 14px;
    }

    .multe {
        display: block;
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }

    .multe a {
        text-decoration: none;
        width: auto;
        display: inline-block;
        background: #39cfff;
        border-radius: 5px;
        padding: 7px 7px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        margin: 0 10px;
        border: solid 1px #232323;
    }

    .multe a:hover {
        background: #1e1e1e;
    }

    @media only screen and (min-width: 1021px) {
        .descriere {
            min-height: 343px !important;
        }
    }

    @media only screen and (min-width: 1255px) {
        .film {
            width: 500px;
            float: right;
        }
    }

    @media (max-width: 1254px) and (min-width: 1021px) {
        .video_block,
        .video-player,
        .video-player ifx {
            width: 1000px;
        }
        .descriere {
            width: 990px;
        }
    }

    .video-player,
    .video-player ifx {
        height: auto;
    }

    @media (max-width: 1254px) and (min-width: 1021px) {
        .video-player,
        .video-player ifx {
            height: auto;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .video-player,
        .video-player ifx {
            height: auto;
        }
    }

    @media only screen and (max-width: 510px) {
        .video-player,
        .video-player ifx {
            height: auto !important;
        }
    }

    .loading {
        position: relative;
        top: 0;
        left: 0;
        width: 740px;
        height: auto;
    }

    .loading img {
        border: 0 !important;
    }

    @media (max-width: 1254px) and (min-width: 1021px) {
        .loading {
            width: 1000px;
            height: 555px;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .loading {
            width: 100%;
            height: 286px;
        }
        .loading img {
            width: 510px;
            height: 286px;
        }
    }

    @media only screen and (max-width: 509px) {
        .loading {
            width: 100%;
            height: 56.25vw !important;
        }
        .loading img {
            width: 100%;
            height: 56.25vw !important;
        }
    }

    .marginesus {
        right: 0;
        position: absolute;
        top: 0;
        width: 60px;
        height: 60px;
    }

    .marginejos {
        float: right;
        right: 0;
        position: absolute;
        bottom: 0;
        width: 44px;
        height: 40px;
    }

    .entry-comments {
        margin: 0;
        text-align: left;
        clear: both;
        border-top: 1px solid #202020;
    }

    .comment-list {
        margin: 15px 0 0 !important;
        padding: 0 !important;
    }

    .comment-list li,
    .ping-list li {
        margin: 1px 0 !important;
        padding: 5px 0 !important;
        list-style: none;
        border-bottom: 0 solid #202020;
        position: relative;
    }

    .comment-author {
        padding: 10px 5px 0;
    }

    .comment-list li .avatar {
        background: #fff;
        border: 0 !important;
        float: left;
        margin: 0 10px 0 0;
        border-radius: 50%;
        -moz-border-radius: 50%;
    }

    .comment-list li .fn,
    .comment-list li .cfn {
        font-family: "Proxima Nova", 'proxima-nova', Arial, Helvetica, sans-serif;
        text-transform: none;
        font-size: 14px;
        display: inline-block;
        margin: 0;
        font-weight: 600;
    }

    .comment-list cite,
    .comment-list cite a,
    .ping-list cite,
    .ping-list cite a {
        font-weight: 700;
        font-style: normal;
    }

    .comment-list li .says {
        display: none;
    }

    .comment-content {
        padding: 6px 12px 10px;
        margin: 0;
        font-size: 15px;
        border: 1px solid #202020;
        border-radius: 3px;
        line-height: 1.5em !important;
    }

    .comment-content p {
        width: auto !important;
        padding-bottom: 10px !important;
    }

    .comment-list p,
    .ping-list p {
        font-weight: 400;
        text-transform: none;
        margin: 10px 5px 10px 0 !important;
        padding: 0;
        word-wrap: break-word;
        text-align: left !important;
        float: unset !important;
    }

    .comment-list li .reply {
        position: absolute;
        margin: -25px 0 0 10px;
        padding: 5px 10px;
    }

    #respond {
        clear: both;
        margin: 5px 0;
        padding: 5px 0 0;
        border-top: 1px solid #202020;
        text-align: center;
    }

    h3#reply-title {
        font-family: "Proxima Nova", 'proxima-nova', Arial, Helvetica, sans-serif;
        font-size: 16px;
        text-transform: none !important;
        line-height: 22px;
        padding: 0 !important;
        margin: 0 !important;
        font-weight: 400 !important;
    }

    #author,
    #email,
    #url {
        background: #000 !important;
        width: 90%;
        color: #999;
        font-size: 15px;
        padding: 8px 10px;
        margin: 5px 0 0;
        border: 1px solid #202020;
        outline: none;
    }

    #comment {
        background: #000 !important;
        width: 80%;
        height: 100px;
        color: #999;
        font-family: 'proxima-nova', Arial, Tahoma, Verdana;
        font-size: 15px;
        padding: 5px;
        margin: 5px 0;
        border: 1px solid #202020;
        outline: none;
        resize: vertical;
    }

    #submit {
        background: #39cfff;
        border: 0;
        cursor: pointer;
        color: #fff;
        font-size: 14px;
        padding: 10px 20px;
        display: inline-block;
        border-radius: 3px;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    #respond:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

    .posts1 .post a:hover,
    .posts1 .post .film:hover {
        color: #fff;
    }

    .pull2:hover {
        background-position: -373px -78px;
    }

    .paginator span,
    .paginator a {
        width: auto;
        color: #fff;
        background: #151515;
    }

    .paginator a:hover {
        color: #fff;
        background: #39cfff;
    }

    .footer .footer-links {
        width: 1254px;
        text-align: right;
        margin: auto;
    }

    .footer .footer-links ul li {
        margin: 0 10px;
        display: inline-block;
    }

    .sidebar div p a {
        color: #39cfff;
    }

    .deindex b {
        color: #39cfff;
    }

    .footer a {
        text-decoration: none;
        color: #39cfff;
        padding: 4px;
        margin: 2px;
        border-radius: 5px;
        background: #232323;
        display: inline-block;
    }

    .footer a:hover {
        color: #fff;
    }

    .sidebar {
        width: 1254px;
        border-top: solid 1px #202020;
        margin-top: 10px;
        float: left;
    }

    @media (max-width: 1254px) and (min-width: 1020px) {
        .paginator,
        .footer .footer-links,
        .sidebar {
            width: 1000px;
        }
    }

    @media (max-width: 1020px) and (min-width: 750px) {
        .paginator,
        .footer .footer-links,
        .sidebar {
            width: 750px;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .paginator,
        .footer,
        .footer .footer-links,
        .sidebar {
            width: 100%;
        }
    }

    @media only screen and (max-width: 510px) {
        .paginator,
        .footer,
        .footer .footer-links,
        .sidebar {
            width: 100% !important;
        }
        .footer,
        .footer .footer-links {
            margin: 0 auto !important;
        }
    }

    .posts1 .post a img,
    .posts1 .post .film img {
        object-fit: cover;
    }

    svg#search-icon {
        fill: #fff;
        width: 36px;
        height: 36px;
        left: 12px;
        top: 8px;
        position: relative;
    }

    svg#icon-burger {
        fill: #39cfff;
        box-sizing: border-box;
    }

    svg#play {
        display: block;
        cursor: pointer;
        transform-origin: 50% 50%;
        width: 80px !important;
        height: 80px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -40px;
        margin-left: -40px;
    }

    svg#play #triangle {
        fill: #ffffff7d;
        transition: 500ms;
        transform-origin: 50% 50%;
        stroke: #cd0000;
    }

    svg#play:hover #triangle {
        fill: #ffffff7d;
        transform-origin: 50% 50%;
    }

    svg #lineOne,
    svg #lineTwo {
        transform-origin: 50% 50%;
        transition: 1s;
        stroke: #ffffff;
    }

    svg:hover #lineOne {
        transform: rotate(260deg);
        -webkit-transform: rotate(260deg);
        -moz-transform: rotate(260deg);
        -o-transform: rotate(260deg);
        transform-origin: 50% 50%;
    }

    svg:hover #lineTwo {
        transform: rotate(-450deg);
        transform-origin: 50% 50%;
    }

    .video_block .loading img {
        object-fit: contain;
    }

    .video_block .loading a {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

    .multe a,
    #submit {
        color: #000000;
    }

    #labelx {
        text-align: left;
        display: block;
    }

    .sidebar {
        float: none;
        position: relative;
        margin: 0 auto;
        height: 100%;
        display: inline-block;
        margin-bottom: 10px;
    }

    @media (max-width: 1254px) and (min-width: 1021px) {
        .video_block .loading img {
            width: 1000px;
            height: 555px;
        }
    }

    .loading {
        height: auto !important;
    }

    .posts1 .post a,
    .posts1 .post .film {
        color: #ffffff;
    }

    .posts1 .post a:hover,
    .posts1 .post .film:hover {
        color: #39cfff;
    }

    .posts1 a:hover {
        color: #ffffff;
    }

    .fil1 {
        width: 100%;
        height: auto;
        border: 0;
        font-size: 18px;
        position: relative;
        padding-bottom: 10px;
        margin: 0 auto;
        justify-content: space-between;
        text-align: center;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }

    .fil1 b {
        -ms-flex: 1;
        opacity: 1;
        background-color: #222;
        display: block;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 2px;
    }

    .fil1a {
        border: 2px solid rgb(30 30 30);
        padding: .1em .8em;
        background: #000;
        text-decoration: none;
    }

    .fil1a a {
        vertical-align: middle;
        text-decoration: none;
    }

    .fil3 {
        background-color: #222;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        margin: 0 auto 0 auto !important;
        height: auto;
        z-index: 1025;
        position: absolute;
        width: 300px;
        top: 47px;
        left: 0;
        right: 0;
        border: 1px solid #2e2e2e;
    }

    .fil3 li {
        position: relative;
        display: block;
        margin-bottom: 0;
        line-height: 30px;
        font-weight: 400;
        font-size: 18px;
        border-bottom: 1px solid #2e2e2e;
    }

    .fil3 a {
        text-decoration: none;
    }

    svg#fil-burger {
        fill: #fff;
        width: 30px;
        height: auto;
        vertical-align: middle;
    }

    @media only screen and (max-width:510px) {
        .imdb {
            left: 2px;
            padding: 2px 5px 2px 5px;
            width: 59px;
            font-size: 14px;
            top: 2px;
            background: linear-gradient(to right, #c7b200 5%, #fbf308 27%, #ccbc00 45%, #c7c343 55%, #c7b200 70%);
            position: absolute;
            color: #fff;
        }
        .imdb b {
            font-size: 13px;
            color: #000;
        }
    }

    .hd {
        position: absolute;
        top: 6px;
        right: 6px;
        background: #ffcc00;
        color: #000;
        font-weight: bold;
        font-size: 13px;
        padding: 2px 6px;
        border-radius: 3px;
        line-height: 1;
        z-index: 3;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
        font-family: Arial, sans-serif;
        display: inline-block;
        white-space: nowrap;
    }

    .year-badge {
        position: absolute;
        top: 6px;
        left: 6px;
        background: #00ccff;
        color: #000;
        font-weight: bold;
        font-size: 13px;
        padding: 2px 6px;
        border-radius: 3px;
        line-height: 1;
        z-index: 3;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
        font-family: Arial, sans-serif;
        display: inline-block;
        white-space: nowrap;
    }

    @media only screen and (min-width:751px) {
        .axtopimdb {
            background: linear-gradient(to right, #c7b200 5%, #fbf308 27%, #ccbc00 45%, #c7c343 55%, #c7b200 70%);
            color: #151515 !important;
        }
        .axtopimdb:hover {
            color: #fff !important;
        }
        .axfilmec:hover {
            color: #fff !important;
        }
        .axfilmec {
            background: linear-gradient(to right, #c70000 5%, #fb0808 27%, #c00 45%, #c74343 55%, #c70000 70%);
            color: #151515 !important;
        }
    }

    @media only screen and (max-width:751px) {
        .xtopimdb {
            background: linear-gradient(to right, #c7b200 5%, #fbf308 27%, #ccbc00 45%, #c7c343 55%, #c7b200 70%);
        }
        .axfilmec,
        .axtopimdb {
            color: #151515 !important;
        }
        .xfilmec {
            background: linear-gradient(to right, #c70000 5%, #fb0808 27%, #c00 45%, #c74343 55%, #c70000 70%);
        }
    }

    .ani {
        font-size: 20px;
        font-weight: 700;
        margin: 10px;
    }

    .ani li {
        display: inline-block;
        font-weight: 700;
        margin: 5px;
        width: 45px;
        text-align: center;
        background: #1e1e1e;
        padding: 10px;
        border: 1px solid rgb(46 46 46);
    }

    @media only screen and (min-width:1254px) {
        .video-player,
        .video-player ifx {
            min-height: 442px !important;
        }
    }

    @media (max-width:1254px) and (min-width:1021px) {
        .video-player,
        .video-player ifx {
            min-height: 558px !important;
        }
    }

    @media (max-width:1020px) and (min-width:751px) {
        .video-player,
        .video-player ifx {
            min-height: 442px !important;
        }
    }

    @media (max-width:750px) and (min-width:510px) {
        .video-player,
        .video-player ifx {
            min-height: 289px !important;
        }
    }

    @media only screen and (max-width:509px) {
        .video-player,
        .video-player ifx {
            min-height: 76vw !important;
            display: block;
            padding-bottom: 1px;
            margin: 0;
            border: 0;
        }
    }

    .video-fav {
        position: relative;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        border-top: 1px solid #484848;
        border-bottom: 1px solid #484848;
        padding: 5px 0;
        background: #1e1e1e;
    }

    .bi-heart {
        vertical-align: middle;
        padding: 0 10px;
    }

    }

    @media only screen and (min-width: 1254px) {
        .top {
            height: 60px;
        }
    }

    .menumobile {
        height: auto;
        border-bottom: 0px;
        border-top: 0px;
    }

    .fb-share-button {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        height: 30px;
        display: block !important;
    }

    .film img,
    .posts1 .post-title {
        cursor: pointer;
    }

    .single-leftside {
        float: left;
        width: 244px;
        overflow: hidden;
        padding-right: 10px;
    }

    .singlethumb {
        font-size: 0;
        overflow: hidden;
    }

    .singlethumb img {
        width: 244px;
        height: 359px;
        max-width: 100%;
        object-fit: cover;
    }

    .single-watch-moviee {
        background: #151515;
        padding: 3px 0;
        float: left;
        width: 244px;
        text-align: center;
        margin-top: 3px;
        text-decoration: none;
        box-sizing: border-box;
    }

    .movie_link {
        width: 100%;
        float: left;
        font-size: 16px;
        color: rgba(250, 250, 250, 0.85);
        cursor: pointer;
        line-height: 1.2;
    }

    @media (max-width: 768px) {
        .single-watch-moviee {
            width: 48%;
            margin: 1% 1% 4px 0;
            padding: 8px;
        }
    }

    @media (max-width: 480px) {
        .single-watch-moviee {
            width: 100%;
            margin: 0 0 4px 0;
            padding: 8px;
        }
    }

    #respond {
        clear: both;
        margin: 15px 0;
        padding: 45px 0 0;
        border-top: 1px solid #202020;
        text-align: center;
        line-height: 25px;
        text-transform: none !important;
        font-size: 16px;
        background: #151515;
    }

    #author,
    #email,
    #url,
    #comment {
        width: 91%;
    }

    @media only screen and (max-width: 751px) {
        .single-leftside {
            overflow: hidden;
            width: 300px;
            padding: 0;
            margin: 0 auto;
            display: inline-block;
            float: none;
        }
        .playersicommentt {
            width: 100%;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .single-leftside {
            width: 244px;
        }
    }

    @media only screen and (min-width: 751px) {
        .descriere {
            width: 480px;
            min-height: 395px !important;
        }
    }

    .video-player,
    .video-player ifx {
        display: inline-block !important;
    }

    article {
        background: #151515;
    }

    @media only screen and (min-width: 1254px) {
        .video_block {
            width: 1254px;
        }
        .descriere {
            width: 990px !important;
            min-height: 395px !important;
        }
        .video-player,
        .video-player ifx {
            width: 740px;
        }
        .playersicommentt {
            display: inline-block;
            width: 740px;
            box-shadow: 0px 0px 3px #606060;
        }
    }

    @media only screen and (min-width: 1021px) {
        .descriere {
            width: 730px;
            min-height: 395px !important;
        }
    }

    @media only screen and (max-width: 510px) {
        .singlethumb img {
            width: 300px;
            height: 444px;
            object-fit: cover;
        }
    }

    .playersicommentt {
        display: inline-block;
    }

    @media only screen and (min-width: 1px) {
        .descriere {
            text-transform: initial;
        }
        a {
            text-decoration: none;
        }
    }

    .episoade a {
        color: #39cfff;
        overflow: auto;
        border-radius: 3px;
        background: #232323;
        display: inline-block;
        width: 33%;
        padding: 5px 0 5px 0;
        font-size: 14px;
        text-align: left;
        margin-left: 2px;
        font-weight: bold;
    }

    @media only screen and (max-width: 750px) {
        .episoade a {
            width: 49%;
        }
    }

    @media only screen and (max-width: 470px) {
        .episoade a {
            width: 48%;
        }
    }

    .sezon b {
        color: #ffffff;
        width: 100%;
        text-align: center;
        background: #383737;
        margin-left: 0px !important;
        overflow: auto;
        border-radius: 3px;
        display: inline-block;
        padding: 5px 0 5px 0;
        font-size: 14px;
        font-weight: bold;
    }

    .episoade a:visited {
        color: #ffffff;
    }

    #player {
        text-align: left;
    }

    .singlethumb {
        position: relative;
    }

    .derulare {
        right: 2px;
        bottom: 64px;
        padding: 2px 5px 2px 5px;
        width: 82px;
        font-size: 12px;
        background: #151515;
        position: absolute;
        color: #39cfff;
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
    }

    @media only screen and (max-width: 750px) {
        .derulare {
            right: 0px;
            bottom: 86px;
        }
    }

    @media only screen and (max-width: 510px) {
        .derulare {
            right: 0px;
            top: 426px;
            height: 14px;
        }
    }

    @media only screen and (min-width: 1254px) {
        .playersicommentt,
        .video-player,
        .video-player ifx {
            width: 1000px;
        }
        .film {
            width: 250px;
        }
        .video-player,
        .video-player ifx {
            min-height: 450px !important;
        }
    }

    .titlu-single {
        color: #ffffff;
        width: 100%;
        background: #383737;
        margin-left: 0px !important;
        overflow: auto;
        border-radius: 3px;
        display: inline-block;
        padding: 0;
        font-size: 14px;
        font-weight: bold;
        text-indent: 5px;
    }

    @media only screen and (max-width: 510px) {
        .video-tags h1 {
            border-bottom: 0;
        }
    }

    .adsk {
        min-height: 375px;
        display: block;
    }

    .top {
        position: relative;
        z-index: 90017;
    }

    .mgline-cover-link,
    mgbottom_media,
    image-with-text {
        z-index: 99999 !important;
    }

    body ifx {
        position: relative;
        z-index: 90017 !important;
    }

    html ifx {
        position: relative;
        z-index: 90019 !important;
    }

    .video-category ifx,
    .video-player ifx {
        z-index: 90017 !important;
    }

    .multe {
        position: relative;
        z-index: 1;
    }

    .descriere,
    .comment-respond,
    .sdescriere b {
        color: #fff;
    }

    @media only screen and (max-width: 510px) {
        .posts1 .post-title,
        .posts1 .post .post-title a {
            height: auto;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .posts1 .post {
            height: auto;
        }
        .posts1 .post-title {
            height: auto;
            text-align: left;
        }
    }

    @media (max-width: 1024px) and (min-width: 751px) {
        .posts1 .post {
            height: auto;
            ;
        }
        .posts1 .post-title {
            height: auto;
            text-align: left;
        }
        .derulare {
            height: 14px;
            top: 343px;
        }
    }

    .video-category ifx,
    .video-player ifx {
        height: 439px;
    }

    @media (max-width:1024px) and (min-width:750px) {
        .video-category ifx,
        .video-player ifx {
            height: 580px;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        .video-category ifx,
        .video-player ifx {
            height: 300px;
        }
    }

    @media only screen and (max-width: 509px) {
        .video-category ifx,
        .video-player ifx {
            height: 300px;
        }
    }

    .video-category.trailer {
        width: 100%;
        margin-left: 0px;
    }

    @media only screen and (min-width: 1254px) {
        .video-player,
        .video-player ifx {
            min-height: 439px !important;
        }
        .playersicommentt,
        .video-player,
        .video-player ifx {
            width: 100%;
        }
        .film {
            width: 100%;
        }
    }

    video#videoPlayer {
        width: 100%;
        min-height: 439px !important;
        height: 439px;
        z-index: 90017 !important;
        position: relative;
    }

    @media (max-width: 1254px) and (min-width: 1021px) {
        video#videoPlayer {
            min-height: 558px !important;
        }
    }

    @media (max-width: 1020px) and (min-width: 751px) {
        video#videoPlayer {
            height: 580px;
            min-height: 442px !important;
        }
    }

    @media (max-width: 750px) and (min-width: 510px) {
        video#videoPlayer {
            height: 300px;
            min-height: 289px !important;
        }
    }

    @media only screen and (max-width: 509px) {
        video#videoPlayer {
            height: auto !important;
            min-height: 120vw !important;
            padding-bottom: 1px;
            margin: 0;
            border: 0;
        }
    }

    video#videoPlayer[poster] {
        width: 100%;
        max-height: 98vw !important;
    }

    .seriale {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 5px;
        margin: 2px;
        padding: 0;
        list-style: none;
    }

    .seriale li {
        background: #2a2a2a;
        border: 1px solid #3a3a3a;
        border-radius: 5px;
        text-align: center;
        transition: .3s;
    }

    .seriale li a {
        display: block;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        padding: 5px;
    }

    .seriale li:hover {
        background: #3b3b3b;
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
    }

    @media(max-width:600px) {
        .seriale {
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
        }
        .seriale li a {
            font-size: 12px;
            padding: 10px 6px;
        }
    }

    .ani {
        font-size: 12px;
        font-weight: 700;
        margin: 10px;
    }

    .ani li {
        display: inline-block;
        font-weight: 700;
        margin: 5px;
        width: 45px;
        text-align: center;
        background: #1e1e1e;
        padding: 10px;
        border: 1px solid rgb(46 46 46);
    }

    .thumb-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .thumb-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        aspect-ratio: 16/9;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .3s;
        z-index: 2;
    }

    .thumb-wrapper:hover .play-button {
        opacity: 1;
    }

    .play-icon {
        display: block;
        width: 0;
        height: 0;
        border-left: 15px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    @media only screen and (min-width: 361px) and (max-width: 510px) {
        .posts1 {
            grid-template-columns: repeat(2, 1fr);
        }
        .posts1 .post {
            width: 48%;
            margin: 3px 3px;
            border-radius: 8px;
            overflow: hidden;
        }
        .posts1 .post img {
            max-width: 95%;
            max-height: 260px;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 6px auto;
            border: 2px solid #444;
            border-radius: 6px;
            padding: 2px;
        }
        .posts1 .post-title,
        .posts1 .post .post-title a {
            padding: 0 8px;
            max-width: 25ch;
            font-size: 14px !important;
            line-height: 1.3em !important;
            max-height: 2.6em !important;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        h1 {
            font-size: 16px !important;
            line-height: 1.2em !important;
            margin: 10px 0 !important;
            word-break: break-word;
        }
        h2 {
            font-size: 16px !important;
            line-height: 1.2em !important;
            margin: 10px 0 !important;
            word-break: break-word;
        }
        h3 {
            font-size: 16px !important;
            line-height: 1.2em !important;
            margin: 10px 0 !important;
            word-break: break-word;
        }
    }

    @media(max-width:600px) {
        .seriale {
            grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
            gap: 4px;
        }
        .seriale li a {
            font-size: 12px;
            padding: 3px;
        }
    }

    @media (max-width: 600px) {
        .hd {
            top: 4px;
            right: 4px;
            font-size: 12px;
            padding: 1.5px 5px;
            border-radius: 4px;
        }
        .year-badge {
            top: 4px;
            left: 4px;
            font-size: 12px;
            padding: 1.5px 5px;
            border-radius: 4px;
        }
    }

    .vertical-line {
        display: inline-block;
        width: 3px;
        height: 1.0em;
        background-color: #39cfff;
        vertical-align: middle;
        border-radius: 1px;
        margin: 0 2px;
    }

    @media (max-width: 480px) {
        .vertical-line {
            width: 4px;
            margin: 0 4px;
        }
    }