.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option {
    position: relative;
    width: 60px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background-color: var(--bg);
    cursor: pointer;
    overflow: hidden;
}

.option-wrapper span {
    color: var(--white);
    font-family: sans-serif;
    font-weight: 600;
}

.circle {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid black;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

.option.selected .circle {
    left: calc(100% - 28px);
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: calc(100%);
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 24px;
}

.row:last-child {
    margin-bottom: 0px;
}

.row:first-child {
    margin-top: 0px;
}

