.container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
    padding: 64px 40px;

    height: 100%;
    width: 100%;

    background: white;
    border-radius: 32px;
}

.weights-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.main-heading {
    font-size: 46px;
    line-height: 42px;
    font-weight: 600;
    color: #020701;
    text-align: center;
}

.unit-text {
    font-size: 40px;
    line-height: 32px;
    color: #020701;
    text-align: center;
}

.sub-heading {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(2, 7, 1, 0.5);
    text-align: center;
}


.slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    transition: all 0.2s ease-in-out;
}

.progress-container{
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(to right, #29911C, #FFEFDA);
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #6E9572;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #6E9572;
    cursor: pointer;
}


.weight-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.weight {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}
