
  body {
    height: 100vh;
    justify-content: center;
    background-color: #f4f7ff;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  
  .toast {
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index:10000;
  }

  .toast.active {
    transform: translateX(0%);
  }

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

  .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #2770ff;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }

  .toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }

  .message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-shadow: none !important;
  }

  .message .text.text-1 {
    font-weight: 600;
    color: #333;
    text-shadow: none !important;
  }

  .toast .close {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    color:black;
  }

  .toast .close:hover {
    opacity: 1;
  }

  .toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    margin-bottom:0px;
    background-color: #fff;

  }

  .toast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #2770ff;
  }

  .progress.active:before {
    animation: progress 5s linear forwards;
  }

  @keyframes progress {
    100% {
      right: 100%;
    }
  }

  .toast.active ~ button {
    pointer-events: none;
  }





  .toast1 {
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index:10000;
  }

  .toast1.active {
    transform: translateX(0%);
  }

  .toast1 .toast-content {
    display: flex;
    align-items: center;
  }

  .toast1 .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #ed1132;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }

  .toast1 .toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }

  .toast1 .message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
  }

  .toast1 .message .text.text-1 {
    font-weight: 600;
    color: #333;
  }

  .toast1 .close {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    color:black;
  }

  .toast1 .close:hover {
    opacity: 1;
  }

  .toast1 .progress1 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    margin-bottom:0px;
    background-color: #fff;

  }

  .toast1 .progress1:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #ed1132;
  }

  .progress1.active:before {
    animation: progress 5s linear forwards;
  }

  @keyframes progress1 {
    100% {
      right: 100%;
    }
  }

  .toast1.active ~ button {
    pointer-events: none;
  }



  @media (max-width: 860px) {
    .toast1, .toast {
      width: 320px;
    }
  }