.parentSlider{
  min-height: 1545px;
  position: relative;
}

.stickerSlider{
  position: sticky;
  top: 50px;
}

.stack-slider-custom {
  width: 100vw;
  height: 635px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.stack-slider-custom {
  opacity: 1;
}

.stack-slider-custom--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.stack-slider-custom--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}

.stack-slider-custom_love .fa-heart {
  opacity: 0.7;
  transform: scale(1);
}

.stack-slider-custom_nope .fa-remove {
  opacity: 0.7;
  transform: scale(1);
}

.stack-slider-custom--cards {
  flex-grow: 1;
  padding-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 1;
  align-items: center;
}

.stack-slider-custom--card {
  display: inline-block;
  width: 100%;
  min-width: 500px;
  max-width: 400px;
  height: 100%;
  max-height:515px;
  padding-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.moving.stack-slider-custom--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.stack-slider-custom--card img {
  max-width: 100%;
  pointer-events: none;
  object-fit: contain;
}

.stack-slider-custom--card h3 {
  margin-top: 32px;
  font-size: 32px;
  padding: 0 16px;
  pointer-events: none;
}

.stack-slider-custom--card p {
  margin-top: 24px;
  font-size: 20px;
  padding: 0 16px;
  pointer-events: none;
}

.stack-slider-custom--buttons {
  flex: 0 0 100px;
  text-align: center;
  padding-top: 20px;
}

.stack-slider-custom--buttons button {
  border-radius: 50%;
  line-height: 60px;
  width: 60px;
  border: 0;
  background: #FFFFFF;
  display: inline-block;
  margin: 0 8px;
}

.stack-slider-custom--buttons button:focus {
  outline: 0;
}

.stack-slider-custom--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-heart {
  color: #FFACE4;
}

.fa-remove {
  color: #CDD6DD;
}


@media screen and (max-width: 424px) {
  .stack-slider-custom--card {
    display: inline-block;
    width: 250px !important;
    min-width: 250px !important;
    max-width: none !important;

  }
	.stickerSlider{
		position: sticky;
		top: 100px;
	}
}