@charset "utf-8";
/* CSS Document */

html,body{
    height: auto;
    min-height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0 auto;
    max-width: 1200px;
    font-size: 12px;
    
}

p {
    margin: 0 0 10px 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
}

div,
h1,
h2,
h3,
h4,
p,
img {
    box-sizing: border-box;
}

#player {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    display: block;
    min-height: 130px;
    background: #F4F5F7;
}

h2 {
    display: none;
}

#image {
    width: 120px;
    height: 120px;
    display: inline-block;
    vertical-align: middle;
}

#img-wrap {
    background-image: url(player/images/imgGlobal.png);
    background-size: contain;
    overflow: hidden;
    text-align: center;
    border: solid 1px #000000;
    width: 100%;
    height: 100%;
}

#img-wrap img {
    margin-top: -2px;
    margin-left: -2px;
    border: none;
    width: 124px;
    height: 124px;
}

#commandes {
    box-sizing: border-box;
    display: inline-block;
    padding-left: 10px;
    vertical-align: middle;
}


#station {
    width: 100%;
    display: block;
}

#station p {
    padding: 0;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: bold;
}

#station p::before {
    content: "En Live";
    color: #D52400;
    display: block;
    margin: 0 0 5px 0;
    font-size: 19px;
    font-family: 'Inter';
}

#titrage {
    width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 10px 0 0 0;
    overflow: hidden;
}

#titrage p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    /* modèle de boîte en ligne */
    padding-right: 2em;
    /* un peu d'espace pour la transition */
    padding-left: 100%;
    /* placement à droite du conteneur */
    white-space: nowrap;
    /* pas de passage à la ligne */
    animation: defilement-rtl 15s infinite linear;
    animation-name: defilement-rtl;
    /* référence à la règle @keyframes mise en oeuvre */
    animation-duration: 15s;
    /* valeur à ajuster suivant la longueur du message */
    animation-iteration-count: infinite;
    /* boucle continue */
    animation-timing-function: linear;
}

@keyframes defilement-rtl {
    0% {
        transform: translate3d(0, 0, 0);
        /* position initiale à droite */
    }

    100% {
        transform: translate3d(-100%, 0, 0);
        /* position finale à gauche */
    }
}


/****** play pause *******/
#boutons-player {
    display: block;
    width: 100%;
}


#bouton-play,
#bouton-pause {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    margin-bottom: 8px;
    display: inline-block;
}

#bouton-play img,
#bouton-pause img {
    height: 40px;
    width: 40px;
    border: none;
}

.btnClair img {
    filter: invert(0.6);
    -webkit-filter: invert(0.6);
}

.hidden {
    visibility: hidden;
}

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


#boutons {
    margin: 10px 0 0 0;
    box-sizing: border-box;
    display: block;
    text-align: left;
}

#boutons p {
    margin: 0;
    padding-right: 0;
    font-weight: 400;
    font-size: 17px;
}


.btn-canton-player {
    width: calc(100% / 3);
    max-width: 100px;
    margin: 10px 0 0 0;
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
}

.btn-canton-player img {
    width: 100%;
    display: block;
    margin: 0 auto;

    border: none;
}

.btn-canton-player img.canton-actif,
.btn-canton-player img:hover {
    filter: invert(80);
}

audio {
    display: none;
}

br.mobilebr {
    display: none;
}

.visible {
    display: block;
    visibility: visible;
}

.invisible {
    display: none;
    visibility: hidden;
}

/******************Liste des canaux ***********************/
/******* Liste titres ***********/
.col-titre {

    display: block;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

#titreOpen {
    visibility: visible;
    position: absolute;
    left: 1px;
}

#titreClose {
    visibility: hidden;
    position: absolute;
    left: 1px;
}

#liste-titres {
    width: 100%;

}

.canal-titre {
    font-size: 19px;
    font-weight: 600;
    display: inline-block;
    vertical-align: bottom;
    text-transform: uppercase;
    color: #ffffff;
}


.texte-titre img {
    height: 80px;
    width: 80px;
    border: solid 1px #000000;
    display: inline-block;
    vertical-align: middle
}

.texte-titre {
    text-align: left;
    padding: 0 0 0 10px;
    font-size: 19px;
    display: inline-block;
    vertical-align: bottom;
    color: #ffffff;
}

@media (max-width: 600px) {
    .texte-titre {
        text-align: left;
        padding: 0;
        font-size: 19px;
        font-weight: 600;
        display: block;
    
        color: #ffffff;
        /* modèle de boîte en ligne */
        padding-right: 2em;
        /* un peu d'espace pour la transition */
        padding-left: 100%;
        /* placement à droite du conteneur */
        white-space: nowrap;
        /* pas de passage à la ligne */
        animation: defilement-rtl 15s infinite linear;
        animation-name: defilement-rtl;
        /* référence à la règle @keyframes mise en oeuvre */
        animation-duration: 15s;
        /* valeur à ajuster suivant la longueur du message */
        animation-iteration-count: infinite;
        /* boucle continue */
        animation-timing-function: linear;
    }
}
