﻿.filter-checkbox-wrapper label span,
.filter {
    padding: 4px 8px;
    white-space:nowrap;
    border: solid 1px #ccc;
    color: #ccc;
    border-radius:6px;
    background-color: #ffffff;
    margin-right: 8px;
}

.filter-checkbox-wrapper label span::-moz-selection {
background: transparent;
} 

.filter-checkbox-wrapper label span::selection {
background: transparent;
}

.filter-checkbox-wrapper label span {
    font-weight: normal;
}

/* Hide the checkbox */
.filter-checkbox-wrapper input {
    display: none;
}

.filter-checkbox-wrapper label input:checked + span,
.selected {
    background-color: #4cae4c;
    border-color: #4cae4c;
    color: #fff;
    font-weight: normal;
}

.filter-checkbox-wrapper label:hover,
.filter-button {
    cursor: pointer;
}

.filter-checkbox-wrapper label {
    margin-bottom: 0;
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
}

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 20px;
    vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
    font-family: fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #b8cee4;
    border: 0;
    display: inline-block;
    padding-left: 3px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default .select2-selection--multiple {
    margin-bottom: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #b8cee4;
    border-width: 2px;
}

.select2-container--default .select2-selection--multiple {
    border-width: 2px;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.select2-selection .select2-selection--multiple:after {
    content: 'hhghgh';
}

.select-icon .select2-selection__placeholder .badge {
    display: none;
}

.select-icon .placeholder {
    display: none;
}

.select-icon .select2-results__option:before,
.select-icon .select2-results__option[aria-selected=true]:before {
    display: none !important;
}

.select-icon .select2-search--dropdown {
    display: none;
}

.primary {
    background-color: #b8cee4;
    border: solid 1px #fff;
}

.capitalize {
    text-transform: capitalize;
}

.card .section-name {
    font-weight: bold;
    padding: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 5px 5px 5px 18px;
}

h1 {
    font-size: 28px !important;
}

a.add-sm {
    background-image: url(/Content/Images/add-sm.gif);
    background-repeat: no-repeat;
}

@@media (min-width: 768px) {
    .lead {
        font-size: 13px !important;
    }
}

ul.striped-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.striped-list > li {
        border-bottom: 1px solid rgb(221,221,221);
        padding: 6px;
    }

        ul.striped-list > li:nth-of-type(odd) {
            background-color: #e9e9f9;
        }

        ul.striped-list > li:last-child {
            border-bottom: none;
        }

.checkbox-plus-icon {
    line-height: 1;
    content: '+';
}

.customized-checkbox {
    display: none;
}

    .customized-checkbox + label:before {
        content: "+";
    }

    .customized-checkbox:checked + label:before {
        content: "-";
    }

    .customized-checkbox + label + ul {
        display: none;
    }

    .customized-checkbox:checked + label + ul {
        display: block;
    }

.select2-container {
    max-width: 400px;
}


/*toggle button*/
.switch {
    position: relative;
    display: inline-block;
    width: 49px;
    height: 27px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

