/* Summary */
/*
- Variables
    - Colors
- Animation
- Fonts
    Yaahowu
    Material icons
- Common
- Header
- Container
- Footer
- Home
- Liste des articles
- Pagination
- Article
- Liste titres
- Grille
- News
- Friends
- Contact
- Maintenance
- Thanks
- Cookie consent banner
- Responsive
*/
@import url(style-tilala-icon.css);

/* - Variables */
:root {
    --black:        #000;
    --white:        #fff;
    --tilala:       #ff7f00;
    /*--tilala-old:       #fb830b;*/
    --red:          red;
    --red_rgb:      255,0,0;
    --success:      #01cb01;
    --success_rgb:  1,203,1;
    --grey900:      #1e1e1e;
    --grey800:      #333333;
    --grey700:      #4C4C4C;
    --grey600:      #666666;
    --grey500:      #7F7F7F;
    --grey400:      #999999;
    --grey300:      #B2B2B2;
    --grey200:      #CCCCCC;
    --grey100:      #E5E5E5;
    --grey50:       #F2F2F2;
    --grey25:       #f7f7f5;
}

/* - Animation*/
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* - Fonts */
/* Yaahowu regular */
@font-face {
    font-family: "yaahowu";
    src: url('../fonts/Yaahowu/yaahowu_regular.woff2') format('woff2'),
    url('../fonts/Yaahowu/yaahowu_regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Yaahowu bold */
@font-face {
    font-family: "yaahowu";
    src: url('../fonts/Yaahowu/yaahowu_bold.woff2') format('woff2'),
    url('../fonts/Yaahowu/yaahowu_bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



/* - Common */
a.avoidance {
    display: inline-block;
    color: var(--grey700);
    background: var(--white);
    padding: .5em;
    position: absolute;
    left: -99999px;
    z-index: 100;
}
a.avoidance:focus {
    left: 0;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,50%);
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,20%);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,30%);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-internal-autofill-selected,
input:-internal-autofill-selected:focus,
input:-internal-autofill-selected:hover {
	transition: background-color 600000s 0s, color 600000s 0s;
}

html {
    font-size: 62.5%;
    background-color: var(--grey900);
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100vh;
    margin: 0;
    font-family: 'yaahowu', Arial, sans-serif;
    font-weight: normal;
    font-size: 1.4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
button,
input {
    font-family: 'yaahowu', Arial, sans-serif;
}

img {
    border-radius: 3px;
}

iframe {
    border-radius: 7px;
}

.material-icons-round {
    font-size: 2.4rem;
}
.d-none,
.main__other .d-none {
    display: none;
}
.icon-loader {
    -webkit-animation: rotate-center 0.6s linear infinite both;
    animation: rotate-center 0.6s linear infinite both;
}

/* - Volume bar - */

#volume-range {
    -webkit-appearance: none;
    appearance: none;
    width: 300px;
    height: 4px;
    background: transparent;
    outline: none;
    cursor: pointer;
}

/* ---- Chrome, Edge, Safari ---- */
#volume-range::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--grey900); /* piste transparente */
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

/* On triche en ajoutant une fausse “remplissure” fixe */
#volume-range::-webkit-slider-runnable-track::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%; /* valeur symbolique : 50% ici */
    background: var(--tilala);
    border-radius: 2px 0 0 2px;
}

/* Curseur */
#volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--tilala);
    border-radius: 50%;
    border: none;
    margin-top: -4px; /* centre le curseur */
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

#volume-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ---- Firefox ---- */
#volume-range::-moz-range-track {
    height: 4px;
    background: var(--grey900);
    border-radius: 2px;
}

#volume-range::-moz-range-progress {
    height: 4px;
    background: var(--tilala);
    border-radius: 2px;
}

#volume-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--tilala);
    border-radius: 50%;
    border: none;
    transition: transform 0.2s ease;
}

#volume-range::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* - Buttons */
.btn-link {
    color: var(--white);
    border: 0;
    background-color: transparent;
    transition: all ease 0.2s 0s;
    cursor: pointer;
}
.btn-link:hover {
    color: var(--tilala);
}
.btn-button {
    width: 100%;
    min-width: 4.2rem;
    min-height: 4.2rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--black);
    border-radius: 3px;
    border: none;
    background-color: var(--tilala);
    cursor: pointer;
    transition: 0.2s all ease 0s;
}
.btn-button:hover {
    opacity: 0.8;
}
.btn-button:disabled {
    color: var(--grey600);
    opacity: 1;
}
.btn-button-default {
    width: 100%;
    min-width: 4.2rem;
    min-height: 4.2rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
    border-radius: 3px;
    border: none;
    background-color: var(--grey800);
    cursor: pointer;
}

