/*************************************************************************
* SHOP
*************************************************************************/

/* > VARS ================================= */
.bg-light {
    background-color: #e8f2fa !important;
}
.bg-light-gray {
    background-color: #f1f1f1;
}

.text-gray { color: #949494 !important; }

.fs-xlarge { font-size: 1.5rem; }
.fs-large { font-size: 1.25rem; }
.fs-medium { font-size: 1.125rem; }
.fs-small  { font-size: 0.875rem; }
.fs-xsmall { font-size: 0.75rem; }
.fs-xxsmall { font-size: 0.75rem; }

/* > RESET ================================ */
label.form-check-label {
    padding-top: 0;
    padding-bottom: 0;
}


/* > UI Elements ========================== */

input[type=submit]:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
}

.quantite {
    background-color: #fff;
}

.quantite .input-number-increase::before,
.quantite .input-number-decrease::before {
    color: var(--bs-primary);
}

.quantite .input-number-increase:hover::before,
.quantite .input-number-decrease:hover::before {
    color: #0e2e5d;
}

.article-pagination {
    width: 100%;
    padding-top: 1.5rem;
}

.search-box {
    display: flex;

}

.search-box input {
    width: 100%;
    height: 44px;
    border-radius: 0;
    padding-right: 44px;
}

.search-box button {
    border: none;
    width: 36px;
    height: 36px;
    margin: 4px 0 4px -40px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    transition: color 0.3s, background-color 0.3s;
}

.search-box button:hover {
    background-color: #d2e5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230e2e5d' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
}

.filter-group .filter-heading button::after {
    content: "" !important;
    background: center no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-size: 16px 16px;
}
.filter-group .filter-heading button[aria-expanded=false]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.filter-group .filter-heading button[aria-expanded=true]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/%3E%3C/svg%3E");
}

/* === input numbers === */
.input-number {
    position: relative;
}
.input-number input[type=number]::-webkit-inner-spin-button,
.input-number input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.input-number input[type=number] {
    -moz-appearance: textfield;
}
.input-number input[type=text],
.input-number input[type=number] {
    padding: 0 32px 0 10px;
    height: 44px !important;
}
.input-number input[type=number]:focus {
    outline: 0;
}
.input-number .input-number-increase,
.input-number .input-number-decrease {
    position: absolute;
    width: 32px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: center no-repeat;
    background-size: 16px 16px;
    cursor: pointer;
    right: 0;
    transition: all 0.3s;
}
.input-number .input-number-increase {
    top: -1px;
    padding-top: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23949494' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/%3E%3C/svg%3E");
}
.input-number .input-number-decrease {
    top: 21px;
    padding-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23949494' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
.input-number .input-number-increase:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/%3E%3C/svg%3E");
}
.input-number .input-number-decrease:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.form-select.form-control-sm,
.form-control.form-control-sm:not(textarea) {
    height: 32px;
}
@media screen and (min-width: 1440px) {
    .form-select.form-control-sm,
    .form-control.form-control-sm:not(textarea) {
        height: 40px;
    }
}

/* > Article ============================== */
.article {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #fff;
    border: #fff 2px solid;
    transition: border-color 0.6s;
}

