CSS to increase picture choice size

CSS to increase picture choice size:

// The changes will be reflected when the window width is greater than 991px

@media (min-width: 991px) {
.ss-answer-option--picture-choice {
width: 300px;
min-height: 300px;
}
.ss-answer-option--picture-choice .ss-img-container {
height: calc(300px - 56px);
}
}