.btn-group {
  width: 100%
}
.input-group {
  width: 97%
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label-info{
  background-color:#4e73df

}
.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}
.multiselect {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.bg-gradient-primary {
  background-color: #865da4;
  background-image: linear-gradient(180deg,#865da4,#865da4 100%);
  background-size: cover;
}
.mb-4, .my-4 {
  margin-bottom: 0.5rem!important;
}
.text-primary {
  color: #865da4!important;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active, .sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
  color: #865da4;
  font-weight: 700;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #865da4;
  border-color: #865da4;
}
.page-link {
  color: #865da4;
  background-color: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #865da4;
  border-color: #865da4;
}
.btn-primary:hover {
  color: #fff;
  background-color: #996db8;
  border-color: #996db8;
}
.btn-primary:active {
    color: #fff;
    background-color: #996db8;
    border-color: #996db8;
}
table thead tr th {
    /* you could also change td instead th depending your html code */
    background-color: #fff;
    position: sticky;
    z-index: 100;
    top: 0;
}
a.disabled {
    /* Make the disabled links grayish*/
    color: rgb(207, 206, 206) !important;
    /* And disable the pointer events */
    pointer-events: none;
  }
  .flipswitch {
    position: relative;
    background: white;
    width: 120px;
    height: 40px;
    -webkit-appearance: initial;
    border-radius: 3px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    font-size: 14px;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ddd;
  }
  
  .flipswitch:after {
    position: absolute;
    top: 5%;
    display: block;
    line-height: 32px;
    width: 45%;
    height: 90%;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease-in 0s;
    color: black;
    border: #888 1px solid;
    border-radius: 3px;
  }
  
  .flipswitch:after {
    left: 2%;
    content: "OFF";
  }
  
  .flipswitch:checked:after {
    left: 53%;
    content: "ON";
    background: #996db8;
  }

  @media (max-width: 992px) {
    .form-control {
      width: 80%;
      margin-left: 10%;
    }
    .col-form-label {
      margin-left: 10%;
    }
    .chart-area {
      position: relative;
      height: 20rem;
      width: 100%;
  }
  }
  .loader{
    position:absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url('../img/load.gif') 50% 50% no-repeat rgb(249,249,249);
  }
