@keyframes gradient-border {
  0% {
    border-image-source: linear-gradient(45deg, #3b82f6, #9333ea);
  }
  50% {
    border-image-source: linear-gradient(45deg, #9333ea, #f59e0b);
  }
  100% {
    border-image-source: linear-gradient(45deg, #3b82f6, #9333ea);
  }
}

.animated-border {
  border: 2px solid transparent;
  border-radius: 9999px;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-image: linear-gradient(white, white), linear-gradient(45deg, #3b82f6, #9333ea);
  animation: gradient-border 3s linear infinite;
}

.licrotated-bg {
  position: relative;
  overflow: hidden;
}

.licrotated-bg::before {
    content: '';
    position: absolute;
    top: -23%;
    left: -33px;
    width: 150px;
    height: 150px;
    background-image: url(/assets/images/icons8-license-100.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(27deg);
    transform-origin: center;
    pointer-events: none;
    opacity: 0.5;
}
.wpcrotated-bg, .logowordpress {
  position: relative;
  overflow: hidden;
}

.wpcrotated-bg::before, .logowordpress::before {
  content: '';
  position: absolute;
  top: -23%;
  left: -33px;
  width: 150px;
  height: 150px;
  background-image: url(/assets/images/icons8-wordpress-144.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(27deg);
  transform-origin: center;
  pointer-events: none;
  opacity: 0.5;
}

.urlcrotated-bg {
  position: relative;
  overflow: hidden;
}

.urlcrotated-bg::before {
  content: '';
  position: absolute;
  top: -23%;
  left: -33px;
  width: 150px;
  height: 150px;
  background-image: url(/assets/images/icons8-url-96.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(27deg);
  transform-origin: center;
  pointer-events: none;
  opacity: 0.5;
}

.alertcrotated-bg {
  position: relative;
  overflow: hidden;
}

.alertcrotated-bg::before {
  content: '';
  position: absolute;
  top: -23%;
  left: -33px;
  width: 150px;
  height: 150px;
  background-image: url(/assets/images/icons8-alert-100.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(27deg);
  transform-origin: center;
  pointer-events: none;
  opacity: 0.5;
}

