
@keyframes confetti-slow {
    0% {
      transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
      transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
  }
  @keyframes confetti-medium {
    0% {
      transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
      transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
  }
  @keyframes confetti-fast {
    0% {
      transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
      transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
  }
  .animation-outer {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
}
  .confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
  }
  .confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
  }
  .confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
  }
  .confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
  }
  .checkmark-circle {
    width: 124px;
    height: 124px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .checkmark-circle .background {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: #36c073;
    position: absolute;
    border: 12px solid rgb(58 81 69 / 70%);
}
  .checkmark-circle .checkmark {
    border-radius: 5px;
  }
  .checkmark-circle .checkmark.draw:after {
    -webkit-animation-delay: 100ms;
    -moz-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    -moz-animation-name: checkmark;
    animation-name: checkmark;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -moz-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    -o-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .checkmark-circle .checkmark:after {
    opacity: 1;
    height: 60px;
    width: 28.5px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    border-right: 5px solid white;
    border-top: 5px solid white;
    border-radius: 2.5px !important;
    content: "";
    left: 30px;
    top: 66px;
    position: absolute;
  }
  @-webkit-keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 28.5px;
      opacity: 1;
    }
    40% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
    100% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
  }
  @-moz-keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 28.5px;
      opacity: 1;
    }
    40% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
    100% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
  }
  @keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 28.5px;
      opacity: 1;
    }
    40% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
    100% {
      height: 60px;
      width: 28.5px;
      opacity: 1;
    }
  }
  .submit-btn {
    height: 36px;
    width: 140px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(87, 71, 81, 0.2);
    cursor: pointer;
    transition: all 2s ease-out;
    transition: all 0.2s ease-out;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 14px;
}
.toast-card {
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .payment-toast-sec {
    z-index: 9;
    overflow: hidden;
    position: fixed;
}
.toast-inside h1{
    font-size:18px;
    color: #fff;
}
.toast-inside p{
    font-size: 14px;
    color: #cccccc;
    padding-top: 5px;
}