.esconder.esconder.esconder.esconder {
  display: none !important;
}

.top-strip {
  background-color: #05de6e;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 9999;
}
.top-strip b {
  font-weight: 900;
}
.top-strip ~ div {
  margin-top: 50px;
}

h3.viewers {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 25px 0 0;
  color: #fff;
}
h3.viewers b {
  font-weight: 900;
}

.notification {
  position: fixed;
  bottom: 0.625rem;
  left: 0.625rem;
  display: flex;
  background-color: #FFF;
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
  border-radius: 0.25rem;
  gap: 0.625rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
  align-items: center;
  transform: translateY(200%);
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
.notification.active {
  transform: translateY(0);
}
.notification .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3125rem;
  font-size: 0.75rem;
}
.notification .text .name {
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0 0 0.125rem;
}
.notification .text .quantity {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5607843137);
  font-size: 0.75rem;
  margin: 0 0 0.125rem;
}
.notification .text h5 {
  margin: 0;
}
.notification .text .time {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5607843137);
  font-size: 0.625rem;
}
.notification .text .verified {
  font-weight: 700;
  color: #00A650;
  position: relative;
  margin-left: 1.875rem;
}
.notification .text .verified::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M5.5 11.5L2 8l1.5-1.5 2 2 4.5-4.5L13 5l-7.5 6z'/%3E%3C/svg%3E");
  position: absolute;
  left: -0.625rem;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #00A650;
  border-radius: 50%;
  padding: 0.0625rem;
  transform: translate(-50%, -50%);
}
.notification .close {
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(0, 0, 0, 0.3490196078);
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 0.875rem;
  cursor: pointer;
}

@media (min-width: 425px) {
  .top-strip {
    font-size: 16px;
  }
}
@media (min-width: 576px) {
  .top-strip {
    font-size: 18px;
  }
}
.custom-btn-buy {
  background-color: #05DE6E !important;
  border-color: #05DE6E !important;
  color: #FFF;
  animation: pulse 1s infinite;
}
.custom-btn-buy:hover {
  background-color: #04ac55 !important;
  border-color: #04ac55 !important;
  color: #FFF;
  animation-play-state: paused;
}

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