/**
*********************
* Header area; should have styles for branding regions, navigation region, etc.
********************
**/
/**
*********************
* Import all the settings
********************
**/
/**
*********************
* Colors
********************
**/
/* Brand Colors */
/** Add any additional color supplied in the style guide **/
/* Grayscale colors */
/* Accent colors. Primarily used for buttons */
/** Button & Link colors **/
/* Third party brand colors */
/* Drupal Messages */
/**
*********************
* Import all the settings
********************
**/
/**
*********************
* Variables
********************
**/
/* Typography */
/* Transitions */
/* Container & spacings */
/** Button spacing **/
/* Border */
/* Breakpoints */
/**
*********************
* Import all the settings
********************
**/
/**
*********************
* Breakpoint mixin
********************
**/
.header {
  position: relative;
  z-index: 1;
  max-height: 4.1875rem;
  border-top: 0.375rem solid #0b2269;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 61.9375rem) {
  .header {
    z-index: 100;
  }
}
@media only screen and (min-width: 62rem) {
  .header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 5.375rem;
    border-top: 0.5625rem solid #0b2269;
  }
}
.header__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 85.375rem;
  margin: 0 auto;
}
@media only screen and (min-width: 62rem) {
  .header__container {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 1.25rem;
  }
}
.header__sec-logo {
  position: absolute;
  top: 1.3125rem;
  right: 1rem;
  width: 4.75rem;
}
@media only screen and (min-width: 62rem) {
  .header__sec-logo {
    position: relative;
    top: unset;
    right: unset;
    width: 7.75rem;
    padding-top: 1.5rem;
  }
}
.header__menu-icon {
  position: absolute;
  top: 1.4375rem;
  left: 1.25rem;
  display: block;
  width: 1.875rem;
  height: 1.0625rem;
  background-image: url("/themes/custom/drl_nicotinell_fr/assets/media/icons/menu_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-open .header__menu-icon {
  background-image: url("/themes/custom/drl_nicotinell_fr/assets/media/icons/menu_icon_close.png");
}
@media only screen and (min-width: 62rem) {
  .header__menu-icon {
    display: none;
  }
}

.disable-absolute-header .header {
  position: relative;
}

.site-branding__logo-link img {
  display: block;
  max-width: 8.125rem;
}
@media only screen and (min-width: 62rem) {
  .site-branding__logo-link img {
    max-width: unset;
  }
}

.main-nav {
  position: absolute;
  top: 3.875rem;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 200ms;
  background-color: #fff;
}
.nav-open .main-nav {
  overflow: unset;
  height: auto;
  border-top: 0.1875rem solid #dedede;
  border-bottom: 0.3125rem solid #0b2269;
  box-shadow: 0 5px 3px 0 rgb(194, 194, 194);
}
@media only screen and (min-width: 62rem) {
  .main-nav {
    position: relative;
    top: unset;
    left: unset;
    overflow: unset;
    width: auto;
    height: auto;
    border-bottom: unset;
    background-color: unset;
    box-shadow: unset;
  }
}
.main-nav .menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 62rem) {
  .main-nav .menu {
    gap: 1rem;
    flex-direction: row;
  }
}
@media only screen and (min-width: 75rem) {
  .main-nav .menu {
    gap: 3.75rem;
  }
}
.main-nav a {
  display: block;
  padding: 1.125rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #3c4e87;
  border-left: #dedede 0.5625rem solid;
  font-size: 1.25rem;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a.is-active {
  text-decoration: none;
  border-color: #63A8DF;
  background-color: #e1ebf4;
}
@media only screen and (min-width: 62rem) {
  .main-nav a:hover, .main-nav a.is-active {
    background-color: unset;
  }
}
@media only screen and (min-width: 62rem) {
  .main-nav a {
    margin-top: -0.5625rem;
    padding: 1.875rem 0 1.5625rem;
    text-align: unset;
    border-top: #0b2269 0.5625rem solid;
    border-left: unset;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 75rem) {
  .main-nav a {
    font-size: 1.0625rem;
  }
}

/**
*********************
* Main content area
********************
**/
.container {
  max-width: 61.875rem;
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.text-small {
  font-size: 0.625rem;
  line-height: 1.4375rem;
}

ul.list-variation-1 {
  padding-left: 0;
}
ul.list-variation-1 > li {
  margin-bottom: 0.625rem;
  list-style: none;
}
@media only screen and (min-width: 62rem) {
  ul.list-variation-1 > li {
    margin-bottom: 0.9375rem;
  }
}
ul.list-variation-1 > li > a {
  color: #144986 !important;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 62rem) {
  ul.list-variation-1 > li > a {
    font-size: 1.5rem;
  }
}
ul.list-variation-1 ul {
  margin-left: 3.125rem;
  padding-left: 0;
}
@media only screen and (min-width: 62rem) {
  ul.list-variation-1 ul {
    margin-top: 0.3125rem;
  }
}

.font--weight {
  font-weight: 400;
}

.font--small {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.375rem;
}

.font--large {
  font-size: 1.1875rem !important;
  line-height: 1.375rem !important;
}

.font-weight-normal {
  font-weight: 400;
}

sup {
  position: relative;
  top: -5px;
  vertical-align: baseline;
  font-size: 65%;
  line-height: 0;
}

.footer {
  border-bottom: #dedede solid 0.5625rem;
  background-color: #f7f7f7;
}
.footer__mob-padding {
  height: 2.5rem;
  border-bottom: 1px solid #ccc;
}
@media only screen and (min-width: 48rem) {
  .footer__mob-padding {
    display: none;
  }
}
.footer__container {
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 48rem) {
  .footer__container {
    max-width: 96%;
  }
}
.footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 1.875rem 0.625rem;
  gap: 0.9375rem 1.875rem;
  list-style: none;
  border-bottom: 1px solid #e3e3e3;
}
@media only screen and (min-width: 75rem) {
  .footer .menu {
    padding: 2.375rem 0 1.75rem;
    gap: 1.875rem;
  }
}
.footer .menu a {
  color: #727070;
}
.footer .menu a:hover {
  text-decoration: none;
  color: #144986;
}
.footer .menu .cmp-revoke-consent {
  position: static;
  bottom: unset;
  left: unset;
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #727070;
  font-weight: 300;
  line-height: 0.75rem;
}
.footer .menu .cmp-revoke-consent:hover {
  text-decoration: none;
  color: #144986;
}
@media only screen and (min-width: 62rem) {
  .footer .menu .cmp-revoke-consent {
    line-height: inherit;
  }
}
.footer__disclaimer-text {
  padding: 2.5rem 0.9375rem;
  text-align: center;
  opacity: 0.6;
}
.footer__disclaimer-text p {
  font-size: 0.813rem;
  line-height: 1.2;
}
