body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #131929;
}

.content {
    z-index: 1;
    position: relative;
    font-size: 1.2rem;
    overflow-y: auto;
    scrollbar-width: thin;
    height: calc(100vh - 129px);
    overflow-x: hidden;
    scrollbar-color: #2b5184 #131a2a;
}

img.logoRetromarket {
    margin-top: 58px;
    height: 57px;
}

.systemItem {
    background-position: center;
    width: 267px;
    height: 165px;
    background-repeat: no-repeat;
    background-size: 200px;
}

.systemItem.arcade,
.systemItem.arcade-old-gen {
    background-position-x: 67px;
}

.systemItem.arcade {
    background-image: url('/hardware/arcade.svg');
}

.systemItem.arcade-old-gen {
    background-image: url('/hardware/arcade-old-gen.svg');
}

.systemItem.atari {
    background-image: url('/hardware/atari.svg');
    background-position-x: 80px;
}

.systemItem.atari7800 {
    background-image: url('/hardware/atari7800.svg');
    background-position-x: 74px;
}

.systemItem.dc {
    background-image: url('/hardware/dc.svg');
    background-position-x: 50px;
}

.systemItem.game-and-watch {
    background-image: url('/hardware/game-and-watch.svg');
    background-position-x: 57px;
}

.systemItem.gb {
    background-image: url('/hardware/gb.svg');
    background-position-x: 64px;
}

.systemItem.gba {
    background-image: url('/hardware/gba.svg');
    background-position-x: 50px;
}

.systemItem.gbc {
    background-image: url('/hardware/gbc.svg');
    background-position-x: 54px;
}

.systemItem.master-system {
    background-image: url('/hardware/master-system.svg');
    background-position-x: 62px;
}

.systemItem.mega-drive {
    background-image: url('/hardware/mega-drive.svg');
    background-position-x: 58px;
}

.systemItem.n64 {
    background-image: url('/hardware/n64.svg');
    background-position-x: 50px;
}

.systemItem.neo-geo,
.systemItem.nes,
.systemItem.pc-engine,
.systemItem.snes {
    background-position-x: 71px;
}

.systemItem.neo-geo {
    background-image: url('/hardware/neo-geo.svg');
}

.systemItem.nes {
    background-image: url('/hardware/nes.svg');
}

.systemItem.pc-engine {
    background-image: url('/hardware/pc-engine.svg');
}

.systemItem.playstation {
    background-image: url('/hardware/playstation.svg');
    background-position-x: 57px;
}

.systemItem.snes {
    background-image: url('/hardware/snes.svg');
}

