/* Cascadestyle sheet */

/* msTheme */
:root{
	--msTheme-body-color: #ffffff;
    --msTheme-type-de-tri:#fab045;
    --msTheme-body-bg-color:#000000;
    --msTheme-header-title-color:#000;
    --msTheme-header-menu-color:#000;
    --msTheme-odd-bg-color:#fec055;
    --msTheme-even-bg-color:#fab045;
    --msTheme-header-bg-color:#fec055;
    --msTheme-footer-bg-color:#fec055;
    --msTheme-panier-color:#fab045;
    --msTheme-lien-achat-color:#fab045;
    --msTheme-un-texte-color:#fec055;
    --msTheme-une-partition-color:#fec055;
    --msTheme-une-bande-son-color:#fec055;
    --msTheme-une-video-color:#fec055;
    --msTheme-un-concert-color:#fec055;
    --msTheme-un-cours-color:#fec055;
    --msTheme-un-abonnement-annuel-color:#fec055;
    --msTheme-black-color:#222222;
    --msTheme-dark-color:#353535;
    --msTheme-dark2-color:#303030;
    --msTheme-grey-color:#333333;
    --msTheme-grey2-color:#666666;
    --msTheme-grey3-color:#999999;
    --msTheme-artiste-bg-color:#ffffff30;
    --msTheme-produit-color: #ffffff30;
}

@keyframes rotating {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
#imagequitourne {
    animation: rotating 60s linear infinite;
}

#imagequitourne {
    border-radius: 50%;
    /* margin-left: 0px; */
}

.show-circle{
    display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    cursor:pointer;
}
#msTheme-black{
    background-color: black;
	color: white;
    margin: 1em;
    padding: 1em;
}
#msTheme-white{
    background-color: white;
	color: black;
    margin: 1em;
    padding: 1em;
}

#msTheme-selector{
    background-color: #777;
    color:white;
    position:fixed;
    top: 4%;
    left: 50px;
    width: 400px;
    height: 250px;
    z-index: -1000;
    opacity: 0;
    border-radius: 0 20px 20px 20px;
    transition: opacity 300ms linear;
}
#msTheme-selector>p{
    color:white;
    padding: 20px;
	font-size: 1.4em;
}