/* - Typo */
a, p, h2, h3, label, ul {
    color: var(--white);
}
a {
    transition: 0.2s all ease 0s;
}
a:hover {
	color: var(--tilala);
}
a.header__logo-link:hover {
	color: var(--white);
}

/* - Formulaire */
input, select, textarea {
    font-family: 'yaahowu', Arial, sans-serif;
}
select {
    color: var(--white);
    background-color: var(--grey900);
}

/* - modal-image */
#modal-image-container {
	display: none;
	z-index: 1060;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	overflow: hidden;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,1);
	vertical-align: middle;
	animation-name: zoom;
	animation-duration: 0.6s;
}
#modal-image-caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
}
#modal-image-container img {
    display: block;
    margin: auto;
    max-width: 98%;
    max-height: 93%;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}
#modal-image-container img.loaded {
    opacity: 1;
    transform: scale(1);
}
@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}
#modal-image-close {
	z-index: 1061;
	position: absolute;
	top: 0;
	right: 10px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: lighter;
	transition: 0.3s;
}
#modal-image-close:hover,
#modal-image-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

/* - Header */
.header {
    position: relative;
    color: var(--white);
}
.header__container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 4.6rem;
    background-color: var(--grey900);
    border-bottom: 1px solid var(--grey700);
    z-index: 3;
}
.header__logo-container {
    margin: 0 auto;
    text-align: center;
}
.header__logo-link {
    font-size: 6rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}
.header__menu {
    position: absolute;
    right: 0;
    top: -1000%;
    width: 100%;
    list-style-type: none;
    text-align: center;
    transition: top ease 0.2s 0s;
    border-bottom: 1px solid var(--grey700);
    background-color: var(--grey900);
    z-index: 2;
}
.header__menu--open {
    top: 100%;
}
.header__button-menu {
    font-size: 2rem;
}
.header__navigation {
    margin: 0 1rem;
    padding: 0;
}
.header__navigation-element {
    display: inline-block;
    padding: 1rem;
    font-size: 1.8rem;
}
.header__navigation-link {
    display: inline-block;
    padding: 1rem;
    text-decoration: none;
}
.header__navigation-link:hover,
.header__navigation-link--active {
    text-decoration: underline;
}
.header__navigation-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 10%;
    padding: 0 1rem;
    list-style-type: none;
    border-top: 1px solid var(--grey700);
}
.header__navigation-secondary li {
    margin: 1rem;
}

.header__navigation__lang {
    align-self: stretch;
    position: relative;

}
.header__navigation__lang--open .navigation__lang-container {
    position: absolute;
    z-index: 1;
    border-radius: 3px;
    background-color: var(--grey800);
}
.navigation__lang-button {
    min-width: 3.2rem;
    height: 100%;
}
.navigation__lang-button:after {
    padding-left: 5px;
    font-family: 'tilala-icon';
    content: "\e900";
}
.navigation__lang-container {
    display: flex;
    flex-direction: column;
    background-color: var(--grey900);
}
.header__navigation__lang--open .navigation__lang-button:after {
    content: "\e901";
}

[class*="navigation__lang-language-"] {
    display: none;
    padding: 1rem;
    text-decoration: none;
}
[class*="navigation__lang-language-"]:hover {
    text-decoration: underline;
}
.header__navigation__lang--open [class*="navigation__lang-language-"] {
    display: inline-block;
}
.navigation__lang--active {
    display: inline-block;
}


/* - Social network navigation */
[class^="navigation-social-network__"] {
    display: inline-block;
    height: 3.2rem;
    width: 3.2rem;
    background-image: url("../img/pct_social.png");
    background-repeat: no-repeat;
    background-color: transparent;
    background-position-y: 0;
}
[class^="navigation-social-network__"]:hover {
    background-position-y: -3.2rem;
}
.navigation-social-network__facebook {
    background-position-x: 0;
}
.navigation-social-network__bluesky {
    background-position-x: -4.7rem;
}
.navigation-social-network__youtube {
    background-position-x: -14.1rem;
}
.navigation-social-network__spotify {
    background-position-x: -18.8rem;
}
.navigation-social-network__deezer {
    background-position-x: -23.5rem;
}

