html {
  height: 100%;
}
body {
  min-height: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
}
body{
  margin-top: 209px;
  @media (max-width: 991px) {
    margin-top: 73px;
  }
}
.zoning {
  cursor: pointer;
}
.bloc-container {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .bloc-container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .bloc-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .bloc-container {
    width: 1170px;
  }
}
strong,
b {
  font-family: myriad-pro-bold, Arial, sans-serif;
  font-weight: normal;
}
.container {
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1025;
  background: #fff;
  transition: height 0.3s ease;
  &.open-menu {
    z-index: 1050;
  }
  .bloc-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: padding 0.3s ease;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #CCB994;
    z-index: 1020;
    @media (min-width: 992px) {
      z-index: auto;
      padding-top: 40px;
      &:after,
      &:before {
        content: "";
        position: absolute;
        width: 2000px;
        top: 0;
        bottom: 0;
        height: calc(100% + 1px);
        z-index: 5;
        background: #ffffff;
        border-bottom: 1px solid #ccb994;
      }
      &:before {
        right: 100%;
        left: auto;
      }
      &:after {
        left: 100%;
      }
    }
    > a {
      margin: 0 auto;
    }
  }
  .big-logo {
    transition: height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
    @media (max-width: 991px) {
      display: none;
    }
  }
  .small-logo {
    @media (min-width: 992px) {
      transform-origin: left center;
      transform: scale(0);
      opacity: 0;
      display: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
  }
  .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 10px 20px;
    width: 100%;
    position: relative;
    @media (min-width: 992px) {
      padding: 32px 0 11px;
      align-self: stretch;
    }
    div[class^='part-'] {
      display: flex;
      flex-direction: row;
      gap: 32px;
      align-items: center;
    }
    div.part-right {
      gap: 20px;
      @media (min-width: 992px) {
        gap: 24px;
      }
    }
    @media (max-width: 991px) {
      div.part-left {
        display: none;
        &.open {
          position: absolute;
          top: 72px;
          left: 0;
          right: 0;
          background: #fff;
          width: 100% !important;
          display: flex;
          flex-direction: column;
          align-items: stretch;
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);

          height: auto;
          min-height: fit-content;
          overflow: visible;
          .main {
            display: flex;
            flex-direction: column;
            width: 100%;
            ul {
              flex-direction: column;
              width: 100%;
            }
          }
        }
      }
    }
    .main {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-self: stretch;
      ul#menu-menu-generique-ti {
        display: flex;
        height: 40px;
        align-items: center;
        gap: 24px;
        margin: 0;
        padding: 0;
        @media (max-width: 991px) {
          max-height: calc(100dvh - 72px);
          flex-direction: column;
          align-items: stretch;
          height: auto;
          gap: 0;
        }
        > li {
          display: flex;
          padding: 0;
          align-items: center;
          gap: 4px;
          align-self: stretch;
          position: static;
          @media (max-width: 991px) {
            min-height: 40px;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 4px;
            border-top: 1px solid #CCB994;
            &:first-child {
              border-top: none;
            }
          }
          > a,
          > span {
            text-decoration: none;
            color: #000;
            font-family: myriad-pro-semi-bold, Arial, sans-serif;
            font-size: 16px;
            font-style: normal;
            line-height: normal;
            padding: 16px 16px 16px 20px;
            width: calc(100% - 50px);
            position: relative;
            height: 100%;
            display: flex;
            gap: 8px;
            align-items: center;
            text-wrap: nowrap;
            cursor: pointer;
            @media (min-width: 992px) {
              font-size: 14px;
              padding: 0;
              width: auto;
            }
            span:not(.icon-logo) {
              font-family: myriad-pro, Arial, sans-serif;
              font-size: 9px;
              font-style: normal;
              line-height: 125%;
              letter-spacing: 1.08px;
              text-transform: uppercase;
              position: relative;
              top: 2px;
              color: #4D5356;
            }
            &:hover {
              span:not(.icon-logo) {
                color: #4D5356;
              }
            }
          }
          &:hover,
          &.bg-active {
            > a {
              color: #000!important;
              @media (min-width: 992px) {
                &:before {
                  content: "";
                  display: block;
                  width: 60px;
                  height: 4px;
                  background-color: #000000;
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  right: 0;
                  margin: 0 auto;
                }
              }
            }
          }
          div[id^="sous-menu-"] {
            position: absolute;
            top: 82%;
            left: 0;
            right: 0;
            z-index: 1020;
            display: none;
            border-radius: 20px;
            background: #FFF;
            max-height: 0;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25);
            @media (max-width: 991px) {
              position: relative;
              box-shadow: none;
              width: 100%;
              padding: 0 0 0 20px;
              height: calc(100dvh - 208px);
              overflow-y: auto;
            }
            > div:first-child {
              border-radius: 20px 0 0 20px;
            }
            > div:last-child {
              border-radius: 0 20px 20px 0;
            }
            .big-title {
              color: #000;
              font-family: "Patua One", Arial, sans-serif;
              font-size: 24px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              margin: 0;
            }
            .top {
              display: none;
              padding: 32px 40px;
              align-items: flex-start;
              flex-direction: row;
              gap: 12px;
              align-self: stretch;
              @media (min-width: 992px) {
                display: flex;
              }
              > div {
                margin-right: 50px;
                display: flex;
                flex-direction: column;
                gap: 12px;
              }
              .accroche {
                color: #000;
                font-family: myriad-pro, Arial, sans-serif;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 125%;
                margin: 0;
                text-align: left;
              }
              .button {
                text-wrap: nowrap;
                display: flex;
                height: 40px;
                padding: 0 20px;
                justify-content: center;
                align-items: center;
                gap: 12px;
                border-radius: 100px;
                border: 1.5px solid #000000;
                background: #000;
                span {
                  overflow: hidden;
                  color: #FFF;
                  text-overflow: ellipsis;
                  font-family: myriad-pro-semi-bold, Arial, sans-serif;
                  font-size: 14px;
                  font-style: normal;
                  line-height: normal;
                }
                &:hover {
                  background: #ffffff;
                  span {
                    color: #000000;
                  }
                }
              }
            }
          }
          &.has-menu {
            @media (max-width: 991px) {
              position: relative;
              &:after {
                font-family: "Font Awesome 6 Pro";
                font-weight: 900;
                content: "\f078";
                display: inline-block;
                color: #000000;
                position: absolute;
                top: 18px;
                right: 16px;
              }
            }
            @media (min-width: 992px) {
              > a {
                justify-content: space-between;
                &:after {
                  font-family: "Font Awesome 6 Pro";
                  font-weight: 900;
                  content: "\f078";
                  display: inline-block;
                  color: #000000;
                }
              }
            }
            &.is-open {
              @media (max-width: 991px) {
                &:after {
                  content: "\f077";
                }
                div[id^="sous-menu-"] {
                  display: flex;
                  max-height: calc(100dvh - 293px);
                  opacity: 1;
                }
              }
            }
            &:hover {
              @media (min-width: 992px) {
                > a {
                  &:after {
                    content: "\f077";
                  }
                }
                div[id^="sous-menu-"] {
                  display: flex;
                  max-height: 1000px;
                  opacity: 1;
                }
              }
            }
          }

          #sous-menu-ressources-documentaires {
            @media (min-width: 992px) {
              padding-bottom: 40px;
            }
            flex-direction: column;
            align-items: center;
            gap: 24px;
            max-width: 716px;
            .top {
              background: #F5EEE0;
              border-radius: 20px 20px 0 0;
              .accroche {
                .underline {
                  box-shadow: none;
                }
              }
            }
            .title-domaines {
              display: none;
              padding: 8px 0 0 0;
              margin: 0 40px 0 40px;
              flex-direction: column;
              gap: 8px;
              align-self: stretch;
              justify-content: space-between;
              align-items: baseline;
              border-bottom: 1px solid rgba(0, 0, 0, 0.25);
              @media (min-width: 992px) {
                display: flex;
              }
              span {
                color: #000;
                font-family: myriad-pro, Arial, sans-serif;
                font-size: 24px;
                font-style: normal;
                line-height: 125%;
              }
            }
            .listing-domaines {
              display: flex;
              padding: 0;
              align-items: flex-start;
              align-self: stretch;
              gap: 8px;
              flex-direction: column;
              @media (min-width: 992px) {
                padding: 0 40px;
                gap: 30px;
                flex-direction: row;
              }
              ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                flex: 1 0 0;
                a {
                  color: #000;
                  font-family: myriad-pro, Arial, sans-serif;
                  font-size: 18px;
                  font-style: normal;
                  line-height: 125%;
                  text-decoration: none;
                  &:hover {
                    text-decoration: underline;
                  }
                  span {
                    color: #000;
                  }
                }
              }
            }
          }
          #sous-menu-magazine-actualite {
            align-items: flex-start;
            max-width: 1087px;
            > div:first-child {
              width: 100%;
              @media (min-width: 992px) {
                max-width: 617px;
              }
            }
            .listing-thematiques-actu {
              display: flex;
              align-items: flex-start;
              gap: 8px;
              align-self: stretch;
              flex-direction: column;
              @media (min-width: 992px) {
                gap: 30px;
                padding: 0 40px 40px 40px;
                flex-direction: row;
              }
              ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                flex: 1 0 0;
                a {
                  color: #000;
                  font-family: myriad-pro, Arial, sans-serif;
                  font-size: 18px;
                  font-style: normal;
                  line-height: 125%;
                  &:hover {
                    text-decoration: underline;
                  }
                }
              }
            }
            .listing-articles-une {
              display: none;
              width: 470px;
              padding: 32px 24px 32px 28px;
              flex-direction: column;
              align-items: flex-start;
              gap: 8px;
              align-self: stretch;
              background: #F5EEE0;
              @media (min-width: 992px) {
                display: flex;
              }
              .big-title {
                padding-left: 12px;
              }
              .blog-thumb {
                display: flex;
                padding: 12px 16px 12px 12px;
                align-items: flex-start;
                gap: 12px;
                align-self: stretch;
                border-radius: 8px;
                &:hover {
                  background: #ffffff;
                }
                &-img {
                  width: 88px;
                  height: 88px;
                  overflow: hidden;
                  img {
                    height: 100%;
                    width: 100%;
                    border-radius: 4px;
                  }
                }
                &-desc {
                  display: flex;
                  flex-direction: column;
                  align-items: flex-start;
                  gap: 8px;
                  flex: 1 0 0;
                  align-self: stretch;
                  span {
                    overflow: hidden;
                    color: #000;
                    text-overflow: ellipsis;
                    font-family: myriad-pro, Arial, sans-serif;
                    font-size: 14px;
                    font-style: normal;
                    line-height: 125%;
                  }
                  a {
                    overflow: hidden;
                    color: rgba(0, 0, 0, 0.80);
                    text-overflow: ellipsis;
                    font-family: myriad-pro-semi-bold, Arial, sans-serif;
                    font-size: 18px;
                    font-style: normal;
                    line-height: 150%;
                  }
                }
              }
            }
            .others-links {
              display: flex;
              align-items: flex-start;
              align-self: stretch;
              margin: 10px 0;
              border-top: 1px solid rgba(0, 0, 0, .25);
              flex-direction: column;
              width: 100%;
              @media (min-width: 992px) {
                width: auto;
                gap: 30px;
                padding: 40px 0;
                margin: 0 40px;
                flex-direction: row;
              }
              a {
                display: flex;
                align-items: center;
                gap: 12px;
                flex: 1 0 0;
                @media (max-width: 991px) {
                  padding: 8px 0;
                }
                span {
                  display: flex;
                  padding-top: 2px;
                  justify-content: center;
                  align-items: center;
                  gap: 10px;
                  flex: 1 0 0;
                  color: #000;
                  font-family: myriad-pro-semi-bold, Arial, sans-serif;
                  font-size: 14px;
                  font-style: normal;
                  line-height: 125%;
                  @media (max-width: 991px) {
                    font-family: myriad-pro, Arial, sans-serif;
                    font-size: 18px;
                    justify-content: flex-start;
                    br {
                      display: none;
                    }
                  }
                }
                &:hover {
                  text-decoration: underline;
                }
              }
            }
          }
          &.contenu-gratuit,
          &.contenus-gratuits {
            a:after {
              content: url("../images/zigouigoui-menu-header-TLEmF7U.png");
              @media (min-width: 992px) {
                position: absolute;
                top: 6px;
                right: -22px;
              }
            }
          }
        }
      }
      div[id^="sous-menu-"] {
        display: none;
      }
    }
    .open-search-button,
    .close-search-button {
      display: flex;
      width: 40px;
      padding: 12px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 100px;
      cursor: pointer;
      z-index: 1001;
      position: relative;
      i {
        font-size: 24px;
        color: #000;
      }
      @media (min-width: 992px) {
        background: #FFD104;
        i {
          font-size: 16px;
        }
      }
    }
    .close-search-button {
      display: none;
    }
    .open-menu-button {
      display: flex;
      width: 40px;
      padding: 12px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 100px;
      cursor: pointer;
      z-index: 1001;
      position: relative;
      i {
        font-size: 24px;
        color: #000;
      }
      @media (min-width: 992px) {
        display: none;
      }
    }
    .search-bloc {
      position: relative;
      display: flex;
      align-items: center;
      flex: 1;
      height: 52px;
      @media (min-width: 992px) {
        padding-right: 6px;
      }
      form {
        display: none;
        flex-shrink: 0;
        width: 0;
        opacity: 0;
        padding: 0 16px;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        margin-bottom: 0;
        input {
          all: unset;
          display: flex;
          align-items: center;
          flex: 1 0 0;
          padding-left: 12px;
          border: none!important;
          border-left: 1px solid #000!important;;
          color: #000 ;
          font-family: myriad-pro, Arial, sans-serif;
          font-size: 16px;
          font-style: normal;
          line-height: normal;
          background: none !important;
          @media (min-width: 992px) {
            font-size: 14px;
          }
          &::placeholder {
            color: rgba(0, 0, 0, 0.25);
          }
        }
        button {
          all: unset;
          display: flex;
          height: 32px;
          padding: 0 12px;
          align-items: center;
          border-radius: 4px;
          background: #000;
          cursor: pointer;
          span {
            color: #FFF;
            font-family: myriad-pro-semi-bold, Arial, sans-serif;
            font-size: 14px;
            font-style: normal;
            line-height: normal;
            text-transform: uppercase;
          }
        }
      }
      &.open {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: static;
        @media (min-width: 992px) {
          border-radius: 100px;
          background: #F8F4EE;
        }
        .open-search-button {
          display: none;
        }
        .close-search-button {
          display: flex;
        }
        form {
          opacity: 1;
          width: 100%;
          @media (max-width: 991px) {
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            background: #fff;
            width: 100%!important;
            display: flex;
            min-height: 44px;
            align-items: center;
            align-self: stretch;
            padding: 24px 20px;
            box-shadow: 0 0 16px 0 rgba(0, 0, 0, .25);
          }
        }
      }
    }
    .nav-link {
      color: #000000;
      font-family: myriad-pro-bold, Arial, sans-serif;
      font-size: 12px;
      font-style: normal;
      line-height: 15px;
      &:after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
      }
      &.show {
        color: #000000;
      }
      + ul {
        left: -1rem;
        border: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background: rgb(238, 238, 239);
        li {
          color: #000000;
          font-family: myriad-pro-bold, Arial, sans-serif;
          font-size: 12px;
          font-style: normal;
          line-height: 15px;
        }
      }
    }
  }
  &.collapsed {
    .navigation {
      .main {
        ul#menu-menu-generique-ti {
          >li {
            div[id^=sous-menu-] {
              top: 78%
            }
          }
        }
      }
    }
  }
}
.ui-autocomplete {
  background: #f8f4ee;
  box-shadow: 0 24px 12px rgba(0, 0, 0, .175) !important;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: none;
  padding: 15px 0!important;
  display: flex;
  flex-direction: column;
  @media (max-width: 991px) {
    background: #ffffff;
    width: calc(100vw - 15px) !important;
    left: 0 !important;
  }
  li.ui-menu-item {
    color: #000!important;
    font-family: myriad-pro, Arial, sans-serif;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    padding: 3px 15px;
    font-size: 14px;
    @media (max-width: 991px) {
      padding: 3px 15px 3px 33px;
    }
    &.ui-state-focus,
    &.ui-state-hover,
    &.ui-state-active {
      background: #E3D1AD!important;
    }
  }
}
footer {
  .bloc-top {
    display: flex;
    padding: 56px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.25) 100%), #575757;
    @media (min-width: 992px) {
      padding: 56px 0;
    }
    > div {
      display: flex;
      max-width: 1170px;
      align-items: flex-start;
      gap: 30px;
      flex-direction: column;
      @media (min-width: 992px) {
        flex-direction: row;
      }
    }
    img {
      margin-right: 90px;
      + div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
        flex: 1 0 0;
        @media (min-width: 992px) {
          padding-left: 16px;
        }
        .title {
          color: #fff;
          font-family: "Patua One", Arial, sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 125%;
          margin: 0;
          @media (min-width: 992px) {
            font-size: 24px;
          }
        }
        .hook {
          color: #fff;
          font-family: myriad-pro, Arial, sans-serif;
          font-size: 16px;
          font-style: normal;
          line-height: 150%;
          margin: 0;
          text-align: left;
          @media (min-width: 992px) {
            font-size: 18px;
          }
        }
      }
    }
  }
  .bloc-middle {
    display: flex;
    padding: 64px 16px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: #f8f4ee;
    @media (min-width: 992px) {
      padding: 80px 0;
    }
    > div {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      align-self: stretch;
      justify-content: space-between;
      flex-direction: column;
      @media (min-width: 992px) {
        flex-direction: row;
      }
      &.bloc-links {
        > div {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 40px;
          @media (min-width: 992px) {
            width: 30%;
            &:first-child {
              width: 60%;
              > div {
                width: 100%;
                > div {
                  display: flex;
                  flex-direction: row;
                  width: 100%;
                  ul {
                    width: 50%;
                  }
                }
              }
            }
          }
        }
      }
      &.bloc-domaines {
        > div {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 24px;
          align-self: stretch;
          .title {
            margin-bottom: 0;
          }
          > div {
            display: flex;
            justify-content: center;
            align-items: center;
            align-content: center;
            gap: 12px;
            align-self: stretch;
            flex-wrap: wrap;
            a {
              display: flex;
              padding: 4px 12px;
              align-items: center;
              gap: 6px;
              border-radius: 100px;
              background: #FFF;
              span {
                color: #000;
                font-family: myriad-pro-semi-bold, Arial, sans-serif;
                font-size: 16px;
                font-style: normal;
                line-height: 125%;
                @media (min-width: 992px) {
                  font-size: 14px;
                }
              }
              &:hover {
                background: #6f5531;
                span {
                  color: #fff;
                }
              }
            }
          }
        }
      }
      .title {
        color: #000;
        font-family: "Patua One", Arial, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 125%;
        margin: 0 0 16px 0;
        text-align: left;
        @media (min-width: 992px) {
          font-size: 24px;
        }
        + p {
          color: #000;
          font-family: myriad-pro, Arial, sans-serif;
          font-size: 16px;
          font-style: normal;
          line-height: 150%;
          @media (min-width: 992px) {
            font-size: 18px;
          }
          a {
            color: #000;
            text-decoration: underline;
          }
        }
      }
      ul {
        margin: 0 0 20px 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
        li {
          list-style: none;
          position: relative;
          padding: 0 0 0 16px;
          &:before {
            content: "";
            position: absolute;
            top: 9px;
            left: 0;
            width: .45em;
            height: .45em;
            border-right: 1px solid currentColor;
            border-top: 1px solid currentColor;
            transform: rotate(45deg);
            color: #000;
          }
          a {
            color: #000;
            font-family: myriad-pro, Arial, sans-serif;
            font-size: 18px;
            font-style: normal;
            line-height: 150%;
            text-decoration: none;
            @media (min-width: 992px) {
              font-size: 16px;
            }
            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
      .social-icons {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0 0 16px 0;
      }
    }
  }
  .bloc-glossaire {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: center;
      gap: 24px;
      .title {
        margin-bottom: 0;
      }
      ul {
        display: flex;
        padding: 16px 24px;
        align-items: center;
        align-content: center;
        gap: 15px;
        flex-wrap: wrap;
        border-radius: 8px;
        background: #FFF;
        margin: 0;
        flex-direction: row;
        justify-content: center;
        @media (min-width: 992px) {
          padding: 4px 24px;
          border-radius: 100px;
          height: 26px;
        }
        li {
          padding: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 10px;
          &:before {
            display: none;
          }
          a {
            color: #000;
            text-align: center;
            font-family: myriad-pro-semi-bold, Arial, sans-serif;
            font-size: 16px;
            font-style: normal;
            line-height: 125%;
            text-transform: uppercase;
            @media (min-width: 992px) {
              font-size: 14px;
            }
          }
        }
      }
    }
  }
  .bloc-bottom {
    display: flex;
    padding: 24px 0;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    background: #000;
    > div {
      display: flex;
      justify-content: center;
      align-items: center;
      align-content: center;
      gap: 13px;
      align-self: stretch;
      flex-wrap: wrap;
      * {
        color: #FFF;
      }
      a {
        display: flex;
        padding-top: 2px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        span {
          color: #FFF;
          text-align: center;
          font-family: myriad-pro-semi-bold, Arial, sans-serif;
          font-size: 14px;
          font-style: normal;
          line-height: 125%;
          text-transform: uppercase;
        }
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
  .bloc-reassurance {
    display: flex;
    padding: 56px 0 80px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.25) 100%), #575757;
    > div {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      flex-direction: column;
      @media (min-width: 992px) {
        flex-direction: row;
      }
      > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        flex: 1 0 0;
        align-self: stretch;
        @media (min-width: 992px) {
          width: 30%;
        }
        p {
          margin: 0;
          color: #FFF;
          text-align: center;
          font-family: myriad-pro-semi-bold, Arial, sans-serif;
          font-size: 18px;
          font-style: normal;
          line-height: 150%;
          text-transform: uppercase;
          i {
            color: #ffffff;
            font-size: 60px;
          }
        }
      }
    }
  }
}
#abo-header {
  all: unset;
  color: #000;
  font-family: myriad-pro-semi-bold, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
  #login {
    @media (min-width: 992px) {
      padding: 0 12px 0 16px;
    }
    span {
      text-transform: capitalize;
      padding-right: 10px !important;
      &:after {
        font-family: "Font Awesome 6 Pro";
        font-weight: 900;
        content: "\f107";
        position: relative;
        right: -8px;
        font-size: 12px;
      }
    }
  }
  a {
    * {
      color: #000000;
    }
    @media (max-width: 991px) {
      display: none;
    }
  }
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.70);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  z-index: 1010;
  pointer-events: auto;
  &.visible {
    display: block;
  }
}
#login {
  .desktop {
    display: none;
    @media (min-width: 992px) {
      display: block;
    }
  }
  .mobile {
    display: block;
    @media (min-width: 992px) {
      display: none;
    }
  }
  display: flex;
  height: 40px;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  background: #ffffff;
  border: none;
  padding: 0;
  @media (min-width: 992px) {
    padding: 0 20px;
    border: 2px solid #000;
  }
  span {
    overflow: hidden;
    color: #000000;
    //text-overflow: ellipsis;
    font-family: myriad-pro-semi-bold, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    text-wrap: nowrap;
  }
  i {
    font-size: 24px;
    color: #000;
  }
}
#login-box {
  display: none;
  z-index: 3000;
}
.login-box-not-connected {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 370px;
  flex-direction: column;
  align-items: center;
  border-radius: 32px;
  overflow: hidden;
  background: #EAD8EF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.20);
  text-align: center;
  @media (max-width: 991px) {
    top: 72px;
    position: absolute;
    transform: unset;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .25);
  }
  .login-box-close {
    text-align: right;
    .cross-close {
      display: inline-block;
      cursor: pointer;
      padding-top: 15px;
      padding-right: 15px;
    }
  }
  .login-box-title {
    color: #000;
    text-align: center;
    font-family: myriad-pro-semi-bold, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    line-height: 125%;
  }
  .login-box-connection {
    iframe {
      border: none;
      margin-top: 24px;
      margin-bottom: 24px;
    }
  }
  .login-box-inscription {
    display: flex;
    padding: 40px 32px 40px 32px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    background: #FFF;
    p {
      color: #000;
      text-align: center;
      font-family: myriad-pro, Arial, sans-serif;
      font-size: 18px;
      font-style: normal;
      line-height: 125%;
      margin-bottom: 0;
      + p {
        color: #000;
        text-align: center;
        font-family: "Patua One", Arial, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 125%;
      }
    }
  }
}
.login-box-connected {
  position: absolute;
  right: 128px;
  top: 37px;
  display: flex;
  width: 250px;
  padding: 10px 12px 10px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  background: #FFF;
  @media (max-width: 991px) {
    top: 72px;
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .25);
    height: auto;
    min-height: fit-content;
    overflow: visible;
  }
  section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 8px;
    .cross-close {
      position: absolute;
      top: 5px;
      right: 15px;
      cursor: pointer;
      @media (max-width: 991px) {
        display: none;
      }
    }
    p, a, span {
      margin-bottom: 0;
      display: flex;
      padding: 8px 0;
      flex-direction: column;
      align-items: flex-start;
      align-self: stretch;
      color: #000;
      font-size: 16px;
      font-style: normal;
      line-height: normal;
    }
    p {
      font-family: myriad-pro-semi-bold, Arial, sans-serif;
    }
    hr {
      border: 0;
      border-top: 1px solid #eee;
      align-self: stretch;
      margin: 0;
      opacity: 1;
    }
    a, span {
      font-family: myriad-pro, Arial, sans-serif;
      text-decoration: none;
      &:hover {
        color: #7F0EA5!important;
        text-decoration: underline;
        cursor: pointer;
      }
    }
    + section {
      margin-top: 16px;
    }
  }
  .deconnection-link {
    a {
      color: #000;
      text-align: center;
      font-family: myriad-pro-semi-bold, Arial, sans-serif;
      font-size: 14px;
      font-style: normal;
      line-height: normal;
      padding: 0;
      text-decoration: underline;
      &:hover {
        text-decoration: none;
        cursor: pointer;
        color: #7F0EA5;
      }
      @media (min-width: 992px) {
        text-align: center;
      }
    }
  }
  .name-box {
    margin-top: 17px;
    span {
      font-family: myriad-pro-semi-bold, Arial, sans-serif;
      display: flex;
      padding: 8px 0;
      flex-direction: column;
      align-items: flex-start;
      align-self: stretch;
      color: #000;
      font-size: 16px;
      font-style: normal;
      line-height: normal;
      &:hover {
        color: #000!important;
        text-decoration: none;
      }
    }
  }
}
.button-yellow {
  display: flex;
  height: 40px;
  padding: 0 20px;
  align-items: center;
  border-radius: 100px;
  background: #ffd104;
  text-decoration: none;
  span {
    color: #000000;
    font-family: myriad-pro-semi-bold, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
  }
}

