::-webkit-scrollbar-track {
    background: #DDDDDD;
    border-radius: 0;
    -webkit-box-shadow:none;
}
::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 0;
    -webkit-box-shadow:none;
}
.btn {
    border-radius: 0px;
    margin:2px 0;
}
.box-tools .btn {
    margin:0;
}
.btn-success {
    background-color: #009688;
    border-color: #009688;
}
.btn-primary {
    background-color: #3F51B5;
    border-color: #3F51B5;
}
.btn-warning {
    background-color: #FF5722;
    border-color: #FF5722;
}
.btn-success:hover, .btn-success:active, .btn-success.hover {
    background-color: #00796B;
}
.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open>.dropdown-toggle.btn-success.focus, .open>.dropdown-toggle.btn-success:focus, .open>.dropdown-toggle.btn-success:hover {
    color: #fff;
    background-color: #00796B;
    border-color: #255625;
}
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open>.dropdown-toggle.btn-warning.focus, .open>.dropdown-toggle.btn-warning:focus, .open>.dropdown-toggle.btn-warning:hover {
    color: #fff;
    background-color: #E64A19;
    border-color: #E64A19;
}
.btn-info {
    background-color: #1E88E5;
    border-color: #1E88E5;
}
.table>tbody>tr.danger>td, .table>tbody>tr.danger>th, .table>tbody>tr>td.danger, .table>tbody>tr>th.danger, .table>tfoot>tr.danger>td, .table>tfoot>tr.danger>th, .table>tfoot>tr>td.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>thead>tr.danger>th, .table>thead>tr>td.danger, .table>thead>tr>th.danger {
    background-color: #FFCDD2;
}
.table>tbody>tr.success>td, .table>tbody>tr.success>th, .table>tbody>tr>td.success, .table>tbody>tr>th.success, .table>tfoot>tr.success>td, .table>tfoot>tr.success>th, .table>tfoot>tr>td.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>thead>tr.success>th, .table>thead>tr>td.success, .table>thead>tr>th.success {
    background-color: #C8E6C9;
}
.table>tbody>tr.info>td, .table>tbody>tr.info>th, .table>tbody>tr>td.info, .table>tbody>tr>th.info, .table>tfoot>tr.info>td, .table>tfoot>tr.info>th, .table>tfoot>tr>td.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>thead>tr.info>th, .table>thead>tr>td.info, .table>thead>tr>th.info {
    background-color: #BBDEFB;
}
.panel-heading tr td {
    padding: 5px;
}

.login-container {
  margin-top: 100px;
}

.login-logo {
  position: absolute;
  top: 20px;
  width: 100%;
  left: 0;
}

.welcome {
  display: none;
}
/*--loader--*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(0, 175, 206);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/*--end loader--*/
/*---responsive---*/

@media (min-width: 768px) {
  .login-logo {
    position: relative;
    top: -10px;
    width: 100%;
    left: 0px;
    text-align: left;
  }
  .login-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .login-box {
    margin: 20px!important;
  }
  .welcome {
    display: block;
    width: 75%;
    margin: 15px 5px;
    color: #FFF;
    float: right;
    font-weight: 100;
    font-size: 16px;
  }
}