/* SUMMARY

.STICKY NAV

*/
/* SUMMARY

.VARIABLES

*/
/* VARIABLES
================================================================================= */
/* FONTS */
/* COLORS */
/* STICKY NAV
================================================================================= */
#page-wrapper .sticky-nav__links {
  position: fixed;
  right: 0;
  top: 340px;
  padding: 4px;
  z-index: 1020;
  background: #ffffff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

#page-wrapper .sticky-nav__item {
  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;
  position: relative;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
  text-align: center;
  text-decoration: none;
  width: 76px;
  height: 68px;
  border-bottom: 4px solid transparent;
  margin-bottom: 2px;
}

#page-wrapper .sticky-nav__item:before {
  content: '';
  width: 0;
  height: 4px;
  background: #B10967;
  position: absolute;
  left: 0;
  bottom: -3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#page-wrapper .sticky-nav__item > * {
  display: block;
  margin: 0 auto;
}

#page-wrapper .sticky-nav__item:last-child {
  margin-bottom: 0;
}

#page-wrapper .sticky-nav__item__label {
  font-family: 'AvenirNextLTPro-Demi';
  font-style: normal;
  font-weight: normal;
  margin-top: 7px;
  color: #412761;
}

#page-wrapper .sticky-nav__item__border {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  position: absolute;
  left: 33%;
  margin-top: 5px;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  width: 0;
}

#page-wrapper .sticky-nav__item:hover {
  background: #f4f5f7;
}

#page-wrapper .sticky-nav__item:hover:before {
  width: 100%;
}

#page-wrapper .sticky-nav__item.invoice_canvas {
  display: none;
}

body.dossier-special #page-wrapper .sticky-nav__links {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

/* HACK FIREFOX
================================================================================= */
@-moz-document url-prefix() {
  #page-wrapper .sticky-nav__item__label {
    font-weight: normal;
  }
}

/* MEDIA QUERIES - DEVICE < 1023px
================================================================================= */
@media only screen and (max-width: 1023px) {
  #page-wrapper .sticky-nav__links {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 2px 24px;
    border-radius: 0;
    z-index: 1021;
    -webkit-transform: none;
            transform: none;
  }
  #page-wrapper .sticky-nav__links nav {
    width: 100%;
  }
  #page-wrapper .sticky-nav__links nav ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #page-wrapper .sticky-nav__links .sticky-nav__item {
    min-width: 72px;
    margin-bottom: 0;
  }
  #page-wrapper .sticky-nav__links .sticky-nav__item.invoice_canvas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.article #page-wrapper .sticky-nav__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 2px 24px;
    border-radius: 0;
    z-index: 1021;
    -webkit-transform: none;
            transform: none;
  }
  body.article #page-wrapper .sticky-nav__links .sticky-nav__item {
    min-width: 72px;
    margin-bottom: 0;
  }
  body.dossier-special #page-wrapper .sticky-nav__links {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* MEDIA QUERIES - DEVICE < 445px
================================================================================= */
