/*
//==============================================================================
// Total
//==============================================================================
*/

.fa, .fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: white;
}
.total
{
  font-size: 18px;
  text-align: center;
  font-weight: 900;
  text-transform: capitalize;
}

.total > div
{
  padding-top: 10px;
  padding-bottom: 10px;
}

.total span
{
  display: inline-block;
  width: 60px;
  text-align: right;
}

.total a.reset
{
  cursor: pointer;
  color: #aa0000;
}

.total a.reset:hover
{
  color: #dd0000;
  text-decoration: none;
}

/*
//==============================================================================
// Couleur
//==============================================================================
*/

/*
.couleur, .couleur a
{
  height: 60px;
  line-height: 60px;
}
*/

.couleur
{
  height: 60px;
  margin: 5px 5px;
  position: relative;
  border-radius: 0px;
  background-position: center;
  background-size: cover;
  opacity: 0.70;
}

.couleur.selectionnee, .couleur:hover
{
  box-shadow: 0px 0px 10px #aaaaaa;
  opacity: 1.00;
}

.couleur .ref
{
  width: 100%;
  height: 30px;
  line-height: 20px;
  padding-top: 10px;
  text-align: center;
  color: #ffffff;
}

.couleur span
{
  display: block;
  width: 100%;
  height: 30px;
  line-height: 20px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
  color: #ffffff;
}

.couleur a
{
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  display: block;
  width: 30%;
  text-align: center;
  font-size: 150%;
  color: #dddddd;
  position: absolute;
  top: 0px;
}

.couleur a:hover
{
  color: #ffffff;
}

.couleur a.dec
{
  left: 0px;
}

.couleur a.inc
{
  right: 0px;
}

.couleur.selectionnee .ref, .couleur:hover .ref,
.couleur.selectionnee span, .couleur:hover span
{
  text-shadow: 0px 0px 4px #000;
}

.couleur.selectionnee a, .couleur:hover a
{
  text-shadow: 0px 0px 3px #000;
}

/*
//==============================================================================
// Bouton M�langer
//==============================================================================
*/
.bouton {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

#melanger
{
    margin: auto;
    font-size: 18px;
    color: #ffffff;
    width: 30%;
    font-weight: 800;
    top: 0;
    left: 0;
    right: auto;
    background-color: #cc222b;
    padding: 19px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    text-transform: uppercase;
    border-radius: 0px;
    border: none;
}

@media only screen and (max-width: 600px) {
#melanger
{
margin-top: 20px;    
width: 100%;
} }

#melanger:hover
{
  box-shadow: 0px 0px 10px #aaaaaa;
}

#melanger:disabled
{
  background-color: #222;
  color: #888;
}

#melanger:disabled:hover
{
  box-shadow: none;
}

/*
//==============================================================================
// Sc�ne, malaxeur et rendu
//==============================================================================
*/

#scene
{
  margin-top: 0px;
  overflow: hidden;
  text-align: center;
}

#malaxeur
{
  width: 400px;
  height: 400px;
  margin: 50px auto 0px auto;
  position: relative;
}

#malaxeur.animate
{
  -webkit-animation: rotate 10s linear infinite;
          animation: rotate 10s linear infinite;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
          transform-origin: center center;
}

#malaxeur > div
{
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("malaxeur.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#malaxeur > div.animate
{
  -webkit-animation: rotate 15s linear infinite;
          animation: rotate 15s linear infinite;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
          transform-origin: center center;
}

@-webkit-keyframes rotate
{
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-moz-keyframes rotate
{
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes rotate
{
  100% { transform: rotate(360deg); }
}

#rendu
{
  display: none;
}

/*
#rendu > div, #rendu > div > img
{
  display: block;
  width: 500px;
  height: 375px;
  max-width: 100%;
  margin: 0px auto;
}

#rendu > div.rendu2
{
  margin-top: 20px;
  background-position:center;
  background-repeat: repeat;
  background-size: 150px 90px;
}
*/

#rendu .bx-wrapper
{
  width: 510px;
  height: 385px;
  margin: 20px auto;
}

#rendu .bxslider > li > img,
#rendu .bxslider > li > div
{
  display: block;
  width: 500px;
  height: 375px;
}

#rendu .rendu2
{
  background-position:center;
  background-repeat: repeat;
  background-size: 80px 60px;
}

#rendu #bx-pager a
{
  display: inline-block;
  margin: 0px 5px;
}

#rendu #bx-pager a img
{
  height: 60px;
  margin: 0px;
}

#rendu #bx-pager .rendu2
{
  background-position:center;
  background-repeat: repeat;
  background-size: 20px 15px;
}

