mark {
  background: none;
  color: inherit;
  font-weight: inherit;
}

.button {
  background: linear-gradient(0deg, rgb(247, 207, 2), rgb(255, 252, 189));
  transition: all 0.2s linear;
}

.button:hover {
  background: rgb(253, 213, 14);
}

.scale {
  transition: all 0.2s linear;
}

.scale:hover {
  scale: 1.06;
}

.bg-gradient-yellow {
  background: linear-gradient(to top, #4e2b6f, #7a4d9a);
}

.secondary-border {
  box-shadow: #e6dff0 0px 0px 0px 3px inset, #7a4d9a 0px 0px 10px 0px;
}

.primary-border {
  box-shadow: #4e2b6f 0px 0px 0px 3px inset, #7a4d9a 0px 0px 10px 0px;
  border-radius: 6px;
}

.bg-customContent {
  background: radial-gradient(circle, #4e2b6f 0px, #3b2156 100%);
}

.bg-secondary-customContent {
  background: linear-gradient(to top, #7a4d9a 50%, #4e2b6f 51%);
}

.bg-secondary-customContent:hover {
  background: linear-gradient(to top, #4e2b6f 50%, #7a4d9a 51%);
}

@media screen and (min-width: 768px) {
  .shape-primary {
    background: linear-gradient(90deg, #4e2b6f, #7a4d9a, #4e2b6f);
  }

  .shape-normal {
    background: #7a4d9a;
  }

  .shape {
    clip-path: polygon(0% 0%, 0 70%, 50% 100%, 100% 70%, 100% 0%);
  }
}

.pulsing {
  display: inline-block;
  animation: pulsing-animation 1.3s ease-in-out infinite;
}

@keyframes pulsing-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

mark {
  background: none !important;
}
