.umessage-container-toast {
	position: fixed;
	display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 991;
}

.umessage-container-toast { height: 0; }
.umessage-container-toast.top-left { top: 0; left: 0; }
.umessage-container-toast.top-center { top: 0; left: 0; right: 0; }
.umessage-container-toast.top-right { top: 0; right: 0; }

.umessage-container-toast.center { top: 0; left: 0; right: 0; }

.umessage-container-toast.bottom-left { bottom: 0; left: 0; }
.umessage-container-toast.bottom-center { bottom: 0; left: 0; right: 0; }
.umessage-container-toast.bottom-right { bottom: 0; right: 0; }

.umessage-toast {
    width: 255px;
    max-width: 100%;
    border: 1px solid #ccc;
    padding: 0.75rem;
    border-radius: 10px;
	cursor: pointer;
	opacity: 0.88;
	transition: opacity 0.2s;
}
.umessage-toast:hover { opacity: 1; }

.umessage-toast.umessage-error {
	background-color: var(--bs-danger);
	color: #fff;
}
.umessage-toast.umessage-success {
	background-color: var(--bs-success);
	color: #fff;
}
.umessage-toast.umessage-info {
	background-color: var(--bs-info);
	color: #fff;
}

.umessage-toast > div > p:last-child { margin-bottom: 0; }

.umessage-toast.umessage-fadeout {
  opacity: 0;
}



.umessage-dialog {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 995;
	display: flex;
	align-items: center;
    justify-content: center;
}
.umessage-dialog > .umessage-content {
	display: flex;
    width: 570px;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
	background: #fff;
	flex-direction: column;
	border-radius: 10px;
}
.umessage-body, .umessage-footer {
    padding: 1rem;
    width: 100%;
    display: flex;
	justify-content: center;
    align-items: center;
}
.umessage-body { flex-direction: column; }
.umessage-body img { max-width: 100% !important; }





.checkmark_circle_success {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 5px;
  stroke-miterlimit: 10;
  stroke: #00C851;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark_circle_error {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 5px;
  stroke-miterlimit: 10;
  stroke: #ff4444;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark_circle_alert {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 5px;
  stroke-miterlimit: 10;
  stroke: #3e6ef5; /* Orange for alert */
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 5px;
  stroke: white;
  stroke-miterlimit: 10;
  margin: 10% auto;
}
.checkmark.success {
  box-shadow: inset 0px 0px 0px #00C851;
  animation: fillsuccess 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.checkmark.error {
  box-shadow: inset 0px 0px 0px #ff4444;
  animation: fillerror 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.checkmark.alert {
  box-shadow: inset 0px 0px 0px #3e6ef5; /* Orange for alert */
  animation: fillalert 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
/* Exclamation mark vertical line */
.checkmark_triangle {
  fill: #ffffff; /* Orange color for alert */
  opacity: 0;
  animation: triangleFade 0.6s ease-in-out 0.9s forwards;
}

/* Dot at bottom of exclamation mark */
.checkmark_dot {
  fill: #3e6ef5; /* Orange color for alert */
  opacity: 0;
  animation: dotFade 0.6s ease-in-out 1.2s forwards;
}

.checkmark_check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
}

.progress {
  transform: rotate(-90deg);
  stroke: black;
}

.progress circle {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: dash 1.5s infinite;
}

@keyframes dash {
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -130;
  }
}
.progress {
  position: absolute;
  top: 5%;
  left: 5%;
}
.progress.progress--thin {
  left: auto;
  right: 5%;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fillsuccess {
  100% {
    box-shadow: inset 0px 0px 0px 75px #00C851;
  }
}
@keyframes fillerror {
  100% {
    box-shadow: inset 0px 0px 0px 75px #ff4444;
  }
}
@keyframes fillalert {
  100% {
    box-shadow: inset 0px 0px 0px 75px #3e6ef5; /* Orange fill */
  }
}
@keyframes triangleFade {
  100% {
    opacity: 1;
  }
}
@keyframes dotFade {
  100% {
    opacity: 1;
  }
}