/*@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");*/
/*@import url('https://fonts.cdnfonts.com/css/glacial-indifference-2');*/
@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Glacial Bold";
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}



body {
  font-family: "Glacial Indifference", sans-serif !important;
}

p,
small,
a,
input,
button {
  font-family: "Glacial Indifference", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Glacial Bold", sans-serif !important;
}
:root {
  --color-white-100: white;
  --color-white-200: #e4e6e7;
  --color-white-300: #c9cccf;
  --color-white-400: #a1a6aa;
  --color-white-500: #798086;
  --color-black-100: #14191f;
  --color-black-200: #101419;
  --color-black-300: #0c0f13;
  --color-black-400: #0c0f13;
  --color-black-500: #080a0c;
  --color-black-600: #060709;
  --color-black-700: #040506;
  --color-black-800: #020303;
  --color-blue-100: #dcebfe;
  --color-blue-200: #bedbfe;
  --color-blue-300: #91c3fd;
  --color-blue-400: #61a6fa;
  --color-blue-500: #3c83f6;
  --color-blue-600: #2463eb;
  --color-blue-700: #1d4fd7;
  --color-blue-800: #1e3fae;
  --color-blue-900: #1e3b8a;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-white-100);
  background-color: white !important;
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.heading-xl {
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: white;
}
.small-text {
  color: white;
}
.heading-lg {
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}
.paragraph {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200);
}
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-white {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background: linear-gradient(103deg, #ccaa60 40.59%, #d89421 103.29%);

  box-shadow: 0px 4px 34px 0px rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-medium);
  border-radius: 20px !important;
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background: linear-gradient(103deg, #ccaa60 40.59%, #d89421 103.29%);
  box-shadow: 0px 4px 34px 0px rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-medium);
  border-radius: 20px !important;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
/* .header.on-scroll {
  background: #420e44bd;
  box-shadow: var(--shadow-medium);
} */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center !important;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}
.brand {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--color-white-100);
  text-transform: uppercase;
}
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* row-gap: 1.25rem; */
  row-gap: 1.1rem;
}
.menu-link,
.linkInformation {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-block {
  display: inline-block;
  font-family: "Glacial Indifference", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: -5px;
    width: auto;
    height: auto;
    padding: 0rem;
    /* margin-left: auto; */
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.7rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
    margin-top: -5px;
  }
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-white-100);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 0rem;
  }
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 0rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 90%;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0rem;
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}

/* footer */
.footer-section {
  background: #140820;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  padding-bottom: 8px !important;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo img {
  max-width: 120px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #ffffff;
  line-height: 21px;
  font-weight: 500;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: rgb(236, 192, 94);
  background: linear-gradient(
    86deg,
    rgba(236, 192, 94, 1) 13%,
    rgba(204, 170, 96, 1) 50%,
    rgba(204, 170, 96, 1) 95%
  );
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
/* .footer-widget ul li a:hover {
  color: #ff5e14;
} */

.footer-widget ul li a:hover {
  text-decoration: none;
}
#cgv:hover{
    text-decoration: underline !important;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form a {
  position: absolute;
  right: 0;
  background: #ccaa60;
  padding: 13px 20px;
  border: 1px solid #ccaa60;
  top: 0;
}
.subscribe-form a i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.footer-cta .row .col-xl-4:nth-child(1) .single-cta i {
  position: absolute;
  color: #ff5e14;
}
.footer-cta .row .col-xl-4:nth-child(1) .single-cta .cta-text {
  padding-left: 32px;
}
.footer-cta .row .col-xl-4:nth-child(2) .single-cta i {
  color: #14ffa7;
}
.footer-cta .row .col-xl-4:nth-child(3) .single-cta i {
  color: #ffd700;
}
.footer-social-icon .social_icon {
  text-align: left;
}
.footer-social-icon .social_icon li {
  float: inherit !important;
  display: inline-block !important;
  width: 45px;
}
.footer-social-icon .social_icon li a i {
  font-size: 15px;
  line-height: 39px;
}
.footer-social-icon .social_icon li a {
  width: 40px;
  height: 40px;
}

.social_icon {
  text-align: right;
  margin: 0;
  margin-top: 3px;
}
.social_icon li {
  display: inline-block;
  margin: 0 5px;
}
.social_icon li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 100%;
  transition: 0.2s ease-in-out;
}
.social_icon li a i {
  font-size: 15px;
  line-height: 20px;
}
.social_icon li:nth-child(1) a {
  background: #4267b2;
  color: #fff;
}
.social_icon li:nth-child(2) a {
  background: #2d51ae;
  color: #fff;
}
.social_icon li:nth-child(3) a {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color: #fff;
}
.social_icon li:nth-child(4) a {
  background: #ff0000;
  color: #fff;
}
.social_icon li:nth-child(1):hover a {
  background: #fff;
  color: #4267b2;
}
.social_icon li:nth-child(2):hover a {
  background: #fff;
  color: #1da1f2;
}
.social_icon li:nth-child(3):hover a {
  background: #fff;
  color: #bc1888;
}
.social_icon li:nth-child(4):hover a {
  background: #fff;
  color: #ff0000;
}

