.control-wrapper {
    max-width: 250px;
    margin: 0 auto;
}

.label {
    font-size: 14px;
    margin-bottom: 6px;
}

#circle1 {
    animation: bounce 1s infinite ease-in-out;
}

#rect1 {
    animation: pulse 1.5s infinite ease-in-out;
}

.higlighted-button {
    animation: highligth 2s;
}

.custom-tab-header {
    white-space: nowrap;
    max-width: 200px;
    justify-content: start !important;
    height: 100% !important;
}



@keyframes highligth {
    0% {
        color: black;
    }

    100% {
        color: yellow
    }
}

@keyframes flow-left {
    to {
        stroke-dashoffset: 100;
    }
}

@keyframes flow-right {
    to {
        stroke-dashoffset: -100;
    }
}

@keyframes moveAlongPath {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
