.con {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1.25px solid lightgrey;
  opacity: 1;
  transition: transform 0.15s, box-shadow 0.25s, border-radius 0.25s, opacity 0.3s;
  cursor: pointer;
}
.con:last-child {
  border-bottom: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.con.blur {
  opacity: 0.6;
}
.con.highlight {
  position: relative;
  border-radius: 10px;
  transform: scaleY(1.06) scaleX(1.027);
  box-shadow: 0px 0px 15px 1px grey;
  z-index: 1;
  /* box-shadow: 0px 0px 5px 0.1px #fc8003; */
}

/* -------- */

/* .con {
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0.1px grey;
  padding: 5px;
  margin-bottom: 10px;
}
.con:last-child {
  margin-bottom: 0px;
} */