.reflexscore {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: fit-content;
    box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.25);
}

.reflexscore .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Metropolis Regular";
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.27px;
    background-color: #f0f0f0;
    height: 75px;
    width: 100%;
}

.reflexscore .description {
    font-family: "Metropolis Regular";
    font-size: 16px;
    letter-spacing: 0.16px;
    color: #333;
    padding: 10px 20px;
}

.reflexscore .scoreValue {
    position: relative;
    top: -55px;
    font-family: "Metropolis Semi Bold";
    font-size: 18px;
    letter-spacing: 0.18px;
    color: #0d4962;
}

.reflexscore .reflexGraph {
    width: 100%;
    display: flex;
    justify-content: center;
}

.reflexscore .wrapper {
    width: 94%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    align-items: center;
}

.reflexscore .wrapper .labels,
.reflexscore .wrapper .axis {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.reflexscore .wrapper .graph {
    display: flex;
    width: 98%;
    align-items: center;
}

.reflexscore .wrapper .graph .start,
.reflexscore .wrapper .graph .end {
    display: flex;
    width: 5px;
    height: 28px;
    background-color: #aed8eb;
    border: 1px solid #0d4962;
    border-radius: 2px;
}

.reflexscore .wrapper .graph .end {
    background-color: #0d4962;
}

.reflexscore .wrapper .graph .middle {
    height: 10px;
    width: calc(100% - 14px);
    background-image: linear-gradient(
        90deg,
        #aed8eb 33.33%,
        #0eb5fe 33.33%,
        #0eb5fe 66.66%,
        #0d4962 66.66%
    );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-top: 1px solid #0d4962;
    border-bottom: 1px solid #0d4962;

    margin: 0px;
}

.reflexscore .wrapper .graph .middle .neddle {
    position: relative;
    top: -15px;
    left: 50%;
    width: 25px;
    height: 15px;
    background-image: linear-gradient(to bottom right, transparent 50%, #0d4962 0),
        linear-gradient(to top right, #0d4962 50%, transparent 0);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: left, right;
}

.reflexscore .wrapper .labels .label,
.reflexscore .wrapper .axis .ref {
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    letter-spacing: 0.14px;
    color: #0d4962;
}

.reflexscore .wrapper .axis .ref {
    width: 20%;
    display: flex;
    flex-wrap: wrap;
}

.reflexscore .wrapper .axis .ref.right {
    text-align: right;
}
