/* Swipe cards css */

.swipe {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.swipe {
  opacity: 1;
}

.swipe--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.swipe--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;
}

.swipe_right_check .fa-check {
  opacity: 0.7;
  transform: scale(1);
}

.swipe_nope .fa-remove {
  opacity: 0.7;
  transform: scale(1);
}

.swipe--cards {
  flex-grow: 0.5;
  padding-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.swipe--card {
  display: inline-block;
  width: 90vw;
  max-width: 400px;
  height: 40vh;
  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.swipe--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.swipe--card img {
  max-width: 100%;
  pointer-events: none;
}

.swipe--card h3 {
  margin-top: 32px;
  font-size: 32px;
  padding: 0 16px;
  pointer-events: none;
}

.swipe--card p {
  margin-top: 24px;
  font-size: 20px;
  padding: 0 16px;
  pointer-events: none;
}

.swipe--buttons {
  flex: 0 0 100px;
  text-align: center;
  padding-top: 20px;
}

.swipe--buttons button {
  /*border-radius: 100%;*/
  /*line-height: 60px;*/
  /*width: 100px;*/
  /*height: 100px;*/
  /* border: 0; */
   background: #FFFFFF !important; 
  /* display: inline-block; */
  margin: 0 8px;
}

.swipe--buttons button:focus {
  outline: 0;
}

.swipe--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}
