.technical-details .technical-details-content {
    margin-top: 16px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 2px 4px 22px 0 rgb(0 0 0 / 12%);
    padding: 45px 30px 70px;
}

.section.technical-details-container h3 {
    font-weight: var(--font-weight-medium);
    font-size: var(--f-s-sub-title);
    text-align: center;
    color: var(--color-primary);
}

.technical-details .label {
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: var(--font-weight-regular);
    line-height: 21px;
    margin-bottom: 5px;
}

.technical-details .value {
    color: var(--color-text-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 21px;
    margin-top: 5px;
}

.technical-details .pivot-point {
    flex: 0 0 10%;
    max-width: 10%;
    position: relative;
    z-index: 1;
    top: 15px;
}

.technical-details .pivot-point .content {
    border-radius: 4px;
    border: 1px solid var(--color-dark-gray-2);
    background: var(--color-dark-gray-2);
    padding: 8px 5px;
}

.technical-details .pivot-point div {
    color: var(--color-white);
    text-align: center;
    font-size: 10px;
    font-weight: var(--font-weight-medium);
    line-height: 18px;
    letter-spacing: 0.2px;
}

.technical-details .support-details,
.technical-details .resistance-details {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.technical-details .bar-value-column {
    flex: 0 0 32%;
    max-width: 32%;
    text-align: center;
}

.technical-details .list-items {
    display: flex;
    position: relative;
}

.technical-details .wrapper {
    position: relative;
    display: flex;
}

.technical-details .wrapper::after,
.technical-details .list-items::after {
    content: "";
    width: 100%;
    height: 1px;
    border: dashed 1px var(--color-gray-15);
    position: absolute;
    top: 40px;
}

.technical-details .bar {
    width: 10px;
    height: 100%;
    border-radius: 4px;
    background: var(--color-yellow-7);
    position: relative;
    z-index: 9;
    margin: auto;
}

.technical-details .bar.low {
    height: 50%;
}

.technical-details .bar.medium {
    height: 75%;
}

@media (width<=768px) {
    .technical-details .wrapper {
        flex-wrap: wrap;
    }

    .technical-details .wrapper > div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .technical-details .pivot-point {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }
}
