.panier-popup{
	position: fixed;
	top:0;
	left:0;
	z-index:9999;

	width:100%;
	height:100%;

	background-color:rgba(0,0,0,0.8);

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.panier-popup .content{
	background-color: #d9d3d1;

	border: 4px solid transparent;
    -webkit-border-image: url(../assets/content_border.png) 4; /* Safari 3.1-5 */
    -o-border-image: url(../assets/content_border.png) 4; /* Opera 11-12.1 */
    border-image: url(../assets/content_border.png) 4;

    padding:20px;
}

.panier-popup .content img{
	max-height:100px;
}

.panier-articles{
	width:800px;
	text-align: left;
	margin: 20px 0px;
	border-collapse:collapse;
}

.panier-content{
	width:800px;
	margin:auto;
}

.cell{
	display: inline-block;
	vertical-align: middle;
	width:150px;
	padding:10px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.panier-article:not(.header) .cell.image{
	background-size: cover;
	background-position: center center;
	width:100px;
	min-height: 100px;
}

.panier-article.header .cell{
	padding:0 10px;
}
.panier-article.header .cell.image{
	width:100px;
}

.cell.quantity{
	width:70px;
}
.cell.remove{
	width:30px;
}
.cell.price{
	width:100px;
}
.cell ul{
	margin:0;
	padding:0;
}
.cell li{
	list-style-type: none;
}
.panier-article:not(.header){
	border: 4px solid transparent;
    -webkit-border-image: url(../assets/content_border.png) 4; /* Safari 3.1-5 */
    -o-border-image: url(../assets/content_border.png) 4; /* Opera 11-12.1 */
    border-image: url(../assets/content_border.png) 4;
    background-color:#b4aeab;
    margin:10px 0;
}

.address{
	margin-bottom:15px;
	font-style: normal;
}
.address .button{
	margin-top:15px;
}

.panier-success{
	width:800px;
	margin:auto;
}