/*NODE PAGE******************************************************************/
/*NODE MAP*******************************************************************/
/*NODE COMPANY***************************************************************/
/*PR SUBSCRIPTION ***********************************************************/
/*BOOK **********************************************************************/
/*CONTACT *******************************************************************/
/***** CAROUSEL *************************************/



/*NODE PAGE******************************************************************/
.heading-text {
  background-color: var(--color-main-color1);
  color: var(--color-white);
  text-transform: uppercase;
}

ul.current-page-menu > li.active > a,
ul.current-page-menu .menu li.active a,
ul.current-page-menu .sub-menu li.active a {
  font-weight: bold;
  font-family: "proxima-nova-bold";
  text-decoration: underline;
  color: var(--color-primary-1);
}

ul.current-page-menu ul li a, 
ul.current-page-menu .sub-menu li a {
  color: var(--color-grey6);
}

ul.sub-sub-menu li {
  position: relative;
}

ul.sub-sub-menu li::before {
  content: "\2022"; /* Caractère pour la puce */
  position: absolute;
  right: 7px; /* Positionne la puce à droite */
  color: inherit; /* Adapte la couleur à celle du texte */
  font-size: 1em; /* Adapte la taille à celle du texte */
}

ul.sub-sub-menu li::marker {
  display: none;
}

.left-text {
  background-color: var(--color-grey15);
  color: var(--color-grey6);
}

.last-updated-on {
  font-size: 10px;
}

.tab-title {
  cursor: pointer;
}

.tab-title.active {
  font-weight: bold;
}

.tab-title.active i.bi {
  font-weight: bold;
  font-size: 26px;
}

.img-fluid.center-block {
  display: block;
  margin: auto;
}

/***** STYLE BLUE *************************************/
.style-corporate_blue .tab-content, .style-corporate_blue.tab-content {
  background-color: var(--color-grey14);
}

.style-corporate_blue > .tab-title.bg-primary {
  background-color: rgba(var(--color-primary-1-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}

/***** STYLE RED *************************************/
.style-corporate_red .tab-content, .style-corporate_red.tab-content {
  background-color: var(--color-grey14);
}

.style-corporate_red > .tab-title.bg-primary {
  background-color: rgba(var(--color-primary-2-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}

/***** STYLE BLACK *************************************/
.style-corporate_black .tab-content, .style-corporate_black.tab-content {
  background-color: var(--color-grey14);
}

.style-corporate_black > .tab-title.bg-primary {
  background-color: rgba(var(--color-main-black-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}

/***** STYLE LIGHT ORANGE *************************************/
.style-light_orange .tab-content, .style-light_orange.tab-content {
  background-color: var(--color-grey14);
}

.style-light_orange > .tab-title.bg-primary {
  background-color: rgba(var(--color-secondary-light-orange-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}

/***** STYLE LIGHT GREEN *************************************/
.style-light_green .tab-content, .style-light_green.tab-content {
  background-color: var(--color-grey14);
}

.style-light_green > .tab-title.bg-primary {
  background-color: rgba(var(--color-secondary-light-green-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}

/***** STYLE LIGHT BLUE *************************************/
.style-light_blue .tab-content, .style-light_blue.tab-content {
  background-color: var(--color-grey14);
}

.style-light_blue > .tab-title.bg-primary {
  background-color: rgba(var(--color-secondary-light-blue-rgb), var(--bs-bg-opacity)) !important;
  color: var(--color-white);
}




/***** CAROUSEL *************************************/
.owl-carousel.owl-theme button.owl-prev {
  width: 30px;
  /*height: 100%;*/
  /* margin-top: -20px; */
  position: absolute;
  top: 40%;
  left: 0;
  background: transparent;
  margin: 0;
  font-size: 25px;
  color: var(--color-main-color1);
}

.owl-carousel.owl-theme button.owl-prev:hover {
  background: var(--color-secondary-light-blue);
  color: var(--color-main-color1);
}

.owl-carousel.owl-theme button.owl-next {
  width: 30px;
  /*height: 100%;*/
  /* margin-top: -20px; */
  position: absolute;
  top: 40%;
  right: 0;
  background: transparent;
  margin: 0;
  font-size: 25px;
  color: var(--color-main-color1);
}

.owl-carousel.owl-theme button.owl-next:hover {
  background: var(--color-secondary-light-blue);
  color: var(--color-main-color1);
}

.owl-carousel.owl-theme .owl-dots {
  display: none;
}

.owl-carousel.carousel-dots-enabled .owl-dots {
  display: block;
  text-align: right;
  padding-right: 14px;
}

.owl-carousel.carousel-dots-enabled .owl-dots .owl-dot > span{
  background-color: var(--color-secondary-light-blue);
}
.owl-carousel.carousel-dots-enabled .owl-dots .owl-dot.active > span{
  background-color: var(--color-primary-1);
}


.owl-carousel.owl-theme .slide-text-left,
.owl-carousel.owl-theme .slide-text-center,
.owl-carousel.owl-theme .slide-text-right {
  max-width: 25%;
}

@media (max-width: 1025px) {
  .owl-carousel.owl-theme .slide-text-left,
  .owl-carousel.owl-theme .slide-text-center,
  .owl-carousel.owl-theme .slide-text-right {
    max-width: 45%;
  }
}

@media (max-width: 426px) {
  .owl-carousel.owl-theme .slide-text-left,
  .owl-carousel.owl-theme .slide-text-center,
  .owl-carousel.owl-theme .slide-text-right {
    max-width: 100%;
    /* Annuler le positionnement absolu */
    position: static !important;
    transform: none !important;
    /* Réinitialiser les marges Bootstrap */
    margin: 0 !important;
    /* Optionnel : ajuster le padding */
    padding: 1rem !important;
  }
  
  /* Le conteneur parent doit passer en flex column */
  .owl-carousel.owl-theme .item .position-relative {
    display: flex;
    flex-direction: column;
  }
}

/*NODE MAP*******************************************************************/
#map.company {
  height: 340px;
  width: 100%;
}

/*NODE COMPANY***************************************************************/
.node--type-company form .form-item.form-inline label{
  min-width: 150px;
  font-weight: bold;
}

.node--type-company form .form-item.form-inline .form-textarea-wrapper{
  width: 100%;
}

/*PR SUBSCRIPTION ***********************************************************/
.form-press-releases-subscription input {
 max-width: 400px;
}
.form-press-releases-subscription .fs-6 {
 font-size: 11px !important;
}

/*BOOK **********************************************************************/
.node--type-book-page .card-body {
  min-height: 70px;
}

/*CONTACT *******************************************************************/
#stallergenesgreerformcontactform-1 .form-item.form-inline label{
  min-width: 150px;
  font-weight: bold;
}