.cdu-circle-small-wrapper {
  position: relative;
}

.cdu-circle-small-wrapper .cdu-logo-wrapper,
.cdu-circle-small-wrapper .logo-wrapper {
  position: absolute;  
  top: 52px;  
  left: 44px;
}

img.custom-logo {
  max-width: 200px;
  max-height: 60px;
  width: auto;
}

.cdu-circle-small-wrapper.cdu-circle-with-animation .cdu-circle {
  animation: circle-animation 60s 0s infinite linear;
}

@keyframes circle-animation {
  0% {
    transform: rotateZ(0deg);
  }

  100% {  
    transform: rotateZ(360deg);
  }
}

