@charset "UTF-8";
header {
  position: relative; }

/***** MENU BURGER *****/
/********* Icône Burger - Appareil mobile *********/
/* Contenant du bloc icône menu au coin supérieur droit */
#menuAnim {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  height: 66px;
  width: 66px;
  text-decoration: none;
  z-index: 4000;
  background-color: rgba(255, 255, 255, 0); }

@media screen and (max-width: 800px) {
  #menuAnim {
    display: block; } }

/* Ce style gère le filet centrale de l’icône menu */
#menuAnim .menuIcone {
  display: inline-block;
  position: absolute;
  left: 28px;
  top: 50%;
  bottom: auto;
  right: auto;
  width: 25px;
  height: 1.3px;
  transition-timing-function: ease-out;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #666;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }

/* Ce style gère les filets du bas et du haut de l’icône menu */
#menuAnim .menuIcone::before,
#menuAnim .menuIcone::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #666;
  right: 0;
  transition-timing-function: ease-in-out;
  -webkit-transition: -webkit-transform 0.7s, top 0.7s, background-color 0s;
  -moz-transition: -moz-transform 0.7s, top 0.7s, background-color 0s;
  -ms-transition: -ms-transform 0.7s, top 0.7s, background-color 0s;
  -o-transition: -o-transform 0.7s, top 0.7s, background-color 0s;
  transition: transform 0.7s, top 0.7s, background-color 0s; }

/* Distance entre le filet du haut et la ligne du centre */
#menuAnim .menuIcone::before {
  top: -6px; }

/* Distance entre le filet du bas et la ligne du centre */
#menuAnim .menuIcone::after {
  top: 6px; }

/* Rendre invisible le filet centrale de l’icône menu */
#menuAnim .menuIcone.is-clicked {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none; }

/* Assigner blanc aux deux barres haut et bas de l’icône menu */
#menuAnim .menuIcone.is-clicked::before,
#menuAnim .menuIcone.is-clicked::after {
  background-color: #666; }

/* Animation de rotation de le filet du haut sur clique */
#menuAnim .menuIcone.is-clicked::before {
  top: 0;
  transition-timing-function: ease-in-out;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg); }

/* Animation de rotation de le filet du bas sur clique */
#menuAnim .menuIcone.is-clicked::after {
  top: 0;
  transition-timing-function: ease-in-out;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg); }

/* icone sur hover */
#menuAnim:hover {
  cursor: pointer; }

/***** MENU DE NAVIGATION - Écran standard *****/
.correcteursSection + ul {
  display: block;
  width: 100%;
  background-color: antiquewhite; }

@media screen and (max-width: 800px) {
  .correcteursSection + ul {
    background-color: transparent; } }

.correcteursApplication + ul {
  display: flex;
  width: 100%;
  background-color: #d7eefa; }

@media screen and (max-width: 800px) {
  .correcteursApplication + ul {
    background-color: transparent; } }

/*** Conteneur principale du menu ***/
#logo {
  position: fixed;
  width: 190px;
  height: 100px;
  left: 0px;
  top: 0px;
  z-index: 2000;
  background-image: url(../images/iconesMenu/diagonal_logo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-position: 34px 34px;
  background-size: 103px 26px; }

@media screen and (max-width: 800px) {
  #logo {
    position: fixed;
    display: block;
    width: 100%;
    height: 60px;
    left: 0px;
    top: 0px;
    z-index: 2000;
    background-image: url(../images/iconesMenu/diagonal_logo.png);
    background-position: 18px 18px;
    background-repeat: no-repeat;
    background-size: 103px 26px;
    background-color: #f4f4f4; } }

#logo img {
  width: 190px;
  height: 100px; }

@media screen and (max-width: 800px) {
  #logo img {
    width: 190px;
    height: 60px; } }

/* 1.0 Div ID - Conteneur principal du menu */
#nav-wrap {
  margin: 0px;
  padding: 0;
  height: 100px;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  text-align: right; }

