/* popup_general.css */
/* POPUP JQUERY */
#bloc_popup #centreur_popup {
    position: absolute;
    z-index: 20;
    text-align: center;
    left: 0;
    right: 0;
	cursor: pointer;
	padding: 0 20px;
}
#bloc_popup #cadre_popup {
	background-color: #FFF;
    border-radius: 3px;
	position: relative;
	padding: 10px;
}
#bloc_popup #cadre_popup.no_padding { padding: 0; }
#bloc_popup #popup {
	border: none;
	cursor: default;
	vertical-align: top;
	border-radius: 3px;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#bloc_popup #fermer_popup {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #FFF;
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    width: 15px;
    line-height: 15px;
    padding: 10px;
	cursor: pointer;
	color: #f78e78;
    border-radius: 50%;
}
#bloc_popup #opacity_layer {
	background-color: rgba(0,0,0,.6);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 15;
    cursor: pointer;
}

#bloc_popup.fixed {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 20;
}
#bloc_popup .fixed #centreur_popup {
	display: table-cell;
	vertical-align: middle;
	position: relative;
    z-index: 5;
	left: initial;
	right: initial;
	top: initial;
}
#bloc_popup .fixed #opacity_layer {
    position: absolute;
    z-index: 0;
}

#bloc_popup #img_popup {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
#bloc_popup #video_popup { display: block; }

/* FOND TRANSPARENT */
#bloc_popup #cadre_popup.fond_transparent {
	background-color: transparent;
}
#bloc_popup #cadre_popup.fond_transparent #popup {
	padding: 0;
}
#bloc_popup #cadre_popup.fond_transparent #fermer_popup {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
    font-size: 35px;
    width: 30px;
    line-height: 30px;
}

/* RESPONSIVE */
@media only screen and (max-width: 770px) {
	a.popup { 
		border-style: dashed; 
		border-width: 0; 
	}
}