
.popup-outer.show {
  opacity: 1;
  display: block;
  pointer-events: auto; 
  transform: scale(1);
} 
.popup-outer{
    position: absolute; 
    left: 0; 
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(85, 83, 83, 0.877);
    opacity: 0;
    display: none;
    pointer-events: none;
    /* box-shadow: 0 10px 15px rgba(71, 71, 71, 0.692); */
    transform: scale(.5);
    transition: all 0.6s ease-in-out;
    z-index: 2000;
  }
 
  .popup-box { 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    width: 30%;
    margin: 0 auto;
    /* left: 10%; */
    top: 150px;
    padding: 30px 10px 20px;
    background: #eeeeee;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(71, 71, 71, 0.692);
  }
  .popup-box .close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: #b4b4b4; 
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .popup-box .close:hover {
    color: #333;
  }
 .popup-box .popUp-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
  }
  .popIcon{
    margin: 10px;
    padding: 5px 12px;
    border: 2px solid red;
    border-radius: 50%;
    font-size: 60px;
  }
  .popIcon.success{
    border: 3px solid green;
    /* background-color: green; */
  }
  .popIcon.error{
    border: 3px solid rgb(219, 40, 40);
    /* background-color: rgb(219, 40, 40); */
  }
  .popUp-display span{
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px; 
  }
  .popUp-display p.text{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgb(50, 58, 58);
  }
  .popup-box .button {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .popup-box .button button {
    outline: none;
    border: none;
    width: 90%;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #197a92;
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease; 
  }
  .popup-box .button a {
    text-align: center;
    outline: none;
    border: none;
    width: 50%;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 6px;
    background: inherit;
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .popup-box .button button.cancel {
    background: #c44e7b;
  }
  .popup-box .button button.cancel:hover {
    background: #971f4d;
  }
  .popup-box .button button.Ok:hover {
    background: #1d9dcf;
  }

  /* FOR MEDIUM SCREEN DISPLAY*/
  @media only screen and (max-width:800px) and (min-width:520px) {
      .card-wrapper{
          display: flex;
          justify-content: space-between;
          box-sizing: border-box;
          width: 100%;
          margin: 30px 0;
      }
  }

  /* FOR SMALL SCREEN DISPLAY */
  @media only screen and (max-width: 519px) { 
    .sm-none{
      display: none;
    }
     .popup-box { 
      top: 120px;
      padding: 20px 10px 20px;
      width: 90%;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 5px rgba(71, 71, 71, 0.692);
    }
    .popIcon{
      font-size: 45px;
    }
    .popUp-display span{
      font-size: 20px;
    }
    .popUp-display p.text{
      font-size: 15px;
    }
    .popup-box .button button {
      width: 100%;
      margin-top: 0;
      margin-left: 0;
      font-size: 15px;
    }
  }