/*CSS SHOPPING CART*/


#panierVide {
    width: 100%;
    /*background: white;*/
}

#h3PanierVide {
    text-align: center;
    font: Arial, Helvetica, sans-serif;
    font-size: 17px;
}

#imgPanierVide {
    padding-top: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 33%;

    overflow:hidden;
    -webkit-border-radius:70px;
    -moz-border-radius:70px;
    border-radius:70px;
}

#show-product-desc {
    padding-top: 20px;
}

.sp-img {
    max-width: 100%;
    vertical-align: middle;
    border-radius: 4px;
}

.sp-a:hover {
    color: #f58551;
}

.sp-button {
    background-color: #ffb900;
    border: 2px solid  #ffb900;
    color: #ffffff;
    transition: all 0.25s linear;
    cursor: pointer;
}

.sp-button::after {
    position: relative;
    right: 0;
    content: " \276f";
    transition: all 0.15s linear;
}

.sp-button:hover {
    background-color: #fde8aa;
    border-color: #fde8aa;
}

.sp-button:hover::after {
    right: -5px;
}

.sp-button:focus {
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sp-input {
    transition: all 0.25s linear;
}

.sp-input[type="number"]::-webkit-inner-spin-button,
.sp-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.sp-input {
    outline: none;
}

.sp-container {
    width: 90%;
    margin: 0 auto;
    overflow: auto;
}

/* --- HEADER --- */
header .sp-container {
    margin-bottom: 1.5rem;
}

header .sp-breadcrumb, header .sp-breadcrumb a{
    color: #7d7d7d;
}

header .sp-breadcrumb li {
    float: left;
    padding: 0 6px;
    height: 20px;
    line-height: 20px;
}

header .sp-breadcrumb li:first-child{
    padding-left: 2px;
}

header .sp-breadcrumb li:not(:last-child)::after {
    content: " \276f";
    padding-left: 8px;
}

header .sp-count {
    float: right;
    color: #333333;
    height: 20px;
    line-height: 20px;
}

/* --- PRODUCT LIST --- */
.sp-products {
    border-top: 1px solid #ddd;
}

.sp-products>li {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.sp-row {
    position: relative;
    overflow: auto;
    width: 100%;
}

.sp-col,
.sp-quantity,
.sp-remove {
    float: left;
}

.sp-col.sp-left {
    width: 70%;
}

.sp-col.sp-right {
    width: 30%;
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
}

.sp-detail {
    padding: 0 0.5rem;
    line-height: 2.2rem;
}

.sp-detail .sp-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #897a5e;
}

.sp-description {
    color: #4a4848;
    font-size: 0.9rem;
    position:absolute;
    bottom:0;
}
.sp-description:hover {
    text-decoration: none;
    color: #eeb822;
    cursor: pointer;
}

.sp-dispo-normal{
    color: #4a4848;
    font-size: 0.9rem;
    position:absolute;
    bottom:0;
    right:0px;
}

.sp-dispo-rupture-stock{
    color: #f1003b;
    font-size: 1.3rem;
    position:absolute;
    bottom:0;
    right:0px;
}

.sp-detail .sp-price, .sp-detail .sp-price-promo{
    font-size: 1.3rem;
}

.sp-detail .sp-percent, .sp-detail .sp-price-promo {
    color: #eeb822;
}

.sp-detail .sp-percent {
    font-size: 1.3rem;
}


.sp-quantity,
.sp-remove {
    width: 50%;
    text-align: center;
}

.sp-remove svg {
    width: 90px;
    height: 30px;
}



.sp-close {
    fill: #7d7d7d;
    transition: color 150ms linear, background-color 150ms linear,
        fill 150ms linear, 150ms opacity linear;
    cursor: pointer;
}

.sp-close:hover {
    fill: #f58551;
}

/* --- SUMMARY --- */
.sp-promotion,
.sp-summary,
.sp-checkout {
    float: left;
    width: 100%;
    margin-top: 1.5rem;
}

.sp-promotion>label {
    float: left;
    width: 100%;
    margin-bottom: 1rem;
}

.sp-promotion>input {
    float: left;
    width: 80%;
    font-size: 1rem;
    padding: 0.5rem 0 0.5rem 1.8rem;
    border: 2px solid #16cc9b;
    border-radius: 2rem 0 0 2rem;
}

.sp-promotion:hover>input {
    border-color: #f58551;
}

.sp-promotion>button {
    float: left;
    width: 20%;
    height: 2.4rem;
    border-radius: 0 2rem 2rem 0;
}

.sp-promotion:hover>button {
    border-color: #f58551;
    background-color: #f58551;
}

.sp-promotion>button::after {
    content: "\276f";
    font-size: 1rem;
}

.sp-summary {
    font-size: 1.3rem;
    text-align: right;
}

.sp-summary ul li {
    padding: 0.5rem 0;
}

.sp-summary ul li span {
    display: inline-block;
    width: 30%;
}

.sp-summary ul li.sp-total {
    font-weight: bold;
}

.sp-checkout {
    text-align: right;
}

.sp-checkout>button {
    font-size: 1.2rem;
    padding: 0.8rem 2.8rem;
    border-radius: 1.5rem;
}

.sp-empty-product {
    text-align: center;
}

.sp-empty-product>button {
    font-size: 1.3rem;
    padding: 10px 30px;
    border-radius: 5px;
}

.sp-quantity>input {
    display: inline-block;
    width: 120px;
    position: relative;
    left: calc(50% - 30px);
    background: #fff;
    border: 2px solid #ddd;
    color: #7f7f7f;
    text-align: center;
    font: 600 1.7rem Helvetica, Arial, sans-serif;
    /*float: right;*/
}

.sp-quantity>input:hover,
.sp-quantity>input:focus {
    border-color: black;
}

/* --- SMALL SCREEN --- */
@media all and (max-width: 599px) {
    .sp-thumbnail img {
        display: none;
    }

    .sp-quantity>input {
        width: 60px;
        height: 60px;
        left: calc(50% - 20px);
    }

    .sp-remove svg {
        width: 100px;
        height: 100px;
    }
}

/* --- MEDIUM & LARGE SCREEN --- */
@media all and (min-width: 600px) {
    html {
        font-size: 14px;
    }

    .sp-container {
        width: 75%;
        max-width: 960px;
    }

    .sp-thumbnail,
    .sp-detail {
        float: left;
    }

    .sp-thumbnail {
        width: 35%;
    }

    .sp-detail {
        width: 65%;
    }

    .sp-promotion,
    .sp-summary {
        width: 100%;
    }

    .sp-checkout {
        width: 100%;
    }

    .sp-checkout,
    .sp-summary {
        text-align: right;
    }
}

/* --- LARGE SCREEN --- */
@media all and (min-width: 992px) {
    html {
        font-size: 16px;
    }
}

.borderbottom {
    border-bottom: solid 1px #e0e0e0;
    border-radius: 8px 8px 0 0;
}

.padtop {
    padding-top: 40px;
}

#address-h1 {
    border: solid 1px #e0e0e0;
    border-radius: 8px 8px 0 0;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0;
    text-align: left;
    line-height: 1.4;
    padding: .7em 1em;
    text-align: center;
}

.space {
    height: 20px;
    cursor: default!important;
}

.fs-20{
    font-size: 18px!important;
    cursor: default!important;
}
.cadreblanc {
    text-align: center;
    display:block;
    height: 200px;
}
.cadreblanc2 {
    text-align: center;
    display:block;
    height: 250px;
}
.linkm {
    font-size: 18px!important;
    cursor: pointer;
    border-style: dotted;
    border-width: 2px;
    border-color: grey;
    width: 120px;
    align-content: center;
    margin : auto;
}
.linkm:hover{
    background-color:#F1AF00;
    color: white;
}

.alignbloc {
    margin : auto;
    align-content: center;
}

#btnPay {
    cursor: pointer;
}

 