@charset "UTF-8";
:root {
  --selection-color: #a8d1ff;
  --bg-healthcare: #6853a4;
  --main-color: #14328c !important;
  --color-blue: #14328c !important;
  --main-hero: #fff;
  --main-colorLink: #e1271b;
  --main-colorLinkHover: #e1271b;
  --main-text: #595959;
  --link-color: #e1271b;
  --contrast-btn: #fff;
  --darken-text: #343434;
  --light-text: #b0afb5;
  --light-textButton: #b0afb5;
  --nav-label: #1d114d;
  --color-black: #000;
  --color-white: #fff;
  --nav-labelHover: #321e82;
  --bg-card: #fff;
  --bg-section: #f7f6f2;
  --header-color: #828282;
  --ast-color: #ea9740;
  --dark-heads: #353535;
  --hover-btn: #841912;
  --hover-hcp-nav: #c51308;
  --text-button: #fff;
  --form-color: #ea9740;
  --quiz-bar: #f7d6b3;
  --unchecked: #d9d9d9;
  --main-colorButton: #e1271b;
  --text-colorButton: #fff;
  --dark-gray: #666;
  --lemon: #7cc576;
  --gray-color: #777;
  --results-titles: #0f9bc7;
}

@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("../fonts/AvenirNextLTPro-Regular.eot");
  src: url("../fonts/AvenirNextLTPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextLTPro-Regular.woff2") format("woff2"), url("../fonts/AvenirNextLTPro-Regular.woff") format("woff"), url("../fonts/AvenirNextLTPro-Regular.ttf") format("truetype"), url("../fonts/AvenirNextLTPro-Regular.svg#AvenirNextLTPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: #000;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
}

.select_quiz {
  margin-top: 1em;
}

.container ul,
.container-fluid ul {
  padding-left: 20px;
}
.container ul li,
.container-fluid ul li {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  position: relative;
}
.container ul li::before,
.container-fluid ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  top: 12px;
  left: -20px;
  background-color: #15328c;
  border-radius: 50%;
  position: absolute;
}

h1 {
  line-height: 1.1;
}

h2 {
  font-size: 34px;
}

.slick-dots li::before {
  content: none !important;
}

.slick-dots li.slick-active button:before {
  background: #14328c !important;
}

.user-login-form {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-login-form input {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.user-login-form input[type=submit] {
  background: #14328c !important;
  color: #fff !important;
  text-decoration: none;
  border: 1px solid #14328c !important;
  padding: 10px 20px !important;
  margin: 1em 0;
}
.user-login-form label {
  margin-top: 1em;
}

@media only screen and (max-width: 600px) {
  .navbar-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.card-home {
  height: 55px;
}
@media (max-width: 767px) {
  .card-home {
    height: auto;
  }
}

.nav-label {
  background-color: #14328c !important;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav-label:hover {
  background-color: var(--nav-labelHover);
}
.nav-label .nav-label__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.1em 0 1.5em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 30px;
}
.nav-label .nav-label__side.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-right: 0.5em;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.nav-label .nav-label__side.left a:hover {
  text-decoration: underline;
}
.nav-label .nav-label__side.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 0.5em;
  color: white !important;
}
.nav-label .nav-label__side p {
  margin-bottom: 0;
}
.nav-label .nav-label__side .item_coupon {
  border: 2px solid var(--main-color);
  padding: 0.3em 0.5em;
  margin-left: 2em;
}
.nav-label .nav-label__side .item_coupon:hover {
  background: #fff;
  color: var(--main-color);
  border-color: var(--nav-label);
}
.nav-label .nav-label__side .item_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .nav-label .nav-label__side .item_login {
    margin-right: 1.5em;
  }
}
.nav-label .nav-label__side .item_login a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.75em;
  position: relative;
}
@media (min-width: 992px) {
  .nav-label .nav-label__side .item_login a {
    padding-right: 1.5em;
  }
}
.nav-label .nav-label__side .item_login a img {
  padding-right: 1em;
  height: 15px;
}
.nav-label .nav-label__side .item_login a:first-of-type::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 90%;
  background: #fff;
  right: 0;
}
@media (min-width: 768px) {
  .nav-label .nav-label__side .item_login a:nth-child(2) {
    padding-left: 1.5em;
  }
}
.nav-label .nav-label__side .item_login a.gigya-raas-login {
  margin-right: 0px;
}
.nav-label .nav-label__side .item_profesionals {
  background: var(--bg-healthcare);
  padding: 0.5em;
}
@media (min-width: 992px) {
  .nav-label .nav-label__side .item_profesionals {
    padding: 0.5em 2em;
  }
}
@media (min-width: 1600px) {
  .nav-label .nav-label__side .item_profesionals {
    padding: 0.5em 4em;
  }
}

.nav-label__side .item_profesionals {
  background: none !important;
}
.nav-label__side.left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.nav-label__side.left a {
  color: white !important;
}
.nav-label__side.left a:hover {
  color: white !important;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .nav-label__side.left {
    padding: 0 1.1em 0 0px;
  }
}
.nav-label__side.right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.nav-label__side.right a {
  color: white !important;
}
.nav-label__side.right a:hover {
  color: white !important;
  text-decoration: underline;
}
.nav-label__side.right a {
  font-size: 12px;
}
.nav-label__side.right a:not(:last-of-type) {
  margin-right: 20px;
}
.nav-label__side.right a:hover {
  text-decoration: underline;
}
.nav-label__side.right a .icon-logout {
  font-size: 17px;
}
.nav-label__side.right svg,
.nav-label__side.right .fa {
  width: 22px;
  height: 16px;
  margin-right: 2px;
  fill: currentColor;
  font-size: 15px;
}

.navbar {
  z-index: 800 !important;
}

.hero_slider .slick-slide > div > div {
  display: block !important;
  height: 100% !important;
}

.balanced--promo {
  position: relative;
  min-height: 700px;
}
@media (min-width: 768px) {
  .balanced--promo {
    min-height: 370px;
  }
}
@media (min-width: 992px) {
  .balanced--promo {
    min-height: 450px;
  }
}
@media (min-width: 1200px) {
  .balanced--promo {
    min-height: 675px;
  }
}
@media (min-width: 2000px) {
  .balanced--promo {
    min-height: 900px;
  }
}
.balanced--promo h1 {
  color: #14328c;
  margin: 0;
  line-height: 1.1;
  font-size: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .balanced--promo h1 {
    font-size: 53px;
    line-height: 1.23;
    letter-spacing: 2.02px;
  }
}
.balanced--promo h1 small {
  font-size: 70%;
  color: #f9c79d;
  font-weight: bold;
}
.balanced--promo h2 {
  color: #fff;
  margin: 20px 5px 0;
  font-size: 1.2em;
}
@media (max-width: 767px) {
  .balanced--promo h2 {
    margin: 10px 0;
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  .balanced--promo h2 {
    font-size: 0.8em;
  }
}
@media (min-width: 992px) {
  .balanced--promo h2 {
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .balanced--promo h2 {
    font-size: 1.2em;
  }
}
.balanced--promo h2.h4 {
  font-size: 1em !important;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .balanced--promo h2.h4 {
    font-size: 0.8em;
  }
}
@media (min-width: 992px) {
  .balanced--promo h2.h4 {
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .balanced--promo h2.h4 {
    font-size: 1.2em;
  }
}
.balanced--promo .btn-boost {
  background: #14328c;
  font-size: 15px;
  font-family: "Din", sans-serif;
  border-radius: 0;
  padding: 0.7rem 1rem;
  margin-top: 10px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .balanced--promo .btn-boost {
    margin-top: 30px;
    font-size: 22px;
  }
}
.balanced--promo .btn-boost:hover {
  background: #241b5e;
}

.position-relative {
  position: relative;
}

.bg-banner-promo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: 93%;
  background-repeat: no-repeat;
  background-position: 50%;
}
@media (min-width: 768px) {
  .bg-banner-promo {
    background-size: 90%;
    background-position: 60% 90%;
  }
}

.footer-link {
  list-style: none;
}
.footer-link a {
  color: white;
  font-size: 14px;
  line-height: 20px;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  display: inline-block;
  text-decoration: none;
}
.footer-link a:hover {
  color: #f7f6f2 !important;
}
.footer-link::before {
  content: "" !important;
}

.ps-widget[ps-sku],
.ps-widget[data-ps-sku] {
  margin: auto !important;
  float: none !important;
  font-size: 30px !important;
  line-height: 1 !important;
  padding: 8px 16px !important;
}

#cta-storelocator {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#cta-storelocator .ps-widget {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  z-index: 500;
}

.navbar-mobile-menu {
  height: 100%;
  overflow-y: auto;
}

.sticky {
  position: sticky;
  top: 0;
}

.ps-lightbox.ps-open {
  z-index: 10002 !important;
}

.border-radius {
  border-radius: 50%;
}

.border-bottom {
  border-bottom: 1px solid #dedede;
}

@media only screen and (max-width: 600px) {
  .dropdown-menu {
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    background: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0) !important;
  }
  .dropdown-menu-show {
    visibility: visible !important;
    display: none !important;
    position: absolute !important;
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    top: -70px;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .mobile-link {
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #595959 !important;
  }
  #cta-storelocator {
    padding: 8px 0px;
  }
  #cta-storelocator span {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #595959 !important;
  }
  .border-bottom {
    border-bottom: 1px solid transparent;
  }
}
#navbar .nav-item:hover {
  border-bottom: 4px solid #14328c !important;
}

