/*# sourceMappingURL=custom.min.css.map */
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 27px;
}

.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: 15px;
  width: 15px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #111;
  margin-top: 7px;
}

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;
  width: 50px;
  height: 22px;
}

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

#myTable tbody {
  font-size: 14px;
  /* Adjust the font size as per your requirement */
}

  .btn_clr{
    background-color: black !important;
  }
  .btn_clr:hover {
    background-color: black; /* Ensure the background color remains the same on hover */
  }
  .btn_txtclr{
    color: white !important;
    -webkit-user-drag: none;
  }
  .btn_txtclr:hover {
    color: white; /* Ensure the background color remains the same on hover */
  }
  .btn_pos{
    display: flex;
    float: right;
    margin-right: 20px;
  }
  .error{
    color: red;
    border-color:#fc2d42!important
  }
  .exp_btn{
    position: relative;
    left: 17px;
  }
  .log-mar{
    margin-top: 25px!important;
  }
  .log-head{
    margin: 0px!important;
    padding: 0px!important;
  }
  .login-body{
    --vz-bg-opacity: 1;
    background-color: black!important;
  }
.btn_clr {
  background-color: black !important;
}

.btn_clr:hover {
  background-color: black;
  /* Ensure the background color remains the same on hover */
}

.btn_txtclr {
  color: white !important;
  -webkit-user-drag: none;
}

.btn_txtclr:hover {
  color: white;
  /* Ensure the background color remains the same on hover */
}

.btn_pos {
  display: flex;
  float: right;
  margin-right: 20px;
}
.engineer-blade .btn_pos{
  margin-right: 15px;
}
.text-red{
  color:red;
  font-weight: 500;
}
 .text-green{
  color:green;
  font-weight: 500;
 }
.error {
  color: red;
  border-color:#fc2d42!important
}
.t-btn{
  /* border:1px solid #000; */
  border-radius: 10px;
  text-decoration: underline;
}
.exp_btn {
  position: relative;
  left: 10px;
}
.exp_btn{
  padding-right: 0px !important;
}
.log-mar {
  margin-top: 25px !important;
}

.log-head {
  margin: 0px !important;
  padding: 0px !important;
}

.login-body {
  --vz-bg-opacity: 1;
  background-color: black !important;

}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

.log-boder {
  border-radius: 1rem;
  padding: 20px;
}

.log-boder1 {
  border-radius: 1rem;
  padding: 20px;
  padding-left: 30px;
}

.bg-cl {
  background-color: #ff9500;
}

.svg-image {
  float: right;
  width: 200px;
}

.svg-image path {
  fill: #f9a837;
}

.bg-login {
  background-color: black;
}

.form-put .input-cl,
input.form-put:-internal-autofill-selected {
  box-shadow: inset 0px 40px 0 0 #FCE6C7 !important;
  border-color: #e7b774 !important;
}

.in-che:checked {
  border-color: #FF9602 !important;

}

.in-che {
  border-color: #e7b774 !important;
  /* box-shadow: inset 0px 40px 0 0 #fff!important; */
  background-color: transparent !important;

}

.form-put input:focus {
  box-shadow: inset 0px 40px 0 0 #FCE6C7 !important;
  background-color: #FCE6C7 !important;
  border-color: #FF9602 !important;
}

.text-color {
  color: #FF9602 !important;
}

.text-wh-color {
  color: #fff !important;
}

.side-bg {
  background-color: #FFF7E3 !important;
}


* {
  margin: 0;
  padding: 0;
}

.tree ul {
  padding-top: 20px;
  position: relative;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  display: flex;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: start;
}

.tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before,
.tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
  height: 20px;
}

.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
  padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before,
.tree li:last-child::after {
  border: 0 none;
}

/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
  height: 20px;
}

.tree li a {
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-decoration: none;
  color: #666;
  font-family: arial, verdana, tahoma;
  font-size: 11px;
  display: inline-block;

  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover,
.tree li a:hover+ul li a {
  background: #c8e4f8;
  color: #000;
  border: 1px solid #94a0b4;
}

/*Connector styles on hover*/
.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
  border-color: #94a0b4;
}

.tree_div {
  display: grid;
  justify-content: center;
  align-items: center;
}

.text_pos {
  text-align: center;
}

.hover_hand {
  cursor: pointer;
}

/* filter  */

.filter {
  margin-top: 25px;
  position: relative;
  left: 90px;
}

.cls_err {
  color: red;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #fc2d42
}

.has-error .form-control {
  border-color: #fc2d42;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}
.form-control .has-error  {
	border-color:#fc2d42;
	-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)
}
.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle {
	border-color:#fc2d42!important;
}
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle {
  border-color: #fc2d42 !important
}
.close-sidenav{
  font-size: 18px;
  text-align: right;
  padding: 10px;
  display: none;
}
/* .vertical-sidebar-enable .app-menu{
  margin-left:-260px !important;
}

.vertical-sidebar-enable .app-menu.active{
  margin-left:0px !important;
} */

/* responsive */

.eye-icon {
  position: absolute;
  bottom: 10px;
  left: auto;
  font-size: 15px;
  right: 10px;
}
 .hierarchy-page .card{
  overflow-x: auto;
  min-height: 500px;
  position: relative;
}
.hierarchy-page .tree{
  position: absolute;
  left: 0px;
  top: 100px;
  } 

@media (max-width:992px) {
  /* .eye-icon {
    position: relative;
    bottom: 27px;
    left: 230px;
    font-size: 15px;
  } */

  .log-boder1 {
    border-radius: 1rem;
    padding: 20px;
  }
  #chart_div{
    width: 100% !important;
    height: 425px;
  }
}
@media (max-width:767px) {
  .close-sidenav{
    display: block;
  }
}
#chart_div {
  width: auto;
  height: 425px;
}
.dataTables_scrollHeadInner .dataTable{
  width: 100% !important;
}
.dataTable{
  width: 100% !important;
}

button.btn.btn_clr {
  margin-bottom: 15px;
}
