/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        -ms-user-select: none;
	    user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	-webkit-filter: inherit;
	        filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1), -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
/*====================
*
* achat-cash
*
====================*/
/*=====
VENDORS
=====*/
/*====================
*
* VARIABLES
*
====================*/
/*=====
FONTS
=====*/
/*=====
COLORS
=====*/
/*====================
*
* MIXINS
*
====================*/
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.dropzoneTroc,
.dropzoneTroc * {
  box-sizing: border-box;
}

.dropzoneTroc {
  min-height: 150px;
  border: 1px solid #ffed00;
  background: #F7F7F6;
  padding: 20px 20px;
  margin-bottom: 10px;
}

.dropzoneTroc.dz-clickable {
  cursor: pointer;
}

.dropzoneTroc.dz-clickable * {
  cursor: default;
}

.dropzoneTroc.dz-clickable .dz-message,
.dropzoneTroc.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzoneTroc.dz-started .dz-message {
  display: none;
}

.dropzoneTroc.dz-drag-hover {
  border-style: solid;
}

.dropzoneTroc.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzoneTroc .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzoneTroc .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzoneTroc .dz-preview:hover {
  z-index: 1000;
}

.dropzoneTroc .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzoneTroc .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: -o-linear-gradient(top, #eee, #ddd);
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzoneTroc .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzoneTroc .dz-preview.dz-image-preview {
  background: #F7F7F6;
}

.dropzoneTroc .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzoneTroc .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
  top: -10px;
  right: -10px;
  position: absolute;
  z-index: 1000;
  background: #FFED00;
  color: #1D1D1B;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 3px 4px;
}

.dropzoneTroc .dz-preview .dz-remove i {
  cursor: pointer;
}

