/* Customize the label (the container) */
.ajila_rb_container {
    display: block;
    position: relative;
    padding-left: 2.1875rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    outline: 0;
    min-height: 1.5625rem;
    box-shadow: none;
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.38;
    letter-spacing: 0.1px;
    color: #000000;
}

/* Hide the browser's default radio button */
.ajila_rb_container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5625rem;
    width: 1.5625rem;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background-color: #ffffff;
    padding-right: 1.5rem;
}

/* On mouse-over */
.ajila_rb_container:hover input ~ .checkmark {
    border-color: #818181;
}

.ajila_rb_container:hover input ~ .checkmark:after {
    border-color: #818181;
    display: block;
}

.ajila_rb_container:hover .checkmark:after {
    background: #818181;
}

/* When the radio button is checked, add background */
.ajila_rb_container input:checked ~ .checkmark {
    border-color: #ffffff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.ajila_rb_container:hover input:checked ~ .checkmark {
    background: #5e5e5e;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.ajila_rb_container input:checked ~ .checkmark:after {
    display: block;
    background: #ffffff;
}

.ajila_rb_container input:checked ~ .checkmark {
    border: 1px solid #e6e6e6;
    background-color: #818181;
}

/* Style the indicator (dot/circle) */
.ajila_rb_container .checkmark:after {
    top: 0.42rem;
    left: 0.42rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #ffffff;
}

@media (max-width: 450px) {
    .ajila_rb_container .radiobutton-span {
        height: 6rem;
        width: 11rem;
        display: block;
        float: left;
        padding-top: 0.5rem;
        font-size: 15px;
        padding-left: 1rem;
    }
}