@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-family: 'Poppins', sans-serif;
    --bg-primary: #0D7A52;
    --bg-primary-hover: #1D8C63;
    --bg-grey: #F4F4F4;
    --font-size-text: 16px;
}

/*noinspection ALL*/
@font-face {
  font-family: 'asr';
  src: url('/assets/fonts/asr.eot');
  src: url('/assets/fonts/asr.eot#iefix') format('embedded-opentype'),
       url('/assets/fonts/asr.woff2') format('woff2'),
       url('/assets/fonts/asr.woff') format('woff'),
       url('/assets/fonts/asr.ttf') format('truetype'),
       url('/assets/fonts/asr.svg#asr') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'asr';
    src: url('/public/web/aux-saveurs-retrouvees/public/assets/fonts/asr.svg#asr') format('svg');
  }
}
*/
[class^="asr-"]:before, [class*=" asr-"]:before {
  font-family: "asr";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.asr-produit-fins:before { content: '\e800'; } /* '' */
.asr-down-open-big:before { content: '\e801'; } /* '' */
.asr-tag:before { content: '\e802'; } /* '' */
.asr-info:before { content: '\e803'; } /* '' */
.asr-dot-3:before { content: '\e804'; } /* '' */
.asr-phone:before { content: '\e805'; } /* '' */
.asr-mail:before { content: '\e806'; } /* '' */
.asr-fruits:before { content: '\e808'; } /* '' */
.asr-arrow:before { content: '\e809'; } /* '' */
.asr-message:before { content: '\e80b'; } /* '' */
.asr-cart:before { content: '\e80d'; } /* '' */
.asr-user:before { content: '\e80e'; } /* '' */
.asr-legumes:before { content: '\e80f'; } /* '' */
.asr-location:before { content: '\f031'; } /* '' */
.asr-facebook:before { content: '\f09a'; } /* '' */
.asr-instagram:before { content: '\f16d'; } /* '' */

.asr-user {
    font-size: 28px;
    top: 3px;
    position: relative;
}

.asr-arrow.arrow-return:before {
  transform: rotate(-180deg);
  position: relative;
  margin-right: 10px;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
}

.container-mid {
    max-width: 900px;
    margin: 0 auto;
}

.container-mid h2 {
    font-size: 23px;
}

.container-mid h3 {
    font-size: 18px;
}

.container-mid img {
    margin: 30px 0;
    width: 100%;
    height: auto;
}

.container-mid li {
  list-style: none;
}

.container-mid a {
  position: relative;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.645,.045,.355,1);
}

.container-mid a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--bg-primary);
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s cubic-bezier(.645,.045,.355,0);
}

.container-mid a:hover:after {
  height: 100%;
  background: var(--bg-primary);
  transition: all 0.3s cubic-bezier(.645,.045,.355,1);
}

.container-mid a:hover{
    color: #FFF;
    transition: all 0.3s cubic-bezier(.645,.045,.355,1);
}

a {
    color: var(--bg-primary);
}

b, strong {
    font-weight: 600;
}

h1, .h1 {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
}

.h2, h2 {
    font-size: 21px;
    font-weight: normal;
}

.bg-grey {
    background: #F4F4F4;
}

.badge.ordered,
.badge.paid,
.badge.pending,
.badge.shipped,
.badge.delivered,
.badge.canceled,
.badge.ready,
.badge.pending {
    font-weight: 400;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge.pending {
    background-color: #fef9c3;
    color: #854d0e;
}

.badge.canceled {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge.paid {
    background-color: #dcfce7;
    color: #166534;
}

.badge.delivered {
    background-color: #f4cfb3;
    color: #53422a;
}

.badge.shipped {
    background-color: #e9c8f8;
    color: #6e2f95;
}

.badge.ordered {
    background-color: #dddddd;
    color: #333333;
}

.badge.ready {
    background-color: #9eeded;
    color: #195668;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    background: #FFF;
    padding: 0;
    height: 70px;
    line-height: 70px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #F4F4F4;
}

header {
    background: #FFF;
    width: 200px;
    height: auto;
    overflow-y: scroll;
    top: 70px;
    position: fixed;
    left: 0;
    bottom: 0;
    border-right: 1px solid #F4F4F4;
}

footer.adminBar {
    width: 100%;
    padding: 5px;
    height: fit-content;
    z-index: 10000;
    position: fixed;
    bottom: 0;
}

header .accordion-button {
    position: absolute;
    top: 6px;
    width: 15px;
    right: 0px;
}

header .accordion-button img {
    width: 40px !important;
    margin-right: 10px;
}

header .nav-link {
    font-size: 14px;
}

header .icon-wrap {
    display: inline-block;
    margin-right: 7px;
    height: 22px;
    float: left;
}

header .nav-link img {
    width: 18px;
}

header .submenu {
    display: none;
}

.nav-item {
    clear: both;
    margin-bottom: 20px;
}

.accordion-button:after {
    content: '\e801';
    font-family: "asr";
}

.intro-menu {
    margin: 20px 0;
    font-size: 14px;
}

.accordion-item {
    margin-bottom: 20px;
    position: relative;
}

.accordion-item a:hover {
    color: var(--bg-primary);
}

#nav-icon {
    display: none;
    width: 30px;
    height: 10px;
    position: relative;
    margin-left: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    top: -4px;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--bg-primary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 0;
}

#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 0;
}

