*, ::before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f1f1f1;
}

.slider {
  width: 400px;
  height: 100px;
  margin: 100px auto 0;
  position: relative;
}

.cont-slides {
  width: 10%;
  height: 10%;
}
.containerImg{

}
.cont-slides img {
  width: 100%;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;

}
.commandes {
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
  right: 5px;
}

.commandes button {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.commandes img {
  width: 10px;
  position: relative;
}
.commandes button:nth-child(1){
  display:none;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}
.commandes button:nth-child(2){
  display:none;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
.commandes button:nth-child(1) img {
  left: -4px;
}
.commandes button:nth-child(2) img {
  right: -4px;
}

.cercles {
  position: absolute;
  top: 410%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cercle {
  width: 14px;
  height: 14%;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  outline: none;
  border: 1px solid #333;
}

.active-cercle {
  background: rgb(58,36,156);
}
.active {
  opacity: 1!important;
}