/* ====== LECTEUR VIDÉO ====== */
#main-player .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1002; 
    display: none; 
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 0 60px 90px;
    border-color: transparent transparent transparent #ff6600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#main-player .close-btn {
    position: absolute;
    top: 7px;
    left: 5px;
    width: 20px;
    height: 20px;
    background-color: #333;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    line-height: 18px;
    border-radius: 10%;
    cursor: pointer;
    z-index: 1001;
    display: none;
    transition: background-color .3sease;
    box-shadow: 0 0 4px 2px #000000b8;
}

#main-player.fixed-player .close-btn {
    display: block; 
}

#main-player .close-btn:hover,
#main-player .close-btn:focus {
    background-color: #433800;  
}

#player-container {
    border-radius: 8px;
    height: 400px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

#main-player {
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#play-button {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 0 60px 90px;
    border-color: transparent transparent transparent #ff6600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#main-player:hover #play-button,
#main-player:focus #play-button {
    transform: scale(1.2);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#player-options {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 50px;
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    padding: 5px;
}

.player-option {
    position: relative;
    padding: 10px 15px;
    background-color: #3a3a3a;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.player-option.active {
    border-bottom: 3px solid #f48625;
}

.version-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #000;
    border-radius: 4px 4px 0 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.version-option {
    cursor: pointer;
    text-align: center;
    border: 1px solid #5151516b;
}

.version-option:hover,
.version-option:focus {
    background-color: #4a4a4a;
}

.customDiv {
    height: 70px !important;
    width: auto;
}

/* Fixed player pour différents écrans */
@media (max-width: 768px) {
    #main-player.fixed-player {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        z-index: 1000;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    }

    #main-player.fixed-player iframe {
        width: 100%;
        height: 100%;
    }
    
    #player-container {
        height: auto;
    }
    
    #main-player {
        aspect-ratio: 12 / 9;
        height: auto;
    }
    
    #player-options {
        position: static;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        -ms-overflow-style: none;
        padding: 5px;
        gap: 0;
    }
    
    #player-options::-webkit-scrollbar {
        display: none;
    }
    
    .player-option {
        flex: 0 0 auto;
        margin-right: 0;  
        padding: 1px 0px;
    }
    
    .version-dropdown {
        position: absolute;
        top: 100%;
        bottom: auto;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .customDiv {
        height: 20px !important;
    }
    
    .play-button {
        border-width: 40px 0 40px 60px;
    }
}

@media (min-width: 769px) {
    #main-player.fixed-player {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 400px;  
        height: 170px; 
        z-index: 10000;
        box-shadow: 0 0 15px rgb(0 0 0);
    }

    #main-player.fixed-player iframe {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 480px) {
    .play-button {
        border-width: 40px 0 40px 60px;
        top: 45%;
        left: 55%;
    }
}

@media screen and (max-width: 320px) {
    .play-button {
        border-width: 40px 0 40px 60px;
        top: 45%;
        left: 55%;
    }
}

@media screen and (max-height: 500px) {
    .play-button {
        border-width: 40px 0 40px 60px;
    }
}

/* ====== INTERFACE SWITCHER ====== */
.version-switcher-form {
    position: absolute;
    top: 5px;  
    right: 5px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    height: 25px;  
}

.version-switcher-btn {
    background: linear-gradient(to right, #00000000, #f4862552);
    border: none;
    color: white;
    padding: 0;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    height: 20px !important;  
    line-height: 20px !important; 
    min-height: 20px;  
    max-height: 20px;  
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.version-switcher-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #ffffff00, #000000);
    height: 25px !important;
}

.version-switcher-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 25px !important;
}

.version-switcher-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ====== POSTER MODAL ====== */
.thumbnail {
    width: 160px;
    height: 240px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 10px;
    width: 99%;
    height: auto;
    max-height: 90%;
    overflow: hidden;
    top: 15%;
    box-shadow: 4px 3px 2px 2px #333;
    border: 1px solid rgba(239, 112, 0, 0.1);
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.poster {
    perspective: 900px;
    width: 100%;
    height: auto;
    transition: transform 0.5s;
    overflow: hidden;
}

.poster img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #5f5f5f8f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.poster:hover {
    transform: rotateY(180deg);
}

