.bg-white {
    background: #00a5a8;
    background: -moz-linear-gradient(left, #00a5a8 0%, #76e3ed 100%);
    background: -webkit-linear-gradient(left, #00a5a8 0%,#76e3ed 100%);
    background: linear-gradient(to right, #00a5a8 0%,#76e3ed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a5a8', endColorstr='#76e3ed',GradientType=1 );
}
.bg-success {
    background: #f43f5d;
    background: -moz-linear-gradient(left, #f43f5d 2%, #f2686a 100%);
    background: -webkit-linear-gradient(left, #f43f5d 2%,#f2686a 100%);
    background: linear-gradient(to right, #f43f5d 2%,#f2686a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f43f5d', endColorstr='#f2686a',GradientType=1 );
}
.bg-orange {
    background: #FF8F00;
    background: -moz-linear-gradient(left, #FF8F00 0%, #FFB74D 100%);
    background: -webkit-linear-gradient(left, #FF8F00 0%,#FFB74D 100%);
    background: linear-gradient(to right, #FF8F00 0%,#FFB74D 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF8F00', endColorstr='#FFB74D',GradientType=1 );
}
.bg-info {
    background: #10c888;
    background: -moz-linear-gradient(left, #10c888 1%, #85c6af 100%);
    background: -webkit-linear-gradient(left, #10c888 1%,#85c6af 100%);
    background: linear-gradient(to right, #10c888 1%,#85c6af 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#10c888', endColorstr='#85c6af',GradientType=1 );
}
.bg-primary {
    background: #1976D2;
    background: -moz-linear-gradient(left, #1976D2 1%, #64B5F6 100%);
    background: -webkit-linear-gradient(left, #1976D2 1%,#64B5F6 100%);
    background: linear-gradient(to right, #1976D2 1%,#64B5F6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1976D2', endColorstr='#64B5F6',GradientType=1 );
}
.bg-gray {
    background: #E64A19;
    background: -moz-linear-gradient(left, #E64A19 1%, #FF7043 100%);
    background: -webkit-linear-gradient(left, #E64A19 1%,#FF7043 100%);
    background: linear-gradient(to right, #E64A19 1%,#FF7043 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64A19', endColorstr='#FF7043',GradientType=1 );
}
.bg-blue {
    background: #512DA8;
    background: -moz-linear-gradient(left, #512DA8 1%, #9575CD 100%);
    background: -webkit-linear-gradient(left, #512DA8 1%,#9575CD 100%);
    background: linear-gradient(to right, #512DA8 1%,#9575CD 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#512DA8', endColorstr='#9575CD',GradientType=1 );
}
.bg-green {
    background: #388E3C;
    background: -moz-linear-gradient(left, #388E3C 1%, #81C784 100%);
    background: -webkit-linear-gradient(left,#388E3C 1%,#81C784 100%);
    background: linear-gradient(to right, #388E3C 1%,#81C784 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#388E3C', endColorstr='#81C784',GradientType=1 );
}
.mini-stat {
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.05);
    padding:15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 10px;
    color: #fff !important;
}
.bg-white {
    background-color: #ffffff !important;
}
.mini-stat-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    font-size: 35px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    float: left;
    margin-right: 10px;
}
.mini-stat-info span {
    display: block;
    font-size: 24px;
}
.text-white {
    color: #ffffff !important;
}

.border-3 {
    border-top-width: 5px !important;
}

.border-top-primary {
    border-top-color: #F44336 !important;
}
.text-muted {
    color: #7171a6 !important;
    font-size:15px;
    margin-bottom:20px;
}
.metric-value {
    line-height: 1;
    white-space: nowrap;
    color:#3d405c;
    font-size:18px;
}
.metric-label:last-child {
    margin-top: 12px;
    margin-bottom: 0;
}
.metric-label {
    font-size: .875rem;
    font-weight: 500;
    color: #686f76;
    white-space: nowrap;
}
.text-success {
    color: #2ec551 !important;
    cursor: pointer;
}
.dealt{
    background:#F08080;
    color:#fff
}
.notice{
    background:#3CB371;
    color:#fff
}

.statistics{
    background:#1E90FF;
    color:#fff
}

 .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}