.fadeInAnimation {
    animation: fadeIn 200ms ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dot-container {
    z-index: 2;
    position: absolute;
    height: 100%; width: 100%;
    transition: transform 400ms;
    transform: rotate(0);
}

.dot {
    content: '';
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    background: transparent;
    border-radius: 100%;
}

.spdRing {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%; left: 50%;
    border-radius: 100%;
}

.progress-ring {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%; left: 50%;
}

.progress-ring__circle {
    transition: stroke-dashoffset 350ms;
    transform: rotate(270deg);
    transform-origin: 50% 50%;
}

.info {
    margin-left: 32px;
}

.info .row {
    font-size: 32px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    margin: 6px;
    /*   https://css-tricks.com/almanac/properties/u/user-select/ */
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}

.info .row.activity { color: #F6337A; }
.info .row.exercise { color: #B1FD36; }
.info .row.stand { color: #15C2E0; }

.controls {
    display: flex;
}

.number-input {
    --color: white;
    border-radius: 5px;
    margin-right: 16px;
}

.number-input span {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
    text-align: center;
    transition: all 300ms;
    font-weight: 700;
    /*   https://css-tricks.com/almanac/properties/u/user-select/ */
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}

.number-input .increase:hover,
.number-input .decrease:hover {
    cursor: pointer;
    color: white;
}

.number-input[data-target="activity"] {
    --color: #F6337A;
}
.number-input[data-target="exercise"] {
    --color: #B1FD36;
}
.number-input[data-target="stand"] {
    --color: #15C2E0;
}