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

body {
  background: #CCFBFE;
  overflow: hidden;
}

.tinder {
  height: 70vh;
  width: 90vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.tinder {
  opacity: 1;
}

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

.tinder--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;
}

.tinder_love .fa-thumbs-up {
  opacity: 1;
  transform: scale(1);
}

.tinder_nope .fa-thumbs-down {
  opacity: 1;
  transform: scale(1);
}

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

.tinder--card {
  display: inline-block;
  width: 90vw;
  max-width: 40vh;
  height: 60vh;
  background: #FFFFFF;
  padding: 20px;
  box-shadow: 0px 0.5px 3px 0.2px rgb(189 189 189 / 25%);

  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.tinder--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.tinder--card img {
  max-width: 100%;
  pointer-events: none;
}

.tinder--card h3 {
  font-size: 25px;
  font-weight: bold;
  padding-top: 20px;
  pointer-events: none;
}

.tinder--card p {
  /* margin-top: 24px; */
  font-size: 15px;
  padding: 0 16px;
  pointer-events: none;
}

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

.tinder--buttons button {
  border-radius: 50%;
  /* line-height: 60px; */
  width: 60px;
  border: 0;
  background: #FFFFFF;
  display: inline-block;
  margin: 0 8px;
  box-shadow: 0px 0.5px 3px 0.2px rgb(189 189 189 / 25%);

}

.tinder--buttons button:focus {
  outline: 0;
}

.tinder--buttons i {
  font-size: 5.136436597110754vh;
  vertical-align: middle;
}

.fa-heart {
  color: #FFACE4;
}

.fa-remove {
  color: #CDD6DD;
}