.article .article-heading {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article .article-heading .article-thumb {
    flex: 0 0 auto;
    display: block;
}

.article .article-heading .article-thumb img {
    transition: all 0.5s;
}

.article h3 {
    color: #0e2e5d;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.25em;
    transition: color 0.5s;
}

.article .article-infos p {
    font-weight: 300;
    font-size: 0.875em;
    line-height: 1.33em;
    color: #0e2e5d;
    margin-bottom: 0.25em;
}

.article .article-ref {
    text-transform: uppercase;
    font-size: 1.125rem;
    color: var(--bs-primary);
}

.article:hover {
    border-color: #d2e5f5;
}

.article:hover .article-thumb img {
    transform: scale(0.8);
}

.article:hover h3 {
    color: var(--bs-primary);
}

.article .conditionnement-group {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.article .btn {
    display: block;
    font-size: .875rem;
    width: 100%;
}
.article .article-cart {
    flex: 0 0 auto;
    margin-top: 8px;
    display: flex;
}
.article .article-cart .btn-primary {
    width: auto;
    flex: 1 1 auto;
}
.article .article-cart .btn-primary + .cart-add {
    width: auto;
    min-width: 39px;
    margin-left: 5px;
    flex: 0 0 auto;
    text-align: center;
    padding: 0;
}


.article-promotions {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.article-promotions span {
    display: inline-flex;
    padding: 0.33rem 0.5rem;
    font-size: 0.66rem;
    line-height: 1em;
    font-weight: 600;
    color: #fff;
    margin-right: 2px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.article-promotions span.promo {
    background-color: var(--bs-primary);
}

.article-promotions span.nouveau {
    background-color: #e21313;
}

.article-promotions span.bestseller {
    background-color: #0e2e5d;
}

.conditionnement-group.disabled {
    position: relative;
}

.conditionnement-group.disabled::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
}

.conditionnement-group .conditionnement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.conditionnement-group .conditionnement-row .conditionnement-label {
    margin: 0;
    padding-right: 0.5rem;
    color: var(--bs-primary);
    font-size: 0.875em;
    flex: 1 1 auto;
}

.conditionnement-group .conditionnement-row .conditionnement-price {
    font-weight: 700;
    color: #0e2e5d;
    padding-right: 0.75rem;
}

.conditionnement-group .conditionnement-row .conditionnement-price .striped {
    display: block;
    font-size: 0.66em;
    line-height: 1em;
    margin-top: -0.5em;
    text-decoration: line-through;
    text-align: right;
    color: #6d6e6f;
    opacity: 0.6;
}

.conditionnement-group .conditionnement-row .quantite {
    width: 70px;
    flex: 0 0 auto;
}

.article-price {
    font-weight: 700;
    color: #0e2e5d;
    padding-right: 0.75rem;
}
.article-price em {
    display: block;
    color: var(--bs-primary);
    font-size: .66em;
    font-style: normal;
    margin-bottom: -.25em;
}
.article-price .striped {
    display: block;
    font-size: 0.66em;
    line-height: 1em;
    text-decoration: line-through;
    color: #6d6e6f;
    opacity: 0.6;
}
.article-price.fs-large em,
.article-price.fs-xlarge em { font-size: .55em; }

.article-nostock {
    flex: 0 0 auto;
    line-height: 44px;
    text-align: center;
    background-color: #f2f2f2;
    font-style: italic;
    padding: 0 1rem;
    height: 44px;
}

/* > Listes articles ====================== */
.article-list .article-results {
    display: flex;
    flex-wrap: wrap;
}

.article-list .article-results .article {
    width: 25%;
}

@media screen and (max-width: 991px) {
    .article-list .article-results .article {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .article-list .article-results {
        max-width: 760px;
    }

    .article-list .article-results .article {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .article-list .article-results {
        max-width: 380px;
    }

    .article-list .article-results .article {
        width: 100%;
    }
}

.article-list.filterable-list .article { width: 33.33%; }

@media screen and (max-width: 1200px) {
    .article-list.filterable-list .article {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .article-list.filterable-list .article {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .article-list.filterable-list .article-results {
        max-width: 760px;
    }

    .article-list.filterable-list .article {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .article-list.filterable-list .article-results {
        max-width: 380px;
    }

    .article-list.filterable-list .article {
        width: 100%;
    }
}

.article-ordering {
    padding-bottom: 1rem;
}

.article-ordering select {
    max-width: 180px;
    font-size: .875rem;
    border-radius: 0;
    height: 44px;
}


.article-list .scroll-animate .article-cart,
.article-list .scroll-animate .article-heading,
.article-list .scroll-animate .conditionnement-group {
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.5s, opacity 0.3s;
}

.article-list .scroll-animate.in-view .article-cart,
.article-list .scroll-animate.in-view .article-heading,
.article-list .scroll-animate.in-view .conditionnement-group {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-width: 1201px),
screen and (min-width: 768px) and (max-width: 991px) {

    .article-list .scroll-animate:nth-child(3n+1) .article-cart,
    .article-list .scroll-animate:nth-child(3n+1) .article-heading,
    .article-list .scroll-animate:nth-child(3n+1) .conditionnement-group {
        transition-delay: 100ms;
    }

    .article-list .scroll-animate:nth-child(3n+2) .article-cart,
    .article-list .scroll-animate:nth-child(3n+2) .article-heading,
    .article-list .scroll-animate:nth-child(3n+2) .conditionnement-group {
        transition-delay: 200ms;
    }

    .article-list .scroll-animate:nth-child(3n+3) .article-cart,
    .article-list .scroll-animate:nth-child(3n+3) .article-heading,
    .article-list .scroll-animate:nth-child(3n+3) .conditionnement-group {
        transition-delay: 300ms;
    }
}

@media screen and (max-width: 1200px),
screen and (min-width: 576px) and (max-width: 767px) {

    .article-list .scroll-animate:nth-child(2n+1) .article-cart,
    .article-list .scroll-animate:nth-child(2n+1) .article-heading,
    .article-list .scroll-animate:nth-child(2n+1) .conditionnement-group {
        transition-delay: 100ms;
    }

    .article-list .scroll-animate:nth-child(2n+2) .article-cart,
    .article-list .scroll-animate:nth-child(2n+2) .article-heading,
    .article-list .scroll-animate:nth-child(2n+2) .conditionnement-group {
        transition-delay: 200ms;
    }
}

.empty-results {
    text-align: center;
    font-style: italic;
    padding: 10vh 2rem;
    opacity: 0.5;
}

/* > Listes articles inline =============== */
.article-row-list {
    padding: 0.75rem;
    margin: 0;
}

.article.article-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 0.75rem;
}

.article.article-row .article-heading {
    align-items: center;
    flex-direction: row;
    text-align: left;
    padding-right: 0.75rem;
    font-size: 0.875rem;
    flex: 1 1 auto;
}

.article.article-row .article-heading img {
    width: 25%;
    margin-left: 0 !important;
    margin-right: 1rem !important;
}

.article.article-row .article-titre,
.article.article-row .article-ref {
    font-size: 1rem;
}

.article.article-row .article-price,
.article.article-row .article-quantity {
    width: 100px;
    font-size: 0.875rem;
    text-align: center;
}

.article.article-row .article-price {
    font-size: 1rem;
}

.article.article-row .article-conditionnement {
    font-size: 0.875rem;
    color: #6d6e6f;
}

.article.article-row .article-del {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex: 0 0 auto;
    text-align: center;
    font-size: 14px;
}

.article.article-row .article-del:hover {
    color: var(--bs-danger);
}

/* > Carousel articles ==================== */

.carousel-products {
    position: relative;
    padding: 10px 40px;
}
.carousel-products .swiper-buttons {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    transition: background-color 0.4s, color 0.2s;
}
.carousel-products .swiper-buttons svg {
    display: block;
    width: 22px;
    height: 32px;
    fill: #1e7fcb;
    transition: fill .3s;
}
.carousel-products .swiper-buttons.button-prev {
    left: 0;
}
.carousel-products .swiper-buttons.button-next {
    right: 0;
}
.carousel-products .swiper-buttons:hover svg {
    fill: #e21313;
}

.carousel-products.nbslide-1 .swiper-wrapper {
    justify-content: center !important;
}

.carousel-products.nbslide-1 .swiper-buttons {
    display: none;
}

@media screen and (min-width: 992px) {
    .carousel-products.nbslide-4 { padding: 10px; }
    .carousel-products.nbslide-4 .swiper-wrapper {
        justify-content: center !important;
    }
    .carousel-products.nbslide-4 .swiper-buttons { display: none; }
}

@media screen and (min-width: 768px) {
    .carousel-products.nbslide-3 { padding: 10px; }
    .carousel-products.nbslide-3 .swiper-wrapper {
        justify-content: center !important;
    }
    .carousel-products.nbslide-3 .swiper-buttons { display: none; }
}

@media screen and (min-width: 576px) {
    .carousel-products.nbslide-2 { padding: 10px; }
    .carousel-products.nbslide-2 .swiper-wrapper {
        justify-content: center !important;
    }

    .carousel-products.nbslide-2 .swiper-buttons {
        display: none;
    }
}

.carousel-products .article {
    width: 25%;
}

@media screen and (max-width: 991px) {
    .carousel-products .article {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .carousel-products .article {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .carousel-products { max-width: 440px; }
    .carousel-products .article { width: 100%; }
}

@media screen and (min-width: 356px) {
    .carousel-products.carousel-products-small.nbslide-2 .swiper-wrapper {
        justify-content: center !important;
    }

    .carousel-products.carousel-products-small.nbslide-2 .swiper-buttons {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .carousel-products.carousel-products-small.nbslide-5 .swiper-wrapper {
        justify-content: center !important;
    }

    .carousel-products.carousel-products-small.nbslide-5 .swiper-buttons {
        display: none;
    }
}

@media screen and (min-width: 1201px) {
    .carousel-products.carousel-products-small.nbslide-6 .swiper-wrapper {
        justify-content: center !important;
    }

    .carousel-products.carousel-products-small.nbslide-6 .swiper-buttons {
        display: none;
    }
}

.carousel-products.carousel-products-small .article {
    width: 16.66%;
}

@media screen and (max-width: 1200px) {
    .carousel-products.carousel-products-small .article {
        width: 20%;
    }
}

@media screen and (max-width: 991px) {
    .carousel-products.carousel-products-small .article {
        width: 25%;
    }
}

@media screen and (max-width: 767px) {
    .carousel-products.carousel-products-small .article {
        width: 33.33%;
    }
}

@media screen and (max-width: 575px) {
    .carousel-products.carousel-products-small .article {
        width: 50%;
    }
}

@media screen and (max-width: 355px) {
    .carousel-products.carousel-products-small .article {
        width: 100%;
    }
}

.carousel-products.scroll-animate .swiper-slide {
    transform: translateY(50%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(1) {
    transition-delay: 100ms;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(2) {
    transition-delay: 200ms;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(3) {
    transition-delay: 300ms;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(4) {
    transition-delay: 400ms;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(5) {
    transition-delay: 500ms;
}

.carousel-products.scroll-animate .swiper-slide:nth-child(6) {
    transition-delay: 600ms;
}

.carousel-products.scroll-animate.in-view .swiper-slide {
    opacity: 1;
    transform: translateY(0);
}

/* > Filtres ============================== */
.filters {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    padding: 1rem 1rem 1rem 2rem;
}

.filters ul {
    padding-left: 0.75rem;
}

.filters li a,
.filters label {
    color: #6d6e6f;
    font-size: 1rem;
    line-height: 1.25em;
    font-weight: 700;
    transition: color 0.3s;
}

.filters li:hover a,
.filters li.active a,
.filters li:hover label,
.filters li.active label {
    color: var(--bs-primary);
}

.filters .filters-close {
    background-color: #fff;
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    font-size: 2rem;
    color: #d2e5f5;
    text-align: center;
    border: none;
    padding: 0;
}

.filters .filters-close:hover {
    background-color: #d2e5f5;
    color: var(--bs-primary);
}

.filters-display {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
    transition: bottom 0.5s;
}

.filter-checkbox-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.filter-checkbox-list li input {
    flex: 0 0 auto;
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

.filter-group {
    padding-top: 0.5rem;
}

.filter-group .filter-heading {
    padding-bottom: 0.75rem;
}

.filter-group .filter-heading a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: #0e2e5d;
    font-size: 0.875rem;
    line-height: 1.25em;
    font-weight: 700;
    padding: 10px;
    border: none;
    transition: color 0.3s;
}

.filter-group .filter-heading a:hover,
.filter-group .filter-heading a.active {
    color: var(--bs-primary);
}

.filter-group .filter-heading button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: #0e2e5d;
    font-size: 0.875rem;
    line-height: 1.25em;
    font-weight: 700;
    padding: 10px;
    border: none;
    transition: background-color 0.3s;
}

.filter-group .filter-heading button::after {
    font-family: "bootstrap-icons";
    display: inline-block;
    height: 14px;
    width: 14px;
    font-size: 14px;
    line-height: 14px;
}

.filter-group .filter-heading button[aria-expanded=true]::after {
    content: "\f2ea";
}

.filter-group .filter-heading button[aria-expanded=false]::after {
    content: "\f4fe";
}

.filter-group .filter-heading button:hover {
    background-color: #d2e5f5;
}

.filter-select {
    padding: 0 0.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
    .filters {
        z-index: 6;
        position: fixed;
        top: 0;
        left: -380px;
        width: 380px;
        height: 100%;
        max-height: 100%;
        background-color: #fff;
        border-right: #d2e5f5 1px solid;
        padding-top: 40px;
        transition: left 0.5s;
    }

    body.filters-opened .filters {
        left: 0;
    }

    body.filters-opened .filters-display {
        bottom: -42px;
    }
}

/* > Fiche article ======================== */
.heading-article-photo {
    position: relative;
}

.heading-article-photo .article-promotions {
    padding: 1rem;
    max-width: calc(100% - 80px);
}
.heading-article-photo .article-promotions span {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}
.article-slide-navigation {
    display: flex;
    justify-content: center;
    padding-top: .75rem;
    padding-left: 0;
}
.article-slide-navigation li {
    flex: 20%;
    max-width: 110px;
    padding: 5px;
}
.article-slide-navigation li a { 
    display: block;
    background-color: var(--bs-primary);
}
.article-slide-navigation li a img {
    display: block;
    width: 100%;
    transition: opacity .3s;
}
.article-slide-navigation li a:hover img { opacity: .75; }

/*
.heading-article-photo::before {
    content: "";
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    margin-top: -1.5rem;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 40px;
    width: 100%;
    opacity: 0.1;
}

.heading-article-photo::after {
    content: "";
    width: 60px;
    height: 40vh;
    min-height: 140px;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: 2;
}

.heading-article-photo .sticky-photo {
    top: 80px;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 80px);
}

.heading-article-photo .sticky-photo img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 100px);
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 767px) {
    .heading-article-photo .sticky-photo {
        max-width: 280px;
        margin: 0 auto;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .heading-article-photo::after {
        height: 75vw;
    }
}
*/

.heading-article-infos {
    display: flex;
    flex-direction: column;
}

.heading-article-infos .article-infos-commons {
    flex: 1 1 auto;
}

.heading-article-infos .article-infos-descriptions {
    flex: 0 0 auto;
}

.heading-article-infos .inner {
    max-width: 500px;
    margin: 0 auto;
}

.heading-article-infos h1 {
    font-size: 1.75rem;
    color: #0e2e5d;
    margin: 0 0 0.33rem;
}

.heading-article-infos h2 {
    font-family: "DIN Pro", sans-serif;
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

.heading-article-infos .article-subtitle {
    font-size: 1.125rem;
    color: #0e2e5d;
    font-weight: 700;
}

.heading-article-infos .article-short-desc {
    max-width: 360px;
}

.heading-article-infos .article-short-desc p,
.heading-article-infos .article-short-desc ul li {
    font-weight: 300;
}

.heading-article-infos .article-caracs {
    padding: 0;
    margin: 2rem 0 0;
    display: table;
}

.heading-article-infos .article-caracs li {
    display: table-row;
}

.heading-article-infos .article-caracs li span {
    font-weight: 400;
    display: table-cell;
    padding: 2px 5px 2px 0;
}

.heading-article-infos .article-caracs li strong {
    padding: 2px 0px;
}

.heading-article-infos .article-medals {
    padding-left: 1.5rem;
    max-width: 25%;
}

.article-order {
    position: relative;
    align-items: flex-end;
    justify-content: space-between;
}

.article-order .article-cart {
    max-width: 360px;
}

.article-order .conditionnement-group {
    flex: 1 1 auto;
    max-width: 360px;
}

.article-order .conditionnement-group.disabled {
    position: relative;
    opacity: 0.3;
}

.article-order .conditionnement-group.disabled::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.article-order .conditionnement-group .conditionnement-row {
    padding-bottom: 0.5rem;
    border-bottom: #d2e5f5 1px solid;
}

.article-order .conditionnement-group .conditionnement-row:last-child {
    margin-bottom: 0;
}

.article-order .conditionnement-group .conditionnement-label {
    font-size: 1rem;
}

.article-order .conditionnement-group .conditionnement-price {
    font-size: 1.25rem;
    text-align: center;
    width: 33.33%;
}

.article-order .conditionnement-group .conditionnement-price .striped {
    text-align: center;
}

.article-order .article-nostock {
    height: auto;
    padding: 1rem 2rem;
    flex: 1 1 auto;
    border: #d2e5f5 1px solid;
    background-color: transparent;
}

@media (min-width: 480px) {
    .article-order .conditionnement-group.disabled+.article-nostock {
        max-width: 140px;
        padding: 0.5rem 1rem;
    }
}

.article-order .article-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1 1 auto;
    max-width: 360px;
    padding-right: 1rem;
}

.article-order .article-pricing .article-price {
    font-size: 1.25rem;
    text-align: left;
    flex: 0 0 auto;
    padding-right: 1rem;
    margin-bottom: 5px;
}

.article-order .article-pricing .article-option {
    flex: 1 1 auto;
    padding-right: 1rem;
}

.article-order .article-pricing .article-option label {
    display: block;
    color: #0e2e5d;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 0.875em;
}

.empty-cart-error {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.empty-cart-error .bg-light-gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
}

.empty-cart-error .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-error .wrapper .text-center {
    z-index: 1;
    position: relative;
    max-width: 320px;
    font-weight: 400;
    color: #fff;
}

.empty-cart-error .wrapper .text-center .btn {
    padding: 3px 10px;
    height: 32px !important;
}

.empty-cart-error .wrapper .text-center .btn:hover {
    background-color: #d2e5f5;
}

.empty-cart-error.list-cart-error {
    position: fixed;
}

.article-infos-descriptions p+h3 {
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .article-infos-commons .d-flex {
        flex-wrap: wrap;
    }

    .heading-article-infos .article-short-desc {
        max-width: 100%;
    }

    .heading-article-infos .article-medals {
        padding: 1rem 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }

    .heading-article-infos .article-medals .medal {
        flex: 25%;
        max-width: 80px;
        margin: 5px;
    }

    .article-order .article-pricing,
    .article-order .conditionnement-group {
        max-width: 100%;
        padding: 0 0 0.75rem;
    }

    .article-order .article-cart {
        width: 100%;
    }

    .article-order .article-cart .btn {
        display: block;
        width: 100%;
    }
}

/* === declinaisons couleurs === */
.terroir-location {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d2e5f5;
}

.terroir-location .inner {
    display: block;
    max-width: 360px;
    text-align: center;
    width: 75%;
}

.terroir-location .inner h4 {
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    color: #0e2e5d;
    padding: 0.25rem 1rem;
    text-align: left;
    border-right: var(--bs-primary) 1px solid;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.terroir-location .terroir-location-image {
    max-width: 300px;
    position: relative;
    transition: transform 0.3s;
}

.terroir-location .terroir-location-image img {
    display: block;
    width: 100%;
}

.terroir-location a.inner:hover h4 {
    color: #fff;
}

.terroir-location a.inner:hover .terroir-location-image:hover {
    transform: scale(0.9);
}

.terroir-location .marker {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    margin: -12px;
    top: 50%;
    left: 50%;
}

.terroir-location .marker .pin {
    position: relative;
    border-radius: 50%;
    display: block;
    z-index: 1;
    width: 24px;
    height: 24px;
    border: #fff 3px solid;
    -webkit-animation: 0.5s linear 1s infinite alternate pin;
            animation: 0.5s linear 1s infinite alternate pin;
}

.terroir-location .marker::before,
.terroir-location .marker::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    -webkit-animation: 6s linear infinite running wave;
            animation: 6s linear infinite running wave;
}

.terroir-location .marker::after {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
}

@-webkit-keyframes pin {
    from {
        transform: scale(0.75);
    }

    to {
        transform: scale(1);
    }
}

@keyframes pin {
    from {
        transform: scale(0.75);
    }

    to {
        transform: scale(1);
    }
}

@-webkit-keyframes wave {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(3);
        opacity: 0.2;
    }

    50% {
        transform: scale(6);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes wave {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(3);
        opacity: 0.2;
    }

    50% {
        transform: scale(6);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.terroir-1 .terroir-location .marker {
    top: 39%;
    left: 53%;
}

.terroir-1 .terroir-location .marker .pin {
    background-color: var(--bs-primary);
}

.terroir-2 .terroir-location .marker {
    top: 56%;
    left: 64%;
}

.terroir-2 .terroir-location .marker .pin {
    background-color: #198eaf;
}

.terroir-3 .terroir-location .marker {
    top: 48%;
    left: 40%;
}

.terroir-3 .terroir-location .marker .pin {
    background-color: #b99664;
}

.terroir-4 .terroir-location .marker {
    top: 48%;
    left: 40%;
}

.terroir-4 .terroir-location .marker .pin {
    background-color: #0e2e5d;
}

.terroir-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a47275;
    transition: background-color 0.5s;
    min-height: 220px;
}

.terroir-link .link {
    border-color: #0e2e5d;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s;
}

.terroir-link .link::after,
.terroir-link .link::before {
    background-color: #fff;
}

.terroir-link:hover {
    background-color: #6d6e6f;
}

.terroir-link:hover .link {
    transform: scale(1.1);
    border-color: #fff;
}

.terroir-link:hover .link::before,
.terroir-link:hover .link::after {
    transform: scaleX(1);
}

.article-terroir .logo-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 300px;
    height: 25vw;
}

.article-terroir .logo-decoration::after {
    content: "";
    display: block;
    opacity: 0.3;
    width: 140px;
    height: 140px;
    background: center no-repeat;
    background-image: url(../images/svg/medaillon-logo-blanc.svg);
    background-size: 100% 100%;
    -webkit-animation: 2s linear infinite alternate logoShine;
            animation: 2s linear infinite alternate logoShine;
}

/*
  .article-brand {
      .logo-decoration {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: $color-info;
          &.bg-yellow { background-color: $color-yellow; }
          &::after {
              content: "";
              display: block;
              opacity: .3;
              width: 140px;
              height: 140px;
              background: center no-repeat;
              background-image: url(../images/svg/medaillon-logo-blanc.svg);
              background-size: 100% 100%;
          }
      }
      .brand-link {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #176d85;
          transition: background-color .5s;
          min-height: 220px;
          .link {
              border-color: #fff;
              color: rgba(255,255,255,.75);
              text-align: center;
              text-transform: uppercase;
              &::after,
              &::before { background-color: #fff; }
              transition: all .5s;
          }
          &:hover {
              background-color: $color-info;
              .link { 
                  transform: scale(1.1);
                  border-color: #fff;
                  &::before,
                  &::after {
                      transform: scaleX(1);
                  }
              }
          }
      }
  }
  */
@media (max-width: 991px) {

    .article-brand .fig-content.col-lg-7 .fig-cover,
    .article-terroir .fig-content.col-lg-7 .fig-cover {
        position: relative;
        max-height: 280px;
    }
}

.footer-article .row {
    justify-content: center;
}

.footer-article .columns {
    -moz-column-count: 2;
    column-count: 2;
    gap: 4rem;
}

.footer-article .columns>* {
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

@media screen and (max-width: 575px) {
    .footer-article .columns {
        -moz-column-count: 1;
        column-count: 1;
    }
}

.footer-article .article-documentation .article-docment {
    display: flex;
    font-weight: 400;
    align-items: flex-end;
    color: #0e2e5d;
    transition: color 0.3s;
}

.footer-article .article-documentation .article-docment::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 50px;
    background: url(../images/articles/article-document.png) 0 0 no-repeat;
    background-size: 100% 100%;
    margin-right: 0.5rem;
    flex: 0 0 auto;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.footer-article .article-documentation .article-docment:hover {
    color: var(--bs-primary);
}

.footer-article .article-documentation .article-docment:hover::before {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .article-terroir .fig-content .img-fluid {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.vin-autre .heading-article-photo::after,
.fiche-autre .heading-article-photo::after {
    background-color: #d2e5f5;
}

.terroir-1 .heading-article-photo::after {
    background-color: var(--bs-primary);
}

.terroir-1 .terroir-location,
.terroir-1 .logo-decoration {
    background-color: var(--bs-primary);
}

.terroir-1 .terroir-location h4,
.terroir-1 .logo-decoration h4 {
    color: #fff;
    border-color: #0e2e5d;
}

.terroir-1 .terroir-link {
    background-color: #a47275;
}

.terroir-1 .terroir-link:hover {
    background-color: #0e2e5d;
}

.terroir-2 .heading-article-photo::after {
    background-color: #198eaf;
}

.terroir-2 .terroir-location,
.terroir-2 .logo-decoration {
    background-color: #198eaf;
}

.terroir-2 .terroir-location h4,
.terroir-2 .logo-decoration h4 {
    color: #fff;
    border-color: #6cadc6;
}

.terroir-2 .terroir-link {
    background-color: #6cadc6;
}

.terroir-2 .terroir-link .link {
    border-color: #25738c;
}

.terroir-2 .terroir-link:hover {
    background-color: #25738c;
}

.terroir-2 .terroir-link:hover .link {
    border-color: #ffffff;
}

.terroir-3 .heading-article-photo::after {
    background-color: #b99664;
}

.terroir-3 .terroir-location,
.terroir-3 .logo-decoration {
    background-color: #b99664;
}

.terroir-3 .terroir-location h4,
.terroir-3 .logo-decoration h4 {
    color: #d2e5f5;
    border-color: #fff;
}

.terroir-3 .terroir-link {
    background-color: #b99664;
}

.terroir-3 .terroir-link:hover {
    background-color: #9a7a4d;
}

.terroir-4 .heading-article-photo::after {
    background-color: #0e2e5d;
}

.terroir-4 .terroir-location,
.terroir-4 .logo-decoration {
    background-color: #0e2e5d;
}

.terroir-4 .terroir-location h4,
.terroir-4 .logo-decoration h4 {
    color: #d2e5f5;
    border-color: #fff;
}

.terroir-4 .terroir-link {
    background-color: #0e2e5d;
}

.terroir-4 .terroir-link:hover {
    background-color: #0e2e5d;
}

/*
  .vin-domaine .heading-article-photo::after { background-color: $color-primary; }
  .vin-marque .heading-article-photo::after { background-color: $color-info; }
  */
/*************************************************************************
  * PANIER
  *************************************************************************/

  /* > Panier commons ======================= */
.cart-action .btn {
    min-width: 200px;
}

@media (max-width: 575px) {
    .cart-action {
        text-align: center;
    }

    .cart-action .btn {
        margin: 5px;
    }
}

#heading-panier {
    margin-bottom: 3rem;
    padding: 60px 0 0;
    background-color: var(--bs-secondary);
    background-image: url(../../../../../themes/usmviroflay/assets/images/decorations/heading-page-left.png), 
                      url(../../../../../themes/usmviroflay/assets/images/decorations/heading-page-right.png);
    background-position: 0 center, 100% center;
    background-repeat: no-repeat;
    background-size: 50% auto;
}

#heading-panier h1 {
    font-size: 2rem;
    color: #fff;
}

/* > Panneau ajout ======================== */
#cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1004;
    width: 0;
    height: 100%;
    background: rgba(var(--bs-primary-rgb), .75) !important;
}

#cart-panel .cart-panel-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    font-size: 2rem;
    cursor: pointer;
}
#cart-panel .cart-panel-close svg {
    display: block;
    margin: 8px;
    width: 16px; 
    height: 16px;
    fill: var(--bs-secondary);
}

#cart-panel .cart-panel-close:hover svg {
    fill: var(--bs-primary);
}

#cart-panel .cart-panel-wrapper {
    position: absolute;
    top: 0;
    right: -480px;
    height: 100%;
    width: 480px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 3rem;
    display: flex;
    flex-direction: column;
    transition: right 0.5s;
}

#cart-panel .cart-panel-heading {
    flex: 0 0 auto;
}

#cart-panel .cart-panel-heading h4 {
    margin: 0;
}

#cart-panel .cart-panel-foot {
    flex: 0 0 auto;
}

#cart-panel .cart-panel-foot .btn {
    display: block;
    width: 100%;
}

#cart-panel .article-row-list {
    flex: 1 1 auto;
    overflow: auto;
}

#cart-panel .article-row-list .article-row {
    border: #f2f2f2 1px solid;
}

#cart-panel .article-row-list .article-row:hover {
    border-color: #d2e5f5;
}

@media (max-width: 575px) {
    #cart-panel .cart-panel-wrapper {
        width: 320px;
    }
}

.cart-panel-opened #cart-panel {
    width: 100%;
}

.cart-panel-opened #cart-panel .cart-panel-wrapper {
    right: 0;
}

/* > Panier tunnel ======================== */
#panier-tunnel { margin-top: 40px; }
.cart-navigation {
    display: flex;
    padding: 1px 0;
    margin: 0 auto;
    width: 100%;
}
.cart-navigation li {
    margin: 0;
    padding-left: 1px;
    min-height: 50px;
    flex: 25%;
}
.cart-navigation li .cart-step {
    padding: 0.25rem 1rem;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    color: var(--bs-secondary);
    font-weight: 400;
    transition: background-color 0.3s;
}
.cart-navigation li .cart-step .cart-step-num {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border-radius: 50%;
    background-color: var(--bs-danger);
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
}

.cart-navigation li .cart-step .cart-step-title {
    line-height: 1.25em;
    padding-right: 15px;
}

.cart-navigation li:first-child {
    padding-left: 0;
}

.cart-navigation li a.cart-step:hover,
.cart-navigation li.active .cart-step {
    color: #fff;
    background-color: var(--bs-primary);
}

@media screen and (max-width: 991px) {
    .cart-navigation li { flex: 0 0 auto; }
    .cart-navigation li .cart-step .cart-step-num {
        margin-right: 0;
        font-size: .875rem;
    }
    .cart-navigation li .cart-step .cart-step-title {
        display: none;
    }
    .cart-navigation li.active {
        flex: 1 1 auto;
    }
    .cart-navigation li.active .cart-step {
        flex: 1 1 auto;
    }
    .cart-navigation li.active .cart-step .cart-step-num {
        margin-right: 1rem;
    }
    .cart-navigation li.active .cart-step .cart-step-title {
        display: block;
    }
}
@media screen and (max-width: 575px) {
    .cart-navigation { 
        position: relative;
        padding-bottom: 60px;
    }
    .cart-navigation li,
    .cart-navigation li.active { flex: 20%; }
    .cart-navigation li .cart-step .cart-step-title {
        position: absolute;
        bottom: -1px; left: 0;
        background-color: #fff;
        color: var(--bs-secondary) !important;
        text-transform: uppercase;
        font-size: .875rem;
        font-weight: 700;
        height: 59px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .cart-navigation li.active .cart-step .cart-step-num {
        margin-right: 0;
    }
    .cart-navigation li.active .cart-step .cart-step-title {
        display: flex;
    }
}

/* > Panier index ========================= */
.cart-item {
    position: relative;
}

.cart-item .article-del {
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    position: absolute;
    background-color: transparent;
    border-color: transparent;
    color: var(--bs-secondary);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .article-del:hover {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
    color: #fff;
}

.cart-item .cart-thumb {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    /*    width: 100%;*/
}

.cart-item h3 {
    font-weight: 400;
    font-size: 1.25rem;
    color: #0e2e5d;
}

.cart-item .article-ref {
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 400;
    color: #6d6e6f;
}

.cart-item .cart-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6d6e6f;
}

.cart-item .quantite {
    max-width: 120px;
}

.cart-item .article-price {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.cart-item .article-price.total {
    font-size: 1.5rem;
    color: var(--bs-primary);
}

@media screen and (max-width: 575px) {
    .cart-item {
        text-align: center;
    }

    .cart-item .quantite {
        margin: 0 auto;
    }
}

#form-reduction h2 {
    font-size: 1.75rem;
}

#form-reduction .form-control {
    height: auto;
}

@media screen and (max-width: 480px) {
    #form-reduction .d-flex {
        flex-wrap: wrap;
    }

    #form-reduction .d-flex input {
        width: 100%;
    }

    #form-reduction .d-flex .btn {
        margin-top: 10px;
    }
}

