
.row-options {
    display: flex;
    flex-flow: row wrap;
}

@media only screen and (max-width: 700px) {
    .row-options {
        flex-direction: column;
    }
}

.sample-images-row{
    max-height: 300px;
    overflow-y: scroll;
    padding: 1rem 0.5rem 0;
    /*flex-direction: column;*/
    /*overflow-y: hidden;*/
}

.sample-images-row .sample-image-label{
    /*padding: 2.5rem 1rem 1.3rem;*/
}

.sample-image {
    width: 124px;
}

.sample-image-.sample-image-label {
    max-width: 288px;
}

.row-options > div {
    /*flex: 1;*/
    /*padding: 0.5rem;*/
    margin: 0 2rem 1rem;
}

.question{
    text-align: center;
    margin: 2rem 0 2.5rem;
    font-size: 1.6rem;
    color: rgba(121, 126, 134, 1);
}

.model-category {
	font-size: 1rem;
	font-weight: normal;
	text-transform: capitalize;
	margin: 0.8rem 0 0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:not(:disabled) ~ .sample-image-label {
    cursor: pointer;
}

input[type="radio"]:disabled ~ .sample-image-label {
    color: rgba(188, 194, 191, 1);
    border-color: rgba(188, 194, 191, 1);
    box-shadow: none;
    cursor: not-allowed;
}

.sample-image-label {
    /*height: 100%;*/
    display: block;
    background: #f7fafc;
    border: 2px solid #f7fafc;
    /*border-radius: 20px;*/
    /*padding: 2.5rem 0 2.3rem;*/
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    /*box-shadow: 0px 3px 10px -2px rgba(176, 205, 233, 0.5);*/
    position: relative;
    width: 128px;
    height: 128px;
}

input[type="radio"]:checked + .sample-image-label {
    background: rgba(102, 153, 204, 1);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 12px 5px rgba(102, 153, 204, 0.75);
    border-color: rgba(102, 153, 204, 1);

}

input[type="radio"]:checked + .sample-image-label::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/*input[type="radio"]:checked + .sample-image-label::before {
    color: rgba(61, 63, 67, 1);
    font-weight: bold;
    border: 2px solid rgba(254, 81, 65, 1); !* #1dc973 deeper green *!
    font: var(--fa-font-solid);
    content: "\f00c";
    font-size: 24px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}*/

input[type="radio"]#control_05:checked + .sample-image-label {
    background: red;
    border-color: red;
}