.sec-content {
  margin-top: 7%;
  margin-bottom: 7%;
}

.sub-text {
  font-size: 10px;
  color: white;
}
.heading-qpv {
  color: white;
}

/***/

.menu-item a:hover {
  color: #fff;
}

.menu-item a {
  display: inline-block;
  position: relative;
}

.menu-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  /* transform-origin: bottom right; */
  transition: transform 0.25s ease-out;
}

.menu-item a:hover::after {
  transform: scaleX(1);
  /* transform-origin: bottom left; */
}

.btn-neutral:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 0 0.5em 0em #5e5e5e;
  border-color: white;
  color: white;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons i {
  font-size: 18px;
  border: 1px solid #ccaa60;
  border-radius: 50%;
  padding: 11px;
  margin: 0 5px;
  color: #ccaa60;
  width: 40px;
  height: 40px;
}

.btn-fixed-width {
  width: 200px; /* Adjust the width as needed */
  text-align: center; /* Center the text horizontally */
}

.main {
  background-image: url("/front/images/slide_Desktop.jpg");
}

.btnCapsules {
  display: inline-flex;
  border-radius: 48px;
  border: 1px solid #e2b239;
  background: linear-gradient(
    103deg,
    rgba(204, 170, 96, 0.3) 40.59%,
    rgba(216, 148, 33, 0.3) 103.29%
  );
  border-radius: 20px;
  box-shadow: 0 4px 34px 0 rgba(255, 255, 255, 0.25);
  font-size: 12px;
  padding: 5px 8px;
  color: #a57809 !important;
}
.btnTassesOffertes {
  border-radius: 48px;
  border: 1px solid #7b68b0;
  background: rgba(123, 104, 176, 0.12);
  box-shadow: 0 4px 34px 0 rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 12px;
  padding: 5px 8px;
  color: #7b68b0 !important;
  display: inline-block;
}
.btnCapsules,
.btnTassesOffertes {
  margin: 0 10px; /* Adjust the space between buttons */
  vertical-align: middle;
}
.pricePack {
  color: #654c0c;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.5px;
  float: inline-end;
  white-space: nowrap;
  padding-top: 5px;
}

.title-pack {
  color: #151515;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 62.4px; /* 195% */
  letter-spacing: -0.5px;
}

.btnBuyPack {
  border-radius: 48px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(103deg, #ccaa60 40.59%, #d89421 103.29%);
  box-shadow: 0px 4px 34px 0px rgba(226, 178, 57, 0.5);
}

/* css search input */

div#searchBox {
  float: none;
  text-align: center;
  color: #777;
}

#searchform {
  border-bottom: 1px solid #ccc;
  padding: 8px 0 0;
  border-radius: 44px;
  border: 0.5px solid #dcdcdc;
  background: #f5f5f5;
}

#searchform input {
  border: 0px;
  background: transparent;
  padding: 8px 10px 5px;
  outline: none;
}

.mobile-form #searchform {
  padding-top: 2.5px;
  width: 215px;
}

div#searchBox #searchform {
  border: 1px solid #ddd;
  width: 80%;
  padding-top: 1px;
  display: inline-block;
}

div#searchBox #searchform input {
  padding: 5px;
  display: block;
}

#searchBox i.fa.fa-search {
  padding: 8px;
  cursor: pointer;
}

.sb-icon-search,
.sb-search-submit {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.sb-search-submit {
  background: #fff;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: 100;
}

div#searchBox #searchform .sb-icon-search {
  /* color: #fff; */
  /* background: #3f91c3; */
  z-index: 90;
  /* font-size: 22px; */
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  top: -1px;
}

div#searchBox #searchform .sb-icon-search:before {
  content: "\f002";
}

