
/*--------------------loading---section-----------------------*/
.loadingdivcls{ position:fixed; top:0px; left:0px; width:100%; height:100%; background:rgba(0,0,0,.3); z-index:99999;}
.loadingdivcls span{position:absolute; z-index:999; top:50%; left:50%; -moz-transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); -ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%); width:100px; height:100px; background:rgba(255,255,255,1); -o-border-radius:5px; -ms-border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;border-radius:5px; border:3px solid #e8e3e3}
.loadingdivcls span img{position:absolute; z-index:999; top:50%; left:50%;-moz-transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); -ms-transform:translate(-50%,-50%); transform:translate(-50%,-50%);}
.my-custom-scrollbar {
    position: relative;
    height: 150px;
    overflow: auto;
    }
    .wo-custom-scrollbar {
      position: relative;
      max-height: 358px;
      overflow: auto;
      }
    .table-wrapper-scroll-y {
    display: block;
    }
    .mat-option{
        height: 30px !important;
        line-height: 30px !important;
        font-size: 14px !important;
        padding: 0 10px !important;
    }
    .rowcolor { opacity: 1; }
    .rowcolor:hover { opacity: 1; background-color: #A5A8AC; cursor: pointer; }
    .tabs_wo {
      position: relative;
      margin: 0.4rem 0;
      background: #1abc9c;
      height: 2.6rem;
    }
    .tabs_wo::before,
    .tabs_wo::after {
      content: "";
      display: table;
    }
    .tabs_wo::after {
      clear: both;
    }
    .tab_wo {
      float: left;
    }
    .tab_wo-switch {
      display: none;
    }
    .tab_wo-label {
      position: relative;
      display: block;
      line-height: 2.75em;
      height: 3em;
      padding: 0 1.618em;
      background: #1abc9c;
      border-right: 0.125rem solid #0759ad;
      color: #fff;
      cursor: pointer;
      top: 0;
      transition: all 0.25s;
    }
    .tab_wo-label:hover {
      top: -0.25rem;
      transition: top 0.25s;
    }
    .tab_wo-content {
      height: 12rem;
      position: absolute;
      z-index: 1;
      top: 2.75em;
      left: 0;
      padding: 0.618rem;
      background: #fff;
      color: #2c3e50;
      opacity: 0;
      transition: all 0.35s;
    }
    .tab_wo-switch:checked + .tab-label {
      background: #fff;
      color: #2c3e50;
      border-bottom: 0;
      border-right: 0.125rem solid #fff;
      transition: all 0.35s;
      z-index: 1;
      top: -0.0625rem;
    }
    .tab_wo-switch:checked + label + .tab-content {
      z-index: 2;
      opacity: 1;
      transition: all 0.35s;
    }
    /* app.component.css */
.fixed-container {
  height: 200px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px;
  overflow: auto;
  width:600px; /* or whatever width you want. */
  max-width:600px; /* or whatever width you want. */
  display: inline-block;
}
.mat-dialog-container{
  padding: 15px !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.bell-icon {
  color: #ff0000; /* Set your desired color */
  font-size: 24px; /* Set your desired size */
  animation: blink 1s infinite;
}
.offsetcontainer {
  display: flex;
  justify-content: space-between; 
  gap: 10px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.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: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
}

input:checked + .slider {
  background-color: #23BF08 ;
}

input:focus + .slider {
  box-shadow: 0 0 1px #23BF08;
}

input:checked + .slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.table-responsive {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.sticky-header th {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 3;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
/*--------------------loading---section-----------------------*/
