.galerie
{
	width: 100%;
	height : 60vh;
	margin-bottom: 50px;
}

.glide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top : 0px;
  margin-top: 0px;
}

.glide__wrapper {
  width: 100%;
  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: 0;
  left: 0;
}
.glide__wrapper.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.glide__slide {
  -webkit-perspective: 1000;
          perspective: 1000;
  width: 100%;
  height: 100%;
}
.glide__arrows {
  position: absolute;
  top: 50%;
  margin-top : -45px;
  width: 100%;
}
.glide__arrow {
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
  width : 50px;
  height : 50px;
  background-size: contain;
  background-repeat: no-repeat;
}
.glide__arrow.prev {
  left: 40px;
  background-image: url('../ui/m_fl_gauche.svg');
}

.glide__arrow.prev:hover {
  left: 40px;
  background-image: url('../ui/m_fl_gauche.svg');
}

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

.glide__arrow.next:hover {
  right: 40px;
  background-image: url('../ui/m_fl_droite.svg');
}

.glide__bullets {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  list-style: none;
  padding-left: 0px;
}

.glide__bullets li {
  display: inline-block;
  background-color: gray;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  cursor: pointer;
  background: transparent;
  border-radius: 6px;
  border : 2px solid white;
 
}
.glide__bullets li.active {
  background-color: white;
}
.glide__bullets li:hover {
  background-color: white;
}


.glide__bullets_rec li {
  border : 2px solid rgb(226,238,245) !important;
 
}
.glide__bullets_rec li.active {
  background-color: rgb(226,238,245) !important;
}
.glide__bullets_rec li:hover {
  background-color: rgb(226,238,245) !important;
}

.glide__wrapper
{
	margin-left: -40px !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;
}

/* MODIFICATIONS */

.glide_box
{
	width: 100%;
	height: 100%;
	min-height: 90%;
	margin-left: 0px;
}

.glide_visuel
{
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0 auto;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
}

.glide_legende
{
	display: none; /* inline-block; */
	top : 0px;
	max-width: 60%;
	line-height: 1.6em;
	padding : 7px 10px 10px 10px;
	background-color: black;
	color : white;
}

/* RESPONSIVE */

@media all and (max-width: 825px)
{
	.galerie
	{
		width: 100%;
		height : 60vh;
	}
	
	.glide__arrow
	{
		display: none;
	}
}

