.radio-container {
    padding: 0 10px;
}

.radio-container .radio-label {
    font-size: 1.4em;
    margin-bottom: 4px;
    display: block;
    border-bottom: 1px solid #666;
    padding-bottom: 5px;
}

.radio-container .radio-row {
    padding-bottom: 6px;
    border-radius: 4px;
}

.radio-container .radio-row.row-without-sub {
    padding-bottom: 0;
}

.radio-container .radio-row .title-without-sub {
    line-height: 38px !important;
}

.radio-container .radio-row p {
    padding-top: 6px;
}

.radio-container [type="radio"]:checked, [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.radio-container [type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    line-height: 24px;
    display: inline-block;
    color: black;
    font-size: 1.4em;
    margin-left: 4px;
}

.radio-container .radio-subtitle {
    margin-left: 39px;
    font-size: 1.2em;
}

.radio-container [type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.radio-container [type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 7px;
    left: 7px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.radio-container [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.radio-container [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    top: 15px;
}

.radio-container .radio-img {
    height: 22px;
    display: inline-block;
    margin-top: 7px;
    float: right;
    margin-right: 6px;
}