

.ckbcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .ckbcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #006885;
    border-radius: 4px;
    transition: 0.2s ease-in-out all;
}

/* On mouse-over, add a grey background color */
.ckbcontainer:hover input ~ .checkmark {
    background-color: #fff;
    border: 2px solid #dba510 !important;
    color: #dba510 !important;
}

/* When the checkbox is checked, add a blue background */
.ckbcontainer input:checked ~ .checkmark {
    background-color: #fff;
    border: 2px solid #dba510 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ckbcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ckbcontainer .checkmark:after {
    left: 8px;
    top: -10px;
    width: 12px;
    height: 26px;
    border: solid #006885;
    border-width: 0px 4px 4px 0;
    border-radius: 5px;
    -webkit-transform: rotate( 45deg );
    -ms-transform: rotate(45deg);
    transform: rotate( 45deg );
}