#navbar .nav-item.active {
  border-bottom: 4px solid #fff !important;
}

.slick-slide {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: block;
  bottom: -20px;
  text-align: center;
  padding: 0 !important;
  margin: 0;
  margin-top: 1em;
  width: 100%;
  z-index: 100;
}

.max-w100 {
  max-width: 100%;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 11px;
  height: 11px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  background: #b0afb5;
  opacity: 1;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background: var(--main-color);
  opacity: 1;
}

.slick-loading .slick-list {
  background: none;
}

.slick-prev {
  left: -25px;
}
@media (min-width: 768px) {
  .slick-prev {
    left: -40px;
  }
}

.slick-next {
  right: -15px;
}
@media (min-width: 768px) {
  .slick-next {
    right: -40px;
  }
}

.slick-prev:before {
  font-family: Fontastic, sans-serif;
  content: "k";
  position: absolute;
  width: 100%;
  height: 100%;
  color: #cecece !important;
  font-size: 35px;
  top: 0;
  left: 0;
}

.slick-next:before {
  font-size: 35px;
  color: #cecece !important;
}

.slick-next,
.slick-prev {
  height: 30px;
  width: 25px;
  z-index: 100;
  cursor: pointer;
}
@media (min-width: 768px) {
  .slick-next,
  .slick-prev {
    height: 55px;
    width: 35px;
  }
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.rating i {
  color: orange;
}

.text-protein p:nth-child(1) {
  color: #595959 !important;
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
}
.text-protein p:nth-child(2) {
  color: #595959 !important;
  font-size: 14px;
  line-height: 20px;
}

.ingrientes-table table {
  margin-bottom: 1em;
  width: 100%;
}
.ingrientes-table table td {
  padding: 10px;
  border-bottom: 1px solid #dedede;
  font-size: 18px;
  line-height: 30px;
}
.ingrientes-table table tr td:nth-child(1) {
  color: #595959 !important;
}

.title-red h3 {
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 10px;
  color: #e1271b !important;
}
.title-red h3:after {
  margin-top: 15px;
  content: " ";
  display: block;
  width: 50px;
  height: 4px;
  background: #cecece;
}

#wizard-form #progressbar li {
  font-size: 13px;
}
#wizard-form #progressbar li::before {
  content: none;
}

@media (min-width: 1200px) {
  #wizard-form h1 {
    font-size: 40px;
  }
}
#wizard-form p {
  font-size: 25px !important;
}
@media (max-width: 769px) {
  #wizard-form p {
    font-size: 18px !important;
  }
}
#wizard-form .text-small {
  font-size: 20px !important;
}
#wizard-form .text-medium {
  font-size: 20px !important;
}
#wizard-form .btn {
  font-size: 20px !important;
}
#wizard-form label.error, #wizard-form small.error {
  font-size: 14px;
  display: none !important;
}
#wizard-form .form-group {
  padding-bottom: 10px;
}
#wizard-form .next-disabled {
  background-color: #d9d9d9 !important;
  color: #5E5E5E !important;
  pointer-events: none !important;
  border-color: #d9d9d9 !important;
}
#wizard-form .next-disabled:hover {
  background: #d9d9d9 !important;
}
#wizard-form .ui-datepicker-month,
#wizard-form .ui-datepicker-year {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
#wizard-form .is-active {
  border: 4px solid #e1271b !important;
}
#wizard-form .date:after {
  font-family: "FontAwesome";
  position: absolute;
  top: 7px;
  content: "\f073";
  right: 10px;
  font-size: 25px;
}
#wizard-form .radio-toggle {
  border: 4px solid transparent !important;
  position: relative;
}
#wizard-form .radio-toggle label {
  color: #14328c;
  border: 4px solid #ced4da !important;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
#wizard-form .boost-select {
  height: 100px;
  overflow: hidden;
}
@media (max-width: 321px) {
  #wizard-form .boost-select {
    height: 120px;
  }
}
#wizard-form .boost-select input {
  position: absolute;
  opacity: 0;
}
#wizard-form .boost-select input:checked ~ label {
  border: 4px solid #14328c !important;
  color: var(--main-color);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
#wizard-form .boost-select input:checked ~ label .selected_option {
  display: block;
}

.categories-items .radio-toggle {
  height: 150px !important;
}
@media (max-width: 321px) {
  .categories-items {
    height: 170px !important;
  }
}

@-webkit-keyframes button_animation {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  30% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes button_animation {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  30% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.radio-toggle-image {
  width: 50px;
  height: 50px;
  margin: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

.asd-filters .asd-filters__row {
  border-top: 0.5px solid #cecece !important;
}

.help-section h1,
.help-section h2,
.help-section h3,
.help-section h4,
.help-section h5,
.help-section h6 {
  line-height: normal;
}

.pdp-nav-link {
  color: #595959;
  font-weight: 400;
  cursor: pointer;
}
@media (min-width: 768px) {
  .pdp-nav-link {
    font-size: 18px !important;
  }
}

.black {
  color: black;
}

.key-img img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits h1, .benefits h2, .benefits h3, .benefits h4, .benefits h5, .benefits h6 {
  font-size: 20px;
  line-height: 26px;
}
.benefits p {
  color: #595959 !important;
}

.cs-gigya-form .form-group {
  padding-bottom: 10px !important;
}

.review-rating-left {
  border-right: 1px solid transparent !important;
}

.review-rating-left .rating-container__percentage {
  background: #28a745 !important;
  font-size: 14px !important;
  border-radius: 4px;
  color: transparent !important;
  text-shadow: none !important;
}

.review-rating-left .rating-container__bg {
  margin: 0 !important;
  background: #e9ecef !important;
  border-radius: 4px;
}

.text-small {
  font-size: 11px !important;
}
@media (min-width: 768px) {
  .text-small {
    font-size: 12px !important;
  }
}

.green {
  border-left: 1px solid #dedede;
  color: green;
}

.thumbnail-car .slick-current .thumbnail-item {
  border: 2px solid #14328c;
}

.thumbnail-car.prevent-track-overflow .slick-track {
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.thumbnail-item {
  padding: 0.7em;
  max-width: 135px;
}

.thumbnail-car .thumbnail-item img {
  max-height: 75px;
  cursor: pointer;
}

#main-content {
  display: none;
}

.fs-14 {
  font-size: 14px;
}

.pagination li a {
  padding-left: 12px;
  padding-right: 12px;
}

.testimonial p {
  font-size: 26px;
  line-height: 35px;
  color: white;
  font-style: italic;
}
.testimonial h1, .testimonial h2, .testimonial h3, .testimonial h4, .testimonial h5, .testimonial h6 {
  font-size: 26px;
  line-height: 35px;
  color: white;
  font-style: italic;
}

.product-card-select .select2-selection--single {
  text-align: left;
}

.border {
  border: 2px solid #dedede !important;
  border-radius: 0px;
}

.reco-to-friend {
  border: none !important;
  margin-bottom: 0;
}
.reco-to-friend label {
  padding: 5px 15px;
  border-radius: 10px;
  border: 2px solid #595959 !important;
  background: none !important;
  color: #595959 !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.reco-to-friend input:checked + label {
  background: #595959 !important;
  color: #fff !important;
}

#cboxClose {
  color: #fff !important;
  top: 9px;
  right: 15px;
}
#cboxClose i {
  font-size: 35px;
}

.product-review__stars {
  line-height: 1;
}

.thumbnail-car:not(.slick-slider) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thumbnail-car:not(.slick-slider) .thumbnail-wrapper {
  width: 25%;
}

.navbar-megadropdown-thumbnail {
  -webkit-transition: 0s all;
  transition: 0s all;
}
.navbar-megadropdown-thumbnail a {
  -webkit-transition: 0s all !important;
  transition: 0s all !important;
}

.dropdown-menu .navbar-product-list a {
  -webkit-transition: 0.3s color, 0.3s -webkit-transform !important;
  transition: 0.3s color, 0.3s -webkit-transform !important;
  transition: 0.3s transform, 0.3s color !important;
  transition: 0.3s transform, 0.3s color, 0.3s -webkit-transform !important;
}

#navbar .dropdown-menu {
  top: calc(100% - 2px) !important;
}
#navbar .dropdown-menu .btn {
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}

