.toastmsg-wrp {
  position: relative;
  width: 100%;

}

.hidden-popup {
    display: none;
}

.toastmsg-wrp .text-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  border-radius: 8px;
  background-color: #F4FBF7;
  border: 0.3px solid #27AE60;
  position: absolute;
  left: 50%;
  top: 40px;
  margin-top:-30px;
  transform: translateX(-50%);
  color: #27AE60;
  font-weight: 500;
  font-size: 14px;
  gap: 8px;
  z-index: 99;
}
.toastmsg-wrp .text-wrp button {
  background-color: transparent;
  border: none;
}

.error-toast-msg {
  position: relative;
  width: 100%;
}
    .error-toast-msg .text-wrp {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: -moz-fit-content;
        width: fit-content;
        padding: 16px;
        border-radius: 8px;
        background-color: #FEF7F7;
        border: 0.3px solid #EB5757;
        position: absolute;
        left: 50%;
        top: 40px;
        margin-top: -30px;
        transform: translateX(-50%);
        color: #EB5757;
        font-weight: 500;
        font-size: 14px;
        gap: 8px;
        z-index: 99;
    }
.error-toast-msg .text-wrp button {
  background-color: transparent;
  border: none;
}

.text-wrp {
  opacity: 0;
  animation: fadeIn 3s ease-in both;
}

@keyframes fadeIn {
  from {
    top: -32px;
    opacity: 0;
  }
  to {
    opacity: 1;
    top: 0px;
  }
}/*# sourceMappingURL=popup.css.map */