.livraison-item {
    position: relative;
    border-bottom: #d2e5f5 1px solid;
}

.livraison-item.active {
    border-left: var(--bs-primary) 5px solid;
    margin-left: -1px;
}

.livraison-item.active .d-flex {
    margin-left: -4px;
}

.livraison-item:last-child {
    border-bottom: none;
}

#cart-total .code-reduc {
    position: relative;
    padding-right: 1.5rem;
}

#cart-total .code-reduc .del-reduc {
    position: absolute;
    display: block;
    top: 0.5rem;
    right: -0.5rem;
    background: #d2e5f5;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e2e5d;
    font-size: 0.875rem;
    padding: 0;
}

/* > Panier coordonnées =================== */

#login-navbar {
    margin-bottom: 1.5rem;
    padding: 0 !important;
}
#login-navbar .nav-link {
    font-weight: 700;
    padding: .75rem 1rem;
    text-transform: uppercase;
    color: var(--bs-secondary);
    border: none !important;
    border-bottom: 5px transparent solid !important;
}
#login-navbar .nav-link.active {
    color: var(--bs-primary);
    border-color: var(--bs-primary) !important;
}

#form-identification {
    max-width: 480px;
    margin: 0 auto;
}

.adress {
    position: relative;
    border: none;
    cursor: pointer;
    padding: 8% 10% 8% 20%;
    background: #d2e5f5;
    position: relative;
    width: 100%;
    transition: background-color 0.3s;
}

