.menu-flottant {
    width:15em;
    float: right;
  	position:fixed;
 	z-index:9999;
  	top: 40%;
    line-height: 2px;
    color: #fff;
    font-weight:700;
    text-transform:uppercase;
    right: -11em;
	border-radius: 15px 0 0 15px;
	box-shadow: 0 0px 30px rgb(0 0 0 / 30%), 0 0px 15px rgb(0 0 0 / 0%);
}
.menu-flottant ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-flottant ul li {
  display:block;
    background-color: #333;
    height: 3.5em;
    padding: 1em 1.5em;
    position: relative;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform .5s;
	
}
/*the colors of the different columns*/
.menu-flottant ul li:nth-child(1) { background-color: #233a7a; border-radius: 15px 0 0 0;}
.menu-flottant ul li:nth-child(2) { background-color: #233a7a;}
.menu-flottant ul li:nth-child(3) { background-color: #233a7a;}
.menu-flottant ul li:nth-child(4) { background-color: #233a7a; border-radius: 0 0 0 15px;}

.menu-flottant ul li:hover {
    -webkit-transform: translateX(-10em);
    transform: translateX(-10em);/*equal to left in the .side-menu*/
}
.menu-flottant ul li i {
    
}
.menu-flottant ul li a {
  display:block;
    color: #FFF;
    text-decoration: none;
}
  
  .menu-flottant ul li span {
    float: left;
    line-height: 0;
		font-size:20px;
  }  
  
.menu-flottant ul li a {
    position: relative;
    font-size: 15px;
	color: #F8F6FF;
    text-align: center;
    font-weight: 600;
	padding-left: 30px;
}