.dropzoneTroc .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzoneTroc .dz-preview .dz-details {
  display: none;
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzoneTroc .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzoneTroc .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzoneTroc .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzoneTroc .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzoneTroc .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzoneTroc .dz-preview .dz-details .dz-filename span,
.dropzoneTroc .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzoneTroc .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzoneTroc .dz-preview .dz-image {
  border-radius: 10px;
  overflow: hidden;
  width: 75px;
  height: 75px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzoneTroc .dz-preview .dz-image img {
  display: block;
}

.dropzoneTroc .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzoneTroc .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzoneTroc .dz-preview .dz-success-mark,
.dropzoneTroc .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -38px;
}

.dropzoneTroc .dz-preview .dz-success-mark svg,
.dropzoneTroc .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzoneTroc .dz-preview.dz-error .dz-remove,
.dropzoneTroc .dz-preview.dz-error .dz-progress {
  background: #AE2323;
  color: white;
}

.dropzoneTroc .dz-preview.dz-upload-success .dz-progress {
  display: none;
}

.dropzoneTroc .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzoneTroc .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzoneTroc .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzoneTroc .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 47px;
  top: 50%;
  margin-top: -8px;
  width: 62px;
  margin-left: -40px;
  background: rgba(29, 29, 27, 0.5);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzoneTroc .dz-preview .dz-progress .dz-upload {
  background: rgba(255, 237, 0, 0.9);
  /*background: linear-gradient(to bottom, #666, #444);*/
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzoneTroc .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzoneTroc .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzoneTroc .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 30px;
  right: -65px;
  width: 140px;
  background: #be2626;
  background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
  background: -o-linear-gradient(top, #be2626, #a92222);
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzoneTroc .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.dropzoneTroc.dz-clickable .dz-message,
.dropzoneTroc.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzoneTroc .dz-message .note {
  font-size: 0.8em;
  font-weight: 200;
  display: block;
  margin-top: 1.4rem;
}

/*=====
PAGES
=====*/
/*====================
*
* FICHE MAGASIN
*
====================*/
/*==========
* PRESENTATION OF STORE
==========*/
.presentation-of-store {
  margin-bottom: 25px;
}

.store-profil {
  background-color: #F7F7F6;
}

.store-profil .large-btn {
  padding: inherit;
}

/*==========
* HOURS OF STORE
==========*/
.store-hours ul li {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

.store-hours ul li .day-hours {
  font-size: 12px;
}

/*==========
* SOCIAL NETWORK OF STORE
==========*/
.store-network li {
  list-style: none;
}

.store-network li a img {
  height: 28px;
}

/*==========
* STORE CONTACT (BUTTON)
==========*/
.store-contact .btn-with-arrow, .store-products .btn-with-arrow {
  font-size: 14px;
  padding: 5px 15px 5px 10px;
}

.mail-inline-container {
  min-height: 40px;
}

.mail-column-container {
  position: absolute;
  top: 0;
  margin-bottom: 0;
  min-height: 33px;
  width: 100%;
  display: none;
}

.mail-column-container .close-mail-column-container {
  display: inline-block;
}

.mail-column-container a:hover {
  color: #1D1D1B;
}

.btn-actions-store {
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

/*==========
* RESPONSIVE
==========*/
@media (max-width: 767px) {
  .cta-store {
    min-height: 40px;
  }
  .btn-actions-store {
    min-height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .store-profil {
    background-color: #ffffff;
  }
  .store-informations .row {
    padding: 0 0;
  }
  .store-hours, .store-address, .store-contact, .store-meet, .store-products {
    background-color: #F7F7F6;
  }
  .store-hours ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .store-hours ul li {
    width: 48%;
    float: left;
    font-size: 13px;
  }
  .store-hours ul li .day-hours {
    color: #626262;
  }
  .store-hours ul li.closed-day {
    width: 100%;
    padding: 5px;
    text-align: center;
    color: #9B9B9B;
    background-color: #EFEFEE;
  }
  .on-top address p {
    margin-bottom: 0px;
  }
  .store-address {
    padding-bottom: 20px;
  }
  .store-contact {
    margin-top: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
  }
  .store-contact .btn-with-arrow {
    font-size: 10px;
    margin: 0 4px;
    padding: 10px 15px 10px 10px;
  }
  .store-meet {
    margin-top: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
  }
  .store-meet ul {
    width: 65%;
    margin: auto !important;
  }
  .store-products {
    margin-top: 10px;
    text-align: center;
    padding-bottom: 20px;
  }
  .store-products .btn-with-arrow {
    font-size: 10px;
    margin: 0 4px;
  }
}

@media (min-width: 768px) {
  .cta-store .btn-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
        align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .store-hours ul li {
    width: 100%;
  }
  .road-to-store .btn-with-line {
    font-size: 11px;
  }
  .store-informations .btn-with-arrow {
    font-size: 12px;
  }
  .store-network li {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .store-hours ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.store-wrapper .store-tel-column-container .left-icon:after {
  left: -1px;
  right: auto;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 28px;
}

.store-wrapper .store-tel-column-container .left-icon:hover:after {
  width: calc(100% - -2px);
}

.store-wrapper .store-tel-column-container .left-icon i {
  left: -1px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 28px;
}

@media (max-width: 768px) {
  .store-wrapper .btn-with-arrow {
    padding: 3px 15px 2px 10px;
  }
  .store-wrapper .store-tel-container .left-icon {
    padding: 1px 15px 1px 30px;
    font-size: 11px;
  }
  .store-wrapper .store-tel-container .btn-with-icon:after {
    height: 20px;
    width: 20px;
    left: -1px;
  }
  .store-wrapper .store-tel-container .left-icon i {
    left: -2px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
  }
  .store-wrapper .store-tel-container .left-icon:hover:after {
    width: calc(100% - -2px);
  }
}

/*====================
*
* achat-cash
*
====================*/
#map-conseiller {
  height: 400px;
  overflow: hidden;
}

.list-group-magasins-a-proximites .list-group-item .btn-with-arrow:before {
  display: none !important;
}

#map-conseiller .leaflet-popup-content .line .btn {
  color: #FFED00;
  height: auto;
}

#map-conseiller .leaflet-popup-content .line .btn:focus, #map-conseiller .leaflet-popup-content .line .btn:hover {
  color: #1D1D1B;
  background-color: #FFED00;
}

.sticky-box {
  max-width: auto;
  text-align: center;
  border-radius: 40px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  background-color: transparent;
}

.sticky-box .btn-yellow {
  font-size: 1.5rem;
  border: 4px solid white;
}

.forms-magasins-a-proximites .select-wrapper select {
  height: 32px;
  background-color: #FFED00;
  color: #1D1D1B;
  font-weight: 600;
  border-color: #FFED00;
  border-radius: 21px;
}

.forms-magasins-a-proximites .btn-geoloc {
  height: 32px;
  font-size: 14px;
  font-weight: 600;
}

.items_troc_lead:not(.first) .possibility_item:before {
  opacity: 0;
  pointer-events: none;
}

.items_troc_lead.first .possibility_item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.items_troc_lead.first .possibility_item:before {
  display: block;
}

.items_troc_lead.last .possibility_item {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.items_troc_lead .item_lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
  margin-bottom: 11px;
}

.items_troc_lead .item_lead .item_lead_encart {
  width: 115px;
  height: 115px;
  border-radius: 10px;
  border: 7px solid #FFED00;
  background-color: #1D1D1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.items_troc_lead .item_lead .item_lead_encart .item_lead_subtext {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
}

.items_troc_lead .item_lead .item_lead_text {
  -webkit-box-flex: 1;
      flex: 1 1 auto;
  margin-left: 7px;
  padding-left: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  -webkit-box-pack: center;
      justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 5px solid #EFEFEE;
  margin-right: 20px;
}

.items_troc_lead .possibility_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
}

.items_troc_lead .possibility_wrapper .possibility_item {
  position: relative;
  width: 31%;
  margin-right: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: center;
      align-items: center;
  word-break: break-all;
}

.items_troc_lead .possibility_wrapper .possibility_item:before, .items_troc_lead .possibility_wrapper .possibility_item:after {
  content: "";
  display: table;
}

.items_troc_lead .possibility_wrapper .possibility_item:after {
  clear: both;
}

.items_troc_lead .possibility_wrapper .possibility_item:before {
  display: block;
  font-weight: 600;
  font-size: 20px;
  content: attr(data-label);
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.items_troc_lead .possibility_wrapper .possibility_item:last-child {
  margin-right: 0;
}

.items_troc_lead .possibility_wrapper .possibility_item_yellow {
  background-color: #FFED00;
}

.items_troc_lead .possibility_wrapper .possibility_item_grey {
  background-color: #EFEFEE;
}

@media (max-width: 992px) {
  .items_troc_lead:not(.first) .possibility_item:before {
    pointer-events: auto;
    opacity: 1;
  }
  .items_troc_lead .possibility_wrapper .possibility_item:before {
    font-size: 14px;
  }
  .items_troc_lead:not(.last) {
    border-bottom: 5px solid #EFEFEE;
    padding-bottom: 20px;
  }
  .items_troc_lead .item_lead_text {
    border: none !important;
  }
  .items_troc_lead .item_lead {
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: center;
        justify-content: center;
    margin-bottom: 30px;
  }
  .items_troc_lead .item_lead .item_lead_text {
    -webkit-box-flex: inherit;
        flex: inherit;
  }
  .items_troc_lead .possibility_wrapper {
    font-size: 14px;
  }
  .items_troc_lead {
    margin-top: 20px;
  }
  .items_troc_lead .possibility_wrapper .possibility_item {
    min-height: 50px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .items_troc_lead .item_lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .items_troc_lead .possibility_wrapper {
    font-size: 16px;
  }
}

.list-group-magasins-a-proximites .list-group-item {
  border-radius: 19px;
}

.list-group-magasins-a-proximites .list-group-item .magasin_name {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-group-magasins-a-proximites .list-group-item .btn-with-arrow {
  font-size: 12px;
  font-weight: 600;
}

.list-group-magasins-a-proximites .list-group-item .large-btn {
  padding: 1px 15px 1px 30px;
}

.list-group-magasins-a-proximites .list-group-item .large-btn:after {
  width: 25px;
  height: 25px;
  left: -1px;
}

.list-group-magasins-a-proximites .list-group-item .large-btn:hover:after, .list-group-magasins-a-proximites .list-group-item .large-btn:focus:after {
  width: calc(100% - -3px);
}

.list-group-magasins-a-proximites .list-group-item .large-btn i {
  width: 25px;
  height: 25px;
  font-size: 14px;
  left: -1px;
  top: -4px;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a {
  font-size: 12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: center;
      justify-content: center;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a span {
  font-size: 12px;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a span:before, .list-group-magasins-a-proximites .list-group-item .store-itinary-container a span:after {
  content: "";
  display: table;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a span:after {
  clear: both;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a span:after {
  width: 100%;
  height: 1px;
  background-color: #FFED00;
  display: block;
}

.list-group-magasins-a-proximites .list-group-item .store-itinary-container a:hover span:after, .list-group-magasins-a-proximites .list-group-item .store-itinary-container a:focus span:after {
  background-color: #1D1D1B;
}

@media (min-width: 992px) and (max-width: 1500px) {
  .list-group-magasins-a-proximites .list-group-item .btn-with-arrow {
    font-size: 12px;
    padding: 3px 5px 2px 5px;
  }
  .list-group-magasins-a-proximites .list-group-item .btn-with-arrow:before {
    margin-right: 0;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn {
    font-size: 12px;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn i {
    width: 22px;
    height: 22px;
    font-size: 14px;
    left: -1px;
    top: -6px;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn:after {
    width: 22px;
    height: 22px;
    left: -1px;
    line-height: 19px;
    border-radius: 19px;
  }
  .list-group-magasins-a-proximites .list-group-item .store-itinary-container a {
    margin-bottom: -1px;
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  .list-group-magasins-a-proximites .list-group-item .btn-with-arrow,
  .list-group-magasins-a-proximites .list-group-item .large-btn {
    font-size: 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1230px) {
  .list-group-magasins-a-proximites .list-group-item .btn-with-arrow,
  .list-group-magasins-a-proximites .list-group-item .large-btn {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .list-group-magasins-a-proximites .list-group-item .btn-with-arrow {
    padding: 3px 5px 2px 5px;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn {
    font-size: 12px;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn i {
    width: 22px;
    height: 22px;
    left: -1px;
    top: -11px;
  }
  .list-group-magasins-a-proximites .list-group-item .large-btn:after {
    width: 22px;
    height: 22px;
    left: -1px;
  }
}

.btn-link {
  font-weight: 700;
  color: #1D1D1B;
  text-decoration: underline;
  -webkit-text-decoration-color: #FFED00;
          text-decoration-color: #FFED00;
}

.btn-link:hover {
  color: #1D1D1B;
  text-decoration: none;
}

.badge-title-question:before {
  content: "?";
  font-size: 60px;
  position: absolute;
  padding: 43px 25px;
  top: -50px;
  right: -30px;
  background: #FFED00;
  border-radius: 100%;
  line-height: 0;
  font-weight: 700;
  border: 5px solid #ffffff;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-56 {
  font-size: 56px;
}

.material-icons.md-68 {
  font-size: 68px;
}

.material-icons {
  font-size: 25px;
}

.separator_arrow_down {
  vertical-align: middle;
  line-height: 0;
}

.video-section {
  margin-top: 160px;
}

.video-section .embed-responsive {
  margin-top: -120px;
  margin-bottom: 50px;
}

.media .material-icons {
  background: #FFED00;
  padding: 10px;
  border-radius: 100px;
}

.icon i {
  font-size: 45px;
}

.media {
  margin-bottom: 20px;
}

#etapes p,
#etapes-5 p {
  position: absolute;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

#etapes p {
  font-size: 26px;
  width: 230px;
}

#etapes-5 p {
  font-size: 20px;
  width: 215px;
}

.img-mob-etape {
  display: none;
}

#etapes .etape-1 {
  top: 15%;
  left: 3%;
  color: #ffffff;
  text-align: right;
}

#etapes .etape-2 {
  top: 57%;
  left: 21%;
  text-align: right;
}

#etapes .etape-3 {
  top: 57%;
  right: 21%;
  text-align: left;
}

#etapes .etape-4 {
  top: 15%;
  right: 3%;
  text-transform: uppercase;
  text-align: left;
}

#etapes-5 .etape-1 {
  top: 8%;
  left: 3%;
  color: #ffffff;
  text-align: right;
}

#etapes-5 .etape-2 {
  top: 46%;
  left: 11%;
  text-align: right;
}

#etapes-5 .etape-3 {
  top: 67%;
  right: 38%;
  text-align: center;
}

#etapes-5 .etape-4 {
  top: 45%;
  right: 11%;
  text-align: left;
}

#etapes-5 .etape-5 {
  top: 8%;
  right: 0%;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  #etapes p {
    font-size: 18px;
    width: 170px;
  }
  #etapes-5 p {
    font-size: 14px;
    width: 155px;
  }
  #etapes-5 .etape-5 {
    right: 4%;
  }
}

@media screen and (max-width: 840px) {
  #etapes p {
    font-size: 15px;
    width: 165px;
  }
  #etapes-5 p {
    font-size: 13px;
    width: 140px;
  }
  .badge-title-question:before {
    content: "?";
    font-size: 50px;
    position: relative;
    padding: 5px 18px;
    top: -35px;
    right: 41%;
    left: 41%;
    background: #FFED00;
    border-radius: 100%;
    line-height: 0;
    font-weight: 700;
    border: 5px solid #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .img-desk-etape {
    display: none;
  }
  #etapes p,
  #etapes-5 p {
    position: absolute;
    width: 100%;
    font-size: 30px;
    top: 45% !important;
    bottom: 45%;
  }
  .img-mob-etape {
    display: inherit;
    margin-top: -6%;
    padding: 0 10px;
  }
  #etapes .etape-1,
  #etapes .etape-2,
  #etapes .etape-3,
  #etapes .etape-4,
  #etapes-5 .etape-1,
  #etapes-5 .etape-2,
  #etapes-5 .etape-3,
  #etapes-5 .etape-4,
  #etapes-5 .etape-5 {
    top: inherit;
    left: inherit;
    right: inherit;
    text-align: left;
    margin: 0 auto;
    padding: 0 35px;
  }
  .item-etape {
    width: 100%;
    -webkit-box-flex: 0;
        flex: 0 0 100%;
    max-width: 100%;
    display: block;
    position: relative;
    margin: 45px 0;
  }
}

@media screen and (max-width: 468px) {
  #etapes p,
  #etapes-5 p {
    font-size: 20px;
  }
}

@media screen and (max-width: 325px) {
  #etapes p,
  #etapes-5 p {
    font-size: 18px;
  }
}