.adress h3 {
    text-transform: none;
}

.adress input {
    position: absolute;
    top: 13%;
    left: 8%;
}

.adress:hover {
    background-color: #d2e5f5;
}

.adress.selected {
    background-color: var(--bs-primary);
    color: #fff;
}

.adress.selected h3,
.adress.selected p {
    color: #fff;
}

.add-adress {
    width: 100%;
    text-align: center;
    justify-content: center;
    border: #d2e5f5 2px dashed;
    color: #0e2e5d;
    transition: all 0.5s;
}

.add-adress:hover,
.add-adress.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

/* > Paiement ============================= */
.mode-paiement {
    width: 100%;
    padding: 5% 7%;
    background-color: #d2e5f5;
    transition: background-color 0.3s;
}

.mode-paiement input {
    flex: 0 0 auto;
}

.mode-paiement .mode-paiement-desc {
    flex: 1 1 auto;
    padding: 0 5%;
}

.mode-paiement .mode-paiement-desc h2,
.mode-paiement .mode-paiement-desc p {
    color: #0e2e5d;
    transition: color 0.3s;
}

.mode-paiement .mode-paimenet-icon {
    flex: 0 0 auto;
    align-self: center;
    max-width: 100px;
    width: 16%;
    border-radius: 50%;
    background-color: #0e2e5d;
    transition: background-color 0.3s;
}

