/* :root {
    --text: #989898;
    --text-light: #fff;
    --theme-body: #151414;
    --text-news: #d0d0d0;
    --border-news: #272727;
    --blue: #408bea;
} */
:root {
    --text: rgb(152, 152, 152);
    --text-light: rgb(255, 255, 255);
    --theme-body: rgb(21, 20, 20);
    --text-news: rgb(208, 208, 208);
    --border-news: rgb(39, 39, 39);
    --blue: rgb(64, 139, 234);

    /* Nino add color */
    --red: rgb(255, 0, 0);
}


.movies_container-hot {
    overflow: hidden;
}

.list_film--hot {
    display: flex;
    width: 100%;

    overflow-x: scroll;
    transition: transform 0.3s ease;
}

.list_film--hot::-webkit-scrollbar {
    height: 0px;
}

.movies_hot--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
}

.movies_hot--title h2 {
    font-size: 20px;
    border-left: 3px solid var(--blue);
    padding: 4px 10px;
    margin-left: 10px;
}

.movies_hot--title a {
    text-decoration: none;
    color: var(--text-light);
    background-color: #408bea;
    border-radius: 5px;
    display: flex;
    width: fit-content;
    height: fit-content;
}

.movies_hot--title span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    padding: 5px;
}

.click_scroll {
    color: var(--text);
}

.click_scroll ion-icon {
    padding: 4px 0;
    cursor: pointer;
}

.click_scroll ion-icon:hover {
    color: var(--blue);
}

.poster {
    min-width: 160px;
    height: 250px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 30px;
}

/* top */
.data--top {
    width: 140px;
    height: 196px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}



.poster .featu,
.poster .topic--film {
    position: absolute;
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.poster .featu {
    top: 0;
    left: 0;
    width: 62px;
    background: var(--red);
    color: var(--text-light);
    padding: 2px 5px;
    border-radius: 0px 0 5px 0px;
}

.poster .topic--film {
    bottom: 7px;
    left: 7px;
    background-color: var(--blue);
    color: var(--text-light);
    width: 96px;
    border-radius: 3px;
}

.poster .play {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    fill: var(--text-light);
    z-index: 2;
}

.data--top:hover .play {
    display: block;
    font-size: 60px;
}

.poster img {
    width: 100%;
    object-fit: cover;
}

.data--top:hover img {
    transform: scale(1.3);
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(50px);
    opacity: 0.2;
    z-index: 1;
    filter: blur(2px);
}

/* featu/bottom */
.data--featu a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 20px;

}

.data--featu a:hover {
    color: var(--blue);
}

.data--featu .year {
    display: block;
    font-size: 12px;
    color: var(--text);
    line-height: 18px;
}


/* keyframes */
.play {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}