.alert.text-danger p {
	color: var(--danger) !important;
}
.alert.text-success p {
	color: var(--success) !important;
}
ul.ulref li {
	padding: 0 5px;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text-purple {
  color:#A939E3;
}
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
  display: inline-block;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}