.mode-paiement .mode-paimenet-icon svg {
    display: block;
    width: 100%;
    fill: #d2e5f5;
    transition: fill 0.3s;
}

.mode-paiement.selected {
    background-color: var(--bs-primary);
}

.mode-paiement.selected .mode-paiement-desc h2,
.mode-paiement.selected .mode-paiement-desc p {
    color: #fff;
}

.mode-paiement.selected .mode-paimenet-icon {
    background-color: #d2e5f5;
}

.mode-paiement.selected .mode-paimenet-icon svg {
    fill: var(--bs-primary);
}

/* > Récapitulatif ======================== */
.recapitulatif .cgv {
    background-color: #d2e5f5;
}

.card-recap {
    padding: 5% 7%;
    display: flex;
    flex-direction: column;
    /*p { max-width: 280px; }*/
}

.card-recap .card-recap-content {
    flex: 1 1 auto;
}

.card-recap .card-recap-actions {
    flex: 0 0 auto;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: #d2e5f5 1px solid;
}

.card-recap .card-recap-actions a {
    color: #0e2e5d;
    font-weight: 700;
    transition: color 0.3s;
}

.card-recap .card-recap-actions a:hover {
    color: #198eaf;
}

.card-recap .livriason-img {
    display: inline-block;
    max-width: 120px;
    padding: 5px;
}