.header__informations {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10%;
    padding: 1rem;
    font-size: 1.2rem;
    border-top: 1px solid var(--grey700);
}
.header__informations-element {
    padding: 1rem;
}

/* - Container */
.main {
    flex: 1;
    background-color: rgba(0,0,0,80%);
}
.main-container,
.home-container {
    width: 90%;
    max-width: 182rem;
    margin: 5rem auto 15rem;
}
.home-container {
    margin-bottom: 13rem;
}
.home-title {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
}
.main__now {
    margin-bottom: 4rem;
}
.main__title {
    margin: 0;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: bold;
    color: var(--tilala);
}
.main__slick .main__title {
    padding-left: 0.3rem;
}
.title {
    margin-top: 0;
    color: var(--white);
}
.subtitle {
    font-size: 1.8rem;
    color: var(--white);

}

.now__current-text p {
    margin: 0;
}
p.now__title {
    margin-bottom: 0.5rem;
}
.now__current-program {
    margin-top: 2rem;
}

.previous-titles__title__cover:hover, 
.now__current-title__cover:hover, 
.player__current-title__cover:hover {
	cursor: pointer;
}
.now__current-title__cover {
    transition: opacity 0.3s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

/* Disparition */
.now__current-title__cover.is-changing {
    opacity: 0;
    transform: scale(0.95);
}

/* Apparition */
.now__current-title__cover.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* - Player */
.player__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: var(--white);
    background-color: var(--black);
}
.player__container audio {
	display: none;
}
.player__current-title-progress {
    position: relative;
}
.player__current-title {
    flex-basis: calc(100% - 9rem);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
}
.player__current-title__cover {
    margin-right: 1rem;
    background-color: var(--black);
    transition: opacity 0.3s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);
}
/* Disparition (fade out + léger zoom out) */
.player__current-title__cover.is-changing {
    opacity: 0;
    transform: scale(0.95);
}
/* Apparition (fade in + léger zoom in final) */
.player__current-title__cover.is-visible {
    opacity: 1;
    transform: scale(1);
}
.player__current-title__cover.is-changing {
    opacity: 0;
}
.player__current-text p {
    margin: 0;
    line-height: 1.1;
}
p.player__current-title__title,
.now__current-title__title,
.liste-titre__title {
    margin: 0 0 .8rem;
    font-weight: bold;
    font-size: 1.4rem;
}
.liste-titre__title {
    margin-bottom: 0;
}
p.player__current-title__artist,
.liste-titre__title__artist {
    font-style: italic;
    font-size: 1.2rem;
}
.now__current-title__artist {
    font-style: italic;
}
.now__current-title__artist-featuring,
.player__current-title__artist-featuring {
    font-size: 1.2rem;
}

.liste-titre__title__artist {
    margin-top: 0;
}
p.player__current-title__artist, 
p.player__current-title__artist-featuring,
p.now__current-title__artist, 
p.now__current-title__artist-featuring,
.liste-titre__title__artist, 
.liste-titre__titletitle__artist-featuring {
    color: var(--white);
    display: inline-block;
}
.now__current-title__artist .player__current-title__artist-featuring {
    margin-bottom: .5rem
}
.player__player button {
	display: none;
}
.player__player,
.player__volume {
    margin: 0 auto;
	position: relative;
}
.player__player button,
.player__volume button {
    color: var(--white);
    border: 0;
    background-color: transparent;
    transition: all ease 0.2s 0s;
    cursor: pointer;
}
.player__player button {
    font-size: 5rem;
}
.player__volume button {
    font-size: 2.5rem;
}
.player__player button:hover,
.player__volume button:hover {
    color: var(--grey300);
}
.progress-container,
.contact-progress-container,
.maintenance-progress-container {
    position: relative;
    width: 99%;
    height: 6px;
    margin: 0 auto;
    border-radius: 20px;
    background-color: var(--grey900);
    overflow: hidden;
}
.progress-bar, .contact-progress-bar, .maintenance-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 20px;
    background-color: var(--tilala);
}

