.toggleswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.toggleswitch-checkbox {
    display: none;
}
.toggleswitch-fea{
    position: relative;
}

.toggleswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #005bff;
    border-radius: 0px;
}

.toggleswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

.toggleswitch-inner:before,
.toggleswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 26px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.switchtoggle-lable {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    min-width: 120px;
}

.toggleswitch-inner:before {
    content: "Yes";
    padding-left: 10px;
    background-color: #FFFFFF;
    color: #005bff;
}

.toggleswitch-inner:after {
    content: "No";
    padding-right: 10px;
    background-color: #FFFFFF;
    color: #666666;
    text-align: right;
}

.toggleswitch-switch {
    display: block;
    width: 45px;
    margin: 0px;
    background: #005bff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 45px;
    -moz-transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.toggleswitch-checkbox:checked + .toggleswitch-label .toggleswitch-inner {
    margin-left: 0;
}

.toggleswitch-checkbox:checked + .toggleswitch-label .toggleswitch-switch {
    right: 0px;
}

.custom-delete-trash-btn {
    order: 1;
    height: 53px;
}
.custom-input-has-error {
    max-width: calc(100% - 56px);
}
.custom-input-has-error + label {
  order: 2
}
label.lect-name{
    cursor: pointer;
    text-decoration: underline;
    color: #09378a;
}
.ml-15{
    margin-left: 15px;
}
.red-dark-text{
    color: red;
}
.activities-list.recent-activity .nav-tabs .nav-item  {
    border: 2px solid #09378A;
}
.activities-list.recent-activity .nav-tabs .nav-item a.active {
    background-color: #09378A;
    border-color: #ccc;
    color: #fff !important;
}