/*************************************************************************
  * COMPTE
  *************************************************************************/
/* > Compte commmons ====================== */
#heading-account .bg-light-gray {
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url("../images/svg/deco-menu.svg");
    background-size: auto 160%;
}

#heading-account .bg-light-gray [aria-label=breadcrumb] {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
}

#heading-account .bg-light-gray [aria-label=breadcrumb] .breadcrumb {
    margin-bottom: 0;
    justify-content: center;
    border-left: none;
    padding-left: 0;
}

#heading-account .bg-light-gray h1 {
    color: #0e2e5d;
}

/* > Menu compte ========================== */
.account-nav ul {
    max-width: 320px;
    padding-left: 0;
}

.account-nav ul li a {
    position: relative;
    display: block;
    font-weight: 700;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: #d2e5f5 1px solid;
    background: 0.75rem center no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e7fcb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    transition: all 0.3s;
}

.account-nav ul li a:hover {
    color: var(--bs-primary);
    background-position: 1rem center;
    padding-left: 2.25rem;
    padding-right: 0.75rem;
}

.account-nav ul li.active a {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.account-nav ul li.active a:hover {
    color: #fff;
    padding: 1rem 1rem 1rem 2rem;
    background-position: 0.75rem center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.account-sticky-button {
    display: none;
    position: fixed;
    bottom: -1px;
    left: 0;
    padding: 0 !important;
    width: 100%;
    z-index: 3;
    transition: opacity 0.5s;
}

.account-sticky-button .btn-open-account {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    width: 100%;
}

.account-sticky-button .btn-open-account .bi.bi-list {
    padding-left: 0;
}

.btn-close-account,
.menu-account-overlay {
    display: none;
}

@media (max-width: 991px) {
    .menu-account-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f2f2f2;
        opacity: 0.75;
        z-index: 998;
    }

    #menu-compte {
        position: fixed;
        bottom: 0;
        left: -480px;
        width: 480px;
        height: 100vh;
        background-color: #fff;
        padding: 0 !important;
        overflow: hidden;
        z-index: 999;
        transition: left 0.5s;
    }

    #menu-compte .menu-compte-heading {
        position: relative;
        background-color: #d2e5f5;
        padding: 1rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 30vh;
        margin: 0 !important;
    }

    #menu-compte .menu-compte-heading .btn-close-account {
        display: block;
        background-color: #d2e5f5;
        color: #6d6e6f;
        border: none;
        border-radius: 5px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    #menu-compte .menu-compte-heading .btn-close-account:hover {
        background-color: #6d6e6f;
        color: #d2e5f5;
    }

    #menu-compte .account-nav {
        height: 70vh;
        overflow: auto;
        margin: 0 !important;
    }

    #menu-compte .account-nav ul {
        max-width: 100%;
        margin: 0;
    }

    .account-sticky-button {
        display: block;
    }

    .account-menu-open .menu-account-overlay {
        display: block;
    }

    .account-menu-open #menu-compte {
        left: 0;
    }
}

