.glide {
  position: relative;
  width: calc(100vw + 40px);
  height: calc(100vh - 120px - 55px);
  overflow: hidden;
  top: 0px !important;
  left:-40px;
  background-color: white;
}
.glide__wrapper {
  width: 100vw;
  height: 100%;
  list-style: none;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: absolute;
  top: 0px;
  margin: 0px;
  left: 0;
}
.glide__wrapper.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.glide__slide {
  -webkit-perspective: 1000;
          perspective: 1000;
  width: 100vw;
  height: 100%;
  line-height: 100%;
  background-size: cover;
  background-position: center center;
  text-align: left;
}
.glide__arrows {
  position: absolute;
  bottom: 50px;
  margin-top : 0px;
  width: calc( 100vw - 55px );
  margin-left: 55px;
}
.glide__arrow {
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
  width : 30px;
  height : 30px;
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  transition : .3s all ease-in-out;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0,0,0,0.6);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0,0,0,0.6);
  box-shadow: 0px 0px 12px -3px rgba(0,0,0,0.6);
}
.glide__arrow:hover
{
	transform: scale(1.2);
} 

.glide__arrow.prev {
  left: 20px;
  background-image: url('../ui/icon_fleche_gauche.svg');
}

.glide__arrow.next {
  right: 20px;
  background-image: url('../ui/icon_fleche_droite.svg');
}


.glide__bullets {

  position: absolute;
  bottom: 10px;
  width: 100vw;
  text-align: center;
  list-style: none;
  margin-left : 20px;
  height: 20px;
}
.glide__bullets li {
  display: inline-block;
  background-color: transparent !important;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  cursor: pointer;
  background: #e9e9e9;
  border: 1px solid white;
  border-radius: 5px;
  transition : .3s all ease-in-out;
}
.glide__bullets li.active {
  background-color: white !important;

}
.glide__bullets li:hover {
  background-color: white !important;
}
.glide--slider .glide__slide {
  float: left;
  clear: none;
}
.glide--slider .glide__arrow {
  -webkit-transition: visibility 0 ease 150ms,
						opacity 150ms ease;
          transition: visibility 0 ease 150ms,
						opacity 150ms ease;
}
.glide--slider .glide__arrow.prev {
  opacity: 0;
  visibility: hidden;
}
.glide--carousel .glide__slide {
  float: left;
  clear: none;
}
.glide--slideshow .glide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.glide--slideshow .glide__slide.active {
  z-index: 1;
}

.glide
{
	top : 0px;
	margin-top: 0px;
}


.MMM_MOBILE_MODE .glide__bullets 
{
    margin-left: 0px;
}

.MMM_MOBILE_MODE .glide__arrow.prev {
  left: 0px;
}

.MMM_MOBILE_MODE .glide__arrow.next {
  right: 0px;
}

.MMM_MOBILE_MODE .glide__arrows {

    position: absolute;
    bottom: 50px;
    margin-top: 0px;
    width: calc( 100vw - 20px );
    margin-left: 50px;

}