.cursors-flex {
    transition: all 1s ease;
    display: flex;
    align-items: center;
    position: absolute;
    margin-left: 20px;
    margin-right: 20px;
    left: 0;
    right: 0;
    opacity: 0;
}

.cursors {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 10vh;
    z-index: 10;
}

.cursor:hover {
    cursor: pointer;
    background-color: rgb(0, 192, 163, 0.5);
}

/* .cursors{
    display: none;
} */

.cursor>span {
    display: none;
    color: #777;
    font-size: 15px;
    white-space: nowrap;
    width: fit-content;
}

/* .cursor.highlighted>span {
    border-bottom: #00c0a3 1px solid;
} */

.cursor {
    background-color: white;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    border: 2px solid #777;
    transition: all 1s ease, background-color 0.7s ease-out;
    flex-shrink: 0;
}

.cursor.highlighted {
    background-color: #00c0a3;
    border-color: #00c0a3;
}

.timeline.highlighted {
    border-color: #00c0a3;
}


.timeline {
    transition: opacity 1s ease, background-color 1s ease;
    display: block;
    background-color: white;
    box-sizing: border-box;
    width: 20vw;
    height: 0;
    border: 1px solid #777;
}
