body {
    text-align: center;
    background-color: #050a14;
    color: white;
    margin: 0;
    position: relative;
}

* {
    text-align: center;
    font-family: 'Poppins';
    font-weight: 100;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.img-container {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.img-container img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.img-container img.next {
    opacity: 1;
    z-index: 1;
}

.img-container img.prev {
    opacity: 1;
    z-index: 2;
}

.img-container img.fade-out {
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
    visibility: hidden;
}

/* Page */
.titre-filtre {
    font-size: 35px;
}

.content-box {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
}

.info-desc {
    font-size: 8px;
}

.news-card {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: 5px;
    padding: 3px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 0 0 12px transparent;
    cursor: pointer;
    transition: .3s;
}

.news-card .tableau {
    transition: .2s;
    border-radius: 15px;
    overflow: hidden;
}

.tableau {
    text-align: center;
    width: 100%;
}

.news-card:hover {
    box-shadow: 0 0 0 4px rgb(255, 255, 255);
}

.marquee-rtl {
    display: flex;
    margin: 0;
    z-index: 2;
    color: white;
    font-size: 25px;
    position: absolute;
    height: auto;
    bottom: 5px;
    left: 5px;
    right: 5px;
}

.info {
    margin-left: 10px;
    text-transform: uppercase;
    text-align: left;
    font-size: 11px;
    font-family: var(--fontFamilyItemTitle);
}

.news-card-item-infos-img {
    width: 15px;
    height: 15px;
    display: flex;
    margin: auto 5px;
    transition: .3s;
}

.table-title {
    width: 85%;
    display: flex;
    margin: 0 auto;
}

.table-title h3 {
    text-align: left;
    font-size: 25px;
    color: white;
    padding-top: 3px;
    padding-bottom: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

footer {
    bottom: 0;
    width: 100%;
    position: fixed;
    background-color: #1b1e3d;
}

@media only screen and (min-width : 1220px) {

    .content-box {
        width: 80%;
    }

    .titre-filtre {
        font-size: 45px;
    }

    .news-card {
        width: 200px;
        height: 200px;
        position: relative;
        margin: 5px;
        transition: .2s;
    }

    .news-card-hover {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0);
        display: block;
        transition: .2s;
    }

    .news-card:hover .news-card-hover {
        /* display: block; */
        background-color: rgba(0, 0, 0, 0.5);
    }

    .marquee-rtl {
        display: flex;
        flex-flow: row wrap;
        margin: 5px 10px;
        color: white;
        left: 5px;
        right: 5px;
        bottom: 5px;
        transition: .3s;
    }

    .news-card:hover .marquee-rtl {
        transform: translateY(-5px);
    }

    .info {
        width: 100%;
        font-size: 13px;
        text-transform: uppercase;
        transition: .3s;
        margin: 0;
    }

    .itemType {
        color: var(--playerColorTitleValue);
    }

    .itemTags {
        width: 100%;
        display: flex;
        margin: 5px 0;
    }

    .news-card-item-infos-img {
        margin: 0 2px;
    }

    .info-desc {
        font-size: 10px;
    }

    .table-title {
        width: 80%;
        display: flex;
        margin: 0 auto;
    }

    .table-title h3 {
        text-align: left;
        font-size: 30px;
    }
}