.pure-title {
  color: #14328c;
}

.pure-frame {
  position: relative;
}
@media (min-width: 768px) {
  .pure-frame::before {
    content: "";
    /* width: 30px; */
    /* height: 5px; */
    background: url(../img/pure-frame.png);
    position: absolute;
    top: -34px;
    width: 30px;
    left: -71px;
    height: 30px;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .pure-frame div {
    padding-top: 1em;
    padding-left: 2em;
  }
}

.marque-container {
  position: relative;
}
@media (min-width: 768px) {
  .marque-container .marque {
    margin: 46px 0 0 73px;
  }
}
.marque-container .marque .pure-title {
  position: relative;
  line-height: 1.23;
  letter-spacing: 2.02px;
  font-size: 2.3rem !important;
}
@media (min-width: 768px) {
  .marque-container .marque .pure-title {
    font-size: 53px !important;
  }
}
@media (min-width: 768px) {
  .marque-container .marque .pure-title::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 9px;
    background: #15328c;
    left: -105px;
    top: -53px;
  }
  .marque-container .marque .pure-title::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 30px;
    background: #15328c;
    left: -105px;
    top: -53px;
  }
}
.marque-container .marque p {
  margin: 1em 0;
}

.category {
  height: 100%;
}
.category img {
  width: 85px;
  margin-bottom: 25px;
}
.category h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.mentor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em;
  width: 100%;
  height: 100%;
}
.mentor .img img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .mentor .img img {
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 1em;
  }
}
.mentor a {
  color: #14328c;
  text-decoration: underline;
}
.mentor h3.h4 {
  color: #14328c;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}
.mentor p {
  font-size: 15px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .mentor p {
    font-size: 18px;
  }
}

.section-link {
  color: #14328c !important;
}
.section-link::after {
  background: #14328c !important;
}

.pr-link {
  color: #14328c !important;
  font-size: 20px;
}

.event {
  background: #f0f0f0;
  border-radius: 5px;
  padding: 2em;
  height: 100%;
}
.event .img-event img {
  width: 100%;
  height: 200px;
}
.event .info-event {
  margin-top: 1em;
}
.event .info-event p {
  font-size: 14px;
}
@media (min-width: 1200px) {
  .event .info-event h5 {
    height: 50px;
  }
}

@media (min-width: 768px) {
  .pure-container {
    max-width: 1450px !important;
  }
}
.pure-container h1, .pure-container h2, .pure-container h3, .pure-container h4, .pure-container h5, .pure-container h6 {
  color: #15328c;
}
.pure-container a:not(.btn-boost) {
  color: #15328c;
}

.mt-custom {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .mt-custom {
    margin-top: 70px;
  }
}

.find-clinic .bg-find-a-clinic {
  min-height: 550px;
  background-size: cover;
  background-image: url("../img/store-locator_2.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

.retailer-list {
  background: #fff;
}

.retailer-list-container {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.retailer-list-container ol {
  max-height: 80vh !important;
}
.retailer-list-container ol li {
  counter-increment: cs-counter;
  font-size: 15px;
  position: relative;
  margin-bottom: 1em;
  background: white;
  padding: 0;
  padding: 25px 10px;
  margin: 0 !important;
  border-bottom: 1px solid #dbdbdc;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.retailer-list-container ol li:hover, .retailer-list-container ol li.active {
  background: #f0f3f6;
}
.retailer-list-container .wrap_map {
  margin: 0px;
  padding: 0px;
}
.retailer-list-container .wrap_map #map {
  height: 100vh;
  width: 100%;
}

.retail_btn {
  font-size: 16px;
  padding: 13px 36px;
}

.help-section {
  background: #15328c;
}

.fs-14 {
  font-size: 14px;
}

.retailer-list-container.retailer-clinic ol li h1, .retailer-list-container.retailer-clinic ol li h2, .retailer-list-container.retailer-clinic ol li h3, .retailer-list-container.retailer-clinic ol li h4, .retailer-list-container.retailer-clinic ol li h5, .retailer-list-container.retailer-clinic ol li h6 {
  font-size: 19px;
}
.retailer-list-container.retailer-clinic ol li span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #474747;
  color: #fff;
  font-size: 16px;
}
.retailer-list-container.retailer-clinic ol li a[data-dialog-type=modal] {
  color: #1e70c0;
  font-size: 16px;
  font-weight: bold;
}
.retailer-list-container.retailer-clinic ol li:hover span, .retailer-list-container.retailer-clinic ol li.active span {
  background: #1e70c0;
}

.section-link {
  color: #15328c !important;
}
.section-link.section-link--article {
  color: #15328c !important;
}

.contact-boost input[type=submit] {
  background: #14328c;
}

.top-bar .nav-label {
  background: #f7f7f7 !important;
  color: #15328c !important;
}

.navbar {
  background: #15328c !important;
  color: #fff !important;
}
@media (min-width: 768px) {
  .navbar {
    height: 110px !important;
  }
}
@media (min-width: 992px) {
  .navbar {
    height: 130px !important;
  }
}

#navbar .navbar-nav > li.nav-item > a {
  color: #fff !important;
  font-family: "Avenir heavy";
  text-transform: uppercase;
  font-size: 16px !important;
  letter-spacing: 2px;
  height: 100%;
  white-space: normal;
}
@media only screen and (max-width: 1430px) and (min-width: 1100px) {
  #navbar .navbar-nav > li.nav-item > a {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1024px) {
  #navbar .navbar-nav > li.nav-item > a {
    font-size: 11px !important;
    height: 100%;
    padding: 10px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  #navbar .navbar-nav > li.nav-item > a {
    font-size: 12px !important;
    padding: 0.5rem 0.3rem !important;
  }
}

#navbar .nav-item:hover {
  border-bottom: 4px solid #fff;
}

#cta-storelocator {
  color: #15328c !important;
}

#navbar .navbar-cta .nav-item p {
  color: #fff !important;
}

body {
  font-family: muli, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.bg-dark-blue {
  background: #15328c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Avenir heavy";
}

.description-pdp ul,
.description-pdp li {
  list-style: disc !important;
}

#flavors-filter {
  border-top: 0.5px solid #fff !important;
}

.asd-filters .asd-filters__row a[aria-expanded]::before {
  content: none !important;
}

.placeholder-img {
  width: 100%;
  min-height: 500px;
  margin-bottom: 15px;
  display: inline-block;
  background: #eee;
  border-radius: 10px;
  position: relative;
}
.placeholder-img::before {
  content: "\f03e";
  font-family: "Font Awesome 5 Free";
  font-size: 40px;
  color: #bbb;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.placeholder-img-small {
  width: 100%;
  min-height: 250px;
  margin-bottom: 15px;
  display: inline-block;
  background: #eee;
  border-radius: 10px;
  position: relative;
}
.placeholder-img-small::before {
  content: "\f03e";
  font-family: "Font Awesome 5 Free";
  font-size: 40px;
  color: #bbb;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.find-icon i {
  font-size: 20px !important;
  display: inline-block;
  vertical-align: middle;
}

.font-14 {
  font-size: 14px !important;
}

#navbar .navbar-burger {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  cursor: pointer;
  position: absolute;
  left: 35px;
}
@media only screen and (max-width: 1099px) and (min-width: 992px) {
  #navbar .navbar-burger {
    display: inline-block !important;
  }
}

#navbar .navbar-burger.active span {
  -webkit-transform: rotate(-45deg) translate(-2px, -1px);
      -ms-transform: rotate(-45deg) translate(-2px, -1px);
          transform: rotate(-45deg) translate(-2px, -1px);
}

#navbar .navbar-burger span {
  background: #fff;
}

.navbar {
  height: 70px;
}
@media (min-width: 768px) {
  .navbar {
    height: 90px;
  }
}

.bg-blog {
  background: url("../img/liquid_bg.jpg");
  background-position: left 120px !important;
  background-repeat: no-repeat;
}

.bg-liquid {
  background: url("../img/liquid_bg2.jpg");
  background-size: cover;
}

.list li {
  list-style-type: disc;
  margin-left: 10px;
}

.icon img {
  max-width: 70px;
  margin-top: 10px;
}

.color-blue {
  color: var(--color-blue);
}

sup {
  top: -0.7em;
}

.description-pdp ul {
  padding-left: 10px;
  margin-bottom: 10px;
}

.product-card .text-medium {
  font-size: 15px;
  line-height: 25px;
}

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

.image-fluid-wrapper img {
  max-width: 100%;
  height: auto;
}

.chk-allergies {
  color: var(--color-blue);
  font-weight: bold;
}
.chk-allergies img {
  max-width: 50px;
  margin-right: 10px;
}

