@charset "UTF-8";

.radio-btn{
    label{
        position: relative;
        .anviz-btn-variant(@color-ff, @color-e8, @color-e8);
        display: block;
        width: 40%;
        margin: 10px 0;
        &::after{
            content: "";
        }
        cursor: pointer;
        &.checked{
            background: #316a84;
            border-color: #316a84;
            &::after{
                font-family: 'anviz' !important;
                content: "\e9b6";
                color: @color-ff;
                font-size: 18px;
                position: absolute;
                left: 50%;
                top: 10px;
            }
        }
    }
    .label-title{
        &::after{
            content: "\2731";
            font-size: 14px;
            color: #ff001f;
            position: absolute;
            top: 4px;
            left: 128px;
        }
    }
    input[type="radio"]{
        position: absolute;
        opacity: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 40px;
        display: block;
        margin: 0;
    }
    input[checked="checked"]{

    }
}