#toast-container .toast {
  border: none;
  background-color: #00a8ff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0.9;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out
}

#toast-container .toast .toast-message {
  font-weight: normal
}

#toast-container .toast:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  opacity: 1
}

#toast-container .toast-success {
  background-color: #20bf6b
}

#toast-container .toast-error {
  background-color: #e84118
}

#toast-container .toast-warning {
  background-color: #ffa801
}

.text-discord {
  color: #7289DA
}

.main-wrapper {
  min-height: 90vh
}

.bee_fly {
  -webkit-animation: bee_fly 5s ease-in-out 0s infinite;
  animation: bee_fly 5s ease-in-out 0s infinite
}

@-webkit-keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg)
  }

  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg)
  }

  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg)
  }
}

@keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg)
  }

  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg)
  }

  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg)
  }
}

.nl2br {
  white-space: pre-line
}

.loader-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white
}

.product-feed-image {
  position: relative;
  overflow: hidden
}

.product-feed-image.aspect-ratio-1-1 {
  padding-bottom: 100%
}

.product-feed-image.aspect-ratio-16-9 {
  padding-bottom: 56.25%
}

.product-feed-image.aspect-ratio-4-5 {
  padding-bottom: 125%
}

.product-feed-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.code-block {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #444;
  overflow-x: auto
}

/* New animation for active links */
.dropdown-links a.animation-new::after {
  content: "Nuevo";
  margin-left: 55px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

/*# sourceMappingURL=main.css.map */