<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bc-circular-title{
    display: block;
    width: fit-content;
    height: fit-content;
}
.bc-circular-title .bc-circular-title__element[data-bc-hidden]{
    opacity: 0;
}
.bc-circular-title .bc-circular-title__element{
    width: 200px; /**/
    height: 200px; /**/

    display: flex;
    justify-content: center;
    align-items: center;
}
.bc-circular-title .bc-circular-title__wrapper--spin {
    animation: round;
    animation-duration: 15s; /*duration*/
    animation-timing-function: linear; /*easing*/
    animation-iteration-count: infinite;
}
@keyframes round {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}</pre></body></html>