/* ====== TRAILER MODAL ====== */
.close-custom {
    color: white;
    background-color: #f48625;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.close-custom:hover,
.close-custom:focus {
    background-color: #ff7043;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

#openModalBtnCustom {
    cursor: pointer;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
    position: relative;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #f486253b;
    border-radius: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 2px;
    margin: 10px 5px 6px 0px;

}

#openModalBtnCustom::before {
    content: '▶';
    font-size: 20px;
    margin-right: 10px;
    color: #f48625;
    transition: color 0.3s ease;
}

#openModalBtnCustom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f48625;
    transition: left 0.7s ease;
    z-index: 0;
}

#openModalBtnCustom:hover::after {
    left: 0;
}

#openModalBtnCustom span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

#openModalBtnCustom .initial-text {
    color: #FFFFFF;
}

#openModalBtnCustom .filled-text {
    position: absolute;
    opacity: 0;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

#openModalBtnCustom:hover .initial-text {
    opacity: 0;
}

#openModalBtnCustom:hover .filled-text {
    opacity: 1;
}

#openModalBtnCustom:hover {
    transform: scale(1.1);
}

#openModalBtnCustom:hover::before {
    color: #FFFFFF;
}

#openModalBtnCustom:active {
    transform: scale(1.05);
}

.modal-custom {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.90);
}

.modal-content-custom {
    background-color: transparent;
    margin: 0;
    padding: 20px;
    border: none;
    width: 90%;
    height: 70vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ====== STYLES DE COMMENTAIRES ====== */
.comm-item {
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    margin: 20px 1px 1px 10px;
    background-color: #25252500;
    padding: 20px 20px 20px 90px;
}

.comm-right {
    width: 100%;
    float: right;
    padding: 10px;
    position: relative;
    background-color: #1111115c;
}

.comms-bg {
    background-color: #3330;
}

#topcomms .comm-item {
    box-shadow: 0 0 20px rgb(97 97 97 / 80%);
    margin: 20px 1px 50px 10px;
    background-color: #25252500;
    padding: 20px 20px 20px 90px;
}

.ac-inputs input {
    width: 49%;
    background-color: #6660;
    box-shadow: 0 0 0 1px #fff, inset 1px 1px 3px 0 rgba(0, 0, 0, .5);
}

textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #111;
    background-color: #66666630;
    color: #fff;
    border-radius: 0 0 0 0;
    box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, .1);
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

.afficher-btn {
    padding: 4px 8px;
    background-color: #f48625;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    white-space: nowrap;
    font-size: 16px;
}

.afficher-btn:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* ====== VOTE STYLES ====== */
.rate-minus .fa {
    color: #dd4d1b;
    margin-right: 5px;
    font-size: 30px;
}

.rate-minus:hover, .rate-minus:hover .fa {
    color: #fff0;
}

.rate-plus .fa {
    color: #33a42d;
    margin-right: 5px;
    font-size: 28px;
}

.rate-plus, .rate-minus {
    cursor: pointer;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    color: rgb(0 0 255 / 0%);
    border-radius: 50%;
    overflow: hidden;
}

.rate-plus:hover, .rate-plus:hover .fa {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    color: rgb(0 0 255 / 0%);
    border-radius: 50%;
    overflow: hidden;
}

.fr-count {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1d1d1d;
    box-shadow: inset 0 0 0 1px #ffffff1c;
}

.fr-count>div {
    font-size: 28px;
}

/* ====== PAGE STYLES ====== */
.fmain {
    background-color: #1d1d1d;
    padding: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 3px 0 rgb(0 0 0);
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
}

.fposter img, .fposter a {
    width: 100%;
    display: block;
    box-shadow: 5px 10px 20px 3px rgba(1,1,1,.9);
}

 

