/* Recherche catégorie */

.recherche-par-categorie {
  z-index: 0;
}

.uppercase-text {
  text-transform: uppercase;
}

.recherche-par-categorie .categorie-icon-column .recherche-categorie-titre {
  height: 45px;
  /* background-color: #e3e3e380; */
  background-color: #F7F7F7;
  position: relative;
  color: black;
  /* box-shadow: 0 16px 20px -16px dimgray; */
}

.recherche-par-categorie .categorie-icon-column .recherche-categorie-titre > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recherche-par-categorie .categorie-icon-column .recherche-categorie-titre > div p {
  margin: 0;
  color: #222222;
}

.recherche-par-categorie .categorie-icon-column .svg-picto {
  position: absolute;
  width: 40%;
  left: 0;
  right: 0;
  margin: auto;
  top: -20px;
}

/* OMBRE IMAGE LEFT */

.categorie_card {
  position: relative;
  z-index: 1;
}

.categorie_card:before,
.categorie_card:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #BBB;
  -webkit-box-shadow: 0 15px 10px #BBB;
  box-shadow: 0 15px 10px #BBB;
}

.categorie_card:before {
  left: 10px;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.categorie_card:after {
  right: 10px;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}