/* Adjusted for your logo */
.ctsloader {
  width: 12em;
  height: auto; /* Preserve aspect ratio */
}

.ctsloader path {
  stroke: #000;
  stroke-width: 5px; /* Increased for visibility */
  animation: dash 4s ease-in-out infinite,
    offset 4s linear infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 0 1 359 0;
  }

  50% {
    stroke-dasharray: 0 359 1 0;
  }

  100% {
    stroke-dasharray: 359 1 0 0;
  }
}

@keyframes offset {
  0% {
    stroke-dashoffset: 365;
  }

  100% {
    stroke-dashoffset: 5;
  }
}