﻿
.custom-radio-btn dl {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

    .custom-radio-btn dl dt {
        color: #AAAAAA;
        display: inline-block;
        position: relative;
        float: right;
        height: initial;
        margin: 5px 10px;
    }

.custom-radio-btn dl dt input[type=radio] {
    position: absolute;
    visibility: hidden;
}

        .custom-radio-btn dl dt label {
            display: inline-block;
            position: relative;
            font-size: 16px;
            padding-right: 28px;
            margin: 0;
            z-index: 9;
            cursor: pointer;
            -webkit-transition: all .25s linear;
            vertical-align: middle;
            line-height: 35px;
        }

.custom-radio-btn dl dt:hover label {
    color: #A16348;
}

.custom-radio-btn dl dt .check {
    display: block;
    position: absolute;
    border: 3px solid #AAAAAA;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 7px;
    right: 2px;
    margin: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.custom-radio-btn dl dt:hover .check {
    border: 3px solid #A16348;
}

.custom-radio-btn dl dt .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border: 2px solid white;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.custom-radio-btn input[type=radio]:checked ~ .check {
    border: 3px solid #A16348;
}

    .custom-radio-btn input[type=radio]:checked ~ .check::before {
        background: #A16348;
    }

.custom-radio-btn input[type=radio]:checked ~ label {
    color: #A16348;
}