.banner {
    position: relative;
    width: 300px;
    height: 100px;
    padding: 20px;
    position: absolute;
    top: 100px;
    left: 50%;
    margin: -70px 0 0 -170px;
}

.slice-masked:before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    pointer-events: none;
    background: -webkit-linear-gradient(top,rgba(51,51,51,0) 0%,#333 100%);
    background: linear-gradient(to bottom,rgba(51,51,51,0) 0%,#1d1d1d 100%);
}

.pages {
    background-color: #1e1e1e6b;
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    margin: 20px 1px 1px 10px;
}

/* ====== FILM QUALITY BADGES ====== */
#film_quality {
    font-size: 11px;
    text-transform: uppercase;
    background: #333;
    color: #fff;
    margin-left: 2px;
    padding: 2px 5px;
    border-radius: 3px;
}

.desc-text {
    font-size: 5px;
    visibility: hidden;
}

/* ====== DOWNLOAD BUTTON ====== */
.downloadContainer {
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 19px;
    user-select: none;
    position: relative;
    overflow: hidden;  
    padding: 10px;
    text-align: right; 
}

.downloadContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f48625;
    transition: left 1.7s ease;  
    z-index: 0;
}

.downloadContainer:hover::before {
    left: 0;
}

.downloadContainer p {
    position: relative;
    z-index: 1; 
    margin: 0;  
    transition: opacity 1.3s ease;
}

.downloadContainer:hover p {
    opacity: 1; 
}

.downloadContainer span {
    position: relative;
    z-index: 1; 
}

#downloadOptions {
    display: none;
    margin-top: 20px;
}

.option {
    display: block;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #f48625;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden; 
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f48625;
    transition: left 1.7s ease;  
    z-index: 0;
}

.option:hover::before {
    left: 0;
}

.option span {
    position: relative;
    z-index: 1; 
}

.option:hover {
    color: #ffffff; 
}

 .dvd-container {
    display: inline-block;
    cursor: pointer;
}

.dvd-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.dvd-thumbnail:hover {
    transform: scale(1.05);
}
 .dvd-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
}

.dvd-popup {
    position: relative;
    margin: 10% auto;
    width: 80%;
    max-width: 450px;
}

.dvd-close {
    position: absolute;
    top: -30px;
    right: 30px;
    color: #f48625;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

 .dvd-viewport {
    perspective: 1500px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dvd-poster {
    position: relative;
    width: 320px;
    height: 480px;
    transform-style: preserve-3d;
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.1s ease-out;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-radius: 8px;
}

.dvd-poster-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 8px;
}

.dvd-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

 .dvd-edge-left, .dvd-edge-right, .dvd-edge-top, .dvd-edge-bottom {
    position: absolute;
    background-color: #33383e; 
    box-shadow: inset 0 0 5px rgba(120, 140, 160, 0.3);  
}

.dvd-edge-left {
    left: -10px;
    top: 0;
    width: 10px;
    height: 100%;
    transform: translateX(-50%) rotateY(-90deg);
    transform-origin: right center;
}

.dvd-edge-right {
    right: -10px;
    top: 0;
    width: 10px;
    height: 100%;
    transform: translateX(50%) rotateY(90deg);
    transform-origin: left center;
}

.dvd-edge-top {
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    transform: translateY(-50%) rotateX(90deg);
    transform-origin: center bottom;
}

.dvd-edge-bottom {
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    transform: translateY(50%) rotateX(-90deg);
    transform-origin: center top;
}

 .dvd-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 20%, 
        rgba(255,255,255,0) 40%
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    border-radius: 8px;
}

.dvd-rating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
}
    
.vote-circle {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.vote-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(#2ecc71 0 var(--rating-percent, 0%), #e74c3c var(--rating-percent, 0%) 100%);
    z-index: 1;
}

.vote-circle::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #222;
    border-radius: 50%;
    z-index: 2;
}

