.depth-tracker {
    position: sticky;
    top: 30%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.depth-tracker-inner {
    display: flex;
    align-items: start;
    gap: 10px;
}

#depth-num-img {
    max-height: 200px;
    max-width: 35px;
    filter: invert(1);
}

#depth-num {
    color: var(--black, #222);
    font-family: var(--font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.24px;
    margin-top: 50px;
    --invert-filter: invert(1);
}

#depth-num::before {
    content: url('./images/depth-tracker-angle.svg');
    width: 10px;
    height: 10px;
    margin-right: 8px;
    align-self: center;
    filter: var(--invert-filter);
    transition: filter 0.3s;
}

@media(min-width: 200px) {
    .depth-tracker {
        display: none;
    }
}

@media(min-width: 1024px) {
    .depth-tracker {
        display: block;
    }
}