*, *:after, *:before {-webkit-box-sizing: border-box;box-sizing: border-box;}
.clearfix:before, .clearfix:after {display: table;content: '';}
.clearfix:after {clear: both;}

body {
  background: #f0f6ff;
  color: #303030;
font-family: 'Hind', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: scroll;
  line-height: 1.4em;
  hyphens: auto;
  text-align: justify;
  text-rendering:optimizeLegibility;
  font-feature-settings:"liga", "dlig";
  -webkit-hyphens: auto;
  -webkit-font-feature-settings:"liga", "dlig";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* helper class when showing content */
.noscroll {overflow: hidden;}

a {
  color: #174e6c;
  cursor: pointer;
  outline: medium none;
  text-decoration: none;
  text-shadow: 1px 0 #FFF;
  font-style: italic;
}

a:hover,
a:focus {color:#990033;outline: none;}
button:focus {outline: none;}
a[href$=".pdf"] {
  background: none repeat scroll 0 0 #cddff7;
  border-radius: 5px;
  box-shadow: 0 12px 5px #fff inset;
  color: #990033;
  cursor: help;
  display: inline-block;
  margin: 0 auto 20px;
  padding: 3px 10px;
  width:30%;
}
a[href$=".pdf"]:hover {
  background: none repeat scroll 0 0 #990033;
  color: #990033;
  text-shadow: 0px 0px 2px #000;
  box-shadow: 0 12px 5px rgba(255,255,255,0.7) inset;
}
a[target="_new"]:after, a[target="_MFX"]:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjEzIiBoZWlnaHQ9IjEzIiBmaWxsPSIjMWE3M2U4Ij48cGF0aCBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAgMC0yIDJ2MTRhMiAyIDAgMCAwIDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDI0djI0SDBWMHoiLz48L3N2Zz4=);
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    height: .8125rem;
    margin: 0 .1875rem 0 .25rem;
    position: relative;
    top: .125rem;
    width: .8125rem;
}
a[target="_new"] {
    color: #007ABC;
    text-decoration: none;
}
a[target="_new"]:hover {
    color: #990033;
    text-decoration: none;
}
hr {
  width: 90%;
  height: 0;
  color: #fff;
}

/* Sidebar */
.sidebar {
  background: #cddff7;
  height: 100vh;
  left: 0;
  max-width: 100%;
  overflow-y: auto;
  padding: 2em 1em;
  position: fixed;
  text-align: center;
  top: 0;
  width: 330px;
  z-index: 1000;
  box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
}
.sidebar h1,
.sidebar .sidebar-title {
  color: #007abc;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 1;
  margin: 0.75em 0 0;
  text-shadow: 0 1px 1px #fff;
}
.sidebar h1 span,
.sidebar .sidebar-title span {display: block;}

/* sidebar links */
.links-eimdc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  min-height: 45px;
}
.links-eimdc::after {
  background: #007abc none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}
.iconos {
  background-repeat: no-repeat;
  background-size: 70px auto;
  display: inline-block;
  height: 70px;
  margin: 0.5em;
  padding: 0;
  text-decoration: none;
  width: 70px;
}
.iconos span {display: none;}
.iconos:before {margin: 0 5px;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
}
.icon-eimdc {background-image: url(logo-EIMDC.png);}

/* Lien texte vers le guide (remplace l'ancien icon-lng) */
.guide-textlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: 0.5em;
  padding: 0 14px;
  font-family: "Cinzel", serif;
  font-size: 1.05em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #990033;
  font-style: normal;
  text-decoration: none;
  text-shadow: none;
}
.guide-textlink:hover,
.guide-textlink:focus {
  text-decoration: underline;
  color: #cc0044;
}