.vote-score {
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

a,a:visited{outline:none;text-decoration:none;color:#8a8a8a;cursor:pointer;transition:all .2s linear;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear}
a:hover,a:active{outline:none;text-decoration:none;color:#8a8a8a;cursor:pointer}

 #fsElementsContainer {
    box-sizing: border-box;
    margin: 0;
    padding: 1px;
}

.statu2 {
    background: #310000fa;
    font-size: 11px;
    left: 2px;
    position: absolute;
    top: 93%;
    z-index: 1;
    padding: 1px 1px 1px 1px;
    text-shadow: 0 0 2px rgb(248 170 12);
    border-radius: 5%;
    color: #fff;

}
    
        .final2 {
    background: #3f0000fa;
    font-size: 12px;
    left: 2px;
    position: absolute;
    top: 90%;
    z-index: 1;
    /* padding: 1px 1px 1px 1px; */
    text-shadow: 0 0 2px rgb(255 255 255);
    /* border-radius: 5%; */
    padding: 2px 3px 2px 3px;
    /* text-shadow: 0 0 2px rgb(162 108 0); */
    border-radius: 5%;
}
    
         .fa-play-circle2:before {
content: "\f04b";
    font-style: normal;
    font-weight: 400;
    speak: none;
    display: inline-block;
    text-decoration: inhyerit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    font-size: 160px;
    color: #ed760c;
    display: block;
    animation: pulser 1s ease infinite alternate;
    cursor: pointer;
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
	}
        
        
        
 
.movie_player {
    width: 100%;
    float: left;
    height: 400px;
    background-size: cover;
    position: relative;
    margin-bottom: 0px;
}
.movie_player .rotten_tabs {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 12;
    float: right;
}
.movie_player .rotten_tabs .tab {
    float: left;
    width: 50px;
    height: 80px;
    margin-left: 10px;
    background: #fff linear-gradient(to top,rgba(0,0,0,0.1),transparent);
    border-top: 2px solid transparent;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
}
.movie_player .rotten_tabs .tab.imdb {
    border-top-color: #f4b350;
}
.movie_player .rotten_tabs .tab .icon {
    width: 36px;
    height: 36px;
    display: block;
    margin: 10px auto 0;
 
}
.movie_player .rotten_tabs .tab.imdb .icon {
    background-size: 75px;
    background-position: -71px 20px;
    height: 20px!important;
    margin-bottom: 11px;
    margin-top: 15px;
}
.movie_player .rotten_tabs .tab > span {
    float: left;
    width: 100%;
    text-align: center;
    font-size: .7em;
    font-weight: 500;
    color: #555;
    padding: 3px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
.movie_player .play_bg {
    background: rgba(0,0,0,0.2) linear-gradient(to left bottom,rgba(0,0,0,0.2),rgb(0, 0, 0));
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    float: left;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.movie_player .content_pe {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    float: left;
    width: 100%;
    z-index: 2;
    background-color: #1d1d1d;
    box-shadow: 0 0 20px rgb(0 0 0)
}
@keyframes pulser{0%{text-shadow:0 0 0 rgba(238,238,238,.8);transform:scale(.9)}100%{text-shadow:0 0 20px rgba(238,238,238,.8);transform:scale(1)}}
.movie_player .content_pe .movie_infos_mini {
    float: left;
    width: 100%;
    padding: 20px;
}
.movie_player .content_pe .movie_play {
    float: left;
    width: 100%;
    padding: 70px 0 0;
}
.movie_player .content_pe .movie_infos_mini .title {
    float: left;
    width: 100%;
    font-size: .9em;
    font-weight: 500;
    color: #fff;
}
.movie_player .content_pe .movie_infos_mini .starring {
    float: left;
    width: 100%;
    font-size: .75em;
    font-weight: 400;
    color: rgba(255,255,255,.8);
}
.movie_player .content_pe .movie_infos_mini .starring span {
    font-weight: 500;
    color: #fff;
}
.movie_player .content_pe .movie_play {
    float: left;
    width: 100%;
    padding: 70px 0 0;
}
.movie_player .content_pe .movie_play .ico {
    text-align: center;
    font-size: 72px;
    color: #fff;
    display: block;
    animation: pulser 1s ease infinite alternate;
    cursor: pointer;
}
.movie_player .content_pe .movie_play .movie_i {
    float: left;
    width: 100%;
}
.movie_player .content_pe .movie_play .movie_i .titler {
    width: 300px;
    text-align: center;
    color: rgba(255,255,255,.8);
    display: block;
    margin: 0 auto;
}
.movie_player .content_pe .movie_play .movie_i .qualidad {
    width: 300px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.movie_player .content_pe .movie_play .movie_i .qualidad .quality {
    background: rgba(255,255,255,.7);
    border-radius: 3px;
    font-size: .6em;
    font-weight: 500;
    color: rgba(0,0,0,.5);
    font-style: normal;
    padding: 1px 2px;
    display: inline-block;
}

.content_pe .movie_play .movie_i .qualidad .duration {
    font-size: .75em;
    font-weight: 500;
    color: #fff;
    display: inline-block;
}
.movie_player .content_pe .movie_play .movie_i .titler a {
    color: #fff;
    font-size: .8em;
    font-weight: 500;
}
.block-title .title {
    float: left;
    width: 100%;
    font-size: 1.05em;
    color: rgba(255,255,255,.8);
    font-family: rubik,sans-serif;
}
.block-title .sp {
    float: left;
    height: 2px;
    width: 25px;
    background: linear-gradient(to left,#f9bf3b,#966a05);
    opacity: .5;
    margin-top: 2px;
}
.overall_content .container .right-side.movie-view .suggestions {
	float: left;
	width: 100%;
	padding: 15px 0 0;
	border-top: 1px solid #f4f4f4;
}

.overall_content .container .right-side.movie-view .suggestions .title {
	float: left;
	width: 100%;
	font-size: .85em;
	font-weight: 600;
	color: #463586;
	position: relative;
	padding: 0 15px 15px;
}
 
 
 

.overall_content .container .right-side.movie-view .overlay-pub {
	float: left;
	width: 100%;
	overflow: hidden;
	text-align: center;
	padding: 20px 0;
}

.overall_content .container .right-side.movie-view .movie-players {
	    float: left;
    width: 100%;
    display: none;
        padding: 0 10px;
}
 
 
.fposter img, .fposter a {
    width: 100%;
    display: block;
    box-shadow: 5px 10px 20px 3px rgba(1,1,1,.9);
}
    .berrors {
    background: #3b3b3b;
    color: #a76846;
    margin: 0 0 20px;
    padding: 10px 20px;
}
    
    .center {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}
       .fr-count {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1d1d1d;
    box-shadow: inset 0 0 0 1px #ffffff1c;
}
.fr-count>div {
 
    font-size: 28px;
 
}
    
          .comms-bg {
    background-color: #3330;
}
     
div[novot] {
    cursor: pointer;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 14px;
    color: #497b41;
    margin: 0 5px 0 0;
    vertical-align: top;
}

 
#topcomms .comm-item {
    box-shadow: 0 0 20px rgb(97 97 97 / 80%);
    margin: 20px 1px 50px  10px;
    background-color: #25252500;
    padding: 20px 20px 20px 90px;
}

 .ac-inputs input {
    width: 49%;
    background-color: #6660;
    box-shadow: 0 0 0 1px #fff, inset 1px 1px 3px 0 rgba(0, 0, 0, .5);
}
textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #111;
    background-color: #66666630;
    color: #fff;
    border-radius: 0 0 0 0;
    box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, .1);
    overflow: auto;
    vertical-align: top;
    resize: vertical;
	
	}
	a,a:visited{outline:none;text-decoration:none;color:#67676700;cursor:pointer;transition:all .2s linear;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear}
a:hover,a:active{outline:none;text-decoration:none;color:#67676700;cursor:pointer}
}


  .fmain {
    background-color: #1d1d1d;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 50%);
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
        }
 .comm-item {
     box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    margin: 20px 1px 50px 10px;
    background-color: #25252500;
    padding: 20px 20px 20px 90px;
} 
    
    .button36 {
color: #ea7106;
    display: inline-block;
    margin: 0px -1px 6px -5px;
    padding: 5px 3px 6px;
    text-decoration: none;
    width: 100%;
    line-height: 20px;
    font-size: 29px;
    text-align: left;
}

.close-custom {
    color: white;
    background-color: #f48625;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.close-custom:hover,
.close-custom:focus {
    background-color: #ff7043;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

#openModalBtnCustom {
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
    position: relative;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #f486253b;
    border-radius: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 10px;
    width: fit-content;  
    min-width: 150px;   
    max-width: 200px;  
    padding: 6px 10px;    
    font-size: 0.8rem;   
    padding: 1px 10px; 
    box-shadow: 5px 10px 20px 3px rgba(1, 1, 1, .9);
}

#openModalBtnCustom::before {
    content: '▶';
    font-size: 20px;
    margin-right: 10px;
    color: #f48625;
    transition: color 0.3s ease;
}

#openModalBtnCustom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f48625;
    transition: left 0.7s ease;
    z-index: 0;
}

#openModalBtnCustom:hover::after {
    left: 0;
}

#openModalBtnCustom span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

#openModalBtnCustom .initial-text {
    color: #FFFFFF;
}

#openModalBtnCustom .filled-text {
    position: absolute;
    opacity: 0;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

#openModalBtnCustom:hover .initial-text {
    opacity: 0;
}

