.card-parent {
	max-width: 800px;
	margin: auto;
	position: relative;
	overflow: auto;
}

.card {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  width: 260px;
  position: relative;
  margin: auto;
  margin-right: 20px;
  background: #fff;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border:1px solid #ccc;
}

.card_hero {
	height: 180px;
	width: 100%;
}

.prod-image {
  max-width: 100%;
  margin: auto;
  transition: all 200ms ease;
}
.prod-image img {
  width: 100%;
  transition: all 400ms ease;
}

.card_content {
	text-align:left;
}
.card_content p {
  color: #666;
}

.card_content-inner {
}

.shop {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  outline: none;
  border: none;
  color: #000;
  height: 2em;
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.prod-title {
  opacity: 0;
  color: #FF6057;
  transform: translateY(10px);
  transition: all 400ms ease;
  margin-bottom: 0em;
}

.prod-info {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 400ms ease;
  margin-top: 0em;
}

.card.active .prod-image {
  max-width: 180px;
  transform: scale(1.3);
  transition: all 400ms ease;
}
.card.active .prod-image img {
  margin-top: 1.5em;
  transform: translate(0px, 10px);
  transition: all 400ms ease;
}
.card.active .prod-title {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0px);
}
.card.active .prod-info {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 100ms;
}
.card.active .slvd-text {
  transform: translateY(0px);
}
.card.active .shop {
  color: white;
  background-image: linear-gradient(#FF6057, #ff3024);
}

.sleeve-element {
  display: inline-block;
  overflow: hidden;
}
.sleeve-element .slvd-text {
  position: relative;
  display: inline-block;
  transition: all 800ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translateY(100%);
}