/* Modal "guide" (iframe sur agenda.dienchan.org/guide/... superposé à l'agenda) */
.guide-modal {
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 0;
  width: min(900px, 94vw);
  height: min(85vh, 900px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.guide-modal.guide-modal--open {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.guide-modal::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
}
.guide-modal.guide-modal--open::backdrop {
  background: rgba(0, 0, 0, 0.55);
}
.guide-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(153, 0, 51, 0.9);
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  cursor: pointer;
}
.guide-modal-close:hover {background: #990033;}
.guide-modal-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* Links */
.link-web {
  font-family: "Cinzel",serif;
  font-size: 1.15em;
  text-transform: uppercase;
}
.link-web a {
  display: inline-block;
  margin: 0 0.5em;
  color: #990033;
  font-style: initial;
}

.related {
  font-size: 1.2em;
  padding-bottom: 1em;
  text-align: left;
}
.related h3 {
  margin:1em 0 0.5em 0;
  font-size: 0.95em;
}
.related a {
  color: inherit; padding-left: 5px; 
  display: block;
  margin-bottom: 0.6em;
}
.related a:hover,
.related a:focus {color: #990033;}

/* Main content */
.main {
  position: relative;
  z-index: 50;
}

/* Grid container */
.grid {position: relative;}

/* Overlay */
.grid::after {
  content: '';
  background: rgba(202, 202, 202, 0.4);
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.view-single .grid::after {opacity: 1;}

/* Top bar above the grid */
.top-bar {
  color: #fff;
  width: 100%;
  line-height: 1;
  padding: 15px 15px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.top-bar__headline {margin: 0;font-size: 0.75em;text-align: left;}

/* Menu button for toggling the sidebar (appears on small screen) */
.menu-toggle {
  background: none;
  border: medium none;
  cursor: pointer;
  display: none;
  font-size: 1.8em;
  height: 40px;
  left: 0px;
  margin: 0; padding: 0;
  position: fixed;
  top: 3px;
  width: 40px;
  z-index: 100;
}

.agendactu {
  text-align: right;
  font-size: 0.75em;
  margin-left: auto;
}

/*.dropdown::after {
    color: greenyellow;
    content: "✔︎";
    margin-left: 2px;
}*/
.dropdown {color: #afafaf;}

/* Grid item */
.grid__item {
  background: #cddff7;
  color: inherit;
  cursor: pointer;
  margin-bottom: 8px;
  min-height: 300px;
  padding: 45px 55px 10px;
  position: relative;
  text-align: center;
}
.grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}

/* Grid item "border" */
.grid__item::before {
  position: absolute;
  content: '';
  top: 0px;
  right: 5px;
  bottom: 0px;
  left: 5px;
  border-bottom: 1px solid #fff;
}
.grid__item * {z-index: 10;}

/* grid item element and full content element styles */
.title {
  color: #000;
  font-size: 1.7em;
  font-weight: 700;
  height: 40px;
  hyphens: none;-webkit-hyphens: none;
  letter-spacing: 0.2em;
  line-height: 1em;
  margin: 0 0 25px;
  padding-top: 9px;
  text-align: center;
  text-shadow: 1px 1px 2px #fff;
  text-transform: uppercase;
}

.title--preview {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: baseline;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin:0;
}

.loader {
  height: 1px;
  width: 40%;
  margin:0.6em auto;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.loader::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #007abc;
  left: 0;
  top: -1px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.grid__item--loading .loader::before {
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.category {
  color: #fff;
  /* display: block; */
  font-family: "Georgia",serif;
  /* font-size: 1.75em; */
  hyphens: none;
  -webkit-hyphens: none;
  line-height: 1em;
  /* margin: 0; */
  /* position: relative; */
  text-align: center;
  text-shadow: none;
}
.bloc-tit-div {margin-top:25px;}
.bloc-tit {
  color: #FFF;
  font-weight: 700;
  font-size: 1.6em;
  margin: 5px 0 0 0;
  text-shadow: 1px 1px #000;
  hyphens: none;
  -webkit-hyphens: none;
}

.title--preview,
.loader,
.category,
.bloc-tit {
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

/* closing (delays) */
.title--preview {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.loader {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.grid__item .category {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.grid__item .bloc-tit {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* opening */
.grid__item--animate .title--preview {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}

.grid__item--animate .loader {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 0;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

.meta {
  font-size: 0.765em;
  margin-top: 20px;
  text-align: left;
}

.meta:before, .meta:after {display: table;content: '';}
.meta:after {clear: both;}
.meta__avatar {
  display: block;
  margin: -8px -10px;
  width: 98px;
}
.meta--preview .meta__avatar {
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
}

.grid__item:hover .meta--preview .meta__avatar,
.grid__item:focus .meta--preview .meta__avatar {
  -webkit-filter: none;
  filter: none;
}

.meta__date,
.meta__profe {display: block;float: left;color:#007abc;}

.meta__profe {
  text-align: right;
  float: right;
}
.meta__misc {
  clear: both;
  display: block;
  font-size: 1.2em;
  margin: 5px 0 !important;
  text-align: left;
}
.meta__misc--seperator {padding: 20px 0 0;margin: 65px 0 0;border-top: 1px solid #007abc;}

.article-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.article-nav button {
  border: none;
  color: #007abc;
  background: none;
}

.article-nav button:hover {
  color: #333;
}

.meta--preview .meta__avatar,
.meta--preview .sumario-fecha,
.meta--preview .meta__profe {
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.grid__item--loading .meta__avatar {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.grid__item--loading .sumario-fecha {
  -webkit-transition-delay: 0.17s;
  transition-delay: 0.17s;
}

.grid__item--loading .meta__profe {
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s;
}

.grid__item--loading .meta__avatar,
.grid__item--loading .sumario-fecha,
.grid__item--loading .meta__profe {
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
  opacity: 0;
}

/* Grid footer */
/*.page-meta {
  width: 100%;
  background: #fff;
  width: 100%;
  padding: 15px 15px 10px;
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
  cursor: default;
}*/

/* Placeholder element (dummy that gets animated when we click on an item) */
.placeholder {
  pointer-events: none;
  position: absolute;
  width: calc(100% + 5px);
  height: calc(100vh + 5px);
  z-index: 100;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.placeholder.placeholder--trans-in {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.placeholder.placeholder--trans-out {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

/* main content */
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  height: 0;
  /* Avoid second scroll bar in Chrome! */
  visibility: hidden;
  z-index: 400;
  overflow: hidden;
}

.content.content--show {
  height: 100vh;
  pointer-events: auto;
  visibility: visible;
}

/* scroll helper wrap */
.scroll-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/* single content item */
.content__item {
  font-size: 0.85em;
  background: #f0f6ff;
  height: 0;
  left: 0;
  max-width: 70%;
  opacity: 0;
  overflow: hidden;
  padding: 20px 20px 80px;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.content__item p {
  max-width: 1200px;
  margin: 1em auto;
  text-align: justify;
}
/*.content__item p:first-of-type {font-size: 1.35em;}*/

.content__item.content__item--show {
  height: auto;
  min-height: 100vh;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

/* content elements */
.category--full {
  color: #908d86;
  font-size: 1.15em;
  /* margin-bottom: 20px; */
  /* text-shadow: none; */
  /* font-family: hind, sans-serif; */
  text-transform: uppercase;
  text-align: center;
  display: block;
}
.title--full {
  color: #990033;
  font-size: 3.25em;
  text-shadow: 1px 1px 2px #fff;
}

.meta--full {
  font-size: 1em;
  margin: 0 auto 2em;
  max-width: 1200px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.4);
}
.meta--full .meta__author {
  display: flex;
  font-size: 1.3em;
  font-weight: bold;
  hyphens: none; -webkit-hyphens: none;
  line-height: 1em;
  margin:20px 0 0;
  text-align: left;
}
.meta--full .meta__author::before {content: '★ ';font-weight: normal;color:#007abc;padding-right: 4px;}
.meta--full .meta__category {
  font-style: italic;
  float: left;
  margin: 0 5px;
}
.meta--full .meta__category::before {content: "💡 ";}
/*.meta--full .meta__avatar {margin: 1em auto;}*/

.category--full,
.title--full,
.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__profe {opacity: 0;}

.content__item p {opacity: 0;}

.category--full,
.title--full {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}

.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__profe {
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
}

.content__item--show .category--full,
.content__item--show .title--full,
.content__item--show .meta--full .meta__avatar,
.content__item--show .meta--full .meta__author,
.content__item--show .meta--full .meta__date,
.content__item--show .meta--full .meta__profe {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.content__item--show .category--full,
.content__item--show .title--full {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.content__item--show .title--full {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.content__item--show .meta--full .meta__avatar {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.content__item--show .meta--full .meta__date {
  -webkit-transition-delay: 0.27s;
  transition-delay: 0.27s;
}

.content__item--show .meta--full .meta__profe {
  -webkit-transition-delay: 0.34s;
  transition-delay: 0.34s;
}

.content__item--show.content__item p {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.25s;
  transition: opacity 0.5s 0.25s;
}


/* Viewport sizes based on column number and sidebar ******************************************************/
/* 1 column */
/* 2 columns */
/* 3 columns */
/* 4 columns */
/* 5 columns */
/* 6 columns */
@media screen and (min-width: 600px) {
  html, body, .main {height: 100vh;}
  .main {height: 100%;margin-left: 330px;}
  .content__item {font-size: 1em;}
  .grid__item {padding: 15px 15px 20px;}

  /* Demo ad */
  body #cdawrap {
    right: auto;
    left: 30px;
    top: auto;
    bottom: 0;
    background: none;
    border: none;
    width: 240px;
    background: #f0f6ff;
  }

  body #cdawrap .carbon-text {color: #7b7b7b;}
  body #cdawrap a.carbon-poweredby {color: #7883C4;}
  body #cdawrap a:hover.carbon-poweredby {color: #333;}
  body #cdawrap #cda-remove {display: none;}
}


@media screen and (min-width: 900px) {
  .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* 2 columns */
  .grid__item {
    width: 50%;
    border: none;
  }

.grid__item::before {
  /* top: 5px; */
  /* right: 5px; */
  /* bottom: 5px; */
  /* left: 5px; */
  /* border: 1px solid rgba(74, 74, 74, 0.075); */
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

  .grid__item:hover::before,
  .grid__item:focus::before {
    border: 3px solid #fff;
  }

  .grid__item--loading.grid__item::before {opacity: 0;}
}

@media screen and (min-width: 1200px) {
  /* 3 columns */
  .grid__item {width: 33.333%;}
}

@media screen and (min-width: 1500px) {
  /* 4 columns */
  .grid__item {width: 25%;}
}

@media screen and (min-width: 1800px) {
  /* 5 columns */
  .grid__item {width: 20%;}
}
@media screen and (min-width: 2100px) {
  /* 6 columns */
  .grid__item {width: 16.66%;}
}

/* small screen changes for sidebar (it becomes an off-canvas menu) */
@media screen and (max-width: 599px) {
  .sidebar {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
  }

  .sidebar.sidebar--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .sidebar.sidebar--open ~ .main {pointer-events: none;}
  .top-bar {padding:14px 14px 5px 54px;}
  .menu-toggle {display: inline-block;}
  .sidebar .close-button {
    /*background: none;*/
    border-radius: 50%;
    font-size: 2.5em;
    height: 50px;
    margin: 0;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    right: -10px;
    top: 5px;
    width: 90px;
  }
  .title--full {font-size: 2em;margin: 0;}
  .content__item {
    padding: 55px 5px 40px;
    max-width: 100%;
  }
  .content .close-button {
    padding: 10px 20px;
    right: calc(100% - 100vw);
  }
  .content .close-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(120,0,50,0.8);
    border-bottom: 1px solid #cddff7;
    width: 100vw;
    height: 50px;
    pointer-events: none;
    z-index: -1;
  }
}

@media screen and (max-height: 580px) {
  body #cdawrap {display: none;}
}

/* Redefine some styles for this layout */
/*body {background: #f0f6ff;}*/
.content {
  left: auto;
  right: 0;
  width: 100vw;
}
.content__item p {font-size: 1.15em;}
.auto-text {font-style: italic;}
.fa-heart {color: #c84252;}

/* Redefine the delays for the content items when they appear; redefine the translation (now from the left) */
.title--preview {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.loader {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.grid__item .category {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.grid__item--animate .title--preview {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
.grid__item--animate .loader {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  -webkit-transform: translate3d(-30px, 0, 0);
  transform: translate3d(-30px, 0, 0);
}
.grid__item--animate .category {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
.category--full,
.title--full {
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
}
.content__item--show .title--full {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

@media screen and (min-width: 600px) {
  .sidebar,
  .grid {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
  }
  .view-single .sidebar,
  .view-single .grid {
    -webkit-transform: translate3d(calc(280px - 100vw), 0, 0);
    transform: translate3d(calc(280px - 100vw), 0, 0);
  }
  .content__item {right: 0;padding-left: 300px;}
  .meta--full {
    position: fixed;
    width: 280px;
    height: 100%;
    /*background: #fff;*/
    top: 0;
    left: 0;
    font-size: 0.85em;
    padding:15px 5px 10px 30px;
  }
  .article-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #cddff7;
  }
  .article-nav button {width: 50%;padding: 25px;}
  .article-nav button:hover {color: #fff;background: #007abc;}
  .article-nav button:first-child {border-right: 1px solid #cddff7;}
}
@media screen and (max-width: 899px) {
  .meta--full .meta__date,
  .meta--full .meta__profe {
    float: none;
    text-align: center;
  }
  .meta__misc--seperator {margin-top: 20px;}
  .article-nav button span {
    display: none;
  }
  .content__item {
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .meta__misc,
  .article-nav {display: none;}
}
#guide-modal-open {
    font-family: initial;
    font-weight: bold;
    font-size: 1.3rem;
    border: 1px solid #007abc;
    padding: 6px;
    background: #FFFFFF8A;
}
.merci {
  padding: 10px 20px;
  border-top: 2px solid #fff;
  font-size: 1.4rem;
  line-height: 2rem;
  width: 100%;
}
.merci-merci {
  background: #b1f2b1;
  color: #000;
}
.merci-merci h1 {
  font-size:2rem;
}
.merci-cancel {
  background: #ff2525;
  color: #FFF;
}
.merci-cancel h1 {
  font-size:2rem;
}
