/* RESET CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}

/* MAIN */

@-webkit-keyframes anim-mouse {
    0% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
    10% {
        -webkit-transform: translate(-15px);
        transform: translate(-15px);
    }
    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

@keyframes anim-mouse {
    0% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
    10% {
        -webkit-transform: translate(-15px);
        transform: translate(-15px);
    }
    30% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

body {
    --couleur-1: #e16e4a;
    --couleur-1-survole: rgb(243, 131, 97);
    --couleur-2: #eee5d4;
    --couleur-lien: rgb(197, 197, 197);
    --couleur-lien-survole: white;
    --couleur-lien-actif: #e16e4a;
    --width-menu-nav: 300px;
    --padding-menu-nav: 70px;
    --width-total: calc(var(--width-menu-nav) + var(--padding-menu-nav));
    --width-total-negatif: calc(var(--width-total) * -1);

    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    background-color: var(--couleur-2);
    min-width: 700px;
}
#hover {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    min-height: 100vh;
    z-index: 3;
}
#aside {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 25%;
    min-height: 100vh;
    z-index: 2;
    padding: 0 8%;
}
#aside h2::before {
    content: url("images/dessin-vinyles-etoiles.svg");
    position: relative;
    left: -42px;
    top: 6px;
}
#aside h2 {
    margin-top: -85px;
    font-family: "Courgette", sans-serif;
    font-size: 1.8em;
}
#aside .a-gauche-toute {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: -15px;
    min-width: 250px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#aside .a-gauche-toute .souris {
    width: 100px;
    margin-right: 20px;
    -webkit-animation-name: anim-mouse;
    animation-name: anim-mouse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
#aside .a-gauche-toute p {
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 500;
    color: var(--couleur-1);
    margin-bottom: 2px;
    margin-top: 6px;
}
#aside .a-gauche-toute p span {
    font-weight: 700;
    font-size: 1em;
}
nav {
    height: 100vh;
    position: fixed;
    left: var(--width-total-negatif);
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--width-menu-nav);
    padding-right: var(--padding-menu-nav);
    background-image: url("images/vinyle-fond.png");
    background-repeat: no-repeat;
    background-position: -700px;
    background-size: 300%;
    text-align: right;
    font-size: 1.2em;
    line-height: 1em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
#hover:hover ~ nav,
nav:hover {
    left: 0px;
}
nav li {
    margin: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
nav#menu-vinyle li:nth-child(1) {
    margin-right: 44px;
}
nav#menu-vinyle li:nth-child(1) {
    margin-right: 35px;
}
nav#menu-vinyle li:nth-child(2) {
    margin-right: 14px;
}
nav#menu-vinyle li:nth-child(3) {
    margin-right: 5px;
}
nav#menu-vinyle li:nth-child(4) {
    margin-right: -3px;
}
nav#menu-vinyle li:nth-child(5) {
    margin-right: -9px;
}
nav#menu-vinyle li:nth-child(6) {
    margin-right: -13px;
}
nav#menu-vinyle li:nth-child(7) {
    margin-right: -13px;
}
nav#menu-vinyle li:nth-child(8) {
    margin-right: -9px;
}
nav#menu-vinyle li:nth-child(9) {
    margin-right: -3px;
}
nav#menu-vinyle li:nth-child(10) {
    margin-right: 5px;
}
nav#menu-vinyle li:nth-child(11) {
    margin-right: 14px;
}
nav#menu-vinyle li:nth-child(12) {
    margin-right: 35px;
}
nav#menu-vinyle li:nth-child(13) {
    margin-right: 54px;
}

nav#menu-vinyle #search-container {
    width: 180px;
    height: 160px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

nav#menu-vinyle #search-container label {
    color: #e16e4a;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    position: absolute;
    top: 40px;
    left: 7px;
}

nav#menu-vinyle #search-container input[type="text"] {
    width: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 180px;
    border: 1px solid grey;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 2px 2px 5px rgba(3, 3, 3, 0.356);
    box-shadow: 2px 2px 5px rgba(3, 3, 3, 0.356);
    border-radius: 0 18px 18px 0;
}

nav#menu-vinyle #search-container input[type="text"]:focus {
    outline: none !important;
    border: 1px solid var(--couleur-1);
}

nav#menu-vinyle #search-container #results {
    display: none;
    background-color: aliceblue;
    z-index: 2;
    width: 165px;
    max-height: 250px;
    overflow: auto;
    position: absolute;
    top: 60%;
    -webkit-box-shadow: 3px 3px 5px rgba(3, 3, 3, 0.5);
    box-shadow: 3px 3px 5px rgba(3, 3, 3, 0.5);
}