span#noEasy {
  display: block;
  /* overflow: hidden; */
  position: relative;
  width: 30px;
  height: 30px;
  float: left;
  padding-left: 3px;
}

span#noEasy input {
  width: 30px;
  padding: 0 !important;
}

input#sbox {
  line-height: 31px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
span#noEasy:hover {
  color: #444;
}

.row-nos-packs .col-lg-4 {
  flex: 0 0 32%;
  max-width: 33.333333%;
}
.divPacks {
  margin: 20px 10px 40px 0px;
  padding-top: 1%;
  padding-bottom: 5%;
  border-radius: 20px;
  background: linear-gradient(180deg, #e7ecee 0%, #fafbfb 100%);
  background: #030200;
}

.btnBuyPack {
  display: inline-flex;
  padding: 14px 28px 14px 101px;
  justify-content: flex-end;
  align-items: center;
  gap: 64px;
}

.btnBuyPack {
  width: 100%;
  margin-top: 5%;
}
#iconSheppingPack {
  float: inline-end;
}

.containerPacks {
  position: relative;
  top: -18%;
  background: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.row-nos-packs {
  padding: 0px 15px 15px 15px;
}

.quantity-counter {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.quantity-counter .value {
  background: transparent !important;
  border: none;
  border-radius: 3px;
  margin: 2px 5px;
  padding: 4px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  -moz-appearance: textfield;
  width: 40px; /* Adjust width as per your requirement */
}

.quantity-counter .value::-webkit-outer-spin-button,
.quantity-counter .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-counter .increment,
.quantity-counter .decrement {
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  color: black;
  height: 30px;
  min-width: 30px;
  border: 1px solid #d39e3e;
}

.quantity-counter {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

input:disabled {
  background-color: white !important;
}

.divImagePack {
  /*height: 42vh;*/
  height: 50vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.spanCapsulesLeft {
  border-radius: 48px;
  border: 1px solid #e2b239;
  background: linear-gradient(
    103deg,
    rgba(204, 170, 96, 0.3) 40.59%,
    rgba(216, 148, 33, 0.3) 103.29%
  );
  box-shadow: 0px 4px 34px 0px rgba(255, 255, 255, 0.25);
  color: #614707;

  text-align: center;
  font-size: 16px;
  padding: 5px 10px 5px 10px;
}

img.d-lg-none.logo {
  width: 75%;
}

/* css cart slide */

.cart-container {
  background: white;
  padding: 30px;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  bottom: 0;
  z-index: 50;
  max-width: 400px;
  width: 100%;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
@media (max-width: 425px) {
  .cart-container {
    max-width: 90%;
    right: 0;
  }
}
.cart-container.show-cart {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.cart-container.hide-cart {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.cart-container .cart-title h3 {
  border-bottom: solid 1px #3c3c3c;
  padding-bottom: 20px;
}
.cart-container .close-cart {
  cursor: pointer;
  width: 34px;
  height: auto;
  padding: 3px 0 7px 20px;
  position: absolute;
  right: 30px;
  top: 27px;
}
.cart-container svg {
  height: auto;
  width: 100%;
}
.cart-container .bottom-container {
  width: 100%;
  padding: 30px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.cart-container .bottom-container h4 {
  border-top: solid 1px #3c3c3c;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cart-container .bottom-container p {
  position: absolute;
  right: 50px;
  top: 45px;
}
.cart-container .bottom-container .btn.checkout {
  background: #a06019;
  display: block;
  text-align: center;
  color: white;
  padding: 15px 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cart-container .bottom-container .btn.checkout:hover {
  background: #a96f2e;
  text-decoration: none;
}
.overlay {
  background: #1e1e1e;
  opacity: 0.8;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  display: none;
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.cart-container .burger-line {
  background-color: black !important;
}

input.value.counter-value:focus {
  outline: none !important;
  /* Or */
}

/** khalid */

button.btn-add-cart {
  background: linear-gradient(103.06deg, #ccaa60 40.59%, #d89421 103.29%);
  padding: 11px;
  font-size: 13px;
  color: white;
  border-radius: 21px;
  margin-left: 4px;
  font-weight: bold;
}
.information {
  margin-bottom: 15px;
}
.product-card {
  background: linear-gradient(to bottom, #8888884d, #ffffff);
  padding: 18px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
a.btn-add-cart:hover {
  color: white;
  text-decoration: none;
}

.banner {
  background-image: url("/front/images/banner.png");
  height: 700px;
}

.capsule-container .container {
  position: relative;
  top: -100px;
  background: white;
  border-radius: 35px;
  height: 1200px;
  box-shadow: -1px 6px 6px #0000003d;
}
img.jaune-capsule {
  width: 33%;
  position: absolute;
  top: -13px;
  left: 59%;
      filter: blur(0.7px);
}
img.black-capsule {
  width: 40%;
  position: absolute;
  top: 100px;
  left: -20px;
      filter: blur(0.7px);
}
img.blue-capsule {
  position: absolute;
  left: 40%;
  top: 70px;
  width: 30%;
      filter: blur(0.7px);
}
.small-title {
  color: #d1a638;
  font-weight: bold;
}
.search {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #dcdcdc2e;
  border-radius: 30px;
  font-size: 16px;
  background-color: #dcdcdc2e;
  background-image: url(/front/images/searchicon.png);
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 8px 20px 8px 40px;
  margin-top: 20%;
}
.search-icon {
  width: 6%;
  position: relative;
  top: -17%;
  left: 14px;
}
img.capsule-type {
  float: right;
}
img.espresso-type {
  width: 95%;
  margin-top: 20%;
}
.price {
  display: ruby;
  font-weight: bold;
}
.mobile-version {
  display: none !important;
}
.information span {
  font-size: 12px;
}

.text-muted {
    color: #060607 !important;
}


.capsule-title-mobile,
.filter {
  display: none !important;
}
/* .footer-widget ul li a:hover {
  color: #ff5e14;
} */
.cafes-space {
  display: inline-flex;
}
.col-lg-8.paiement-option {
  background: #fbfbfa;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.shipping,
.credit-card,
.undo {
  border-bottom: 2px solid #e1e1e1;
  padding-left: 210px;
  padding-right: 100px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}
i.fas.fa-shipping-fast,
i.far.fa-credit-card,
i.fas.fa-undo-alt {
  font-size: 30px;
  margin-right: 50px;
}
.cards {
  display: grid;
  justify-content: center;
  margin-top: 35px;
}
.bg-gold {
  background-color: #e2b239 !important;
}
.text-gold {
  color: #e2b239 !important;
}
/** khalid */
.notification-shopping {
  background-color: #ccaa60;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 17px;
  right: 8px;
  font-size: 10px;
  color: white;
  font-weight: 700;
}
.menu.is-active {
  z-index: 9;
}

.table td,
.table th {
  vertical-align: middle !important;
}
.quantityProductInCart {
  font-weight: 700 !important;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS devices */
}

.divContainerDesktop {
  max-width: 1000px !important;
}
.btn-add-cart {
  transition: transform 0.3s ease !important;
}

.btn-add-cart:hover {
  transform: scale(1.05) !important; /* Adjust the scale factor as needed */
}
.btnConsulter {
  transition: transform 0.3s ease !important;
}

.btnConsulter:hover {
  transform: scale(1.05) !important; /* Adjust the scale factor as needed */
}

body {
  overflow-x: hidden;
}

/* menu */

div.select {
  min-width: 100px;
  padding-right: 15px;
  margin-left: 10px;
  border-radius: 2px;

  position: relative;
  background: none !important;
}
div.select p {
  padding: 5px;
  width: 100%;
}
div.select:after {
  content: "▼";
  position: absolute;
  right: 2px;
  top: 8px;
  font-size: 9px;
  color: white;
}
div.select .hidden {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s;
  background: white;
  border: 1px solid #999;
  z-index: 10;
  width: 180px !important;
  padding: 10px 8px 10px 0px;
}
div.select:hover .hidden {
  visibility: visible;
  opacity: 1;
}
div.select p:hover,
div.select:hover {
  background: #ddd;
}

.hidden {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hidden.hide {
  opacity: 0;
}

/*** Single Page Start ***/
.pagination {
  display: inline-block;
}

.pagination a {
  color: var(--bs-dark);
  padding: 10px 16px;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid var(--bs-secondary);
  margin: 0 4px;
}

.pagination a.active {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
  background-color: var(--bs-primary);
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.footer-text.mb-25 {
  margin-top: 15px;
}

/*** animate whatsap button **/
#textForWhatsap {
  position: fixed;
  bottom: 40px;
  right: 90px;
  z-index: 9999;
  font-weight: 700;
  font-size: 10px;
  color: black;
}
#textForWhatsap:hover {
  color: #dfb150;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}



.capsulesPackAbonement{
    background-image: url('/front/images/bg_cap_pack.png');
}
/* Loader styling */
#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
