.boutons_menus_ronds{
  display: block;
  align-items: center;
  justify-content: space-around;
}

.wrap-bouton-menu-rond{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  margin:0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.wrap-bouton-menu-rond .content a{
  text-decoration: none;
}

.wrap-bouton-menu-rond .content .img-fond{
  display: block;
  position:absolute;
  top:0px;
  left:0px;
  width: 100%;
  z-index:2;
  transition:all 0.2s linear;
  transform-origin: center center;

}

.wrap-bouton-menu-rond[data-rotate='droite'] .content .illustration{
  position: absolute;
  opacity: 0;
  z-index: -10;
  width: 60%;
  height: auto;
  right:-20%;
  bottom:0;
  transition:opacity 0.5s linear;
}

.wrap-bouton-menu-rond[data-rotate='gauche'] .content .illustration{
  position: absolute;
  opacity: 0;
  z-index: -10;
  width: 70%;
  height: auto;
  right:-25%;
  top:10%;
  transition:opacity 0.5s linear;
}

.wrap-bouton-menu-rond .content .illustration img{
  display: block;
  width: 100%;
  height: auto;
}

.wrap-bouton-menu-rond[data-position='gauche'] .content .img-fond{
  transform: rotate(-90deg);
}

.wrap-bouton-menu-rond[data-position='haut'] .content .img-fond{
  transform: rotate(0deg);
}

.wrap-bouton-menu-rond[data-position='droite'] .content .img-fond{
  transform: rotate(90deg);
}

.wrap-bouton-menu-rond[data-position='bas'] .content .img-fond{
  transform: rotate(180deg);
}

.wrap-bouton-menu-rond .content .inner{
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height:200px;
  z-index:10;
  border-radius: 50%;
  background:url('/themes/custom/mse/medias/images/home/podcasts.jpg') no-repeat center center;
  background-size:cover;
  position: relative;
}

.wrap-bouton-menu-rond .content .inner .label{
  font-size: 1em;
  opacity: 1;
  transition: opacity 0.2s linear;
  cursor: pointer;
}

.wrap-bouton-menu-rond .content .inner .label.sm-txt{

  font-size: 0.85em;
}

.wrap-bouton-menu-rond .content .inner .label.sm-txt span{
  width: 80%;
}

.wrap-bouton-menu-rond .content .inner .label{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height:70%;
  border-radius: 50%;
  background: rgba(237, 165, 32,1);
  color:#ffffff;
}

.wrap-bouton-menu-rond.jaune .content .inner .label{
  background: rgba(237, 205, 30,1);
  color:#ffffff;
}

.wrap-bouton-menu-rond.rouge .content .inner .label{
  background: rgba(176, 9, 14,1);
  color:#ffffff;
}

.wrap-bouton-menu-rond.bleu .content .inner .label{
  background: #70cbd0;
  color:#ffffff;
}

.wrap-bouton-menu-rond.bleu-fonce .content .inner .label{
  background: #1e4a63;
  color:#ffffff;
}

.wrap-bouton-menu-rond .content .inner .label span.init{
  display: inline;
}

.wrap-bouton-menu-rond .content .inner .label span.hover{
  display: none;
}



.wrap-bouton-menu-rond .content:hover > a .inner .label span.hover{
  display: inline;
}

.wrap-bouton-menu-rond .content:hover > a .inner .label span.init{
  display: none;
}

.wrap-bouton-menu-rond[data-rotate='gauche'] .content:hover > a .img-fond{
  transform: rotate(-180deg);
}

.wrap-bouton-menu-rond[data-position='gauche'][data-rotate='droite'] .content:hover > a .img-fond{
  transform: rotate(0deg);
}

.wrap-bouton-menu-rond[data-position='haut'][data-rotate='droite'] .content:hover > a .img-fond{
  transform: rotate(90deg);
}

.wrap-bouton-menu-rond[data-position='droite'][data-rotate='droite'] .content:hover > a .img-fond{
  transform: rotate(180deg);
}

.wrap-bouton-menu-rond[data-position='bas'][data-rotate='droite'] .content:hover > a .img-fond{
  transform: rotate(270deg);
}

.wrap-bouton-menu-rond[data-rotate='droite'] .content:hover > a .illustration{
  opacity: 1;
  z-index: 20;
}

.wrap-bouton-menu-rond[data-rotate='gauche'] .content:hover > a .illustration{
  opacity: 1;
}

@media screen and (max-width: 1400px){

  .wrap-bouton-menu-rond{
    width: 210px;
    height: 210px;
  }

  .wrap-bouton-menu-rond .content .inner{
    width: 160px;
    height:160px;
  }

  .wrap-bouton-menu-rond .content .inner .label{
  	font-size: 0.95em;
  }

}

@media screen and (max-width: 1200px){

  .wrap-bouton-menu-rond{
    width: 190px;
    height: 190px;
  }

  .wrap-bouton-menu-rond .content .inner{
    width: 150px;
    height:150px;
  }

  .wrap-bouton-menu-rond .content .inner .label{
  	font-size: 0.85em;
  }

}

@media screen and (max-width: 1070px){

  .wrap-bouton-menu-rond{
    width: 180px;
    height: 180px;
  }

  .wrap-bouton-menu-rond .content .inner{
    width: 145px;
    height:145px;
  }

  .wrap-bouton-menu-rond .content .inner .label{
  	font-size: 0.82em;
  }

}

@media screen and (max-width: 900px){

  .wrap-bouton-menu-rond{
    width: 175px;
    height: 175px;
  }

  .wrap-bouton-menu-rond .content .inner{
    width: 145px;
    height:145px;
  }

}

@media screen and (max-width: 800px){

  .wrap-bouton-menu-rond{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin:0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
  }

  .wrap-bouton-menu-rond .content .inner{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height:150px;
    z-index:10;
    border-radius: 50%;
    position: relative;
  }

  .wrap-bouton-menu-rond .content .inner .label{
    font-size: 0.8em;
    opacity: 1;
    transition: opacity 0.2s linear;
    cursor: pointer;
  }

  .wrap-bouton-menu-rond .content .inner .label.sm-txt{

    font-size: 0.6em;
  }

}