#volume-slider {
  position: absolute;
  bottom: 190px; /* position de la div par rapport au haut */
  right: -109px;
}
#volume-slider input {
  width: 150px;
  height: 20px;
  margin: 0;
  transform-origin: 75px 75px;
  transform: rotate(-90deg);
}
.main__other .slick-dots li button:before {
    font-family: 'yaahowu';
    color: var(--tilala);
    font-size: 2rem;
}
.previous-titles__title-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
}
.previous-titles__title__text {
    font-style: italic;
}
.previous-titles__title__cover {
    margin-right: 0.5rem;
}

.grid__picture,
.last-article {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.grid__content {
    margin-bottom: 2rem;
}
.last-article__video iframe {
    max-width: 100%;
}


/* - Footer */
.footer {
    display: none;
}

/* - Home */
.now__search-engine__container {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.now__search-engine__container p {
    margin-bottom: .5rem;
}
.now__search-engine__logo {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    padding: 0.2rem;
    text-decoration: none;
    border-radius: 10rem;
    background-color: var(--white);
}
.now__search-engine__logo-picture {
    width: 100%;
    height: 100%;
}
.important-informations__container {
    font-weight: bold;
    padding: 1rem;
    border-radius: 3px;
}
.important-informations__warning {
    background-color: rgb(var(--red_rgb), 40%);
}
.important-informations__success {
    background-color: rgb(var(--success_rgb), 40%);
}
.important-informations__container p {
    margin: 0;
}

/* - Liste des articles */
.liste-articles__tag-container {
    max-height: 100rem;
    transition: all 0.2s ease 0s;
}
.liste-articles__tag-container--closed {
    overflow: hidden;
    max-height: 9.6rem;
}
.liste-articles__article-container h2 {
    margin-bottom: .5rem;
}
.liste-articles__article-container p {
    margin-top: .5rem;
}
.liste-articles__article-title-link {
    text-decoration: none;
}
.liste-articles__filtre {
    display: none;
}

.liste-articles__article-picture, .liste-articles__article-picture img {
    max-width: 100%;
    max-height: 100rem;
}

/* - Pagination */
.pagination__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 0;
    list-style-type: none;
}
.pagination__arrow {
    display: block;
    width: 4.4rem
}
.pagination__select {
    margin: 0 1rem;
    min-width: 4.4rem;
    height: 4.2rem;
    text-align: center;
    color: var(--black);
    border: 0;
    border-radius: 3px;
    background-color: var(--tilala);
}


/* - Article */
.article-container p {
    margin-bottom: 2rem;
    line-height: 1.5;
}
.article-container p.main__title {
    margin-bottom: 0;
    line-height: 1;
}
.article__title {
    margin-top: 0;
    color: var(--white);
}
.article__header {
    font-size: 1.6rem;
    font-weight: bold;
}
.article__picture-container,
.article__video-container{
    text-align: center;
}
.article__picture,
.article__video,
.article__video iframe {
    max-width: 100%;
    max-height: 100rem;
}
.article__picture-legend,
.article__video-legend {
    margin-top: 0;
    text-align: center;
    font-style: italic;
}
.article__citation {
    text-align: center;
    font-style: italic;
}
.article__citation .fa-quote-left::before, .article__citation .fa-quote-right::before {
	margin: 0 0.5rem;
}
.article__subtitle {
    font-weight: bold;
}
.article__ref-container {
    border-top: 1px solid var(--grey500);
}
p.article__author {
    margin-bottom: 0;
    font-size: large;
    text-align: right;
    font-weight: bold;
}
p.article__date {
    margin-top: 0;
    text-align: right;
}
.article__tag {
    margin-bottom: 1rem;
}


/* - Liste titres */
.liste-titre__ancres {
    font-size: 1.8rem;
}
.liste-titre__subtitle {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid var(--white);
}
.liste-titre__title-list {
    padding: 0;
    list-style-type: none;
}


/* - Grille */
.grid__button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.grille__table {
    table-layout: fixed;
    width: 100%;
}
.grille__table thead {
    height: 4.2rem;
}
.grille__table th {
    color: var(--white);
}
.grille__table th,
.grille__table td {
    padding: .2rem 0;
    text-align: center;
}
.grille__table>tbody>tr:hover th {
	text-decoration: underline;	
}
.btn-grid {
    min-width: 4.2rem;
    min-height: 4.2rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 3px;
    border: none;
    background-color: var(--tilala);
    cursor: pointer;
}

/* - News */
.news__one-news-container {
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey100);
}
.news__container .news__one-news-container:last-child {
    border: 0;
}
.news__container {
    margin-top: 1rem;
}
.news__title {
    margin-bottom: 1rem;
}
.news__text,
.news__tags {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.news__tags {
}
.news__video-container,
.news__video-container iframe {
    max-width: 100%;
    max-height: 100rem;
}
.news__load_more-container {
	text-align: center;
	margin-top: 2rem;
}
.news__load_more-container a {
	font-size: 2rem;
}

/* - Friends */
.friends__section-container {
    margin-top: 5rem;
    margin-bottom: 3rem
}
.friends__one-friend-container {
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey100);
}
.friends__one-friend-container:last-child {
    border: 0;
}
.friends__picture {
    width: 7rem;
    height: 7rem;
}
.friends__one-friend-title {
    margin: 0 0 1rem;
}
.friends__text {
    margin: 0;
}

