#activemyIdt  .toast {
    position: absolute;
    top: 25px;
    right: 1px;
    width: 55vh;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    animation: shake 0.7s cubic-bezier(.36,.07,.19,.97) forwards, disappear 0.3s linear 4.5s forwards;
    display: block !important;
    }

    #activemyIdt .toast.activemyId {
    transform: translateX(0%);
    }
  
    #activemyIdt .toast .toast-content {
    display: flex;
    align-items: center;
    }
  
    #activemyIdt .toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    }
  
    #activemyIdt .message .text {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    }
  
    #activemyIdt .message .text.text-1 {
    font-weight: 600;
    color: #333;
    }
  
    #activemyIdt  .toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    }
  
    #activemyIdt .toast .close:hover {
    opacity: 1;
    }
  
    #activemyIdt  .toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
  
    }
  

  
    #activemyIdt .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    min-width: 15px;
    background-color: #4070f4 !important;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    }
  
  
    #activemyIdt .toast  .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #c90c0c;
    }

    #activemyIdt .toasta  .progress:before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      height: 100%;
      width: 100%;
      background-color: #4070f4 !important;;
      }
  

    
    #activemyIdt .toast-content .fa-exclamation-triangle {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 35px;
      min-width: 35px;
      background-color: #c90c0c;
      color: #fff;
      font-size: 20px;
      border-radius: 50%;
      }
  
    #activemyIdt .progress.activemyId:before {
    animation: progress 5s linear forwards;
    }
  
    @keyframes progress {
    100% {
        right: 100%;
    }
    }
  
  
        @keyframes shake {
        0% {
            transform: translate(0);
        }
        25% {
            transform: translate(3px, 3px);
        }
        50% {
            transform: translate(0);
        }
        75% {
            transform: translate(-3px, -3px);
        }
        100% {
            transform: translate(0);
        }
        }
  
        @keyframes disappear {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
        }


        /* If you like this, be sure to ❤️ it. */
.wrapper {
    height: 100vh;
    /* This part is important for centering the content */
    display: flex;
    align-items: center;
    justify-content: center;
    /* End center */
    background: -webkit-linear-gradient(to right, #834d9b, #d04ed6);
    background: linear-gradient(to right, #834d9b, #d04ed6);
  }
  
  .wrapper a {
    display: inline-block;
    text-decoration: none;
    padding: 15px;
    background-color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    color: #585858;
    font-family: 'Montserrat', sans-serif;
   
  }
  
  .modal {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all .4s;
     font-size: 23px;
  }
  
  .modal:target {
    visibility: visible;
    opacity: 1;
  }
  
  .modal__content {
    border-radius: 4px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: #FFB6C1;
    padding: 1em 2em;
  }
  
  .modal__footer {
    text-align: center;
    font-size: 16px !important;
   
  }
  
  .modal__footer a {
    color: #585858;
   
  }
  .modal__footer  i {
    color: #d02d2c;
  }
  .modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #585858;
    text-decoration: none;
  }