.social-share-url {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-family: myriad-pro, Arial, sans-serif;
  padding: 0;
  width: 100%;
  gap: 10px;
  @media (max-width: 768px) {
    padding-right: 20px;
  }
  &[disabled],
  &[disabled]:hover,
  &:hover {
    border: none!important;
    background: none!important;
  }
  &[disabled],
  &[disabled]:hover {
    cursor: none!important;
  }
  .icon-container {
    align-items: center;
    background-color: transparent;
    border: 1.5px solid #000000;
    border-radius: 25rem;
    display: flex;
    height: 35px;
    justify-content: center;
    width: 35px;
  }
  .icon-link {
    all: unset;
    background-image: url("../images/picto-link-share-7K7o4oL.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 14px;
    width: 18px;
  }
  .icon-link-success {
    background-image: url("../images/picto-check-share-HVCQGPW.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 16px;
    width: 16px;
  }
  .link-title {
    all: unset;
    color: #000;
    font-family: myriad-pro, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 125%;
    letter-spacing: 0.28px;
    @media (max-width: 768px) {
      display: none;
    }
  }
  &:hover {
    .link-title {
      text-decoration: underline;
    }
  }
}

#rlm-floatbar-close {
  @media (max-width: 1165px) {
    right: calc(50% - 15px)!important;
  }
}

@media (max-width: 430px) {
  #chatbot.sticky {
    bottom: 10px!important;
  }
}

#app {
  position: relative;
}

#ip-notice {
  background: #943CAF;
  padding: 15px;
  div {
    display: flex;
    gap: 20px;
    * {
      color: #ffffff;
    }
    span {
      span {
        text-decoration: underline;
      }
    }
    @media (max-width: 767px) {
      img {
        display: none;
      }
    }
  }
}