@media screen and (max-width: 800px) {
  #nav-wrap {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    position: absolute;
    left: 0px;
    top: -100%;
    z-index: 1000;
    visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -ms-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: all 0.5s ease-out; }
  #nav-wrap ul {
    display: block;
    position: relative;
    padding-inline-start: 0px;
    margin-block-start: 0em; } }

#nav-wrap.is-visible {
  text-decoration: none; }

@media screen and (max-width: 800px) {
  #nav-wrap.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    text-decoration: none; } }

.prolexisMenu {
  position: relative; }

.prolexisMenu::after {
  content: 'correcteur';
  color: #0074bc;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  font: 400 italic 0.8em/1.6em "Work Sans", Arial, Helvetica, sans-serif;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased; }

@media screen and (max-width: 800px) {
  .prolexisMenu::after {
    position: relative;
    width: 100%;
    text-align: left; } }

.myriadeMenu {
  position: relative; }

.myriadeMenu::after {
  content: 'dictionnaires';
  color: #0074bc;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: -14%;
  font: 400 italic 0.8em/1.6em "Work Sans", Arial, Helvetica, sans-serif;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased; }

@media screen and (max-width: 800px) {
  .myriadeMenu::after {
    position: relative;
    width: 100%;
    left: 0%;
    text-align: left; } }

.autresProduits,
.indispensable {
  cursor: pointer; }

@media screen and (max-width: 800px) {
  li span.autresProduits,
  li span.indispensable {
    padding-left: 20%; }
  li.autresProduits,
  li.indispensable {
    cursor: none;
    position: relative;
    height: 400px; } }

.autresProduits:hover,
.indispensable:hover {
  color: #0074bc; }

#nav-wrap ul li {
  padding-left: 20px;
  padding-right: 20px; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li {
    text-align: left;
    padding-left: 0;
    padding-right: 0; } }

#nav-wrap ul li:nth-child(3) > ul > li:nth-child(1) {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
  background-color: #F5F3EF;
  border-bottom-color: white;
  border-bottom-style: solid;
  border-bottom-width: 2px; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) > ul > li:nth-child(1) {
    margin-top: 0px; } }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(1),
  #nav-wrap ul li:nth-child(3) ul li:nth-child(2) {
    background-color: #ffffff; }
  #nav-wrap ul:nth-child(1) {
    padding-top: 10px; }
  #nav-wrap ul:nth-child(1) > li {
    padding-bottom: 14px;
    padding-top: 14px;
    border-bottom-color: #dedede;
    border-bottom-style: solid;
    border-bottom-width: 1px; } }

