.h-1 {
  height: 0.25rem !important;
  background: black;
  opacity: 1;
}

.font-italic {
  font-style: italic;
}

.text-blue {
  color: #2563eb;
}

.subtitle {
  font-weight: 400;
}

.footer {
  background-color: #263238;
}

.footer-text {
  font-size: 0.7rem;
}

button, .button-link {
  padding: 15px 0 !important;
  border-radius: 3px !important;
  background-color: #006ac9 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.text-success {
  color: #22c55e !important;
}

.hidden {
  display: none;
}

.show {
  display: block;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sections {
  margin-bottom: 100px;
}

.custom-card {
  border-top: #22c55e solid 4px !important;
}

.avatar {
  border-radius: 200px !important;
}

.card.notification {
  width: 355px;
  border-radius: 20px;
  z-index: 99999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 600px;
  box-shadow: 0 0 7px 2px rgb(81 162 215 / 40%);
  background-color: #fff;
  cursor: pointer;
}

.alert-wrapper {
  padding: 10px;
}

.user-image {
  border-radius: 10000px;
}

.alert-wrapper {
  display: flex;
  align-items: center;
}

.image-wrapper {
  margin-right: 10px;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content {
  display: flex;
  flex-direction: column;
}

.text-content span {
  margin-bottom: 5px;
}

#user-name {
  font-weight: bold;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Apply animations to user-alert element */
.user-alert {
  display: none; /* Hide the element by default */
}

/* Add animation properties */
.user-alert.animated {
  display: block;
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* Add fadeInDown class to trigger animation */
.user-alert.fadeInDown {
  animation-name: fadeInDown;
}

.user-alert {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 9999999999999 !important;
  display: none;
}

.description{
  font-size: 13px;
}