nav#menu-vinyle #search-container #results #count-results {
    background-color: #e16e4a;
    color: white;
    font-size: 10px;
    padding: 4px 0 4px 10px;
    text-align: left;
    font-weight: 400;
}

nav#menu-vinyle #search-container #results #count-results b {
    font-size: 11px;
    font-weight: 600;
}

nav#menu-vinyle #search-container #results a {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    line-height: 1;
}

nav#menu-vinyle #search-container #results a:hover {
    background-color: rgba(243, 155, 97, 0.603);
}

nav#menu-vinyle #search-container #pub-cinema-francais-dautrefois {
    position: absolute;
    bottom: 16px;
    font-size: 10px;
    color: #cd6443;
    text-align: left;
    margin-left: 13px;
    line-height: 1.4;
}
nav#menu-vinyle #search-container #pub-cinema-francais-dautrefois svg {
    position: relative;
    top: 2px;
    margin-right: 0.1rem;
}

nav#menu-vinyle #search-container #pub-cinema-francais-dautrefois span {
    white-space: nowrap;
}

nav#menu-vinyle #search-container #pub-cinema-francais-dautrefois a {
    font-weight: 700;
    text-decoration: underline;
    color: #cd6443;
}

nav li a {
    font-family: "Oswald", sans-serif;
    text-decoration: none;
    color: var(--couleur-lien);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    font-weight: 300;
    position: relative;
}
nav#menu-vinyle li.mes-favoris a {
    color: var(--couleur-Fav);
    text-shadow: 0 0 1px var(--couleur-Fav);
}
nav#menu-vinyle li.mes-favoris a::after {
    font-family: "FontAwesome";
    font-size: 13px;
    content: "\f004";
    margin: 5px;
    position: absolute;
    top: -5px;
    left: 142px; /* Positionnement de l'icon coeur de Mes Favoris */
    border-radius: 25px;
    padding: 3px 3px 1px 3px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    background-color: var(--couleur-Fav);
    padding: 1px 4px 0px 4px;
    color: #1f1f1f;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
nav#menu-vinyle li:hover a {
    color: var(--couleur-lien-survole);
    text-shadow: 0 0 2px rgb(255, 255, 255);
}
nav#menu-vinyle li:hover.mes-favoris a {
    color: var(--couleur-Fav);
    text-shadow: 0 0 2px var(--couleur-Fav);
}
nav li:hover a::before {
    content: url("images/etoile-seule-orange.svg");
    position: absolute;
    display: block;
    width: 18px;
    right: -17px;
    top: -13px;
}
nav li.active a {
    color: var(--couleur-lien-actif);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.65);
    /* border-bottom: 2px solid var(--couleur-lien-actif); */
    font-weight: 500;
}
nav#menu-vinyle .logo {
    position: absolute;
    display: block;
    width: 111px;
    left: 36px;
    top: 5%;
}
nav#menu-vinyle .settings {
    position: absolute;
    left: 25px;
    bottom: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
}

@media screen and (min-height: 800px) {
    nav#menu-vinyle .logo {
        top: 10%;
    }
    nav#menu-vinyle .settings {
        bottom: 10%;
    }
}

@media screen and (min-height: 950px) {
    nav#menu-vinyle .logo {
        top: 15%;
    }
    nav#menu-vinyle .settings {
        bottom: 15%;
    }
}

@media screen and (min-height: 1050px) {
    nav#menu-vinyle .logo {
        top: 20%;
    }
    nav#menu-vinyle .settings {
        bottom: 20%;
    }
}

@media screen and (min-height: 1200px) {
    nav#menu-vinyle .logo {
        top: 22%;
    }
    nav#menu-vinyle .settings {
        bottom: 22%;
    }
}

nav#menu-vinyle .settings .setting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

nav#menu-vinyle .settings .setting p {
    font-size: 0.35em;
    color: white;
    display: inline-block;
    line-height: 1.5;
    margin-left: 10px;
    width: 145px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
}

nav#menu-vinyle .settings .setting p span {
    font-weight: 700;
    font-size: 1.13em;
}

