.content-wrapper1 {
	border-left: 1px solid #d2d6de;
}
.content-wrapper1, .right-side {
    min-height: 100% !important;
    background-color: #ecf0f5 !important;
    z-index: 800 !important;
}
.content-wrapper1{
    z-index: 820 !important;
    padding-left: 0px;
    padding-top: 10px;
}
.content-header {
    background: transparent;
}
.content-header {
    position: relative;
    padding: 15px 15px 0 15px;
}
.content-header>h1 {
    margin-bottom: 10px;
    font-size: 24px;
}
.content-header>.breadcrumb {
    float: right;
    background: transparent;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    padding: 7px 5px;
    position: absolute;
    top: 15px;
    right: 10px;
    border-radius: 2px;
}
.breadcrumb { 
    list-style: none;    
}
.breadcrumb>li {
    display: inline-block;
}
.breadcrumb>.active {
    color: #777;
}
.content {
    min-height: 250px;
    padding: 5px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.box-header.with-border {
    border-bottom: 1px solid #f4f4f4;
}
.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}
.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}
table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
    border-collapse: separate !important;
}
.table-bordered {
    border: 1px solid #f4f4f4;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 8px;
    white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}
.footer {
    border-top-color: #d2d6de !important;
}
.footer {
    border-left: 1px solid #d2d6de !important;
}
.footer {
    background: #fff !important;
    padding: 15px !important;
    color: #444 !important;
    border-top: 1px solid #d2d6de !important;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9 !important;
}
.form-horizontal .form-group {
    margin-right: -15px !important;
    margin-left: -15px !important;
}
.form-group {
    margin-bottom: 15px !important;
}
.form-horizontal .control-label {
    padding-top: 7px !important;
    margin-bottom: 0 !important;
    text-align: right !important;
}
label {
    display: inline-block !important;
    max-width: 100% !important;
    font-weight: 700 !important;
}
.input-group {
    position: relative !important;
    display: table !important;
    border-collapse: separate !important;
}
.box-footer {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top: 1px solid #f4f4f4 !important;
    padding: 10px !important;
    background-color: #fff !important;
}
.btn-success {
    background-color: #00a65a !important;
    border-color: #008d4c !important;
}
.btn {
    border-radius: 3px !important;
    box-shadow: none !important;
    border: 1px solid transparent !important;
    padding: 0.575rem 1.5rem !important;
}
.btn-warning {
    background-color: #f39c12 !important;
    border-color: #e08e0b !important;
}
.form-control{
    height: 2.175rem !important;
    padding: 0.875rem 1.375rem;
}  
.bg-primary{
	color:#ffffff;
}
.form-check-input {
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);   
    -moz-appearance: none;
    appearance: none;    
}
/*.form-check .form-check-input {
    float: left;
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}
.form-switch .form-check-input:checked {
    background-position: right center !important;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e) !important;
}
.form-switch {
    padding-left: 2.5em;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    margin-bottom: 0.125rem;
}*/
.switch {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

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

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

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

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

.slider.round:before {
  border-radius: 50%;
}
#importFrm {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 2px dashed #007bff;
}
.btn-import{
  margin-top: 10px;
  margin-bottom: 10px;
}
.auth-form-light{
  border-radius: 5px;
}
.label {
  display: inline !important;
  padding: 0.2em 0.6em 0.3em !important;
  font-size: 75% !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #fff !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: baseline !important;
  border-radius: 0.25em !important;
}
.label-warning{
  background-color: #f39c12 !important;
}
.label-success{
  background-color: #00a65a !important;
}
.label-warning{
  background-color: #dd4b39 !important;
}
.label-info{
  background-color: #346beb !important;
}
.error{
  color:red;
  font-size: 13px;
}
.navbar .navbar-brand-wrapper .navbar-brand img {
  height: 50px !important;
}    
.form-control{
  border-radius: 3px;
  box-shadow: none;
  border-color: #d2d6de;
}
.close_btn
{
  color:white !important;
}
