@charset "utf-8";

/* CSS Document */

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #0078d2;
}

.custom-control-input:focus~.custom-control-label::before {
    /*    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);*/
    box-shadow: 0 0 0 2px white inset, 0 0 0 3px #d0dae0 inset;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #0078d2;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    background-color: transparent;
    border: 1px solid #9da6ab;
    box-shadow: 0 0 0 2px white inset, 0 0 0 3px #d0dae0 inset;
    color: white;
    float: left;
    height: 20px;
    margin: -5px -25px 0px -2px;
    width: 20px;
}

.custom-control-label::before {
    position: absolute;
    top: .45rem;
    left: -1.45rem;
    display: block;
    width: 22px;
    height: 22px;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
    content: "\e049";
    font-family: 'AmericanIcons';
    font-size: 16px;
    line-height: 18px;
    padding-left: 2px;
    color: #fff;
    font-weight: 900;
}