/* checkbox Design */
.roundedOne {
    width: 28px;
    height: 28px;
    position: relative;
    /* margin: 20px auto; */
    background: #fcfff4;
    background: -webkit-gradient(linear, left top, left bottom, from(#fcfff4), color-stop(40%, #dfe5d7), to(#b3bead));
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 50px;
    -webkit-box-shadow:
        inset 0px 1px 1px white,
        0px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow:
        inset 0px 1px 1px white,
        0px 1px 3px rgba(0, 0, 0, 0.5);
}
.roundedOne label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 4px;
    top: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(#222222), to(#45484d));
    background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
    border-radius: 50px;
    -webkit-box-shadow:
        inset 0px 1px 1px rgba(0, 0, 0, 0.5),
        0px 1px 0px white;
    box-shadow:
        inset 0px 1px 1px rgba(0, 0, 0, 0.5),
        0px 1px 0px white;
}
.roundedOne label:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--couleur-1);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--couleur-1)), to(rgb(168, 49, 12)));
    background: linear-gradient(to bottom, var(--couleur-1) 0%, rgb(168, 49, 12) 100%);
    opacity: 0;
    border-radius: 50px;
    -webkit-box-shadow:
        inset 0px 1px 1px white,
        0px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow:
        inset 0px 1px 1px white,
        0px 1px 3px rgba(0, 0, 0, 0.5);
}
.roundedOne label:hover::before {
    opacity: 0.3;
}
.roundedOne input[type="checkbox"] {
    visibility: hidden;
}
.roundedOne input[type="checkbox"]:checked + label:before {
    opacity: 1;
}

.roundedOne input[type="checkbox"]:disabled + label {
    cursor: default;
}
.roundedOne input[type="checkbox"]:disabled + label:before {
    opacity: 0;
}

#wrapper-logo {
    margin-left: 17%;
    /* min-width: 1000px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
}
#main-logo {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#main-logo .logo {
    width: 40%;
    margin-top: -60px;
    max-width: 540px;
}
#main-logo p {
    font-family: "Courgette", sans-serif;
    color: var(--couleur-1);
    font-size: 1.05em;
    margin-left: -1.45%;
}

@media (min-width: 1100px) {
    #main-logo p {
        font-size: 1.3em;
    }
}

@media (min-width: 1300px) {
    #main-logo p {
        font-size: 1.5em;
    }
}

div.infos-news div {
    margin: 5px 0;
}

/* MODIF POUR VUE MOBILE JUSTE POUR PAGE ACCUEIL */
@media (max-width: 800px) {
    #accueil .mailto {
        width: 380px;
    }

    #accueil {
        min-width: 0;
    }

    #accueil #wrapper-logo {
        margin: 0 15% 0 25%;
    }

    #accueil #main-logo .logo {
        width: 80%;
    }

    #accueil #aside {
        width: 15%;
        padding: 0 5%;
    }

    #accueil #aside .a-gauche-toute {
        min-width: 0;
        width: 75px;
    }

    #accueil #aside .a-gauche-toute .souris {
        width: 40px;
    }

    #accueil #aside .a-gauche-toute p {
        font-size: 10px;
        width: 65px;
    }
}

@media (max-width: 500px) {
    #accueil #main-logo .logo {
        margin-top: 70px;
    }
}

/* ///////////////////////////////////////////////// */

#wrapper {
    margin-left: 25%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#main {
    padding: 70px 0 70px 13%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#main h1 {
    font-weight: 300;
    font-size: 4.2em;
    color: black;
}

#main .liste-albums {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
}
#main .liste-albums .album {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
    margin-right: 5%;
    width: 650px;
    position: relative;
    z-index: 100;
    background-color: var(--couleur-2);
}
#main .liste-albums .album:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
}
#main .liste-albums .album .pochette {
    width: 250px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
#main .liste-albums .album:hover .pochette {
    -webkit-transform: translate(-35px, -5px) rotate(-8deg);
    transform: translate(-35px, -5px) rotate(-8deg);
}
#main .liste-albums .album .pochette img {
    -webkit-box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 4px 7px rgba(0, 0, 0, 0.22);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 4px 7px rgba(0, 0, 0, 0.22);
}
#main .liste-albums .album:hover .pochette img {
    -webkit-box-shadow:
        0 19px 30px rgba(0, 0, 0, 0.3),
        0 15px 12px rgba(0, 0, 0, 0.22);
    box-shadow:
        0 19px 30px rgba(0, 0, 0, 0.3),
        0 15px 12px rgba(0, 0, 0, 0.22);
}
#main .liste-albums .album .img-vinyle {
    position: absolute;
    top: -9px;
    left: -10px;
    width: 255px;
    z-index: 1;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
