﻿/* Customize checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    font-weight: normal;
}


    /* Hide the browser's default checkbox */
    .container-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom checkbox */
    .container-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        line-height: 11px;
        font-size: 11px;
        background-color: #fff;
        color: #555;
        border: 1px solid #CCC;
        border-radius: 3px;

    }

    .container-checkbox .checkmark-radio {
        position: absolute;
        top: 0px;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #fff;
        border: 1px solid #CCC;
        border-radius: 50%;
    }

    .container-checkbox .checkmark-radio-eventbanana {
        position: absolute;
        top: 0px;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #fff;
        border: 1px solid #007791;
        border-radius: 50%;
    }

        /* Create the checkmark/indicator (hidden when not checked) */
        .container-checkbox .checkmark:after,
        .container-checkbox .checkmark-radio:after,
        .container-checkbox .checkmark-radio-eventbanana:after {
            content: "";
            position: absolute;
            display: none;
        }

    /* Show the checkmark when checked */
    .container-checkbox input:checked ~ .checkmark:after,
    .container-checkbox input[type="radio"]:checked ~ .checkmark-radio:after,
    .container-checkbox input[type="radio"]:checked ~ .checkmark-radio-eventbanana:after {
        display: block;
    }

    /* Show the checkmark when checked */
    .container-checkbox.checkbox-yellow input:checked ~ .checkmark,
    .container-checkbox.checkbox-yellow input[type="radio"]:checked ~ .checkmark-radio,
    .container-checkbox.checkbox-yellow input[type="radio"]:checked ~ .checkmark-radio-eventbanana {
        background-color: #F9D805;
        border: 1px solid #F9D805;
        color: #fff;
    }

    .container-checkbox.checkbox-salmon input:checked ~ .checkmark,
    .container-checkbox.checkbox-salmon input[type="radio"]:checked ~ .checkmark-radio,
    .container-checkbox.checkbox-salmon input[type="radio"]:checked ~ .checkmark-radio-eventbanana {
        background-color: #EC5252;
        border: 1px solid #EC5252;
        color: #fff;
    }

    /* Style the checkmark/indicator */
    .container-checkbox .checkmark:after {
        font-family: 'Glyphicons Halflings';
        content: "\e013 ";
        left: 2px;
        top: 1px;
        font-size: 9px;
    }

    /* Style the indicator (dot/circle) */
    .container-checkbox .checkmark-radio:after {
        top: 5px;
        left: 5px;
        height: 8px;
        width: 8px;
        border-radius: 25px;
        background: #666;
    }

    .container-checkbox .checkmark-radio-eventbanana:after {
        top: 5px;
        left: 5px;
        height: 8px;
        width: 8px;
        border-radius: 25px;
        background: #007791;
    }

/* End Customize checkbox */
