﻿/* The container */
 .checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    margin-top: -1px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    font-size: 14px;
}

/* Create a custom radio button */
.checkbox {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #ffbf00;
    transform: translateY(-12%);
    
}

/* When the radio button is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox {
    background-color: transparent;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkbox-container input:checked ~ .checkbox:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.checkbox-container .checkbox:after {
    top: -5px;
    left: -1px;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: transparent;
    border: 1px solid transparent;
    font-family: FontAwesome;
    content:"\f00c";
}