.contatore-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.contatore-inline {
    display: flex;
    gap: 3px;
}

.cifra {
    width: 20px;
    height: 28px;
    background: #0d1a2b;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.25),
        0 2px 5px rgba(0, 0, 0, 0.25);
}

.flip-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.digit {
    height: 28px;
    line-height: 28px;
}

.contatore-label {
    font-size: 0.75rem;
    margin-top: 6px;
    color: #355866;
    opacity: 0.7;
}