.footer {
    display: flex;
    background-color: #131929;
    background-size: 90px;
    align-items: center;
    box-shadow: 0 -7px 20px #0b0e187a;
    width: 100vw;
    height: 94px;
    justify-content: center;
    position: relative;
    color: #fff;
    z-index: 15;
    bottom: 0;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.area {
    background: #4e54c8;
    background: linear-gradient(334deg, #212a47, hsl(224deg 37% 12% / 50%), #092137, #202b4d);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite both;
    width: 100%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, .2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:first-child {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10),
.circles li:nth-child(11) {
    bottom: -50%;
    animation-duration: 51s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 550px;
    height: 650px;
    animation-delay: 0s;
}

.circles li:nth-child(11) {
    left: -25%;
    width: 550px;
    height: 650px;
    animation-delay: 0s;
    animation-duration: 31s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

html {
    overflow: hidden;
}

.cardItem {
    width: 30%;
    max-width: 400px;
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 50px;
    cursor: pointer;
    margin-right: 35px;
    min-width: 400px;
    background: #202a454d;
    z-index: 10;
    transition: all .2s;
}

.cardItem:hover {
    border: 1px solid #fff;
    transform: translateY(-5px) !important;
}

.cardItemPicture img {
    border-radius: 10px;
    width: 30%;
    min-width: 400px;
    max-height: 232px;
}

.lineCard {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.cardItemTitleGame {
    font-family: Montserrat;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.cardItemReleaseDate,
.cardItemDowloadIcon {
    position: absolute;
    margin-top: 12px;
    background: #0d1e31d1;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
}

.cardItemReleaseDate {
    margin-left: 12px;
    font-weight: 700;
}

.cardItemDowloadIcon {
    margin-left: calc(100% - 90px);
    cursor: pointer;
}

.descriptionGameCard {
    margin-top: 10px;
    color: #fff;
    font-family: 'Open sans';
    font-weight: 400;
    width: 100%;
    font-size: 1rem;
}

.systemGame img {
    width: 90px;
    height: 90px;
    margin-left: 10px;
    margin-top: 10px;
}

.bottomGameCard {
    display: flex;
}

.contentGamePage,
.contentHomePage {
    width: calc(100vw - 350px);
    max-width: 1440px;
    margin: auto;
    padding: 20px;
    padding-bottom: 200px;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.titleLastPublishedItem {
    margin-top: 20px;
    color: #fff;
    font-family: Montserrat;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-left: 21px;
}

.titleLastPublishedItem:after,
.separator:after {
    content: '';
    height: 2px;
    display: inline-flex;
    width: 80%;
    background: #fff;
    background: linear-gradient(.25turn, #fff, #ebf8e100);
}

.contentLastPublishedItemDate {
    display: flex;
    flex-wrap: wrap;
}

.titleLastPublishedItemDate {
    color: #fff;
    font-family: 'Open sans';
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 36px;
    margin-left: 21px;
}

.headerGameLeft {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.contentGamePage .titleGame {
    font-size: 2rem;
    font-family: Montserrat;
    color: #fff;
    font-weight: 700;
}

.headerGameRight {
    display: flex;
    align-items: center;
}

.headerGame {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.bodyGame .cardItemPicture img {
    min-width: 100%;
    max-height: unset;
}

.addDateGame {
    margin-top: 10px;
    font-size: 1.2rem;
    font-family: 'Open sans';
}

.bodyGameBlock {
    display: flex;
    flex-wrap: wrap;
}

.bodyGameLeft {
    width: 49%;
}

.bodyGameRight {
    width: calc(49% - 40px);
    padding: 21px;
    color: #fff;
}

.bodyGameDescription,
.bodyGameSplittedInformations {
    font-size: 1.2rem;
    font-family: 'Open sans';
    color: #fff;
    margin-bottom: 20px;
}

.bodyGameSplittedInfoTitle {
    color: #6579b7;
}

.SecondaryGameImagesOrVideos {
    margin-top: 10px;
}

.SecondaryGameImagesOrVideos img {
    border-radius: 10px;
    max-height: 110px;
    max-width: 30%;
    margin-right: 15px;
}

.bodyGameSplittedInformations {
    display: flex;
    flex-wrap: wrap;
}

.bodyGameSplittedInfo {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 25px;
}

button.outlined {
    background: 0 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #6eb0e4;
    color: #6eb0e4;
    cursor: pointer;
    font-size: 1.1rem;
    margin-right: 40px;
    transition: all .2s;
    position: relative;
    z-index: 16;
}

button.outlined:hover {
    background: #6eb0e4;
    color: #fff;
}

.blockSeparatorWithTitle:after {
    content: '';
    height: 2px;
    display: inline-flex;
    width: 80%;
    margin-left: 10px;
    background: #fff;
    background: linear-gradient(.25turn, #fff, #ebf8e100);
}

.blockSeparatorWithTitle {
    display: flex;
    color: #fff;
    width: 100%;
    align-items: center;
}

.descriptionBlock {
    font-size: 1.2rem;
    font-family: 'Open sans';
    color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 2.3rem;
}

li {
    list-style: url('/pictos/li.svg');
}

#navbar {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    height: 114px;
    justify-content: space-between;
    background: #131929;
    z-index: 2;
    padding-bottom: 10px;
}

#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    border-bottom: 3px solid #131929;
}

#navbar a:hover {
    background-color: #4e80b887;
    color: #fff;
    border-bottom: 5px solid #3c5084;
}

#navbar a.active {
    border-bottom: 5px solid #4e80b8;
    color: #fff;
}

.rainbow {
    position: fixed;
    margin-left: 38px;
    background-image: url(/pictures/rainbowRGB.svg);
    margin-top: 28px;
    height: 100vh;
    width: 61px;
    background-repeat: no-repeat;
    background-size: contain;
}

.logoLeftShape {
    width: 73px;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    margin-left: 17px;
    margin-top: 10px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    margin-top: 131px;
    overflow: hidden;
}

.logoLeft {
    width: 109px;
    background-size: 86px;
    background-repeat: no-repeat;
    height: 121px;
    margin-top: 10px;
    background-position: 8px -13px;
    position: relative;
    left: 43px;
}

.logoLeftText img {
    position: fixed;
    background-size: contain;
    width: 153px;
    z-index: 1;
    left: 131px;
    top: 63px;
}

.headerRight {
    display: flex;
    height: 103px;
    align-items: flex-end;
}

.linkMenuDon {
    background-image: url(/pictos/tip.svg);
    height: 100%;
    display: flex;
    background-repeat: no-repeat;
    background-size: 74px;
    background-position-x: center;
    align-items: flex-end;
}

#navbar .linkMenuDon a {
    color: #d400aa;
}

#navbar .linkMenuDon a:hover {
    background-color: #d400aa42;
    color: #fff;
    border-bottom: 3px solid #d400aa;
}

.headerRight.none,
.menuMobileOpened.none {
    display: none;
}

.containerMenu {
    display: inline-block;
    cursor: pointer;
    margin: 30px;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 3px;
    background-color: #fff;
    margin: 8px 0;
    transition: .4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: rotate(45deg) translate(-8px, -8px);
}

.menuMobileOpened {
    position: fixed;
    background: #000;
    top: 107px;
    z-index: 11;
    display: flex;
    width: 299px;
    border-radius: 16px;
    right: 30px;
    flex-direction: column;
    z-index: 15;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: auto;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

nav.page {
    border-top: 1px solid #eee;
    margin-top: 1em;
    padding-top: .5em;
    font: 1.2em sans-serif;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.pagination li {
    margin: 0 1px;
}

.pagination a {
    display: block;
    padding: .5em 1em;
    border: 1px solid #999;
    border-radius: .2em;
    text-decoration: none;
}

.pagination a[aria-current=page] {
    background-color: #333;
    color: #fff;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
    box-shadow: 0 0 17px #131929;
}

.searchTerm {
    width: 100%;
    border: 3px solid #131929;
    border-right: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    outline: 0;
    color: #131929;
    font-size: 1.2rem;
    padding: 5px 10px;
    height: 27px;
}

.searchTerm:focus {
    color: #131929;
}

.searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid #131929;
    background: #131929;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

div#advancedSearch {
    display: flex;
    padding: 10px;
    justify-content: space-evenly;
}

.contentSearchArea {
    position: sticky;
    top: -1px;
    z-index: 11;
    width: calc(100vw - 350px);
    max-width: 1440px;
    margin: auto;
    padding: 6px;
    height: fit-content;
    max-height: fit-content;
    background: #0a2036;
}

div#advancedSearch.none {
    display: none;
}

select {
    border: 0 !important;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    line-height: 3;
    background: #5c6664;
    overflow: hidden;
    border-radius: .25em;
}

select:after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #2b2e2e;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}

.wrapSelect {
    width: 29%;
    background: #fff;
    border-radius: 31px;
    margin-top: 10px;
}

.advancedSearchSelect {
    color: #131929;
    padding: 5px 15px;
    border-radius: 31px;
    font-size: 1.2rem;
    width: 98%;
}


ul, li {
    list-style: none;
}


.breadcrumb {
    display: flex;
    border-radius: 10px;
    /*margin: auto;*/
    text-align: center;
    top: 50%;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    z-index: 1;
    /*justify-content: center;*/
}

.breadcrumb__item {
    height: 100%;
    border: 1px solid #6eb0e4;
    background: 0 0;
    color: #6eb0e4;
    font-family: 'Oswald', sans-serif;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transform: skew(-21deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.26);
    margin: 5px;
    padding: 10px;
    cursor: pointer;
}
.breadcrumb__item a {
    all: unset;
}


.breadcrumb__item:hover {
    background: #6eb0e4;
    color: #fff;
}


.breadcrumb__inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg);
}

.breadcrumb__title {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


@keyframes slide-in-right {
    0% {
        transform: translateX(1000px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

@keyframes text-focus-in {
    0% {
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -.5em;
        opacity: 0;
    }
    40% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tilt-in-fwd-tr {
    0% {
        transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px) skew(-35deg, 10deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0) rotateX(0) translate(0, 0) skew(0deg, 0deg);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-1000px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
        transform: translateY(-1000px) scaleY(2.5) scaleX(.2);
        transform-origin: 50% 0%;
        filter: blur(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scaleY(1) scaleX(1);
        transform-origin: 50% 50%;
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-fwd-center {
    0% {
        transform: translateZ(-1400px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes swing-in-top-fwd {
    0% {
        transform: rotateX(-100deg);
        transform-origin: top;
        opacity: 0;
    }
    100% {
        transform: rotateX(0);
        transform-origin: top;
        opacity: 1;
    }
}

@keyframes slit-in-vertical {
    0% {
        transform: translateZ(-800px) rotateY(90deg);
        opacity: 0;
    }
    54% {
        transform: translateZ(-160px) rotateY(87deg);
        opacity: 1;
    }
    100% {
        transform: translateZ(0) rotateY(0);
    }
}

@keyframes scale-in-center {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slide-in-right .5s cubic-bezier(.25, .46, .45, .94) both;
}

.text-focus-in {
    animation: text-focus-in 1s cubic-bezier(.55, .085, .68, .53) both;
}

.tracking-in-expand {
    animation: tracking-in-expand .7s cubic-bezier(.215, .61, .355, 1) both;
}

.tilt-in-fwd-tr {
    animation: tilt-in-fwd-tr .6s cubic-bezier(.25, .46, .45, .94) both;
}

.slide-in-left {
    animation: slide-in-left .5s cubic-bezier(.25, .46, .45, .94) both;
}

.slide-in-blurred-top {
    animation: slide-in-blurred-top .6s cubic-bezier(.23, 1, .32, 1) both;
}

.slide-in-fwd-center {
    animation: slide-in-fwd-center .4s cubic-bezier(.25, .46, .45, .94) both;
}

.swing-in-top-fwd {
    animation: swing-in-top-fwd .5s cubic-bezier(.175, .885, .32, 1.275) both;
}

.slit-in-vertical {
    animation: slit-in-vertical .45s ease-out both;
}

.scale-in-center {
    animation: scale-in-center .5s cubic-bezier(.25, .46, .45, .94) both;
}

@media screen and (max-width: 1440px) {
    .cardItem {
        width: 27%;
        max-width: unset;
        min-width: 400px;
    }
}

@media screen and (max-width: 1280px) {
    .contentLastPublishedItemDate,
    .bodyGameBlock {
        flex-direction: column;
    }

    .bodyGameRight,
    .bodyGameLeft {
        width: 100%;
        padding: 10px 0;
    }
}

@media screen and (max-width: 900px) {
    .contentLastPublishedItemDate,
    .bodyGameBlock {
        flex-direction: column;
    }

    .bodyGameRight,
    .bodyGameLeft {
        width: 100%;
        padding: 10px 0;
    }

    .contentGamePage,
    .contentHomePage {
        width: 100%;
        max-width: 900px;
        margin: unset;
        padding: 5px;
        padding-bottom: unset;
        overflow-y: hidden;
        scrollbar-width: thin;
    }
    .cardItem {
        width: 90%;
        max-width: 400px;
        min-width: unset;
    }
    .cardItemPicture img {
        width: 100%;
        min-width: unset;
        max-height: 232px;
    }
    .contentSearchArea {
        width: 90%;
        padding: unset;
    }

}