.cs-detail-product {
  font-size: 16px;
}
.cs-detail-product ul {
  margin-left: 10px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .horizontal-tabs {
    overflow-y: none;
    overflow-x: scroll;
  }
  .horizontal-tabs .horizontal-tabs .nav-pills .nav-link::before {
    top: 94%;
  }
}

.horizontal-tabs .nav-pills .nav-item {
  text-transform: none;
}
.horizontal-tabs .nav-pills .nav-item::before {
  content: none;
}

.product-price {
  font-size: 25px;
  font-weight: normal;
}

.horizontal-tabs .nav-pills .nav-link:hover {
  color: #14328c !important;
}
.horizontal-tabs .nav-pills .nav-link:hover::before {
  background: #14328c !important;
}

.product-card .list {
  list-style: none;
}
.product-card .list li {
  list-style: none;
}
.product-card .list li::before {
  content: "•";
  color: #14328c;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  height: unset;
  top: unset;
  position: static;
  border-radius: unset;
  left: unset;
  background-color: unset;
}

.btn-template-1,
.btn-template-2,
.btn-template-4,
.btn-template-6,
.btn-template-7,
.btn-template-8 {
  padding: 12px 40px !important;
}

.btn-template-1 {
  text-transform: uppercase !important;
}

.nav-label__side {
  font-family: "Avenir heavy";
}

.liquid-bg-vertical {
  max-width: 300px;
  position: absolute;
  top: -50px;
  right: -70px;
}

.btn-template-3 {
  text-transform: uppercase;
  font-family: "Avenir heavy", sans-serif !important;
}

.btn,
.section-link {
  font-size: 16px !important;
}

.pure-diff-banner .pure-diff-text h1 {
  font-size: 53px;
  line-height: 1.23;
  letter-spacing: 2.02px;
  margin-bottom: 30px;
}
.pure-diff-banner .pure-diff-text .pure-frame::before {
  top: -25px;
  left: -75px;
}
.pure-diff-banner .pure-diff-image {
  position: relative;
}
.pure-diff-banner .pure-diff-image img {
  border-radius: 50%;
  -webkit-box-shadow: 25px 50px 80px rgba(0, 0, 0, 0.25);
          box-shadow: 25px 50px 80px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .pure-diff-banner .pure-diff-image img {
    margin-top: 70px;
    max-width: 550px;
  }
}
.pure-diff-banner .pure-diff-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 10px;
  width: 80%;
  height: 120px;
  border-radius: 20px;
  z-index: -1;
  background-color: #14328c;
}
@media (min-width: 768px) {
  .pure-diff-banner .pure-diff-image::before {
    top: 30px;
    right: 30px;
    height: 230px;
  }
}

.pure-diff-graphic-divider {
  height: 200px;
  width: 100%;
  background: url("../img/GettyImages-550373607_rev.png");
  background-position: center;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  .pure-diff-graphic-divider {
    margin-top: -120px;
    height: 550px;
    margin-bottom: -200px;
    background-size: 110% 100%;
  }
}

.pure-diff-icon-list {
  background: rgba(228, 232, 241, 0.5);
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .pure-diff-icon-list {
    padding-top: 150px;
  }
}

.product-thumbnail .product-thumbnail-cta a {
  line-height: 1;
  padding: 10px !important;
}
@media screen and (max-width: 992px) {
  .product-thumbnail .product-thumbnail-cta a {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 14px !important;
    line-height: 1.2;
  }
}

.mobile-nav-dropdown {
  position: relative;
}
.mobile-nav-dropdown.active .pull-right {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.mobile-nav-dropdown .pull-right {
  position: absolute;
  right: 5px;
  top: 3px;
  z-index: 100;
  cursor: pointer;
  padding: 7px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.mobile-nav-dropdown .pull-right .fa-chevron-down {
  padding-right: 0;
}

@media (max-width: 767px) {
  .dropdown-menu {
    float: none !important;
    padding-top: 0 !important;
  }
}

#bmi-calculator-wrapper .btn-template-2, #bmi-calculator-wrapper .locator-btn {
  padding: 5px 15px !important;
  line-height: 1;
  letter-spacing: normal;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #navbar .navbar-cta svg,
  .mobile-nav-section svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #navbar .navbar-cta .nav-item p {
    font-size: 12px;
    padding: 0;
  }
}

.navbar-expand-lg .navbar-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .navbar-megadropdown-thumbnail .text-medium {
    font-size: 12px !important;
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #btn_search {
    font-size: 12px !important;
  }
}

@media (max-width: 767px) {
  .navbar-mobile-menu nav ul li a.mobile-nav-option {
    padding-right: 36px;
  }
}

.vertical-splash {
  display: none;
}
@media (min-width: 768px) {
  .vertical-splash {
    position: absolute;
    display: inline-block;
    z-index: -1;
    top: 0;
    width: 300px;
  }
}
@media (min-width: 992px) {
  .vertical-splash {
    width: 400px;
  }
}
.vertical-splash.right {
  right: -10%;
}
.vertical-splash.left {
  left: -17%;
  -webkit-transform: rotateZ(192deg);
      -ms-transform: rotate(192deg);
          transform: rotateZ(192deg);
  top: 45%;
}

.bg-blue-gradient {
  background: rgb(57, 112, 209);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #3970d1), color-stop(1%, #3970d1), color-stop(35%, #3970d1), color-stop(60%, #285fbc), to(#285fbc));
  background: linear-gradient(to bottom, #3970d1 1%, #3970d1 1%, #3970d1 35%, #285fbc 60%, #285fbc 100%);
}
.bg-blue-gradient .btn-template-3 {
  color: #fff !important;
}
.bg-blue-gradient .btn-template-3::before {
  background: #fff !important;
}

.white-controls .slick-dots li button:before {
  background: #aec5ef !important;
}
.nav-item::before {
  content: none !important;
}

.resources-card {
  background: #f0f0f0;
  border-radius: 9px;
  padding: 29px 26px 37px;
  margin-bottom: 35px;
}
.resources-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 5px 0 15px;
}
.resources-card--category {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.6px;
  margin: 20px 0 0;
  color: #14328c;
}

#resources-sort {
  max-width: 200px;
  color: #14328c;
  border: 2px solid #14328c;
  border-radius: 9px;
  padding: 3px;
}

.btn-product-variant {
  border-radius: 5px;
  border: 1px solid #14328c;
  color: #14328c;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 5px;
  padding: 8px;
  font-size: 16px;
  text-align: center;
}
.btn-product-variant.active {
  background: #14328c;
  color: #fff;
}

.mx--5px {
  margin-left: -5px;
  margin-right: -5px;
}

.vertical-texture {
  display: none;
}
@media (min-width: 768px) {
  .vertical-texture {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 12%;
  }
}

@media (max-width: 767px) {
  .qk-fx-sd-home {
    margin-top: -100px;
  }
}
@media (min-width: 768px) {
  .qk-fx-sd-home {
    margin-top: 75px !important;
    margin-left: 150px !important;
  }
}

.article-content-1 img[data-align=center] {
  display: block;
  margin: auto;
}
.article-content-1 img[data-align=left] {
  display: block;
  margin-right: auto;
}
.article-content-1 img[data-align=right] {
  display: block;
  margin-left: auto;
}

#wizard-form #progressbar .done .step {
  background: #14328c;
}

#wizard-form #progressbar .active .step {
  border: 5px solid #14328c !important;
  background: #fff;
  -webkit-box-shadow: 0 0 10px -1px;
  box-shadow: 0 0 10px -1px;
}

#wizard-form #progressbar .done .step {
  border: 5px solid #14328c !important;
}

#wizard-form #progressbar .done .step:after,
#wizard-form #progressbar .done .step:before,
#wizard-form #progressbar .active .step:before {
  background-color: rgba(20, 50, 140, 0.5);
}

#wizard-form #progressbar .step img {
  width: 40px;
}
@media screen and (max-width: 321px) {
  #wizard-form #progressbar .step img {
    width: 25px;
  }
}

@media screen and (max-width: 321px) {
  #wizard-form #progressbar .step {
    width: 1.5em;
    height: 1.5em;
  }
}

.bg-question-sun {
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover !important;
}
.bg-question-sun h1 {
  color: white;
}

.subcategory .boost-select {
  height: 100px !important;
}
.subcategory .boost-select .text-medium {
  line-height: 25px !important;
  font-size: 20px !important;
}

.subcategory h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}
.subcategory .close_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  margin-bottom: 6px;
  cursor: pointer;
}
.subcategory .close_option i {
  font-size: 25px !important;
  padding-right: 0px;
}