.navbar-brand {
    margin-left: 10px;
    margin-right: 20px;
}

.navbar-brand img {
    width: 170px;
}

.search-menu button#close-search {
    right: 0;
    left: unset;
}

.search-menu button {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 20 !important;
}

#search {
    padding: 11px 0 11px 60px;
    border-radius: 4px;
}

.btn {
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--bg-primary);
    -webkit-transition: all 0.3s ease-out;
    -moz-kit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.btn-primary:hover {
    background: var(--bg-primary-hover);
    -webkit-transition: all 0.3s ease-out;
    -moz-kit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.speed-menu {
    position: absolute;
    right: 0;
}

.speed-menu a {
    color: #000;
    margin-right: 20px;
    text-decoration: none;
}

.speed-menu a:hover {
    color: var(--bg-primary);
}

.speed-menu a.outline-btn {
    font-size: 13px;
    border: 1px solid #000;
    padding: 9px;
    margin-top: -8px;
    -webkit-transition: all 0.3s ease-out;
    -moz-kit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.speed-menu a.outline-btn:hover {
    background: var(--bg-primary);
    border: 1px solid var(--bg-primary);
    color: #FFF;
    -webkit-transition: all 0.3s ease-out;
    -moz-kit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.speed-menu a.basket {
    margin-right: 0;   
}

.speed-menu a i {
    font-size: 32px;
}

.speed-menu a i.asr-cart {
    top: 3px;
    position: relative;
}

.navbar i {
    font-size: 23px;
}

.basket {
    position: relative;
}

.basket .badge {
    background: var(--bg-primary);
    position: absolute;
    top: -12px;
    right: 6px;
    border-radius: 20px;
    font-weight: 500;
}

main {
    position: relative;
    left: 200px;
    width: calc(100% - 200px);
    top: 0;
    min-height: 100vh;
}

section {
    padding: 30px 0;
}

.carousel {
    height: 414px;
    margin-bottom: 0 !important;
}

.carousel-item {
    height: 414px;
}

.carousel-item img {
    width: 100vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-caption h1 {
    font-size: 52px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.carousel-caption p {
    font-size: 32px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.page .carousel-inner:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
}

.reassurance-container {
    padding: 30px 0 0;
}

.reassurance-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.reassurance-icon-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #edf2ee;
    color: var(--bg-primary);
    margin-right: 27px;
}

.reassurance-icon-circle img {
    width: 100%;
}

.reassurance-icon-circle i {
    font-size: 30px;
}

.reassurance-info p {
    margin-bottom: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.categories {
    padding: 30px 0;
}

h1 .icon-wrap, h2 .icon-wrap {
    display: inline-block;
    margin: 0 auto;
}

h1 .icon-wrap img, h2 .icon-wrap img {
    width: 40px;
}

.cards-cat {
    margin: 0 20px;
    width: 200px;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.cards-cat .cards-cat-img-wrapper {
    height: 145px;
    overflow: hidden;
    position: relative;
}

.cards-cat .cards-cat-img-wrapper img {
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cards-cat-info h3 {
    font-size: 16px;
    text-align: center;
    margin: 15px 0;
}

h2 {
    margin-bottom: 20px;
}

.more-blog-link {
    font-size: 14px;
    color: var(--bg-primary);
    text-decoration: none;
}

.box-wrapper {
    width: 350px;
}

.alert-info {
    background: #cef;
    color: #3a648e;
    border: 0;
}

/*.alert {
    background: #ffd9d9;
    color: #a24141;
    border: 0;
}*/

.attention {
    background: #fff2b2;
    color: #846534;
    border: 0;
}

.success {
    background: #c9f7b2;
    color: #587549;
    border: 0;
}

.more-blog-link, a.link {
    color: var(--bg-primary);
    text-decoration: none;
}

.cards-blog {
    -webkit-box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 30px;
}

.cards-blog .cards-blog-img-wrapper {
    position: relative;
}

.cards-blog .cards-blog-img-wrapper img {
    width: 100%;
    height: auto;
}

.cards-blog .date {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cards-blog .date .day-date {
    color: #000;
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
}

.cards-blog .date .month-date {
    color: #808080;
    text-transform: uppercase;
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
}

.cards-blog .cards-blog-info {
    padding: 24px;
}

.cards-blog .cards-blog-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cards-blog .cards-blog-item {
    font-size: 14px;
    line-height: 21px;
    color: #4D4D4D;
    font-weight: 400;
    margin-right: 15px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cards-blog .cards-blog-item span {
    color: #b2b2b2;
    margin-right: 8px;
}

.cards-blog h3 {
    margin: 15px 0px 20px;
    color: #000;
    font-weight: 500;
    font-size: 17px;
}

.cards-blog a {
    font-size: 15px;
    line-height: 19.2px;
    font-weight: 600;
    color: var(--bg-primary);
    margin-top: 12px;
    text-decoration: none;
}

.pro-box {
    background: #F4F4F4;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.pro-box:before {
    content: "";
    width: 380px;
    height: 250px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 40px;
    background: url('/assets/img/pattern-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

.pro-box:after {
    content: "";
    width: 380px;
    height: 250px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 40px;
    background: url('/assets/img/pattern-2.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

.pro-box p {
    padding: 0 200px;
}

.others-cat-wrapper {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-top: 10px;
    position: fixed;
    top: 70px;
    z-index: 999;
    background: #FFF;
}

.others-cat {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    border-bottom: 1px solid #F4F4F4;
}

.others-cat li {
    display: inline-block;
    vertical-align: top;
    width: 105px;
    text-align: center;
    line-height: 17px;
    position: relative;
    white-space: initial;
}

.others-cat li img {
    width: 40px;
}

.others-cat a {
    text-decoration: none;
}

.others-cat .name {
    margin-top: 7px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
}

.modal-content h3 {
    text-align: center;
    margin: 20px 0 40px;
}

.modal-content .d-block {
  font-size: 25px;
  color: var(--bg-primary);
}

.modal-content .input-group-append span {
    border-radius: 0 7px 7px 0;
    border: 0;
    padding: 11px 12px;
}

.modal-content input[name="qty"] {
    max-width: 130px;
}

.modal-content .btn {
    font-size: 16px;
}

.modal-content .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}

.text-black {
    font-weight: 500;
}

.text-bg-primary {
    background: var(--bg-primary) !important;
    font-weight: 400;
}

.wrapper-product {
    box-shadow: 0 0 20px rgba(0,0,0,.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wrapper-product .product-image, .wrapper-product .product-title, .wrapper-product .product-qty, .wrapper-product .product-price {
    align-self: center;
}

.table > tbody {
    vertical-align: middle;
}

.table > :not(caption) > * > * {
    font-weight: 400;
}

footer {
    background: #F4F4F4;
    padding: 40px 0 80px;
    font-size: 16px;
}

footer a {
    color: #7F7F7F;
    text-decoration: none;
}

footer a:hover {
    color: var(--bg-primary);
}

footer .col-md-3 {
    padding-left: 70px;
}

footer .brand-tagline {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    margin-top: 20px;
}

footer .brand-contact a {
    color: #000;
    text-decoration: none;
}

footer .social {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

footer .social li {
    display: inline-block;
    font-size: 30px;
}

footer .footer-nav {
    list-style: none;
    padding: 0;
}

footer .footer-nav-title h3 {
    font-size: 19px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
}

footer .footer-nav-link {
    margin-top: 10px;
}

footer .footer-nav-link a {
    font-size: 16px;
    color: #000;
    font-weight: 300;
}

footer .footer-nav-link a:hover {
    color: var(--bg-primary);
}

/* Base Gael */
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
    z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}

.bg-light-blue {
    background-color:#f4fff8;
}

.bg-light-grey {
    background: #F4F4F4;
}

.bg-light-grey a {
    color: #000;
}

.bg-light-grey a:hover {
    color: var(--bg-primary);
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: -27px;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F1861B;
    position: absolute;
    top: 3px;
    left: -24px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#order_addresses .form-check,
#order_carriers .form-check {
    background-color:#f4fff8;
    padding:10px 40px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
}

.floating-light input::placeholder {
    color:#fff;
}

.input-group {
    width:initial;
}

.small-block {
    width: 700px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 20px;
}

.products-grid-wrapper {
    margin-top: 170px;
}

.display-product {
    width: 200px;
    position: relative;
    margin-bottom: 30px;
}

.display-product div.img {
    height: 200px;
}

.display-product .text-black {
    height: 70px;
    font-size: 14px;
}

.number-cat {
    font-style: italic;
    font-size: 14px;
}

.text-end br {
    margin-bottom: 10px;
}

.product-wrapper small {
    margin-bottom: 30px;
}

.product-wrapper h1 {
    text-align: left;
}

.product-wrapper .d-block {
    font-size: 25px;
    color: var(--bg-primary);
}

.remove_cart_product {
    color: var(--bs-nav-link-color);
    text-decoration: none;
    font-size:0.8em;
}

.heart-icon,
.heart-icon-full {
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgba(168, 0, 62, 0.76);
    cursor: pointer;
}

.heart-icon svg {
    fill: #ffffff;
    stroke: rgba(168, 0, 62, 0.76);
}
.heart-icon-full svg {
    fill: rgba(168, 0, 62, 0.76);
    stroke: #ffffff
}


.heart-icon:hover {
    opacity: 0.7; /* Effet visuel au survol */
}

.ancre {
    scroll-margin-top: 200px;
    outline: none;
}

@media screen and (max-width: 1024px){
    .reassurance-icon-circle {
        margin-right: 15px;
        width: 42px;
        height: 42px;
    }

    .reassurance-info p {
        font-size: 15px;
    }
}

@media screen and (max-width: 935px){
    html {
        overflow-x: hidden;
    }

    body {
        margin-top: 10px;
    }

    .modal {
        max-height: 550px;
        overflow-y: auto;
    }

    body.modal-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }

    #nav-icon {
        display: block;
    }

    .navbar-brand {
        width: 130px;
        position: absolute;
        left: 70px;
    }

    .navbar-brand img {
        width: 100%;
    }

    .search-menu {
        z-index:10;
    }

    .speed-menu .outline-btn {
        display: none;
    }

    .speed-menu a {
        margin-right: 6px;
    }

    .speed-menu a i {
        font-size: 28px;
    }

    .user-nav {
        margin-bottom: 40px;
    }

    header {
/*        display: none;*/
        -webkit-transition: all 0.3s ease-out;
        -moz-kit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        transform: translateX(-100%);
        z-index: 99;
        width: 250px;
    }

    header.open {
        -webkit-transition: all 0.3s ease-out;
        -moz-kit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        transform: translateX(0%);
        overflow-y: scroll;
    }

    main {
        position: relative;
        left: 0;
        width: 100%;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-out;
        -moz-kit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        transform: translateX(0);
    }

    main.move {
        -webkit-transition: all 0.3s ease-out;
        -moz-kit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        transform: translateX(250px);
        position: relative;
    }

    .display-product {
        width: 100%;
        margin: 0 !important;
    }

    main {
        z-index: 9999;
    }
}

@media screen and (max-width: 500px){
    #header {
        height: 58px;
        z-index: 9999;
    }

    .others-cat-wrapper {
        position: relative !important;
        top: 0;
    }

    .carousel-item img {
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        transform: translate(-50%,0);
        left: 50%;
    }

    .carousel-caption {
        bottom: 0;
        right: 10px;
        left: 10px;
    }

    .carousel-caption h1 {
        font-size: 40px;
    }

    .carousel-caption p {
        font-size: 19px;
    }

    .carousel-caption p .btn {
        margin-bottom: 20px;
    }

    .categories .d-flex {
        display: block !important;
    }

    .categories .cards-cat {
        margin: 0 0 20px;
        width: 100%;
    }

    .categories .cards-cat .cards-cat-img-wrapper img {
        height: auto;
        width: 100%;
    }

    .cards-blog .cards-blog-item:nth-child(3){
        display: none;
    }

    .container-mid {
        max-width: 100%;
        padding: 0 20px;
    }

    .container-mid img {
        width: 100%;
        height: auto;
    }

    .products-grid-wrapper {
        margin-top: 30px;
    }

    .display-product {
        float: left;
        width: 50%;
        margin-bottom: 20px !important;
    }

    h2 {
        clear: both;
    }

    .reassurance-item {
        text-align: center;
        display: block;
    }

    .reassurance-icon-circle {
        display: inline-block;
        margin-bottom: 20px;
    }

    .more-blog-link {
        display: block;
        margin-bottom: 20px;
    }

    .pro-box p {
        padding: 0;
    }

    .pro-box:before {
        left: -130px;
    }

    .pro-box:after {
        right: -130px;
    }
}