
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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


  .inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  

  
  .tinder {
    width: fit-content;
    height:inherit ; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
  }
  
  .loaded.tinder {
    opacity: 1;
  }
  
  .tinder--status {
    display: flex;
   
    position: absolute;
    top: 50%;
    right: -50%;
    margin-top: -30px;
    z-index: 2;
    width: 100%;
   
    pointer-events: none;
  }
  
  .tinder--status i {
   
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.2s ease-in-out;
    position: absolute;
    width: 100px;
    margin-left: -50px;
  }
  
  .tinder_love .fa-heart {
    opacity: 0.7;
    transform: scale(1);
  }
  
  .tinder_nope .fa-remove {
    opacity: 0.7;
    transform: scale(1);
  }
  
  .tinder--cards {
    flex-grow: 1;
    
    text-align: center;
    display: flex;
    justify-content: center;
   
    z-index: 1;
  }

  .flex3x3{
    display: flex;
justify-content: center;
  }

  .flexGif{
     display: flex;
     justify-content: center;
     align-items: center;
  }

  .flexGif img{
    height: 400px;
  }

  
  .tinder--card {
    height: fit-content;
    width:300px;

    display: flex;
    flex-direction: column;
    align-items: center;
   
    background: #FFFFFF;
 
    overflow: hidden;
    position: absolute;
    will-change: transform;
    transition: all 0.3s ease-in-out;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;



    border-radius: 4px;
background: #fff;
box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.17);
  }

  
  
  .moving.tinder--card {
    transition: none;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
  }
  
  .tinder--card img {


padding: 20px;
height: 300px;
max-width: 100%;

height: auto;
    pointer-events: none;

  }
  
  .tinder--card h3 {
    font-family: Inter;
    color:  #020202;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    font-style: normal;
    

    pointer-events: none;
  }
  
  .tinder--card p {
    color:#646464;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    pointer-events: none;
  }
  
  .tinder--buttons {
   display: flex;
   width: 300px;
    text-align: center;
margin: -20px;
  padding: 0px 40px  40px 40px;

    justify-content: space-between;





}
  
  .tinder--buttons button {

    all: unset;
    display: flex;
padding: 15px;
border-radius: 50%;
justify-content: center;
align-items: center;
background:  #FFF;
cursor: pointer;





/* DropShadow/Normal */
box-shadow: 0px 4px 9px -2px rgba(0, 0, 0, 0.25);

  }

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

  
  .fa-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFACE4;
    width: 100%;
    height: 100%;
  }
  
  .fa-remove {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    color: #CDD6DD;
  }
  

  .tinder--card--text{
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0px;
  }

  .dataLottie{
    background-color: white;
    padding: 10px;
    border-radius: 2%;

    box-shadow: 0px 4px 9px -2px rgba(0, 0, 0, 0.25);
  }

  .tinder--buttons--instructions{
 
    display: flex;
    width: 300px;
    justify-content: space-between;
  }

  

/* Media queries  */

  @media (max-width: 940px) {
    

    .tinder--card h3,
    .tinder--card p{
      font-size: 12px;
    }

    .tinder--card {
     width: 300px;



  }
  .tinder--buttons button{
    padding: 10px
  }

  .tinder--buttons{
  
   width: 200px;
   margin: -50px;
   padding: 0px;

  }
  .tinder--buttons--instructions{
    position: absolute;
    top: 78%


  }
}

  @media (max-width: 600px){
    .flex3x3{
      height: 450px;

      
    }

    .tinder--card{
      height: fit-content;
      top: 15%;
    }

    .tinder--buttons{
      margin: -50px;
      
    }

    .tinder--buttons--instructions{
      position: absolute;
     top: 115%;
    }

  }