.catalogue {
  width: 100%;
  perspective: 1000px;
  perspective-origin: center center;
}
.livre.localEditMode {
  border: 3px solid grey;
}
.notice {
  margin-bottom: 3em;
}
.listePages {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 10px;
  transform: translate3d(0, 0, 0);
  perspective: 1900px;
  transform-style: preserve-3d;
}
.listePages .livre-lieu {
  color: grey;
  font-style: italic;
  font-size: 1.2em;
  padding: 10px;
  margin-top: auto;
  text-align: center;
}
.listePages .page.ng-leave {
  opacity: 1;
}
.listePages .page.ng-leave.ng-leave-active {
  opacity: 0;
  margin-left: 0;
  margin-right: 0;
  width: 0;
}
.listePages .page {
  width: 150px;
  height: 150px;
  font-size: .9em;
  overflow: hidden;
  margin-bottom: 10px;
  margin-right: 5px;
  margin-left: 5px;
  position: relative;
  float: left;
  transition: -webkit-filter 0.4s, filter 0.4s, opacity 0.4s, width 0.4s, height 0.4s, margin 0.4s;
}
.listePages .page.localEditMode {
  width: 300px;
  height: 300px;
}
.listePages .page.localEditMode .page-photo {
  width: 300px;
  height: 300px;
}
.listePages .page.localEditMode .page-titre {
  display: none;
}
.listePages .page .page-photo {
  transition: width .4s, height .4s;
  object-fit: cover;
  object-position: center;
  width: 150px;
  height: 150px;
}
.listePages .page:not(.retourAccueil):hover {
  -webkit-filter: saturate(140%);
  filter: saturate(140%);
}
.listePages .page.retourAccueil {
  display: flex;
  background-color: #1b7bc0;
  transition: background-color 0.2s;
}
.listePages .page.retourAccueil:hover {
  background-color: #42a7f0;
}
.listePages .page.retourAccueil .page-lien {
  display: flex;
  flex: 1;
  color: white;
}
.listePages .page.retourAccueil .page-lien .page-titre {
  background-color: initial;
  text-align: center;
  margin: auto;
}
.listePages .page .page-actions {
  position: absolute;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(242, 242, 242, 0.6);
}
.listePages .page .page-actions .page-action-action {
  padding: 0 1em;
}
.listePages .page .page-actions .page-action-action:hover {
  background-color: rgba(242, 242, 242, 0.95);
}
.listePages .page .couvrir {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.listePages .page .page-lien {
  display: flex;
  color: #14151a;
  font-weight: normal;
  line-height: 2em;
}
.listePages .page .page-lien .page-titre {
  margin-top: auto;
  padding: .5em 1em;
  color: inherit;
  background-color: rgba(242, 242, 242, 0.6);
}
