.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.fl-right{
  float: right;
}

.pulsate {
  font-weight: bold;
  animation: pulse 1s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.navbar-custom {
    background-color: #f8f9fa; /* Light gray background */
    padding: 10px;
}
.navbar-logo img {
    height: 60px;
}
.nav-item a {
    color: black;
    font-size: 16px;
    font-weight: normal;
}
.nav-item a.active {
    color: black;
    font-weight: bold;
}
.btn-login {
    background-color: #333;
    color: white;
    padding: 6px 20px;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    position: relative;
}
.timeline-dot {
    align-self: center;
    z-index: 100;
}
.bg-white-hover:not(:hover) {
    background-color: white;
}
.bg-white-hover{
    z-index: 100;
}
.timeline-dot::after {
    z-index: 99;
    content: "";
    width: 1px;
    bottom: 0;
    position: absolute;
    top: 0;
    left: 20px;
    border-right: 1px dashed grey;
}
.timeline-item:first-child .timeline-dot:after {
    top: calc(50% + 10px);
}
.timeline-item:last-child .timeline-dot:after {
    bottom: calc(50% - 10px);
}

.purchase-card {
    position: fixed;
    top: 75%;
    right: 0;
    transform: translateY(-50%);
    width: 350px;
    border: 1px solid #000;
}
