.actions-links-container {
  position: absolute;
  background-color: #F8F8F8;
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 24px;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 10px;
  z-index: 2;
}
.actions-links-container > div {
  display: none;
}
.actions-links-container:hover {
  height: 24px;
}
.actions-links-container:hover > div {
  display: inline-block !important;
  opacity: 0.5;
}
.actions-links-container .tools-actions,
.actions-links-container .tools-infos,
.actions-links-container .more,
.actions-links-container .mail {
  display: none;
  cursor: pointer;
  height: 100%;
  width: 25%;
  background-color: #FFFFFF;
}
.actions-links-container .tools-actions:not(:first-child),
.actions-links-container .tools-infos:not(:first-child),
.actions-links-container .more:not(:first-child),
.actions-links-container .mail:not(:first-child) {
  margin-left: 1px;
}
.actions-links-container .mail a,
.actions-links-container .remove,
.actions-links-container .infos,
.actions-links-container .eye-picto {
  position: relative;
  width: 17px;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
.actions-links-container .mail a {
  background-image: url(../../images/icons/picto_mail.svg);
}
.actions-links-container .mail a:hover {
  background-image: url(../../images/icons/picto_mail_hover.svg);
}
.actions-links-container .remove {
  background-image: url(../../images/icons/picto_trash.svg);
}
.actions-links-container .remove:hover {
  background-image: url(../../images/icons/picto_trash_hover.svg);
}
.actions-links-container .infos {
  background-image: url(../../images/icons/picto_info.svg);
}
.actions-links-container .infos:hover {
  background-image: url(../../images/icons/picto_info_hover.svg);
}
.actions-links-container a.eye-picto {
  padding: 0;
  background-color: transparent;
  background-image: url(../../images/icons/picto_oeil.svg);
  border-radius: inherit;
}
.actions-links-container a.eye-picto:hover {
  background-image: url(../../images/icons/picto_oeil_hover.svg);
}