/*!
 * Img-dotted v0.2
 * Auteur : Puysségur Fabien
 * Date : 11/2015
 * Mise à jour : 06/2019 (david anquetin)
 */
.img-dotted {
	width: 100%;
	margin: 0 0 30px 0;
	position: relative;
	background-color: #f1f1f1;
}
.img-dotted .loading {
	width: 100%;
	height: 100%;
	position: relative;
}
.img-dotted .loading.off {
	display: none;
}
.img-dotted .loading img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	    transform: translate(-50%,-50%);
	width: 50px;
	height: 50px;
}
.img-dotted .fullscreen {
	position: absolute;
	width: 32px;
	height: 18px;
	bottom: 47px;
	right: 15px;
	z-index: 2;
	border: 0;
	margin: 0;
	padding: 0;
	background-color: transparent;
	outline: none;
	display: none;
}
.img-dotted .content {
	position: relative;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	text-align: center;
}
.img-dotted .content.on {
	opacity: 1;
}
.img-dotted .content .the-image {
	max-width: 100%;
	position: relative;
	z-index: 1;
}
.img-dotted .content .the-image:hover {
	opacity: 1 !important;
}
.img-dotted .content .dot {
	position: absolute;
	z-index: 2;
}
.img-dotted .content .dot .the-dot {
	background-color: rgba(51,51,51,0.3);
	border: 1px solid #fae520;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	opacity: 1;
	cursor: pointer;
	-webkit-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
	top: -16px;
	left: -16px;
	position: relative;
}
.img-dotted .content .dot .the-dot:hover {
	background-color: rgba(51,51,51,1);
}
.img-dotted .content .dot .the-content {
	position: absolute;
	display: none;
	width: 350px;
	-webkit-box-shadow: 0 4px 3px -2px rgba(0,0,0,0.4);
	box-shadow: 0 4px 3px -2px rgba(0,0,0,0.4);
	background-color: #fff;
	border: 1px solid rgba(0,0,0,0.4);
	border-bottom: 0;
	padding: 25px 22px;
	top: 66px;
	/*left: -181px;*/
	z-index: 3;
	text-align: left;
	font-family: 'HelveticaNeue67Cn';
	font-size: 18px;
	line-height: 25px;
}
.img-dotted .content .dot .the-content.fewword {
	width: auto;
}
.img-dotted .content .dot .the-content:after {
	bottom: 100%;
	left: 51%;
	content: " ";
	height: 17px;
	width: 25px;
	background: url(../img/arrow-down.png) no-repeat center top;
	position: absolute;
	pointer-events: none;
	-webkit-transform: translateX(-50%) rotate(180deg);
	-ms-transform: translateX(-50%) rotate(180deg);
	    transform: translateX(-50%) rotate(180deg);
}
.img-dotted .content .dot .the-content.top-content:after{
	bottom: 0;
	top: 100%;
	-webkit-transform: translateX(-50%) rotate(0);
	-ms-transform: translateX(-50%) rotate(0);
	    transform: translateX(-50%) rotate(0);
}
.img-dotted-overlay {
	background: rgba(255,255,255,1);
	width: 100%;
	height: 100%;
	z-index: 9998;
	top: 0;
	left: 0;
	position: fixed;
	display: none;
}
.img-dotted-overlay .img-dotted {
	margin: 30px 0 0 0;
	background-color: transparent;
}
.img-dotted-overlay .img-dotted .content {
	margin: 0 auto;
	text-align: center;
}
.img-dotted-overlay .img-dotted .content .the-image {
  max-width: 100%;
  max-height: 100%;
}
.img-dotted-overlay .fullscreen {
	display: none;
}
.img-dotted-overlay .legende {
	padding: 20px;
	font-size: 23px;
	font-weight: 700;
	position: absolute;
	bottom: 0;
}
.img-dotted-overlay:before {
	content: 'X';
	font-size: 31px;
	font-family: 'HelveticaNeueW01-75Bold';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	cursor: pointer;
	background-color: #000;
	padding: 10px 15px 15px 10px;
	color: #fff;
	border-bottom-right-radius: 50%;
}


@media screen and (max-width:991px){

	.img-dotted .content .dot .the-content{
		font-size: 16px;
		line-height: 20px;
		padding: 15px;
	}
	.img-dotted .content .dot .the-dot{
		width: 15px;
		height: 15px;

	}
}