/*====================
*
* achat-cash Modifications TROC
*
====================*/
.arrow-steps .step {
  font-size: 25px;
  text-align: center;
  padding-top: 0%;
  color: #ffffff;
  cursor: default;
  margin: 0 3px;
  padding: 10px 10px 10px 30px;
  min-width: 180px;
  float: left;
  position: relative;
  background-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background: -webkit-gradient(linear, right top, left top, from(#FFED00), to(#f47141));
  background: -o-linear-gradient(right, #FFED00, #f47141);
  background: linear-gradient(to left, #FFED00, #f47141);
  background-color: inherit;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid #FFED00;
  z-index: 2;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
  right: auto;
  left: 0;
  border-left: 17px solid #F7F7F6;
  z-index: 0;
}

.arrow-steps .step:first-child:before {
  border: none;
}

.arrow-steps .step:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.arrow-steps .step span {
  position: relative;
  top: -10px;
}

.arrow-steps .step span:before {
  opacity: 0;
  content: "?";
  position: absolute;
  top: -2px;
  left: -20px;
}

.arrow-steps .step.done span:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.5s;
  transition: opacity 0.3s ease 0.5s;
}

.icon {
  width: 15%;
  float: left;
  font-size: 40px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 0%;
}

.bloc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
  flex-wrap: nowrap;
}

.bloc-wrapper .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
  flex-wrap: nowrap;
}

.bloc-s {
  -webkit-box-flex: 1;
      flex: 1 1 0;
  padding: 40px;
}

.bloc-s p {
  width: 95%;
  float: left;
  padding-left: 5%;
  padding-right: 0%;
  text-align: left;
  text-align: justify;
}

.bloc-s h3 {
  float: left;
  text-align: center;
  width: 100%;
}

@-webkit-keyframes FadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  85% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes FadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  85% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.Bloc {
  float: left;
  margin: 20px;
  -webkit-animation: FadeIn 1s linear;
          animation: FadeIn 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.Bloc:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.Bloc:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.Bloc:nth-child(4) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.Bloc:nth-child(5) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.arrow-steps.clearfix {
  /*width:50%; margin-left:25%; margin-right:25%;*/
}

.Hidden {
  display: none;
}

#fleche01 {
  background: -webkit-gradient(linear, right top, left top, from(#ffbb00), to(#FFED00));
  background: -o-linear-gradient(right, #ffbb00, #FFED00);
  background: linear-gradient(to left, #ffbb00, #FFED00);
  position: relative;
  height: 36px;
}

#fleche01::after {
  border-left: 17px solid #ffbb00;
}

#fleche02 {
  background: -webkit-gradient(linear, right top, left top, from(#ff9d00), to(#ffbb00));
  background: -o-linear-gradient(right, #ff9d00, #ffbb00);
  background: linear-gradient(to left, #ff9d00, #ffbb00);
  position: relative;
  height: 36px;
}

#fleche02::after {
  border-left: 17px solid #ff9d00;
}

#fleche03 {
  background: -webkit-gradient(linear, right top, left top, from(#ff6100), to(#ff9d00));
  background: -o-linear-gradient(right, #ff6100, #ff9d00);
  background: linear-gradient(to left, #ff6100, #ff9d00);
  position: relative;
  height: 36px;
}

#fleche03::after {
  border-left: 17px solid #ff6100;
}

#fleche04 {
  background: -webkit-gradient(linear, right top, left top, from(#ff0000), to(#ff6100));
  background: -o-linear-gradient(right, #ff0000, #ff6100);
  background: linear-gradient(to left, #ff0000, #ff6100);
  position: relative;
  height: 36px;
}

#fleche04::after {
  border-left: 17px solid #ff0000;
}

.sticky-btn {
  position: fixed;
  bottom: 5%;
  right: 1%;
  z-index: 9999;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .Bloc {
    float: left;
    width: 90%;
  }
  .arrow-steps.clearfix {
    width: 100%;
    text-align: center;
    margin-left: 0%;
  }
}

@media screen and (max-width: 800px) {
  .icon {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .Bloc h3 {
    text-align: center;
    margin-left: 2%;
  }
  .Bloc p {
    padding-left: 2%;
  }
  .step {
    display: none;
  }
  .arrow-steps.clearfix {
    width: 92%;
    margin-left: 0%;
  }
  .Bloc {
    width: 100%;
    margin-left: 0%;
  }
  .Hidden {
    display: inherit;
    text-align: center;
    float: left;
    width: 100%;
    font-size: 40px;
    color: #FFED00;
  }
}

@media (max-width: 576px) {
  .bloc-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

@media (max-width: 800px) {
  .sticky-box {
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    border-radius: 0;
    padding: 4px 0px;
  }
  .sticky-box .btn-yellow {
    border-color: transparent;
    font-size: 3.2vw;
  }
}

/*# sourceMappingURL=achat-cash.css.map*/