/*
//-----------------------------------------------------
// Popup for Opencart v1.5.3                  
// Created by villagedefrance                          
// contact@villagedefrance.net                             
//-----------------------------------------------------
*/

#element_to_pop_up {
    background-color: #FFF;
    display: none;
    padding: 20px;
    width: 400px;
    min-height: 180px;
	border: 2px solid #F18200;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 5px #888;
	-moz-box-shadow: 0px 0px 5px #888;
	box-shadow: 0px 0px 5px #888;
	text-decoration: none;
	color: #111;
}
#element_to_pop_up a {
	font-weight: bold;
	text-decoration: none;
}
#element_to_pop_up img {
	margin-left: auto;
	margin-right: auto;
}
#element_to_pop_up p {
	text-align: center;
}
.bClose{
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: -24px;
	background: #BBB;
	padding: 3px 9px;
	border: 1px solid #F18200;
	-webkit-border-radius: 7px 7px 0px 0px;
	-moz-border-radius: 7px 7px 0px 0px;
	-khtml-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
}