<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.verified-badge {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.verified-badge svg {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.verified-color svg path:first-child {
  /*display: none;*/
  fill: rgb(24, 119, 242) !important;
}

.verified-color svg path:last-child {
  /*display: none;*/
  fill: rgb(255, 255, 255) !important;
}

/* Radiating ring effect */
/*
.verified-badge::before,
.verified-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(24, 119, 242, 0.5);
  animation: pulse-ring 2s infinite;
  z-index: 0;
}

.verified-badge::after {
  animation-delay: 1s;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
*/

/* Responsive Sizes */
@media (min-width: 600px) {
  .verified-badge {
    width: 2rem;
    height: 25rem;
  }
}

@media (min-width: 1024px) {
  .verified-badge {
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 1600px) {
  .verified-badge {
    width: 3rem;
    height: 3rem;
  }
  
}</pre></body></html>