div.form > .row {
    padding-top: 15px;
    padding-bottom: 15px;
}

div.form label {
    color: #24272E;
    font-size: 16px;
}

.options .option-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
}

.options .option-row input[type=radio] {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    z-index: -1;
}

.options .option-row label,
.options .option-row div.label {
    display: flex;
    align-items: center;
    border: 1px solid #d8d8d8;
    width: 100%;
    border-radius: 4px;
    font-weight: normal;
    line-height: normal;
    background-color: white;
    padding: 12px 16px 12px 16px;
    max-width: 342px;
    min-height: 56px;
    margin: auto;
}

.options .option-row:hover label,
.options .option-row.active label {
    border: 2px solid #4396f7;
    background: #DBF1FF;
    padding: 11px 15px 11px 15px;
}

.step-wrap .option-row.active label {
    border: 2px solid #0096ff;
}

.option-row .need-more {
    max-width: 342px;
    height: 72px;
    margin: auto;
    width: 100%;
}

.option-row .need-more span {
    color: #0096FF;
}

@media (min-width: 992px) {

    .options .option-row {
        margin-bottom: 0;
    }

    .options .option-row label {
        border-radius: 0;
        max-width: none;
    }

    .options .option-row label,
    .options .option-row div.label {
        border-left: none;
        border-right: none;
    }

    .options .option-row:hover label,
    .options .option-row.active label {
        border-left: none;
        border-right: none;
        padding: 11px 16px 11px 16px;
    }

    .step-wrap .option-row.active label {
        border-left: none;
        border-right: none;
    }

    .option-row .need-more {
        background-color: white;
        padding: 10px 16px 10px 16px;
        max-width: none;
    }

    .option-row:first-child .need-more {
        border-bottom: 1px solid #d8d8d8;
    }

    .option-row:last-child .need-more {
        border-bottom: 1px solid #d8d8d8;
    }
}