/* - Contact */
.contact__form {
    margin-top: 5vh;
    padding: 0;
    border: none;
    background-color: transparent;
}
.contact__field {
    position: relative;
    margin-bottom: 1rem;
}
.contact__field_rbt {
	display: none;
}
.contact__label,
.contact__input {
    color: var(--white);
}
.contact__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    transition: all ease 0.2s 0s;
}
.contact__label--up {
    top: 0;
    font-size: 1rem;
}
.contact__input {
    width: 100%;
    padding: 1.4rem 1rem 0.6rem 1rem;
    font-size: 1.4rem;
    border: 0;
    border-bottom: 1px solid var(--white);
    background-color: transparent;
}
.contact__input:focus-visible {
    outline-color: var(--tilala);
    outline-style: solid;
    border-radius: 3px;
}
.contact__input_error,
.contact__input_error:focus-visible {
    outline-color: var(--red);
    outline-style: solid;
	outline-width: thin;
	border: 0;
	border-radius: 3px;
}
.contact__text-error,
.contact__required {
    color: var(--red);
}
.contact__success,
.contact__error {
    font-weight: bold;
    font-size: larger;
}
.contact__success {
    color: var(--success);
}
.contact__error {
    color: var(--red);
}

/* - Maintenance */
.maintenance__iframe {
    margin-bottom: 2rem;
    /*border: 0;*/
}
.maintenance__iframe iframe {
    width: 100%;
    border-radius: 1rem;
}
.maintenance__iframe-height {
    height: 35rem;
}
.maintenance__iframe-height iframe {
    height: 100%;
}

/* - Error */
.error__container {
    margin-top: 4rem;
}
.error__container p {
    margin: 0.5rem 0;
}
.random-song__text {
    font-size: 1.6rem;
}
.random-song__author {
    font-style: italic;
}
.navigation__link {
    text-decoration: none;
}
.navigation__link:hover {
    text-decoration: underline;
}


/* - Thanks */
.thanks__picture-container {
    margin-top: 5rem;
    text-align: center;
}
.thanks__picture {
    width: 100%;
    max-width: 65rem;
}

/* - Cookie consent banner */
.cookie-consent-banner__container {
    position: fixed;
    width: calc(90% - 4rem);
    top: 30vh;
    left: 5%;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    border-radius: 3px;
    background-color: var(--black);
    box-shadow: 0 0 0.5rem var(--white);
	display: none;
}
.cookie-consent-banner__text {
    margin-top: 0;
}
.cookie-consent-banner__buttons-container button:first-child {
    margin-bottom: 1rem;
}
.cookies-accept-box {
	background-color: var(--grey600);
    border-radius: 3px;
	padding: 5px;
	text-align: center;
	opacity: 0.8;
}
.cookies-accept-box p {
	width: 100% !important;
}

/* - Responsive */
@media screen and (min-width: 375px) {
    .d-xs-none,
    .main__other .d-xs-none {
        display: none;
    }
    .d-xs-block,
    .main__other .d-xs-block {
        display: block;
    }

    .header__informations {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }

    .main__now {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .main__title {
        width: 100%;
        font-size: 4.6rem;
    }
    .now__current-title__cover {
        margin-right: 1rem;
    }
    .now__current-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    p.now__current-title__artist {
        margin-bottom: 0;
    }
    p.now__current-title__artist-featuring {
        margin-bottom: auto;
    }

    .player__container {
        justify-content: space-between;
    }
    .player__current-title {
        margin-bottom: 0;
    }

    .previous-titles__title__cover {
        margin-right: 1rem;
    }

    /* - Friends */
    .friends__one-friend-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 1rem 0;
        border: 0;
    }
    .friends__one-friend-container:nth-child(odd) {
        justify-content: flex-end;
        text-align: right;
    }
    .friends__picture {
        margin-right: 1rem;
    }
    .friends__one-friend-container:nth-child(odd) .friends__picture {
        order: 2;
        margin-right: 0;
        margin-left: 1rem;
    }
    .friends__one-friend-container:nth-child(odd) .friends__text-container {
        order: 1;
    }
    .friends__picture {
        width: 11rem;
        height: 11rem;
    }

}