@media (max-width: 575px) {
    #menu-compte {
        left: -280px;
        width: 280px;
        height: 100vh;
    }

    #menu-compte .menu-compte-heading {
        height: 120px;
    }

    #menu-compte .menu-compte-heading p.text-primary {
        font-size: 1.25rem !important;
    }

    #menu-compte .account-nav {
        height: calc(100vh - 120px);
    }

    .account-sticky-button .btn-open-account {
        width: 100%;
        border-radius: 0;
    }
}

/* > Dashboard ============================ */
.dashboard-card {
    display: flex;
    position: relative;
    background: #d2e5f5;
    transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .dashboard-card {
        flex-wrap: wrap;
    }
}

@media (max-width: 440px) {
    .dashboard-card {
        flex-wrap: wrap;
    }
}

.dashboard-card .bi-arrow-right {
    position: absolute;
    display: block;
    right: 1.5rem;
    bottom: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    color: var(--bs-primary);
}

.dashboard-card .dashboard-card-icons {
    flex: 0 0 auto;
    min-width: 54px;
    width: 25%;
    margin-right: 1.5rem;
}

.dashboard-card .dashboard-card-icons i {
    display: block;
    padding: 15%;
    max-width: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: var(--bs-primary);
    transition: background-color 0.3s;
}

