.badge-wrapper {
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
}

.badge {
  padding: 1rem 2rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--bold) !important;
  display: flex;
  font-size: 1rem;
  cursor: pointer;
  color: var(--bold)
}

.badge:hover {
  border-color: var(--bold) !important;
  box-shadow: 0 0 0 1px var(--bold), 0 0 0 1px var(--bold) inset !important;
  background: rgba(var(--white-rgb, 255, 212, 69), 0.05);
}

.title-center {
  font-size: 2rem;
  width: 100%;
  display: flex;
  padding: 1rem;
  position: relative;
  z-index: 5;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.page-margins {
  padding: 2rem 4rem;
}


.shine:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 40px;
  height: 100%;
  opacity: 1;
  background: rgba(255, 255, 255, 0);
  filter: blur(10px);
  transform: skewX(-30deg);
  animation-name: slide;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0.13) 77%,
      rgba(255, 255, 255, 0.5) 92%,
      rgba(255, 255, 255, 0.0) 100%);
}

@keyframes slide {
  0% {
    left: 0;
    top: 0;
  }

  30% {
    left: 120%;
    top: 0;
  }

  100% {
    left: 120%;
    top: 0;
  }
}



.shake {
  animation: shake 1.2s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.pulse {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}