.l2 {
    padding-left: 1em;
}
.l3{
    padding-left: 2em;
}

.ckcontainer {
    display: block;
    position: relative;
    left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.ckcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.ckcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ckcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ckcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ckcontainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**
* Loading Style
*/

#divLoading
{
    display : none;
}
#divLoading.show
{
    display : block;
    position : fixed;
    z-index: 100;
    background-image: url('/images/loading1.gif');
    /*background-color:#666;*/
    opacity : 1;
    background-repeat : no-repeat;
    background-position : center;
    left : 0;
    bottom : 0;
    right : 0;
    top : 0;
}
#loadinggif.show
{
    left : 50%;
    top : 50%;
    position : absolute;
    z-index : 101;
    width : 32px;
    height : 32px;
    margin-left : -16px;
    margin-top : -16px;
}

.centerAligned{
    text-align: center;
    margin-top: 50%;
}
.nopadding{
    padding: 0 !important;
}

.padding-75 td, .table .padding-75 th {
    padding: .75rem !important;
}

.input-group-text-sm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .4rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #4E5154;
    text-align: center;
    background-color: #F9FAFD;
    border: 1px solid #BABFC7;
    border-radius: .25rem;
}
.form-control-sm{
    font-size: 1rem !important;
}