span.appsMobile {
  display: inline-block;
  position: relative;
  width: 25%;
  height: 150px;
  margin: 0;
  border-right: #ffffff 2px solid; }

@media screen and (max-width: 800px) {
  span.appsMobile {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    border-right: none; } }

img.appsMobileIcone {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 35px; }

@media screen and (max-width: 800px) {
  img.appsMobileIcone {
    display: none; } }

span.appsMobile span.image-title {
  font: 500 1.2em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #333232;
  display: block;
  position: absolute;
  top: 65%;
  left: 50%;
  -ms-transform: translate(-50%, -65%);
  transform: translate(-50%, -65%); }

@media screen and (max-width: 800px) {
  span.appsMobile span.image-title {
    display: block;
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 20%;
    font: 500 0.8em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
    color: #0074bc;
    top: 0;
    left: 0;
    -ms-transform: none;
    transform: none; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul {
  display: inline-block;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 5%;
  margin-right: 5%; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul {
    display: block;
    position: relative;
    top: 0;
    text-align: left;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    -ms-transform: none;
    transform: none;
    margin-left: 0;
    margin-right: 0; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0;
  padding-top: 0; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li {
    display: block;
    font: 400 0.9em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 6px;
    padding-bottom: 12px; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40px;
  height: auto; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li img {
    width: 30px;
    height: auto;
    float: left;
    padding-right: 10px;
    margin-top: -8px; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li a {
  font: 500 1.3em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #333232;
  display: block;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li a {
    display: block;
    font-size: 0.9em; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(1) ul li a:hover {
  color: #0074bc;
  outline: none; }

#nav-wrap ul li:nth-child(3) > ul > li:nth-child(2) {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
  background-color: #F5F3EF; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) > ul > li:nth-child(2) {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    background-color: #ffffff; } }

span.application {
  display: inline-block;
  position: relative;
  width: 25%;
  height: 150px;
  margin: 0;
  border-right: #ffffff 2px solid; }

@media screen and (max-width: 800px) {
  span.application {
    display: block;
    position: relative;
    width: auto;
    height: auto; } }

img.applicationIcone {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 35px; }

@media screen and (max-width: 800px) {
  img.applicationIcone {
    display: none; } }

span.application span.image-title {
  font: 500 1.2em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #333232;
  display: block;
  position: absolute;
  top: 65%;
  left: 50%;
  -ms-transform: translate(-50%, -65%);
  transform: translate(-50%, -65%); }

@media screen and (max-width: 800px) {
  span.application span.image-title {
    display: block;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20%;
    font: 500 0.8em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
    color: #0074bc;
    top: 0;
    left: 0;
    -ms-transform: none;
    transform: none; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul {
  display: inline-block;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 5%;
  margin-right: 5%; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul {
    display: block;
    position: relative;
    top: 0;
    -ms-transform: none;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    margin-left: 0;
    margin-right: 0; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li {
    display: block;
    font: 400 0.9em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
    text-align: left;
    padding-top: 6px;
    padding-bottom: 12px; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40px;
  height: auto; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li img {
    width: 30px;
    height: auto;
    float: left;
    padding-right: 10px;
    margin-top: -8px; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li a {
  font: 500 1.3em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #333232;
  display: block;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li a {
    display: block;
    padding-left: 20%;
    font-size: 0.9em; } }

#nav-wrap ul li:nth-child(3) ul li:nth-child(2) ul li a:hover {
  color: #0074bc;
  outline: none; }

#nav-wrap ul li:nth-child(3) ul {
  display: block;
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: 0;
  left: 0;
  top: -310px;
  transition: all 0.2s ease-out; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    z-index: 0;
    left: 0;
    top: 0;
    transition: none; } }

#nav-wrap ul li:nth-child(3) ul:nth-child(1) {
  background-color: #F5F3EF; }

#nav-wrap ul li:nth-child(3) ul ul {
  left: 30%; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul ul {
    left: 0; } }

#nav-wrap ul li:nth-child(3) ul.descendre {
  top: 100px; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(3) ul.descendre {
    top: 0; } }

#nav-wrap ul li:nth-child(4) ul {
  display: block;
  position: absolute;
  width: 100%;
  height: 300px !important;
  z-index: 0;
  background-color: #F5F3EF;
  left: 0;
  top: -310px;
  transition: top 0.2s ease-out;
  padding-inline-start: 0px; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(4) ul {
    display: block;
    height: auto !important;
    width: auto;
    position: relative;
    top: 0;
    transition: none;
    background-color: #ffffff; } }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(4) ul li:nth-child(1) {
    padding-top: 10px; } }

#nav-wrap ul li:nth-child(4) ul.descendre {
  top: 100px;
  height: 300px !important; }

#nav-wrap ul li:nth-child(4) > ul li {
  display: inline-block;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(4) > ul li {
    display: block;
    position: relative;
    top: 0;
    -ms-transform: none;
    transform: none; } }

img.miseAJourIcone,
img.demosIcone,
img.faqIcone,
img.supportIcone,
img.formationIcone,
img.manuelsIcone,
img.tutorielsIcone {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 50px;
  height: auto; }

@media screen and (max-width: 800px) {
  img.miseAJourIcone,
  img.demosIcone,
  img.faqIcone,
  img.supportIcone,
  img.formationIcone,
  img.manuelsIcone,
  img.tutorielsIcone {
    width: 40px;
    height: auto;
    float: left;
    padding-right: 10px;
    margin-top: 0px; } }

#nav-wrap ul li:nth-child(4) ul li span.image-title {
  font: 500 1.2em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #333232;
  display: block;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(4) ul li span.image-title {
    display: block;
    font: 400 0.9em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px; } }

#nav-wrap ul li:nth-child(4) ul li a:hover span.image-title,
#nav-wrap ul li:nth-child(4) ul li a:focus span.image-title {
  color: #0074bc;
  outline: none; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(4) ul li a {
    display: block;
    padding-left: 20%;
    font-size: 0.9em; }
  /* 1.2 Liste - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
  #nav-wrap li {
    list-style: none;
    display: block;
    position: relative;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1em;
    padding-left: 7px;
    padding-right: 7px; } }

/* 1.1 Div ID - Conteneur principal du menu */
.menu_navigation,
.menu_navigation li {
  margin: 0px;
  padding: 0px; }

.menu_navigation {
  display: block;
  position: relative;
  z-index: 300;
  text-align: right;
  height: 100px;
  padding-top: 30px;
  padding-right: 30px; }

/* 1.2 Liste - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
.menu_navigation li {
  font: 500 0.85em/1.1em "Work Sans", Arial, Helvetica, sans-serif;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right: -2px;
  color: #938d8d;
  padding-left: 10px;
  padding-right: 10px; }

.menu_navigation li.parent {
  padding: 14px 8px; }

/* 1.3 Hyperliens - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
.menu_navigation a {
  display: block;
  color: #938d8d;
  padding: 4px 0px;
  margin: 0px;
  transition: color 0.3s linear; }

@media screen and (max-width: 800px) {
  /* 1.3 Hyperliens - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
  .menu_navigation a {
    color: #333232;
    padding-left: 20%; } }

/* 1.4 Hyperliens survole - - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
.menu_navigation a:hover {
  color: #0074bc;
  display: block;
  text-decoration: none; }

@media screen and (max-width: 800px) {
  /* 1.4 Hyperliens survole - - Éléments du menu - niveau 1 (Portfolio, Contact, À propos) */
  .menu_navigation a:hover {
    color: #0074bc;
    display: block;
    text-decoration: none; } }

/* Décalage icone Loupe */
a.rechercheIcone {
  margin-top: -20px; }

/* Élément recherche - image */
img.iconRecherche {
  float: left;
  display: block;
  position: absolute;
  padding-right: 10px;
  width: 22px;
  height: 22px; }

@media screen and (max-width: 800px) {
  img.iconRecherche {
    display: none; } }

#nav-wrap ul li:nth-child(5) {
  display: inline-block;
  position: relative;
  margin-bottom: 0; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(5) {
    display: none; } }

#nav-wrap ul li:nth-child(5) span.image-title {
  display: none; }

#nav-wrap .moncompte {
  color: #bf0000; }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:nth-child(5) {
    display: none; }
  /* Élément mon compte - image */
  .iconMonCompte {
    display: none; }
  #nav-wrap ul li:nth-child(8) {
    display: none; } }

img.iconPanier {
  float: left;
  display: block;
  position: absolute;
  margin-top: -18px;
  margin-left: 0;
  padding-right: 10px;
  padding-left: 0;
  width: 22px;
  max-width: 22px;
  height: 22px; }

@media screen and (max-width: 800px) {
  img.iconPanier {
    display: inline-block;
    position: absolute;
    padding-right: 20px;
    width: 22px;
    height: 22px; } }

@media screen and (max-width: 800px) {
  #nav-wrap ul li:last-child {
    border-bottom-color: #dedede;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding-bottom: 10px; }
  #nav-wrap ul ul li:last-child {
    border-bottom-width: 0; }
  #nav-wrap ul li ul:last-child {
    border-bottom-width: 0; } }

