label {
    font-size: 0.75rem;
    color: #656569;
}
.form-check label {
    font-size: 0.9rem;
}

/* 
    Button toggle
*/
.btn-toggle.btn-primary {
    background-color: #F2F2F5;
    border: none;
    color: #808084;
}
.btn-toggle.btn-primary:hover {
    background-color: #e4e4e8;
}

.btn-toggle.btn-primary:not(:disabled):not(.disabled):active, 
.btn-toggle.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-toggle.btn-primary.dropdown-toggle {
    background-color: #3D81E1;
    border: none;
}


/*
    Checkbox
*/
.form-check input[type="checkbox"] {
    -webkit-appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #B4B4B8;
    border-radius: 2px;
    background-color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
}

.form-check input[type="checkbox"]:focus {
    /* border: 1px solid teal; */
}
.form-check input[type="checkbox"]:checked {
    position: absolute;
    background-color: #FFFFFF;
}
.form-check input[type="checkbox"]:checked::after {
    position: absolute;
    top: 0.35rem; 
    left: 0.2rem;
    content: "";
    width: 1.0rem;
    height: 0.5rem;
    border: 3px solid #656569;
    border-right: none;
    border-top: none;
    transform: rotate(-45deg);
}

.form-check .form-check-label {
    margin-left: 1rem;
}

/* 
    Dropdown
*/
.dropdown .form-control {
    text-align: left;
}
.dropdown .form-control::after {
    content: "\ea02";
    position: absolute;
    font: normal normal normal 1em/1 'icons3m';
    padding: 0.5rem;
    top: 0;
    right: 0;
    border: none;
}

/*
    Autocomplete with tags
*/
.bootstrap-tagsinput {
    width: 100%;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #B4B4B8;
}
.bootstrap-tagsinput.focus {
    color: #4C4C4F;
    background-color: #fff;
    border-color: #3e88ff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 73, 189, 0.25);
}

.bootstrap-tagsinput .tag {
    color: #323234;
    background-color: #E4E4E8;
    padding: .4em .6em;
    line-height: 24px;
    font-size: 0.75rem;
    border-radius: 0.25em;
    white-space: nowrap;
    vertical-align: baseline;
}
.bootstrap-tagsinput .tt-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #18181A;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.bootstrap-tagsinput .tt-suggestion {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #18181A;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.bootstrap-tagsinput .tt-suggestion:hover,
.bootstrap-tagsinput .tt-suggestion:focus,
.bootstrap-tagsinput .tt-suggestion.tt-cursor {
    color: #0c0c0d;
    text-decoration: none;
    background-color: #E4E4E8;
}