I have the following HTML:
<div class="row">
    <div class="col">
        <div class="wrapper">
            <input type="radio" value="value-0" />
        </div>
    </div>
    <div class="col">
        <div class="wrapper">
            <input type="radio" value="value-1" checked="checked" >
        </div>
    </div>
</div>
Is there a way in SASS to select .col, closest to a checked radio button?
 
     
    