/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

/*********************************************************/
/*********************************************************/
/*********************************************************/

.body {
    grid-template-columns: 1fr;
    font-size: 1em;
    display: grid;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    width: 100%;
}

.body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/images/background.png') repeat;
    background-size: 200px 200px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

a {
    color: black;
}

.nav {
    top: 0px;
    left: 0px;
    background-color: white;
    z-index: 5;
    position: sticky;
    box-sizing: border-box;
    padding-left: 1.46em;
    padding-right: 1.46em;
    padding-top: 1.46em;
    padding-bottom: 1em;
    color: white;
    width: 100%;
    margin: auto;
}

.nav__liste {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
}

.nav__el {
    transition: all 0.3s ease-in-out;
}
.nav__el:hover {
    transform: scale(1.3);
}

.lien__accueil {
    font-family: 'Marck Script', cursive;
    text-decoration: none;
    color: black;
    font-size: 2.13em;
}

.nombreItems {
    position: absolute;
    z-index: 6;
    top: -5px;
    right: -5px;
    background-color: rgb(236, 93, 241);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

@keyframes flash {
    0% { background-color: white; }
    50% { background-color: rgb(236, 93, 241); }
    100% { background-color: white; }
}

@keyframes scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.flash {
    animation: flash 0.3s;
}

.scale {
    animation: scale 0.3s;
}

.svg__panier {
    width: 2.13em;
    height: 2.13em;
}

.header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.header__video {
    width: 100%;
    height: 100%;
    filter: blur(0.47em);
    object-fit: cover;
}

.container {
    position: relative;
    z-index: 0;
    display: inline-block;
}

.introduction {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.titrePrincipal {
    font-family: 'Marck Script', cursive;
    font-size: 3.10em;
    margin-bottom: 1em;
    text-shadow: 2px 4px black;
}

.titreSecondaire {
    font-style: italic;
    font-size: 1.46em;
    text-shadow: 1px 2px black;
}

.main {
    justify-self: center;
    width: 95%;
    max-width: 450px;
}

.section {
    padding-top: 4.52em;
    padding-bottom: 4.52em;
    border-bottom: 1px solid rgb(226, 226, 226);
    display: flex;
    flex-direction: column;
}

.section:first-of-type {
    border-bottom: 0px solid rgb(226, 226, 226);
}

.section--label {
    display: grid;
    grid-template-columns: 30% 60%;
    justify-content: space-evenly;
    padding-bottom: 0px;
    border-bottom: none;
}

.couvertureAlbum {
    width: 100%;
}

.texte { 
    font-family: 'Assistant', sans-serif;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    max-width: 55ch;
}

.image {
    height: auto;
    width: 80%;
    margin-bottom: 0.50em;
    margin-top: 1em;
}

.separation {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.versions {
    width: 45%;
    max-width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
}

.versions--ticket {
    align-self: center;
}

.titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.13em;
    font-weight: 700;
    margin-bottom: 1em;
    text-align: center;
}

.titre--h3 {
    font-style: italic;
    color: rgb(210, 162, 30);
    font-weight: 500;
    padding-left: 8px;
}

.texte--objet, .texte--panier {
    font-size: 1.46em;
}

.postTitre {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1em;
    align-items: center;
}

.listeDetails {
    padding: 0 8px;
}

.listeDetails__el {
    line-height: 2;
    font-weight: bold;
}

.listeDetails__el--titre {
    text-align: center;
}

.violet {
    color: rgb(236, 93, 241);
}

.categorie {
    color: rgb(78, 78, 78);
    font-size: 0.69em;
}

.bouton, .submit {
    transition: all 0.3s ease-in-out;
    background-color: rgb(99, 179, 99);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5em 1em;
    color: white;
    border: none;
    /* border-radius: 1.5em; */
    font-weight: bold;
    position: relative;
    overflow: hidden;
    height: 40px;
}

.submit {
    height: 50px;
}

.bouton:hover, .submit:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(71, 139, 71);
}


@keyframes ajoutPanier {
    0%, 100% { background-color: rgb(111, 136, 85); }
    50% { background-color: rgb(236, 93, 241); }
}

.flash-text {
    animation: flashText 1.5s ease-in-out;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.btn__texte {
    padding-left: 0.69em;
    padding-right: 0.69em;
}

.btn__svg {
    padding-right: 0.69em;
    fill: white;
}

.player {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.currentTrack {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 150px;
}

.trackInfo {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.trackInfo::before, .trackInfo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.trackInfo.animate::before {
    transform: scaleX(1);
    transform-origin: right;
}

.trackInfo.animate::after {
    transform: scaleX(1);
}

.trackTitle {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.trackDuration {
    color: #777;
}

.listeTitres {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ddd;
}

.listeTitres__el {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    background-color: #f9f9f9;
    align-items: center;
    transition: background-color 0.3s;
}

.listeTitres__el:hover {
    background-color: rgb(206, 206, 206);
}

.listeTitres__el div {
    margin: 0;
}
.svgPlay {
    width: 25px;
    fill: grey;
    margin-right: 8px;
}

.listeTitres__el:hover .svgPlay{
    fill: rgb(49, 49, 49);
}
.alignCenter {
    display: flex;
    align-items: center;
}

.footer {
    width: 100%;
    display: flex;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgb(148, 148, 148);
    justify-content: center;
}

.footer__wrapper {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
  }
  
  .footer__liste {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .footer__liste--droite {
    justify-self: flex-end;
    gap: 0rem;
  }
  
  .footer__lien {
    color: rgb(46, 46, 46);
    fill: rgb(46, 46, 46);
    text-decoration: none;
  }

  .footer__lien:hover, .footer__lien:focus  {
    color: rgb(0, 0, 0);
    fill: rgb(0, 0, 0);
    text-decoration: underline;
  }
  
  .text__cacher {
    visibility: hidden;
    position: absolute;
  }

.div__tableau {
    margin-bottom: 2.13em;
}

.col {
    border: 1px solid grey;
    padding: 0.32em 0.47em;
}

.underline {
    text-decoration: underline;
}

.boutons {
    display: flex;
}

.retour:hover {
    color: rgb(44, 44, 44);
    text-decoration: none;
}

.asides {
    z-index: 10;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 350px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-items: center;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid rgb(148, 148, 148);
    border-radius: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.titre--aside {
    margin-top: 3.10em;
}

.menu--close {
    width: 50px;
    height: 50px;
    position: absolute;
    box-sizing: border-box;
    right: 8px;
    top: 8px;
    border-radius: 50%;
}

.menu {
    background-color: transparent;
    border: none;
}
.menu:hover {
    cursor: pointer;
}

.menu--close:hover .closeMenu__svg {
    transform: scale(1.3);
    cursor: pointer;
}
.closeMenu__svg {
    transition: all 0.2s ease-in-out;
}

.aside {
    display: flex;
    flex-direction: row;
    background-color: rgb(255, 255, 255);
    width: 90%;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.aside--validation {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 40px;
    overflow: hidden;
}

.titre--total {
    font-size: 24px;
    margin: 0px;
    padding: 0px;
    font-weight: 300;
}

.aside__img {
    width: 100px;
    margin: 6px;
}

.infos__cd--format, .infos__digital--format, .infos__tickets--format {
    font-size: 20px;
    color: black;
    font-weight: bold;
    font-style: normal;
    padding: 0;
    margin: 0;
}

.infos {
    margin-bottom: 3px;
}


.asides--show {
    transform: translateX(0);
}

.lien__valider {
    background-color: rgb(236, 93, 241);
    border: none;
    color: white;
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.lien__valider:hover {
    background-color: rgb(253, 220, 255);
    color: rgb(236, 93, 241);
}

.buttonPanier {
    border: 1px solid rgb(232 232 232);
    background-color: rgb(247, 247, 247);
    margin: 0px 3px;
    border-radius: 4px;
    width: 24px;
}

.buttonPanier:hover {
    cursor: pointer;
    background-color: rgb(240, 240, 240);
}

.main, .nav__liste, .footer__wrapper, .form {
    max-width: 450px;
}


.form {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

label {
    display: block;
    margin-bottom: 0.47em;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 1em;
    border-radius: 0.47em;
    border: 1px solid grey;
    box-sizing: border-box;
    border: none;
    background-color: #f5f5f5;
    border: 1px solid #f0f0f000;
}

.offrirPanierChamps {
    display: none;
    transform: all 0.3 ease;
}

.case {
    display: flex;
    align-items: baseline;
}

.offrirPanier, .conditions {
    width: 1em;
}
.offrirPanier:hover, .conditions:hover {
    cursor: pointer;
}
.form__section {
    padding: 40px 40px 10px 40px;
}

.reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: flex-end;
}

.offrirPanierTexte:hover {
    cursor: pointer;
}
.lessPadding {
    padding: 0 40px 10px 40px;
}

.reverse:hover{
    cursor: pointer;
}
.input:focus {
    border-color: #f5f5f5;
    outline: none;
    box-shadow: 0 0 10px rgba(39, 39, 39, 0.5);
}

.important {
    color: rgb(255, 94, 94);
}

.small {
    font-size: 13px;
}

.section__paiements {
    padding: 40px 40px 10px 40px;
    margin: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: 30% 30% 30%;
}

.paiement {
    background-color: #fafafa;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 8px;
    width: 100%;
    opacity: 0.2;
    transition: all 0.3 ease-in-out;
}

.paiement:hover, .paiement:focus {
    opacity: 0.7;
    cursor: pointer;
}

.lastSelected {
    opacity: 1;
}

.lastSelected:hover{
    opacity: 1;
}

.paiement__logo {
    width: 100%;
}

.lien__index {
    margin-top: 8px;
    text-decoration: none;
}

.lien__index:hover {
    margin-top: 8px;
    text-decoration: none;
    color: rgb(58, 58, 58);
}

.underlined {
    text-decoration: underline;
}

@media (min-width: 601px) {
    .body {
        font-size: 17px;
        grid-template-columns: repeat(11, 1fr);
    }

    label {
        font-size: 16px;
        margin-top: 10px;
    }

    .input, .select {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .nombreItems {
        top: -5px;
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .svg__panier {
        width: 30px;
        height: 30px;
    }
    
    
    .nav {
        grid-column: 1 / -1;
    }
    .header {
        grid-column: 2 / -2;
    }
    .main {
        grid-column: 1 / -1;
        max-width: 450px;
    }

    .main--infos {
        grid-column: 2 / -2;
        width: 100%;
    }
    .footer{
        grid-column: 1 / -1;
    }

    .footer__wrapper {
        font-size: 16px;
    }
    .aside {
        font-size: 16px;
    }

    .section--label {
        padding-bottom: 0px;
    }
}

@media (min-width: 900px) {
    .main, .nav__liste, .footer__wrapper, .form {
        max-width: 600px;
    }
    .texte {
        max-width: 90ch;
    }
    .versions {
        max-width: 280px;
    }
    .bouton {
        font-size: 16px;
        height: 50px;
    }

    .section {
        padding-top: 6.59em;
        padding-bottom: 6.59em;
    }

    .section--label {
        padding-bottom: 0px;
    }

    .header {
        display: flex;
        justify-content: center;
    }

    .header__video {
        width: 840px;
        height: 400px;
    }

    .container--video {
        overflow: hidden;
    }

    .footer__wrapper {
        padding: 2.13em;
    }
}

@media (min-width: 1000px) {
    .body {
        font-size: 20px;
    }

    .nombreItems {
        top: -5px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
    .svg__panier {
        width: 36px;
        height: 36px;
    }
    
    .versions {
        max-width: 300px;
    }
    .bouton {
        font-size: 16px;
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .header__video {
        width: 1020px;
        height: 500px;
    }
    .main, .nav__liste, .footer__wrapper, .form {
        max-width: 600px;
    }
    .main--infos {
        grid-column: 4 / -4;
    }
}

@media (min-width: 1600px) {
    .header__video {
        width: 1400px;
        height: 600px;
    }
    .main, .nav__liste, .footer__wrapper, .form {
        max-width: 800px;
    }
    .main--infos {
        grid-column: 5 / -5;
    }
}

.hidden {
    display: none;
}