/* Based on the example stylesheet from the article at Smashing Magazine
 * http:// coding.smashingmagazine.com/2011/11/24/how-to-set-up-a-print-style-sheet/
 * by Christian Krammer, ck@css3files.com
 *  
 * To use it: 
 * include the content of this file inside a media query:
 * @media print { … }
 * and use the screen media query for the rest of the css:
 * @media screen { … }
 * Or save as a separate file and use medi="print" in the css link
 */

/*
 * Check also the jquery print preview plugin:
 * https://github.com/etimbo/jquery-print-preview-plugin
 * Demo page:
 * http://etimbo.github.com/jquery-print-preview-plugin/example/index.html
 *
 */

/* page margins: does not work in Firefox */
/*
@page {
    margin: 0.5cm;
}
*/

/* You can also set page margins independently for odd and even pages */
/*
@page :left {
    margin: 0.5cm;
}
@page :right {
    margin: 0.8cm;
}
*/

@import url("https://fonts.googleapis.com/css?family=Lato:400,700");
@import url("https://fonts.googleapis.com/css?family=Cinzel:400,700,900");

* {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    color: #001842;
}
div#Panier, ul#steps_cart, img, a, hr {
    display: none
}
div#payment_infos, div#current_address, div.bloc-order, div#cart_detail, div#cart_footer {
    width: 50%;
    display: block;
    margin: 0 auto;
} 
div.bloc-order div.col-md-6 h3,div.bloc-order div.col-md-6 span {
    display: inline-block;
    font-size: 18px;
}
div#current_address>div {
    display: inline-block;
    width: 49%;
    text-align: center;
}
div#cart_footer h2, div#cart_footer p {
    font-size: 20px;
    text-align: center;
}
table {
    border: 1px solid #CFB079;
}
thead {
    border-bottom: 1px solid #CFB079;
}
address {    
    font-size: 14px;
    font-style: normal;
}