.dashboard-card .dashboard-card-icons i svg {
    display: block;
    width: 100%;
    fill: #fff;
    transition: fill 0.3s;
}

.dashboard-card .dashboard-card-content {
    flex: 1 1 auto;
}

.dashboard-card h2,
.dashboard-card .text-primary {
    transition: color 0.3s;
}

.dashboard-card:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.dashboard-card:hover h2,
.dashboard-card:hover .bi-arrow-right,
.dashboard-card:hover .text-primary {
    color: #d2e5f5 !important;
}

.dashboard-card:hover .dashboard-card-icons i {
    background-color: #d2e5f5;
}

.dashboard-card:hover .dashboard-card-icons i svg {
    fill: #0e2e5d;
}

/* > Compte adresses ====================== */
#account-adress .adress {
    cursor: default;
    padding: 8% 5rem 8% 10%;
}

#account-adress .adress-actions {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem;
    display: flex;
}

#account-adress .adress-actions a {
    display: block;
    margin-left: 5px;
    background-color: #d2e5f5;
    color: #0e2e5d;
    border-radius: 50%;
    border: none;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

#account-adress .adress-actions a.adress-edit:hover {
    background-color: #0e2e5d;
    color: #fff;
}

#account-adress .adress-actions a.adress-remove:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

/* > Commandes ============================ */
.order-card {
    padding: 0;
}

.order-card .card-heading {
    padding: 0.25rem 1rem;
    /*border-bottom: $color-lightgray 1px solid;*/
}

.order-card .card-heading .order-actions {
    display: flex;
    flex-shrink: 0;
}

.order-card .card-heading .order-actions a {
    display: block;
    margin-left: 5px;
    border-radius: 50%;
    border: none;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #0e2e5d;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.order-card .card-heading .order-actions a.order-cart {
    color: #fff;
    background-color: #0e2e5d;
}

.order-card .card-heading .order-actions a.order-zoom:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.order-card .card-heading .order-actions a.order-cart:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.order-card .card-heading .order-actions a.order-print:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.order-card .card-body {
    background-color: transparent;
    border-radius: 0;
}

.order-card .card-body em.fs-xsmall {
    font-style: normal;
}

@media (max-width: 480px) {
    .order-card .card-heading .fs-xsmall {
        display: block;
    }
}