.scad-card {
  position: relative;
  font-weight: 400;
  background-color: #fff;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, .08);
  margin-bottom: 20px;
  /*transition: all 0.2s ease-in-out;*/
  padding-right: 15px;
  padding-left: 15px;
}

/** Components */
.scad-card .fill-card {
  margin-right: -15px;
  margin-left: -15px;
}

/** Hover Styles */
.no-touchevents .scad-card:hover {
  /*transform: scale(1.005, 1.005);*/
}

.no-touchevents .scad-card:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
  /*box-shadow: 1px 7px 14px rgba(0,0,0,0.25), 0px 3px 10px rgba(0,0,0,0.22);*/
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

.no-touchevents .scad-card:hover:after {
  opacity: 1;
}
