.number{
    width:60px;
    height:60px;
    background-color:#62F163 ;
    color: white;
    border-radius: 5px;
}
.number h1{
    padding-top: 5px;
    font-size: 40px;
}
.arrow{
    display: none;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color:#62F163 ;
    border-radius: 50%;
    top: 87px;
    left: -23px;
    z-index: 1;
}
.arrow1{
    display: none;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color:#62F163 ;
    border-radius: 50%;
    top: 87px;
    left: 190px;
    z-index: 1;
}
.arrow img,.arrow1 img{
    margin-top: 5px;
}
.card:hover{
    .arrow ,.arrow1{
        display: block;
    }
}
.instection p{
    color: #335E33;
}
/* ============================= */

/* @keyframes fadeGlow {
  0% {
    box-shadow: 0 0 0px 0px rgba(24, 202, 48, 0);
  }
  20% {
    box-shadow: 0 0 6px 2px rgba(24, 202, 48, 0.4);
  }
  30% {
    box-shadow: 0 0 12px 3px rgba(24, 202, 48, 0.7);
  }
  40% {
    box-shadow: 0 0 18px 5px rgba(24, 202, 48, 1);
  }
  60% {
    box-shadow: 0 0 12px 3px rgba(24, 202, 48, 0.7);
  }
  80% {
    box-shadow: 0 0 6px 2px rgba(24, 202, 48, 0.4);
  }
  100% {
    box-shadow: 0 0 0px 0px rgba(24, 202, 48, 0);
  }
}

.correct-order {
  animation: fadeGlow 1.5s ease-in-out infinite;
} */



.sort-card {
    border-radius: 20px;
}
/* ============== */
.popup {
  display: none;
  /* initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgb(0, 0, 0, 0.55);
}

.popup img {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup_btn_border {
  border-radius: 15px;
  border: 4px dashed #62F163;
  padding: 4px;
  width: 140px;
  height: 45px;
}