@media screen and (min-width: 768px) {
    body {
        position: relative;
        font-size: 1.8rem;
    }
    .d-sm-none,
    .main__other .d-sm-none {
        display: none;
    }
    .d-sm-block,
    .main__other .d-sm-block {
        display: block;
    }
    .header {
        width: 100%;
    }
    .header__button-menu {
        align-self: flex-start;
        margin: 2.6rem 0 0;
    }
    .header__menu {
        box-sizing: border-box;
        right: -100vw;
        top: 0;
        width: auto;
        height: 100vh;
        padding: 8rem 0 10rem;
        display: none;
        transition: display 0.1s, right ease 0.2s 0.2s;
    }
    .header__menu--open {
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 2;
    }
    .header__navigation {
    }
    .header__navigation-element {
        display: block;
        padding: 0;
    }
    .header__navigation-link {
        padding-left: .7rem;
        padding-right: .7rem;
    }
    .header__navigation-secondary {
        margin: auto 0 0 ;
        padding: 1rem;
    }
    .header__navigation-secondary li {
        margin: 0.2rem;
    }
    .header__informations {
        display: block;
        margin: 0;
    }

    .main {
        padding-top: 2rem;
    }
    .main-container,
    .home-container  {
        margin-top: 2rem;
    }

    .now__current-text {
        padding: 1rem 1rem 1rem 0;
    }

    .player__container {
        z-index: 2;
    }
    .player__current-title,
    .player__volume {
        flex-basis: 43%;
    }
    p.player__current-title__title {
        font-size: 1.6rem;
    }
    p.player__current-title__artist {
        font-size: 1.4rem;
    }
    .now__current-title__title {
        font-size: 1.8rem;
    }
    .now__current-title__artist {
        font-size: 1.6rem;
    }
    .now__current-title__artist-featuring {
        font-size: 1.4rem;
    }


    .player__player {
        flex-basis: 6rem;
        text-align: center;
    }
    .player__volume {
        text-align: right;
    }

    .footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 3rem;
        color: var(--white);
        border-top: 1px solid var(--grey700);
    }


    .liste-titre__list-container {
    }
    .liste-titre__title-list {
        column-count: 2;
    }
    .liste-titre__title-container {
        break-inside: avoid-column;
    }

    /* - News */
    .news__one-news-container:nth-child(odd) .news__text-container {
        order: 2;
    }
    .news__one-news-container:nth-child(odd) .news__video-container {
        order: 1;
        margin-right: 1rem;
        margin-left: 0;
    }
    .news__one-news-container {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .news__text-container {
        flex: 3;
    }
    .news__video-container {
        flex: 2;
        margin-right: 0;
        margin-left: 1rem;
    }

    /* - Friends */
    .friends__section-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .friends__one-friend-container {
        flex-basis: 48%;
    }
    .friends__one-friend-container:nth-child(odd) {
        padding-right: 2%;
        justify-content: flex-start;
    }
    .friends__one-friend-container:nth-child(odd) .friends__picture {
        order: 1;
        margin-right: 1rem;
        margin-left: 0;
    }
    .friends__one-friend-container:nth-child(odd) .friends__text-container {
        order: 2;
        text-align: left;
    }

    /*- Liste des articles*/
    .liste-articles__filtre {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .liste-articles__filtre-text {
        width: 100%;
        margin-bottom: 0;
    }
    .liste-articles__tag {
        margin: .2rem;
        color: var(--black);
        font-size: 1.4rem;
        border: 0;
        border-radius: 3px;
        background-color: var(--grey300);
        cursor: pointer;
        transition: 0.2s all ease 0s;
    }
    .liste-articles__tag:hover,
    .liste-articles__tag.liste-articles__tag--active {
        background-color: var(--tilala);
    }
    .liste-articles__see-more {
        width: auto;
        margin: .2rem .2rem .2rem auto;
        cursor: pointer;
    }
    .liste-articles__article-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: flex-start;
        flex-wrap: wrap;
    }
    .liste-articles__article-container h2 {
        width: 100%;
    }
    .liste-articles__article-container p {
        width: 60%;
    }
    .liste-articles__article-picture,
    .grid__program-picture {
        width: 38%;
    }

    /* - Contact */
    .contact__form {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 10vh;
    }
    .contact__field {
        width: 48%;
    }
    .contact__1-column {
        width: 100%;
    }
    .contact__send {
        width: 50%;
        margin: 0 auto;
    }
    .contact__input {
        font-size: 1.6rem;
    }

    /*- Cookie consent banner*/
    .cookie-consent-banner__buttons-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
    .cookie-consent-banner__buttons-container button {
        width: 30%;
        margin-bottom: 0;
    }
    .cookie-consent-banner__buttons-container button:first-child {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .d-md-none,
    .main__other .d-md-none {
        display: none;
    }
    .d-md-block,
    .main__other .d-md-block {
        display: block;
    }
    .header__navigation-link {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-container  {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: center;
    }
    .home-title {
        width: 100%;
    }
    .main__now {
        display: block;
    }
    .main__now,
    .main__other {
        align-self: flex-start;
        width: 48%;
    }
    .main__slick .main__title {
        padding-left: 0;
    }
    .previous-titles {
        height: calc(100vh - 28rem);
        overflow: auto;
    }
    .now__current-text p.now__current-title__bac-title {
        margin-top: 3rem;
    }

    .main__title-container {
        position: relative;
        padding-left: 5rem;
    }
    .home-container .main__title-container {
        width: calc(48% - 5rem);
    }
    .home-container .slick-slide .main__title-container {
        width: calc(100% - 5rem);
    }
    .main__title {
        position: absolute;
        right: 100%;
        white-space: nowrap;
        width: auto;
        transform: rotate(270deg);
        transform-origin: top right 0;
        line-height: 1;
    }

    .main-container {
        display: block;
    }
	.article-container p {
		font-size:1.8rem;
	}
    p.article__header {
        font-size: 2rem;
    }
    p.article__picture-legend, p.article__video-legend {
        font-size: 1.6rem;
    }


    .liste-titre__title-list {
        column-count: 4;
    }

    .contact__form {
        max-width: 100rem;
        margin: 10vh auto 0;
    }
    .contact__field {
        margin-bottom: max(1rem, 4vh);
    }

    /* - Maintenance */
    .maintenance__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .maintenance__iframe {
        width: 32%;
    }
}

@media screen and (min-width: 1280px) {
    .d-lg-none,
    .main__other .d-lg-none {
        display: none;
    }
    .d-lg-block,
    .main__other .d-lg-block {
        display: block;
    }

    /* - Grille */
    .grille__table {
        table-layout: fixed;
        width: 100%;
    }
    .grille__table th,
    .grille__table td {
        padding: .2rem;
        text-align: center;
    }

    /* - News */
    .news__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .news__one-news-container {
        flex-basis: 48%;
    }
    .news__container .news__one-news-container:last-child {
        border-bottom: 1px solid var(--grey100);
    }
    .news__one-news-container:nth-child(odd) .news__text-container {
        order: 1;
    }
    .news__one-news-container:nth-child(odd) .news__video-container {
        order: 2;
        margin-right: 0;
        margin-left: 1rem;
    }

    /*- Articles*/
    .liste-articles__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .liste-articles__article-container {
        width: 48%;
    }


    /* - Friends */
    .friends__one-friend-container {
        flex-basis: 31%;
    }
    .friends__one-friend-container {
        padding-right: 2%;
    }
    .friends__one-friend-container:nth-child(3n+3) {
        padding-right: 0;
    }
}

@media screen and (min-width: 1600px) {
    .d-xl-none,
    .main__other .d-xl-none {
        display: none;
    }
    .d-xl-block,
    .main__other .d-xl-block {
        display: block;
    }
    .home-container .main__title-container {
        width: calc(25% - 5rem);
    }
    .main__other {
        width: 73%;
    }
    .slick-slide {
        padding: 0 1.5rem;
    }

    .cookie-consent-banner__container {
        left: calc((100% - 150rem) / 2);
        max-width: 150rem;
    }
}
