I have some options and I want them to be selectable.
<div class="row">
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 1</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 2</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 3</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 4</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 5</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 6</div>
</div>
<div class="col-lg-3 col-md-12 col-sm-12">
<div class="juice__box">Juice 7</div>
</div>
</div>
.new__order__choice .juice__box {
border: 2px solid var(--second-sub-color);
color: var(--second-sub-color);
display: block;
font-weight: 600;
padding: 10px 0;
text-align: center;
text-decoration: none;
border-radius: 8px;
margin: 10px 0;
cursor: pointer;
}
As you see I have 7 items and I want them to be selectable. I can add CSS for this but the thing that makes me confused is when I select the other ones, I want to deselect the selected one.
It should be like this:
If you could help me with it, I would be really glad. Thanks.

.new__order__choiceclasses from every item and the adds it back to the selected one.