.form-group.required .control-label:after {
    content: "*";
    color: red;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    margin-bottom: 0px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 6px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #337ab7;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(28px);
}


/*------ ADDED CSS ---------*/

.slider:after {
    font-family: 'Glyphicons Halflings';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 70%;
    font-size: 10px;
}

input:checked+.slider:after {
    left: 30%;
    /*content: '\e013';*/
    font-family: 'Glyphicons Halflings';
}

.disabled_btn {
    cursor: not-allowed
}

.table>thead>tr>td {
    text-align: center;
}

.table>tbody>tr>td {
    border-top: 0px;
}

.disabled {
    opacity: 0.6;
}

.text-danger {
    font-size: 12px;
}