.contact-hcp-contact .form-item {
  text-align: left;
}
.contact-hcp-contact label {
  color: #14328c;
}
.contact-hcp-contact input[type=text], .contact-hcp-contact input[type=number], .contact-hcp-contact input[type=email], .contact-hcp-contact input[type=tel], .contact-hcp-contact select {
  width: 100%;
  margin-top: 5px !important;
  border: 2px solid #dedede !important;
  font-weight: 400 !important;
  font-size: 18px;
  border-radius: 0px !important;
  padding: 10px !important;
  height: 50px !important;
  background-color: #e2e2e2;
}
.contact-hcp-contact input[type=checkbox] {
  margin-top: 2px !important;
  margin-right: 10px !important;
  display: inline-block !important;
}
.contact-hcp-contact .js-form-type-checkbox {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-hcp-contact input[type=submit] {
  color: #fff;
  background-color: #14328c;
  border: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 20px;
  margin: auto;
  text-align: center;
  display: block;
  text-transform: uppercase;
  padding: 10px 60px !important;
  text-decoration: none;
  border-radius: 20px 20px 20px 20px !important;
  float: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.contact-hcp-contact input[type=submit]:hover {
  background-color: #213077 !important;
}
.contact-hcp-contact #edit-actions {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 2em;
}
.contact-hcp-contact .box-info {
  margin-top: 2em;
  height: 200px;
  overflow-x: scroll;
  background-color: #e2e2e2;
}
.contact-hcp-contact .box-info p {
  font-size: 15px;
}

.allergies .boost-select {
  height: 115px !important;
}

.hero-quiz {
  position: relative;
  min-width: 555px;
  padding: 55px 0;
  background: url(https://cdn.shopify.com/s/files/1/0283/6145/7698/files/video-placeholder.png?v=1612860178);
  background-size: 110% 100%;
  z-index: -2;
}
@media screen and (max-width: 570px) {
  .hero-quiz {
    min-width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hero-quiz .title-quiz {
    font-size: 40px;
  }
}
.hero-quiz p {
  font-size: 20px;
}
@media screen and (max-width: 570px) {
  .hero-quiz p {
    font-size: 14px;
  }
}
.hero-quiz .btn-template-1 {
  font-size: 15px !important;
}
@media screen and (min-width: 1200px) {
  .hero-quiz .btn-template-1 {
    font-size: 18px !important;
  }
}
.hero-quiz .img-1 {
  position: absolute;
  top: 5%;
  right: -10%;
  z-index: -1;
  max-width: 350px;
}
@media screen and (max-width: 570px) {
  .hero-quiz .img-1 {
    position: relative;
    display: none;
  }
}

@media screen and (max-width: 570px) {
  .product-thumbnail img {
    width: 100%;
    height: auto;
  }
}

#block-pure-it-main-menu #block-pure-it-main-menu-menu {
  display: none !important;
}

.filter_dtc .wrap_loading_search {
  display: none !important;
}

@media screen and (max-width: 1300px) {
  .pure-frame h1 {
    word-break: break-all;
  }
}
@media screen and (max-width: 1000px) {
  .pure-frame h1 {
    word-break: inherit !important;
  }
}

.blog-article-header-image img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}

.blog-article-header-wrapper {
  min-height: auto;
}
@media (min-width: 768px) {
  .blog-article-header-wrapper {
    min-height: 400px;
  }
}
.blog-article-header-wrapper img {
  min-height: 400px;
}
@media (min-width: 768px) {
  .blog-article-header-wrapper img {
    min-height: 400px;
  }
}

.btn-5 {
  background-color: rgba(128, 128, 128, 0.1215686275);
  color: black;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  border-width: 1px;
  border: transparent solid 1px !important;
}
.btn-5:hover, .btn-5.active {
  background-color: rgba(128, 128, 128, 0.1215686275);
  border-color: #14328c !important;
  border-style: solid;
  border-width: 1px;
  color: #14328c !important;
}

.btn-5-mobile {
  width: inherit;
  padding: 17px 8px 18px 8px;
  border: transparent solid 2px !important;
}

.list-category {
  list-style-type: none !important;
}

.title-teaser {
  height: auto;
  color: #14328C;
  font-size: 21px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 15px;
}

.text-teaser {
  font-size: 16px !important;
  color: #595959;
  line-height: 1.7;
  font-weight: normal;
  font-family: "muli";
}

.title-teaser-2 {
  font-size: 15px;
  color: #14328c;
  font-weight: bold;
}

.blog-article-header h1 {
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .center-mobil {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .article-cont-text img {
    width: 100%;
  }
}

.text-body p {
  font-size: 18px;
  color: #5F5F5F !important;
  font-family: Avenir Next LT Pro;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (max-width: 768px) {
  .text-body p {
    font-size: 16px;
  }
}
.text-body span {
  font-size: 18px !important;
  color: #5F5F5F !important;
  font-family: Avenir Next LT Pro !important;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (max-width: 768px) {
  .text-body span {
    font-size: 16px;
  }
}
.text-body ul li {
  font-size: 18px;
  color: #5F5F5F !important;
  font-family: Avenir Next LT Pro;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (max-width: 768px) {
  .text-body ul li {
    font-size: 16px;
  }
}
.text-body ul li::before {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.text-body ol {
  padding-left: 22px !important;
}
.text-body ol li {
  font-size: 18px;
  color: #5F5F5F !important;
  font-family: Avenir Next LT Pro;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (max-width: 768px) {
  .text-body ol li {
    font-size: 16px;
  }
}
.text-body h1 {
  font-size: 30px !important;
  color: #14328C !important;
  font-family: Avenir Next LT Pro !important;
  margin-bottom: 0.2rem;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  .text-body h1 {
    font-size: 24px;
  }
}
.text-body h2 {
  font-size: 28px;
  color: #14328C !important;
  font-family: Avenir Next LT Pro;
  margin-bottom: 0.2rem;
  line-height: 35px;
  margin-top: 35px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .text-body h2 {
    font-size: 22px;
  }
}
.text-body h3 {
  font-size: 27px;
  color: #000000 !important;
  font-family: Avenir Next LT Pro;
}
@media screen and (max-width: 768px) {
  .text-body h3 {
    font-size: 21px;
  }
}
.text-body .Introduction {
  font-size: 27px !important;
  color: #5F5F5F !important;
  font-family: Avenir Next LT Pro !important;
}
@media screen and (max-width: 768px) {
  .text-body .Introduction {
    font-size: 21px;
  }
}

.text-body img[data-align=center] {
  display: block;
  margin: auto;
}
.text-body img[data-align=left] {
  display: block;
  margin-right: auto;
}
.text-body img[data-align=right] {
  display: block;
  margin-left: auto;
}

.text-body img {
  max-width: 100%;
  height: auto;
}

[role=contentinfo] [role=alert] {
  display: none;
}

.search-box-wrapper {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
}
.search-box-wrapper.open {
  display: block;
}
.search-box-wrapper.open.loaded .loader-dots {
  z-index: -10;
}
.search-box-wrapper .searchDP {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f7f6f2;
  padding: 15px 10px;
}
.search-box-wrapper .nav-search {
  background: #f7f6f2;
}
.search-box-wrapper .nav-item.active, .search-box-wrapper .nav-item:hover {
  border-bottom: 2px solid #a5a5a5 !important;
}
@media only screen and (max-width: 600px) {
  .search-box-wrapper .nav-item {
    font-size: 14px;
  }
}
.search-box-wrapper .tab-content .tab-pane {
  background: #f7f6f2;
}
.search-box-wrapper #dropdownResults {
  max-height: 500px !important;
  background: transparent !important;
  overflow: scroll;
}
.search-box-wrapper .loader-dots {
  width: 3.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 2.5%;
  width: 95%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.search-box-wrapper .loader-dots div {
  width: 12px;
  height: 12px;
  margin: 0 7px;
  border-radius: 50%;
  background-color: #14328c;
  -webkit-animation: fade 0.8s ease-in-out alternate infinite;
          animation: fade 0.8s ease-in-out alternate infinite;
}
.search-box-wrapper .loader-dots div:first-child {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.search-box-wrapper .loader-dots div:nth-child(2) {
  -webkit-animation-delay: -0.2;
          animation-delay: -0.2;
}

@-webkit-keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.container-fluid ul li::before {
  content: "" !important;
  width: 0px !important;
}

.content-quality-process h1, .content-quality-process h2, .content-quality-process h3, .content-quality-process h4, .content-quality-process h5, .content-quality-process h6 {
  color: #15328c;
}

.btn-template-9 {
  color: #15328c;
  text-decoration: none;
  border-radius: 0 !important;
  border-bottom: 1px solid transparent;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-template-9:hover, .btn-template-9:focus {
  color: #15328c;
  text-decoration: none;
  border-bottom: 1px solid #15328c;
}

.btn-show-more {
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-show-more::after {
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: #15328c;
  font-size: 14px;
  margin-left: 10px;
}

.btn-show-more.active::after {
  content: "\f078";
}

.content-show-more img {
  float: left;
  margin-right: 1rem;
}
.content-show-more ul {
  padding-left: 3rem;
}
.content-show-more .table-content-show-more td {
  border: 1px solid black;
}
.content-show-more .table-content-show-more .border-none {
  border: none !important;
}

.card-durabilite {
  background-color: #ECEEEF;
}
.card-durabilite .card-header {
  background-color: #539113;
  color: #ffffff;
  text-align: left;
}

.card-futur .card-header {
  background-color: #0070c0;
  color: #ffffff;
  text-align: left;
}
.card-futur .card-body {
  background-color: #deeaf6;
}

.side-texture {
  height: 400px;
}

.card-pure .card-1 {
  background-color: #14328C;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.card-pure .card-2 {
  background-color: #2670B7;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.card-pure h3 {
  color: white !important;
  text-align: center;
}
.card-pure p {
  color: white !important;
  font-weight: bold;
  margin-top: 5px;
}

.product-category h1, .product-category h2, .product-category h3, .product-category h4, .product-category h5, .product-category h6 {
  color: #14328c !important;
}
@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .product-category .custom-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .product-category .custom-col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

#seckit-noscript-tag {
  display: none;
}

.banner-product-page {
  position: relative;
}
@media screen and (min-width: 992px) {
  .banner-product-page img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .banner-product-page img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 500px;
  }
}
@media screen and (max-width: 991px) {
  .banner-product-page {
    background-image: url("../img/banner_products_page.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (min-width: 992px) {
  .banner-product-page .content {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 100%;
  }
}

.text-description-teaser p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  color: #000 !important;
  font-weight: normal;
}

.card_filter_articles.active {
  max-height: 300px;
  overflow: scroll;
  margin-bottom: 30px;
}

.customNavHCP img {
  width: 50px !important;
  height: 50px !important;
}
@media screen and (min-width: 992px) and (max-width: 1280px) {
  .customNavHCP img {
    width: 40px !important;
    height: 40px !important;
  }
}

@media only screen and (max-width: 1610px) and (min-width: 1100px) {
  .customNavbarCollapse {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media only screen and (max-width: 1099px) and (min-width: 992px) {
  .customNavbarCollapse.navbar-collapse {
    display: none !important;
  }
}

@media only screen and (max-width: 1099px) and (min-width: 992px) {
  .navbar-cta {
    display: none !important;
  }
}

@media only screen and (max-width: 1099px) and (min-width: 992px) {
  #navbar-mobile-menu-wrapper {
    display: block !important;
  }
}
@media only screen and (max-width: 1099px) and (min-width: 992px) {
  #navbar-mobile-menu-wrapper .navbar-mobile-menu {
    display: block !important;
  }
}

.customBtnHCP {
  padding: 12px 25px !important;
}
.customBtnHCP img {
  width: 40px;
  height: 40px;
}

.tooltipContainer label {
  font-size: 14px;
  color: #15328c;
}
.tooltipContainer label p {
  font-size: 14px;
  color: #15328c;
}
.tooltipContainer .tooltip-btn {
  min-width: 20px;
  min-height: auto;
  padding: 3px 7px;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1;
  color: rgb(255, 255, 255);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px !important;
  margin: 0 0.3125rem;
  background-color: #15328c;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tooltip-inner {
  color: #ffffff; /* Color del texto general */
  background-color: #000000; /* Fondo del tooltip */
  font-size: 14px; /* Tamaño de fuente opcional */
}

/* Estilo específico para enlaces dentro del tooltip */
.tooltip a {
  color: #ffffff !important; /* Color blanco para el enlace */
  text-decoration: underline; /* Subrayado para destacar el enlace */
}

.tooltip .tooltip-inner a.tooltip-link, .tooltip-btn a {
  color: white !important; /* Color del texto del enlace */
  text-decoration: underline; /* Subrayado opcional */
}

.linkNewsletter {
  color: #14328c !important;
}

.boxArticle {
  background: whitesmoke;
  color: #595959;
  display: inline-block;
}

.toggleTheme {
  cursor: pointer;
  border-radius: 50px;
  background: #fff;
  font-size: 9px;
  padding: 5px 2px;
  margin-bottom: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.toggleTheme:hover {
  background: #14328c !important;
}
.toggleTheme.dark-mode:hover .light-mode.slide-wrapper {
  color: #fff !important;
}
.toggleTheme.light-mode {
  background: #15328c;
}
.toggleTheme.light-mode .light-mode.slide-wrapper {
  color: #15328c;
}
.toggleTheme.light-mode:hover .dark-mode.slide-wrapper {
  color: #fff !important;
}
.toggleTheme.light-mode .switch-wrapper::before {
  background-color: #fff;
}
.toggleTheme .switch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.toggleTheme .switch-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 24px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50px;
  background-color: #000;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.toggleTheme .switch-wrapper .slide-wrapper {
  color: #181a1b;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  z-index: 1;
}
.toggleTheme .switch-wrapper .slide-wrapper.light-mode {
  padding: 2px 0px 2px 4px;
  color: #000;
}
.toggleTheme .switch-wrapper .slide-wrapper.dark-mode {
  padding: 2px 4px 2px 8px;
  color: #fff;
}
.toggleTheme.dark-mode .switch-wrapper::before {
  right: 0;
  left: auto;
}
.toggleTheme.dark-mode .switch-wrapper .slide-wrapper.light-mode {
  color: #000;
}
.toggleTheme.dark-mode .switch-wrapper .slide-wrapper.dark-mode {
  color: #fff;
}

body.dark-mode {
  background: #181a1b;
  background-position: top;
  background-size: 0.25rem 0.25rem;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
body.dark-mode .tooltipContainer label {
  font-size: 14px;
  color: #7eb1ed !important;
}
body.dark-mode .tooltipContainer label p {
  font-size: 14px;
  color: #7eb1ed !important;
}
body.dark-mode .navbar {
  background: rgb(17, 40, 112) !important;
  border-bottom: 1px solid transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
body.dark-mode .dropdown-menu {
  background: #707070;
}
body.dark-mode .linkNewsletter {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode #navbar .nav-item:hover {
  border-bottom: 4px solid rgb(176, 169, 159) !important;
}
body.dark-mode .top-bar .nav-label {
  background: #181a1b !important;
}
body.dark-mode .contentHeadline h1,
body.dark-mode .contentHeadline h2,
body.dark-mode .contentHeadline h3,
body.dark-mode .contentHeadline h4,
body.dark-mode .contentHeadline h5,
body.dark-mode .contentHeadline h6 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .balanced--promo h1,
body.dark-mode .pure-title {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .pure-frame::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
body.dark-mode .btn-boost,
body.dark-mode .btn-template-1 {
  border-color: rgb(26, 65, 181) !important;
}
body.dark-mode .pure-container a:not(.btn-boost) {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode p {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .btn-template-3 {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .btn-template-3::before {
  background: rgb(176, 169, 159) !important;
}
body.dark-mode .article-thumbnail-body {
  background-color: rgb(36, 39, 41);
  color: rgb(232, 230, 227) !important;
}
body.dark-mode .bg-dark-blue {
  background: rgb(17, 40, 112) !important;
}
body.dark-mode .bg-light-gray,
body.dark-mode .background-light-gray {
  background-color: rgb(30, 27, 18) !important;
}
body.dark-mode .box-thumbnail-1 {
  background: rgb(24, 26, 27);
}
body.dark-mode .box-thumbnail-1 .color-red,
body.dark-mode .box-thumbnail-1 .color-red span {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .box-thumbnail-1 .descriptionProductMobile * {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode [role=contentinfo] {
  background-color: rgb(42, 45, 47) !important;
}
body.dark-mode .color-dark-blue {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .white-controls .slick-dots li button:before {
  background-color: rgb(126, 177, 237) !important;
}
body.dark-mode .slick-prev:before,
body.dark-mode .slick-next:before {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode footer .container ul li::before,
body.dark-mode footer .container-fluid ul li::before {
  background: rgb(176, 169, 159) !important;
}
body.dark-mode .mobile-link {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .navbar-megadropdown-thumbnail .color-red,
body.dark-mode .navbar-megadropdown-thumbnail .color-red * {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .asd-filters .color-red,
body.dark-mode .asd-filters .color-red * {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .asd-filters input[type=checkbox]:checked + .label-text:before {
  color: #15328c !important;
}
body.dark-mode .asd-filters #flavors-filter {
  border-top: 0.5px solid #707070 !important;
}
body.dark-mode .asd-filters .asd-filters__row h4 {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .asd-filters .asd-filters__row label {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .text-description-teaser p {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .horizontal-tabs .nav-pills .nav-item a.active {
  color: rgb(176, 169, 159) !important;
  border-bottom: 4px solid rgb(176, 169, 159) !important;
}
body.dark-mode .product-thumbnail .ribbon-new {
  background-color: #303030;
}
body.dark-mode .border {
  border: 2px solid #303030 !important;
}
body.dark-mode .product-sorting-dropdown select {
  background-color: #707070 !important;
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .filter-header .mr-2,
body.dark-mode .filter-header .text-small {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .marque-container .marque .pure-title::before,
body.dark-mode .marque-container .marque .pure-title::after {
  background: rgb(176, 169, 159) !important;
}
body.dark-mode .pure-diff-icon-list {
  background: #181a1b !important;
}
body.dark-mode .pure-diff-icon-list small {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h1,
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h2,
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h3,
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h4,
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h5,
body.dark-mode .pure-diff-icon-list .card-pure .card-1 h6 {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h1,
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h2,
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h3,
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h4,
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h5,
body.dark-mode .pure-diff-icon-list .card-pure .card-2 h6 {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .pure-container h1,
body.dark-mode .pure-container h2,
body.dark-mode .pure-container h3,
body.dark-mode .pure-container h4,
body.dark-mode .pure-container h5,
body.dark-mode .pure-container h6 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .accordion-processus .card .card-header {
  background: #303030 !important;
}
body.dark-mode .accordion-processus .card .card-header h5,
body.dark-mode .accordion-processus .card .card-header button {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .accordion-processus .card {
  background-color: #303030 !important;
}
body.dark-mode .accordion-processus .card a {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .card-futur,
body.dark-mode .card-durabilite {
  margin: 0px !important;
  border: 1px solid #181a1b !important;
}
body.dark-mode .card-futur .card-body,
body.dark-mode .card-durabilite .card-body {
  background: #303030 !important;
}
body.dark-mode .mentor span {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .mentor h3 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .mentor h3 span {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .horizontal-tabs .nav-pills .nav-item a {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .horizontal-tabs .nav-pills .nav-item a:hover {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .horizontal-tabs .nav-pills .nav-link:hover::before {
  background: rgb(176, 169, 159) !important;
}
body.dark-mode .bg-white {
  background: rgb(24, 26, 27) !important;
}
body.dark-mode .article-thumbnail.hover .article-thumbnail-image::after {
  opacity: 1;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  background: linear-gradient(30deg, rgba(48, 48, 48, 0.85), rgba(48, 48, 48, 0.5));
}
body.dark-mode .breadcrumb-item {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .breadcrumb-item a {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .article-content-1 h1,
body.dark-mode .article-content-1 h2,
body.dark-mode .article-content-1 h3 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .article-content-1 h4,
body.dark-mode .article-content-1 h5,
body.dark-mode .article-content-1 h6,
body.dark-mode .article-content-1 ul,
body.dark-mode .article-content-1 li,
body.dark-mode .article-content-1 ol,
body.dark-mode .article-content-1 a,
body.dark-mode .article-content-1 p,
body.dark-mode .article-content-1 span {
  color: rgb(172, 165, 154) !important;
}
body.dark-mode .article-content-1 .container ul li::before,
body.dark-mode .article-content-1 .container-fluid ul li::before {
  color: rgb(172, 165, 154) !important;
  background-color: rgb(176, 169, 159) !important;
}
body.dark-mode .bg-color-section {
  background-color: #1e1b12;
}
body.dark-mode .offers-offer::before {
  background: rgba(0, 0, 0, 0.6);
}
body.dark-mode .btn-template-2 {
  color: rgb(176, 169, 159) !important;
  border: 1px solid rgb(176, 169, 159) !important;
}
body.dark-mode .btn-template-2:hover {
  background-color: rgb(176, 169, 159) !important;
  color: #303030 !important;
}
body.dark-mode .wrap_items .store-item:nth-child(odd) {
  background: #303030;
}
body.dark-mode .wrap_items .store-item:hover {
  background: #303030;
}
body.dark-mode .storeName,
body.dark-mode .number {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .infolocation p,
body.dark-mode .infolocation ul,
body.dark-mode .infolocation li,
body.dark-mode .infolocation ol,
body.dark-mode .infolocation span,
body.dark-mode .infolocation a {
  color: #000 !important;
}
body.dark-mode .contact-boost label {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .navbar-mobile-menu nav ul li a.mobile-nav-option,
body.dark-mode .navbar-mobile-menu nav ul li.active a.mobile-nav-option,
body.dark-mode .mobile-nav-dropdown .pull-right .fa-chevron-down {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode #wizard-form .color-blue {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode #wizard-form #wizard-form .radio-toggle label {
  border: 4px solid rgb(176, 169, 159) !important;
}
body.dark-mode #wizard-form .color-dark-gray,
body.dark-mode #wizard-form .color-dark-gray * {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .bg-light-gray .color-dark-gray {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .bg-light-gray-gradient,
body.dark-mode .background-light-gray-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(30, 27, 18)), color-stop(58%, rgb(24, 26, 27)));
  background: linear-gradient(rgb(30, 27, 18) 0%, rgb(24, 26, 27) 58%);
}
body.dark-mode .bg-light-gray-gradient .breadcrumb,
body.dark-mode .background-light-gray-gradient .breadcrumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(30, 27, 18)), color-stop(58%, rgb(24, 26, 27)));
  background: linear-gradient(rgb(30, 27, 18) 0%, rgb(24, 26, 27) 58%);
}
body.dark-mode #details-tabContent p,
body.dark-mode #details-tabContent a,
body.dark-mode #details-tabContent ol,
body.dark-mode #details-tabContent ul,
body.dark-mode #details-tabContent li,
body.dark-mode #details-tabContent a,
body.dark-mode #details-tabContent span,
body.dark-mode #details-tabContent strong {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .chk-allergies {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .product-card {
  background: rgb(24, 26, 27) !important;
}
body.dark-mode .product-card .color-gray {
  color: #595959 !important;
}
body.dark-mode .product-card .color-blue {
  color: #595959 !important;
}
body.dark-mode .product-card .color-blue span {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .product-card .variant-price,
body.dark-mode .product-card .product-price {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .product-card .btn-product-variant.active,
body.dark-mode .product-card .btn-template-1 {
  border: 1px solid rgb(126, 177, 237) !important;
}
body.dark-mode .container ul li,
body.dark-mode .container-fluid ul li {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .container-fluid ul li::before {
  background-color: rgb(176, 169, 159) !important;
}
body.dark-mode .container ul li::before,
body.dark-mode .container-fluid ul li::before {
  content: none !important;
}
body.dark-mode .iconImgs img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
body.dark-mode .iconImgs .card-body img {
  -webkit-filter: none !important;
          filter: none !important;
}
body.dark-mode #ciamlitesample h2.gigya-composite-control-header.gigya-conditional.gigya-header,
body.dark-mode #ciamlitesample label,
body.dark-mode #ciamlitesample span,
body.dark-mode #ciamlitesample p {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode #ciamlitesample input[type=submit] {
  border: 1px solid rgb(66, 72, 75) !important;
}
body.dark-mode #form-contactus h3 a {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .search-box-wrapper .searchDP {
  background: #707070 !important;
  color: rgb(176, 169, 159) !important;
  border-bottom: 1px solid rgb(176, 169, 159) !important;
}
body.dark-mode .search-box-wrapper .nav-search {
  background: #707070 !important;
  color: rgb(176, 169, 159);
}
body.dark-mode .search-box-wrapper .nav-item.active,
body.dark-mode .search-box-wrapper .nav-item:hover {
  border-bottom: 2px solid rgb(176, 169, 159) !important;
}
body.dark-mode .search-box-wrapper .tab-content .tab-pane {
  background: #707070 !important;
}
body.dark-mode .search-box-wrapper .loader-dots {
  background: rgba(0, 0, 0, 0.3);
}
body.dark-mode .search-box-wrapper .loader-dots div {
  background-color: rgb(176, 169, 159) !important;
}
body.dark-mode .search-box-wrapper .nav-item.active,
body.dark-mode .search-box-wrapper .nav-item:hover {
  border-bottom: 2px solid rgb(176, 169, 159) !important;
}
body.dark-mode .search-box-wrapper #dropdownResults .resultsFooter {
  background: #707070 !important;
}
body.dark-mode .result_query {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .tabs_to_search {
  background-color: #707070 !important;
}
body.dark-mode .tabs_to_search ul {
  background-color: rgb(176, 169, 159) !important;
}
body.dark-mode .tabs_to_search .nav-link.active {
  background: #303030 !important;
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .tabs_to_search a.active:before {
  background: rgb(176, 169, 159) !important;
}
body.dark-mode .search_result {
  background: #707070 !important;
}
body.dark-mode .search_result h1,
body.dark-mode .search_result h2,
body.dark-mode .search_result h3,
body.dark-mode .search_result h4,
body.dark-mode .search_result h5,
body.dark-mode .search_result p,
body.dark-mode .search_result span,
body.dark-mode .search_result small,
body.dark-mode .search_result a {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .pager__item a {
  color: rgb(176, 169, 159) !important;
}
body.dark-mode .bg-blue-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgb(37, 82, 160)), color-stop(1%, rgb(37, 82, 160)), color-stop(35%, rgb(37, 82, 160)), color-stop(60%, rgb(32, 76, 150)), to(rgb(32, 76, 150)));
  background-image: linear-gradient(rgb(37, 82, 160) 1%, rgb(37, 82, 160) 1%, rgb(37, 82, 160) 35%, rgb(32, 76, 150) 60%, rgb(32, 76, 150) 100%);
  background-color: initial;
}
body.dark-mode .title-teaser {
  color: rgb(126, 177, 237);
}
body.dark-mode .boxArticle {
  background: rgb(30, 32, 33);
  color: rgb(177, 170, 160);
}
body.dark-mode .content-quality-proces h3 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .content-quality-process h1,
body.dark-mode .content-quality-process h2,
body.dark-mode .content-quality-process h3,
body.dark-mode .content-quality-process h4,
body.dark-mode .content-quality-process h5,
body.dark-mode .content-quality-process h6 {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .color-blue {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .rounded-icon a .fab {
  color: rgb(126, 177, 237);
  border: 1px solid rgb(126, 177, 237);
}
body.dark-mode #retailersOptifast span {
  color: rgb(177, 170, 160);
}
body.dark-mode #store-locator-list h4 {
  color: #e8e6e3;
}
body.dark-mode .col-md-1 span {
  color: #e8e6e3;
}
body.dark-mode .bg-white div {
  color: rgb(177, 170, 160);
}
body.dark-mode .sidebar-menu a.nav-link {
  color: rgb(176, 169, 159);
}
body.dark-mode .sidebar-menu a.nav-link.active {
  background-image: inherit;
  background-color: inherit;
  color: rgb(126, 177, 237);
}
body.dark-mode #faqsInfo h2,
body.dark-mode #faqsInfo .color-red {
  color: rgb(177, 170, 160);
}
body.dark-mode #faqsInfo h2 a,
body.dark-mode #faqsInfo .color-red a {
  color: rgb(177, 170, 160) !important;
}
body.dark-mode .banner-product-page .pure-title {
  color: #14328c !important;
}
body.dark-mode .banner-product-page p {
  color: #000 !important;
}
body.dark-mode .title-teaser-2, body.dark-mode .color-dark-blue {
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .btn-template-3 {
  border-width: initial;
  border-style: none;
  border-color: initial;
  text-decoration-color: initial;
  background-image: none !important;
  background-color: initial !important;
  color: rgb(126, 177, 237) !important;
}
body.dark-mode .product-card h1, body.dark-mode .product-card h2, body.dark-mode .product-card h3, body.dark-mode .product-card h4, body.dark-mode .product-card h5, body.dark-mode .product-card h6 {
  color: #c7c2bb;
}
body.dark-mode .btn-product-variant {
  border-color: rgb(26, 65, 181);
  color: rgb(126, 177, 237);
}
body.dark-mode .btn-template-9 {
  color: rgb(127, 176, 236);
  text-decoration-color: initial;
  border-bottom-color: transparent;
}
body.dark-mode .content-show-more .table-content-show-more td {
  border-color: rgb(140, 130, 115);
}
body.dark-mode .table, body.dark-mode small {
  color: rgb(209, 205, 199);
}
body.dark-mode button.dropdown-toggle {
  background: rgb(24, 26, 27) !important;
  color: rgb(127, 176, 236) !important;
}
body.dark-mode #collapseExample .card {
  background: rgb(24, 26, 27) !important;
}
body.dark-mode .btn-5 {
  background-color: rgba(96, 104, 108, 0.12);
  color: rgb(232, 230, 227);
  border-color: transparent !important;
}
body.dark-mode .btn-5:hover, body.dark-mode .btn-5.active {
  background-color: rgba(96, 104, 108, 0.12);
  border-color: rgb(26, 65, 181) !important;
  color: rgb(126, 177, 237) !important;
}

body.light-mode .menu {
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
body.light-mode .menu .nav:not(.nav-mobile) .nav-item .nav-link {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

@media screen and (max-width: 991px) {
  p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}

.article-card-mobile a {
  width: 100%;
}
.article-card-mobile .articleTitle * {
  font-weight: 700;
  color: #14328c;
  line-height: 1.2;
  margin-bottom: 0 !important;
}
.article-card-mobile .articleImage img {
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#categoryModal .modal-content {
  border: none;
  border-radius: 0.3rem !important;
}
#categoryModal .modal-header {
  background-color: #15328c;
}
#categoryModal .modal-header .close {
  color: white;
}
#categoryModal .listCategory .custom-radio {
  margin-bottom: 0.5rem;
}
#categoryModal .listCategory .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #15328c;
  background-color: #15328c;
}
#categoryModal .listCategory .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
}

.articleHeader .cImg img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .articleHeader .cImg img {
    height: 180px;
  }
}

.articleHeading h1, .articleHeading h2, .articleHeading h3, .articleHeading h4, .articleHeading h5, .articleHeading h6 {
  color: #14328c;
  font-weight: bold;
  line-height: 1.1;
  font-size: 22px !important;
  margin-bottom: 10px !important;
}
@media screen and (max-width: 991px) {
  .articleHeading h1, .articleHeading h2, .articleHeading h3, .articleHeading h4, .articleHeading h5, .articleHeading h6 {
    font-size: 25px !important;
  }
}

.contentHeadline {
  text-align: center;
}
.contentHeadline h1, .contentHeadline h2, .contentHeadline h3, .contentHeadline h4, .contentHeadline h5, .contentHeadline h6 {
  color: #14328c;
}

.socialMediaMobile .social-icon {
  margin-right: 10px;
}
.socialMediaMobile .bg-hover-facebook {
  background: #4267B2;
}
.socialMediaMobile .bg-hover-pinterest {
  background-color: #c22026 !important;
}
.socialMediaMobile .bg-hover-twitter {
  background-color: #1DA1F2 !important;
}
.socialMediaMobile .bg-hover-envelope {
  background-color: #595959 !important;
}
.socialMediaMobile .bg-hover-envelope i {
  color: white !important;
}

@media screen and (max-width: 991px) {
  .cSliderProductSuggest .slick-prev {
    left: -10px !important;
  }
  .cSliderProductSuggest .slick-next {
    right: -10px !important;
  }
  .cSliderProductSuggest .slick-prev:before {
    font-size: 24px !important;
  }
  .cSliderProductSuggest .slick-next:before {
    font-size: 24px !important;
  }
}
.cSliderProductSuggest .slick-prev:before, .cSliderProductSuggest .slick-next:before {
  color: #14328c !important;
}

@media screen and (max-width: 991px) {
  .bannerProductSection {
    display: none;
  }
}
.bannerProductSection .cImgProductBannerDesktop {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerProductSection .description {
  font-size: 15px;
  line-height: 1.2;
}
.bannerProductSection .btn {
  padding: 5px 20px !important;
}

.bannerProductPage {
  position: relative;
  background-color: white;
}
@media screen and (min-width: 992px) {
  .bannerProductPage {
    display: none;
  }
}
.bannerProductPage.pinned {
  position: fixed;
  left: 0;
  bottom: 0px;
  z-index: 500;
  width: 100%;
}
.bannerProductPage .cImgProductBanner {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .bannerProductPage .cImgProductBanner {
    width: 100px;
  }
}
@media screen and (max-width: 991px) {
  .bannerProductPage .cTitle {
    font-size: 22px !important;
    line-height: 1.2;
  }
}
.bannerProductPage .description {
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .bannerProductPage .description {
    display: none;
  }
}
.bannerProductPage .linkTest {
  font-size: 14px;
  font-weight: bold;
  color: #14328c;
  text-decoration: underline;
}
.bannerProductPage .linkTest:hover, .bannerProductPage .linkTest:focus {
  color: #14328c;
  text-decoration: none;
}

.tabs_to_search a.nav-link {
  color: #15328c !important;
}
.tabs_to_search .nav-link.active {
  color: #495057 !important;
}

.search_result h5 {
  color: #15328c !important;
}

.pager__item a {
  color: #595959 !important;
}

.search-box-wrapper .nav-search {
  color: #15328c !important;
}

.search-box-wrapper .searchDP {
  color: #15328c !important;
}

.small a {
  color: inherit !important;
  text-decoration: underline;
}
.small .btn-link {
  color: #000 !important;
}