#main .liste-albums .album:hover .pochette ~ .img-vinyle {
    -webkit-transform: translate(38px, -12px) scale(1.02);
    transform: translate(38px, -12px) scale(1.02);
}
#main .liste-albums .album .text {
    padding: 20px 15px 20px;
    margin-left: 20px;
    width: 50%;
}
#main .liste-albums .album .text h2 {
    font-weight: 800;
    font-size: 1.4em;
    margin-bottom: 10px;
}
#main .liste-albums .album .text p {
    margin-bottom: 6px;
}
#main .liste-albums .album .text p.vinyl-info {
    font-weight: 700;
    font-size: 1em;
}
#main .liste-albums .album .text p.year {
    font-weight: 500;
    font-style: oblique;
}
#main .liste-albums .album:hover .text h2 {
    color: var(--couleur-1);
}
#main .liste-albums .album p {
    font-weight: 500;
    font-style: oblique;
    font-size: 1em;
}

@media (min-width: 1430px) {
    body#liste-albums #wrapper {
        margin-left: 375px;
    }

    #main {
        padding: 70px 0 70px 13%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    body#liste-albums #main {
        padding: 70px 25px;
    }

    #main h1 {
        font-weight: 300;
        font-size: 4.2em;
        color: black;
    }

    #main .liste-albums {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 50px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 1350px;
    }
    #main .liste-albums .album {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 48%;
        min-width: 490px;
        position: relative;
        z-index: 100;
        margin: 0;
        margin-bottom: 5%;
    }

    #main .liste-albums .album:hover {
        background-color: rgba(255, 255, 255, 0.25);
        border-radius: 30px;
    }
    #main .liste-albums .album .pochette {
        width: 225px;
        position: relative;
        z-index: 2;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    #main .liste-albums .album:hover .pochette {
        -webkit-transform: translate(-35px, -5px) rotate(-8deg);
        transform: translate(-35px, -5px) rotate(-8deg);
    }
    #main .liste-albums .album .pochette img {
        -webkit-box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.3),
            0 4px 7px rgba(0, 0, 0, 0.22);
        box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.3),
            0 4px 7px rgba(0, 0, 0, 0.22);
        min-width: 225px;
    }
    #main .liste-albums .album:hover .pochette img {
        -webkit-box-shadow:
            0 19px 30px rgba(0, 0, 0, 0.3),
            0 15px 12px rgba(0, 0, 0, 0.22);
        box-shadow:
            0 19px 30px rgba(0, 0, 0, 0.3),
            0 15px 12px rgba(0, 0, 0, 0.22);
    }
    #main .liste-albums .album .img-vinyle {
        position: absolute;
        top: -9px;
        left: -10px;
        width: 230px;
        z-index: 1;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    #main .liste-albums .album:hover .pochette ~ .img-vinyle {
        -webkit-transform: translate(38px, -12px) scale(1.02);
        transform: translate(38px, -12px) scale(1.02);
    }
    #main .liste-albums .album .text {
        padding: 20px 15px 20px;
        margin-left: 20px;
        width: 355px;
    }
    #main .liste-albums .album .text h2 {
        font-weight: 800;
        font-size: 1.4em;
        margin-bottom: 10px;
    }
    #main .liste-albums .album .text p {
        margin-bottom: 6px;
    }
    #main .liste-albums .album .text p.vinyl-info {
        font-weight: 700;
        font-size: 1em;
    }
    #main .liste-albums .album .text p.year {
        font-weight: 500;
        font-style: oblique;
    }
    #main .liste-albums .album:hover .text h2 {
        color: var(--couleur-1);
    }
    #main .liste-albums .album p {
        font-weight: 500;
        font-style: oblique;
        font-size: 1em;
    }
}

@media (min-width: 1700px) {
    body#liste-albums #main {
        padding: 70px 7%;
    }
}

/* Modal  */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #eee5d4;
    margin: 11% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 35%;
    min-width: 230px;
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal#myModalFireFoxLancementAuto .modal-content {
    margin: 5% auto;
}

.close-connect,
.close-sign-up,
.close-firefox-lancement-auto {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -7px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    position: absolute;
}

.close-connect:hover,
.close-sign-up:hover,
.close-firefox-lancement-auto:hover,
.close-connect:focus,
.close-sign-up:focus,
.close-firefox-lancement-auto:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-logo {
    width: 120px;
    margin-top: 15px;
}

