.sideItemPicker {
    width: 30%;
    height: 40rem;
    border: 1px solid lightgrey;
    vertical-align: top;
    display: inline-block;
    position: relative;
}

.sideItemPicker__option, .sideItemPicker__option--active {
    width: 100%;
    padding: .3rem;
    border-bottom: 1px solid lightgrey;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
}

.sideItemPicker__option--active {
    background-color: #DDD;
}

@media screen and (max-width: 991px) {
    .sideItemPicker {
        width: 100%;
    }
}