*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


.swipable {
  transition: opacity 0.1s ease-in-out;
}


.touch-none {
  touch-action: none;
  overflow: hidden;
}

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

.swipable--status i {
  position: fixed; /* fixed instead of absolute */
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%) scale(0.3); /* center and scale */
  font-size: 100px;
  opacity: 0;
  width: 100px;
  transition: all 0.9s ease-in-out;
}

.swipable_like .fa-thumbs-up {
  opacity: 0.9;
  transform: scale(1);
  color: green;
}

.swipable_nope .fa-thumbs-down {
  opacity: 0.9;
  transform: scale(1);
  color: red;
}

.swipable_love .fa-heart {
  opacity: 0.9;
  transform: scale(1);
  color: pink;
}

.swipable--card {
  /*display: inline-block;
  background: #FFFFFF;
  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.swipable--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

dialog::backdrop {
  @apply bg-gray-50 bg-opacity-20; /* Tailwind utilities via @apply */
}
/*
.swipable--card img {
  max-width: 100%;
  pointer-events: none;
}

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

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

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

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

.swipable--buttons button:focus {
  outline: 0;
}
*/
.swipable--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-heart {
  color: #FFACE4;
}

.fa-remove {
  color: #CDD6DD;
}

.fa-thumbs-up {
  color: green;
}

.fa-thumbs-down {
  color: red;
}