#contenantPanier {
  display: inline-block;
  position: fixed;
  right: 40px;
  top: 56px;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 10px;
  cursor: pointer;
  z-index: 2000; }

@media screen and (max-width: 800px) {
  #contenantPanier {
    display: inline-block;
    position: fixed;
    right: 140px;
    top: 36px;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 10px;
    cursor: pointer;
    z-index: 3000; } }

#contenantPanier span.image-title {
  display: none;
  position: absolute;
  top: -28px;
  left: 20px;
  z-index: 100;
  background-color: #938D8D;
  padding: 3px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  font: 400 0.85em/1em "Work Sans", Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-align: center; }

@media screen and (max-width: 800px) {
  #contenantPanier span.image-title {
    display: none;
    position: absolute;
    top: -28px;
    left: 20px;
    z-index: 100;
    background-color: #938D8D;
    padding: 3px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    font: 400 0.85em/1em "Work Sans", Arial, Helvetica, sans-serif;
    color: #ffffff;
    text-align: center; } }

#contenantPanier span.image-titleNone {
  display: none; }

#messageAjoutPanier {
  background-color: #0074BC;
  padding: 10px;
  padding-top: 20px;
  display: inline-block;
  position: absolute;
  top: 58px;
  right: 10px;
  clip-path: polygon(0 25%, 88% 25%, 91% 0, 94% 25%, 100% 25%, 100% 100%, 0 100%);
  opacity: 0; }

