/***********************************************************************************************
* About Blank Legal Mentions
* CSS file
*/



/***********************************************************************************************
* Structure
*/
#ab-pop-up.ab-pop-up-wrapper{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	z-index: 1000000;
	display: none;
}

#ab-pop-up .ab-pop-up-inner{
	margin: auto auto;
	text-align: center;	
	width: 60%;
	padding: 10px 20px 15px;
	box-sizing: border-box;
}

.ab-button-wrapper{
	display: block;
	margin-left: 125px;
}

/***********************************************************************************************
* Texte
*/
#ab-pop-up p, #ab-pop-up .ab-button{
	font-size: 12px;
	line-height: 140%;
	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
	font-style: normal;
	font-weight: normal;
}

#ab-pop-up .ab-button{
	padding: 6px 12px 7px 12px; 
	cursor: pointer;
}

/***********************************************************************************************
* Colors
*/
#ab-pop-up.ab-pop-up-wrapper{
	background-color: #fff;
}

#ab-pop-up p{
	color: #000;
	margin-bottom: 10px;
	padding-bottom: 0;
}

#ab-pop-up span.ab-button{
	background-color: #000;
	color: #fff;
	margin-bottom: 10px;
}

#ab-pop-up a.ab-button{
	font-size: 9px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
}

#ab-pop-up span.ab-button, #ab-pop-up a.ab-button{
	transition: opacity 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
}

#ab-pop-up span.ab-button:hover, #ab-pop-up a.ab-button:hover{
	opacity: 0.85;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	-khtml-opacity: 0.85;
	text-decoration: none;
}

/***********************************************************************************************
* Media Queries
*/
@media (max-width: 1200px){
	#ab-pop-up .ab-pop-up-inner{
		width: 80%;
	}
} 

/* Landscape phones and down */
@media (max-width: 480px) {
	#ab-pop-up p{
		font-size: 12px;
	}

	#ab-pop-up .ab-pop-up-inner{
		width: 100%;
		padding: 0;
	}
	
	#ab-pop-up .ab-button{
		display: block;
	}
	
	.ab-button-wrapper{
		margin-left: 0;
	}
}

