.searchBarElement {
    width: 90%;
    max-width: 700px;
    height: 3.5rem;
    padding: 0 0.5rem;
    border-radius: 1000rem;
    align-items: center;
    flex: 0 1 90%;
    transition: flex 0.2s ease, transform 0.5s var(--naturalAnimation);
    overflow: hidden;
}

.searchBarElement:not(.active):hover {
    transform: scale(1.035);
}

.searchBarElement i {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    padding: 0.5rem;
    font-size: 1.5rem;
    background-color: var(--blueColor);
    color: white;
    transition: transform 0.5s var(--naturalAnimation);
    cursor: pointer;
    margin-right: 0.3rem;
}

.searchBarElement i:hover {
    transform: scale(1.3);
}

.searchBarElement i:active {
    transform: scale(0.9);
}

.searchBarElement .types {
    height: 100%;
    flex: 1 0 auto;
    gap: 0.1rem;
    align-self: stretch;
    transition: flex 0.2s ease;
}

.searchBarElement .types > div.type {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--textColor);
    border-radius: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.searchBarElement.active .types > div.type {
    padding: 0.5rem 0.2rem;
    height: min-content !important;
    align-self: center;
    border-radius: 0.5rem;
}

.searchBarElement.active .types > div.type.active {
    font-size: 0.9rem;
    background-color: rgba(0 0 0 / 0.1);
}

.searchBarElement.active .types > div.type:not(.active) {
    font-size: 0.7rem;
}

.searchBarElement.active .separator {
    height: 50% !important;
}

.searchBarElement .types > div.type:hover {
    background-color: rgba(0 0 0 / 0.1);
}

.searchBarElement .types > div.separator {
    width: 1px;
    height: 70%;
    background-color: var(--lightBorderColor);
    border-radius: 0.5rem;
    border: 0;
    align-self: center;
    transition: background-color 0.1s ease, height 0.25s ease;
}

.searchBarElement input {
    flex: 0 1 0px;
    border: 0;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1rem;
    min-width: 0;
    padding-right: 0.5rem;
    margin-left: 0.3rem;
}

.searchBarElement:not(.active) .types > div.separator:has(+ div:hover),
.searchBarElement:not(.active) .types > div:hover + .separator {
    background-color: transparent;
}

.searchBarElement:not(:focus) input {
    display: none;
}

.searchBarElement.active {
    flex: 0 1 100%;
}

.searchBarElement.active .types {
    flex: 0 0 auto;
}

.searchBarElement.active input {
    display: flex;
}


.listObjectElement {
    display: grid;
    justify-content: stretch;
    align-content: stretch;
    font-size: 1rem;
    grid-template-rows: repeat(auto-fit, min-content);
    width: 100%;
    height: min-content;
    gap: 0.8rem;
}

.listObjectElement > div {
    align-items: center;
    overflow: hidden;
    min-width: 0;
}

.listObjectElement .compBullet {
    border-radius: 1000rem;
}

.listObjectElement i.compBullet {
    height: min-content;
    width: min-content;
    font-size: 1rem;
}

.listObjectElement i.compBullet.fa-circle-dot {
    color: var(--darkerYellowColor);
}

.listObjectElement i.compBullet.fa-circle-check {
    color: var(--correctColor);
}

.listObjectElement i.compBullet.fa-circle-xmark {
    color: var(--incorrectColor);
}

.listObjectElement i.fa-fire {
    color: var(--streakColor);
}

.listObjectElement i.fa-stopwatch {
    color: var(--blueColor);
}

.ScoreCircleElement {
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
    overflow: visible;
}

.ScoreCircleElement span.clickMe {
    position: absolute;
    top: 50%;
    left: 100%;
    width: max-content;
    transform: translateY(-50%);
    color: var(--textColor);
    font-size: 1.2rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.ScoreCircleElement > div {
    position: absolute;
    font-size: 3.2rem;
    font-weight: 500;
    overflow: hidden; /* Constrain the area */
}

.ScoreCircleElement > div.bottom {
    top: 0;
    left: 0;
    background-color: white;
    color: var(--blueColor);
    z-index: 1;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
}

.ScoreCircleElement > div.top {
    height: 110%;
    width: 110%;
    left: -5%;
    top: -5%;
    opacity: 0;
    background-color: var(--blueColor);
    color: white;
    z-index: 2;
}