@media screen and (max-width: 800px) {
  #messageAjoutPanier {
    background-color: #0074BC;
    padding: 10px;
    padding-top: 20px;
    display: inline-block;
    position: fixed;
    top: -55px;
    right: 95px;
    clip-path: polygon(0 25%, 75% 25%, 80% 0, 85% 25%, 100% 25%, 100% 100%, 0 100%);
    opacity: 0;
    z-index: 4000; } }

#messageAjoutPanier p {
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8em;
  color: #ffffff; }

@media screen and (max-width: 800px) {
  #messageAjoutPanier p {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.6em;
    color: #ffffff; } }

#contenantPanier .panier {
  cursor: pointer; }

/* Élément mon compte - image */
img.iconMonCompte {
  float: left;
  display: block;
  margin-top: -5px;
  margin-right: 4px;
  width: 22px;
  height: 22px; }

/* Menu Myriade */
#menuMyriade ul li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px; }

#menuMyriade ul li a {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #51514F; }

#menuMyriade ul li a:hover {
  color: #B20000; }

#menuMyriade ul li.active a {
  color: #cecec7; }

@media screen and (max-width: 800px) {
  #panierMobile {
    display: block;
    position: fixed;
    right: 60px;
    top: 22px;
    height: 66px;
    width: 66px;
    text-decoration: none;
    z-index: 4000;
    background-color: rgba(255, 255, 255, 0); }
  .panierMobile {
    display: block;
    position: relative;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 20%; }
  .image-title2 {
    display: block;
    position: absolute;
    top: -8px;
    left: 26px;
    z-index: 100;
    background-color: #938D8D;
    padding: 3px;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    font: 700 0.9em/1em "Work Sans", Arial, Helvetica, sans-serif;
    text-align: center;
    color: #ffffff; }
  img.iconPanier {
    display: inline-block;
    position: absolute;
    padding-right: 20px;
    width: 22px;
    height: 22px; }
  /* Menu sousMenuProduit */
  #sousMenuProduit li {
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px; }
  #sousMenuProduit li a {
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: #51514F; }
  #sousMenuProduit li a:hover {
    color: #B20000; }
  #sousMenuProduit li a:active {
    color: #cecec7; } }

/*# sourceMappingURL=css_menu_nav.css.map */