/* Form in modal */
.form-style-6 {
    font:
        95% Arial,
        Helvetica,
        sans-serif;
    padding: 16px;
    margin-top: 2px;
}
.form-style-6 h1 {
    margin-bottom: 5%;
    font-size: 200%;
    font-weight: 300;
    text-align: center;
    color: var(--couleur-Fav);
    font-family: "Montserrat", sans-serif;
}
.form-style-6 h2 {
    font-size: 185%;
    font-weight: 300;
    text-align: center;
    color: rgb(119, 119, 119);
    font-family: "Montserrat", sans-serif;
    margin: 32px;
}
.form-style-6 h3 {
    text-align: center;
    font-size: 105%;
    font-weight: 600;
    margin-bottom: 5%;
}
.form-style-6 h3 span {
    color: var(--couleur-Fav);
}
.form-style-6 .mess {
    margin-bottom: 15px;
    font-size: 90%;
}
.form-style-6 .mess span.ital {
    font-style: italic;
}
.form-style-6 .mess span {
    font-weight: 700;
}
.form-style-6 .ol-mess {
    background-color: white;
    border-radius: 5px;
    padding: 17px 25px 9px 38px;
    font-size: 80%;
    list-style: decimal;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: -5px;
}
.form-style-6 .ol-mess li {
    margin-bottom: 15px;
}
.form-style-6 .ol-mess li .img-icon-menu-firefox {
    display: inline-block;
    position: relative;
    top: 5px;
}
.form-style-6 .ol-mess li .img-perm-firefox-screen {
    margin: 10px 0;
}
.form-style-6 .ol-mess li span {
    font-weight: 700;
}
.form-style-6 .ol-mess li li {
    margin-bottom: 5px;
    list-style: circle;
}
.form-style-6 .ol-mess li li span.blue {
    color: var(--couleur-Fav);
}
.form-style-6 .error {
    background-color: #eeeeee;
    padding: 3%;
    margin-top: 2%;
    margin-bottom: 1.5%;
    font-size: 75%;
    font-weight: 700;
    color: #c10c00;
    display: none;
}
.form-style-6 input[type="text"],
.form-style-6 input[type="date"],
.form-style-6 input[type="datetime"],
.form-style-6 input[type="email"],
.form-style-6 input[type="number"],
.form-style-6 input[type="search"],
.form-style-6 input[type="time"],
.form-style-6 input[type="password"],
.form-style-6 input[type="url"],
.form-style-6 textarea,
.form-style-6 select,
#select-active-list-fav {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background: #fff;
    margin: 2% 0;
    border: 1px solid #ccc;
    padding: 3%;
    color: #555;
    font:
        95% Arial,
        Helvetica,
        sans-serif;
}
.form-style-6 input[type="text"]:focus,
.form-style-6 input[type="date"]:focus,
.form-style-6 input[type="datetime"]:focus,
.form-style-6 input[type="email"]:focus,
.form-style-6 input[type="number"]:focus,
.form-style-6 input[type="search"]:focus,
.form-style-6 input[type="time"]:focus,
.form-style-6 input[type="password"]:focus,
.form-style-6 input[type="url"]:focus,
.form-style-6 textarea:focus,
.form-style-6 select:focus,
#select-active-list-fav:focus {
    -webkit-box-shadow: 0 0 5px var(--couleur-Fav);
    box-shadow: 0 0 5px var(--couleur-Fav);
    padding: 3%;
    border: 1px solid var(--couleur-Fav);
}

.form-style-6 input[type="submit"],
.form-style-6 input[type="button"] {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    padding: 3%;
    background-color: var(--couleur-Fav);
    border-bottom: 2px solid var(--couleur-Fav-dark);
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    color: #fff;
    margin-top: 2%;
    text-transform: uppercase;
}
.form-style-6 input[type="submit"]:hover,
.form-style-6 input[type="button"]:hover {
    background: var(--couleur-light);
    cursor: pointer;
}
.form-style-6 .div-to-go-sign-up {
    margin-top: 7%;
    font-weight: 700;
    color: var(--couleur-Fav);
    text-align: center;
}
.form-style-6 .div-to-go-sign-up .mess-to-go-sign-up {
    font-size: 90%;
    display: inline-block;
}
.form-style-6 .div-to-go-sign-up .a-to-go-sign-up {
    text-decoration: underline;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 83%;
    display: inline-block;
    margin: 0 10px;
}

.mailto {
    margin-top: 30px;
    width: 450px;
}
.btn-mailto {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px 15px;
    background-color: var(--couleur-1);
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    color: #fff;
    margin-top: 2%;
    text-transform: uppercase;
    font-size: 75%;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.btn-mailto:hover {
    background: var(--couleur-1-survole);
    cursor: pointer;
}

.gras {
    font-weight: 600;
}