#openModalBtnCustom:hover .filled-text {
    opacity: 1;
}

#openModalBtnCustom:hover {
    transform: scale(1.1);
}

#openModalBtnCustom:hover::before {
    color: #FFFFFF;
}

#openModalBtnCustom:active {
    transform: scale(1.05);
}

.modal-custom {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.90);
}

.modal-content-custom {
    background-color: transparent;
    margin: 0;
    padding: 20px;
    border: none;
    width: 90%;
    height: 70vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

                                         .slice-masked:before {
  
    background: -webkit-linear-gradient(top,rgba(51,51,51,0) 0%,#333 100%);
    background: linear-gradient(to bottom,rgba(51,51,51,0) 0%,#1f1f1f 100%);
}
                                         
                                         .flist-col {
    width: 100%;
    padding-right: 20px;
    float: left;
}
                                         
                                         
         
                                         
                            .rate-minus .fa {
    color: #dd4d1b;
    margin-right: 5px;
    font-size: 30px;
}
    .rate-minus:hover, .rate-minus:hover .fa {
    color: #fff0;
        
}
                            
.rate-plus .fa {
    color: #33a42d;
    margin-right: 5px;
    font-size: 28px;
}
 .rate-plus, .rate-minus {
    cursor: pointer;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    color: rgb(0 0 255 / 0%);;
    border-radius: 50%;
    overflow: hidden;
}
                          
    .rate-plus:hover, .rate-plus:hover .fa {
    
      width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    color: rgb(0 0 255 / 0%);;
    border-radius: 50%;
    overflow: hidden;
       } 
        .rate-plus .fa {
    color: #33a42d;
    margin-right: 5px;
}


    .short-label {
    right: 5px;
    top: 30px;
    color: #fff;
    background-color: #333;
    text-transform: uppercase;
}
    .short-qual {
    right: 5px;
    top: 5px;
    color: #fff;
    background-color: #333;
}


    
.thumbnail {
    width: 160px;
    height: 240px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 60%;
    max-width: 450px;
    height: auto;
    max-height: 90%;
    overflow: hidden;
    top: 15%;
 }

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.poster {
    perspective: 900px;
    width: 100%;
    height: auto;
    transition: transform 0.5s;
    overflow: hidden;
}

.poster img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #f48625;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.poster:hover {
    transform: rotateY(180deg);
}


    .desc-text {
            font-size: 5px;
            visibility: hidden; 
        }