@charset "UTF-8";
/* :root {
  --bs-blue: #007bff;
  --bs-indigo: #6610f2;
  --bs-purple: #696cff;
  --bs-pink: #e83e8c;
  --bs-red: #ff3e1d;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffab00;
  --bs-green: #71dd37;
  --bs-teal: #20c997;
  --bs-cyan: #03c3ec;
  --bs-white: #fff;
  --bs-gray: rgba(67, 89, 113, 0.6);
  --bs-gray-dark: rgba(67, 89, 113, 0.8);
  --bs-gray-25: rgba(67, 89, 113, 0.025);
  --bs-gray-50: rgba(67, 89, 113, 0.05);
  --bs-primary: #696cff;
  --bs-secondary: #8592a3;
  --bs-success: #71dd37;
  --bs-info: #03c3ec;
  --bs-warning: #ffab00;
  --bs-danger: #ff3e1d;
  --bs-light: #fcfdfd;
  --bs-dark: #233446;
  --bs-gray: rgba(67, 89, 113, 0.1);
  --bs-primary-rgb: 105, 108, 255;
  --bs-secondary-rgb: 133, 146, 163;
  --bs-success-rgb: 113, 221, 55;
  --bs-info-rgb: 3, 195, 236;
  --bs-warning-rgb: 255, 171, 0;
  --bs-danger-rgb: 255, 62, 29;
  --bs-light-rgb: 252, 253, 253;
  --bs-dark-rgb: 35, 52, 70;
  --bs-gray-rgb: 67, 89, 113;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 67, 89, 113;
  --bs-body-color-rgb: 105, 122, 141;
  --bs-body-bg-rgb: 245, 245, 249;
  --bs-font-sans-serif: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-root-font-size: 16px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9375rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.53;
  --bs-body-color: #697a8d;
  --bs-body-bg: #f5f5f9;
} */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: #566a7f;
}

h1, .h1 {
  font-size: calc(1.3625rem + 1.35vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.375rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.2875rem + 0.45vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.625rem;
  }
}

h4, .h4 {
  font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.375rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 0.9375rem;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1090;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  backdrop-filter: blur(4px);
  background-color: #c3c3c3;
  opacity: 35px !important;
  background: rgb(51 51 51 / 82%);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.15s ease-out;
  transform: translateY(-100px) scale(0.8);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 3rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0px solid rgba(67, 89, 113, 0.2);
  border-radius: 0.5rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1089;
  width: 100vw;
  height: 100vh;
  background-color: #435971;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0.80rem 1.5rem 0.25rem;
  border-bottom: 3px solid #696cff;
  border-top-left-radius: calc(0.5rem - 0px) !important;
  border-top-right-radius: calc(0.5rem - 0px) !important;
  background-color: #f1f6f6;
}
.modal-header .btn-close {
  /* padding: 0.125rem 0.75rem;
  margin: -0.125rem -0.75rem -0.125rem auto; */
  padding: 0.15rem 0.15rem;
  opacity: 1;
  border: 2px solid red;
  margin: 0px;
}
.btn-close {
  background-image: url(../images/clear.png);
}
.btn-close:hover, .btn-close:active {
  transform: scale(1.2);
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.53;
  text-shadow: #00ff18 1px 0 10px;
  font-weight: 700;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.25rem;
  border-top: 0px solid #d9dee3;
  border-bottom-right-radius: calc(0.5rem - 0px) !important;
  border-bottom-left-radius: calc(0.5rem - 0px) !important;
  background: #515cff36;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 35rem;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 22.5rem;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 50rem;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .modal-xll {
    max-width: 1140px;
    left: 87px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}


.accordion-button-new {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.79rem 1.125rem;
  font-size: 0.9375rem;
  color: #566a7f;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: all 0.2s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button-new:not(.collapsed) {
  color: #ffffff;
  background-color: #4b6cb7;
  box-shadow: inset 0 0 0 #d9dee3;
}
.accordion-button-new:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='m1.532 12 6.182-6-6.182-6L0 1.487 4.65 6 0 10.513z'/%3E%3C/defs%3E%3Cg transform='translate%282.571%29' fill='none' fill-rule='evenodd'%3E%3Cuse fill='%23FFFFFF' xlink:href='%23a'/%3E%3Cuse fill-opacity='.1' fill='%23FFFFFF' xlink:href='%23a'/%3E%3C/g%3E%3C/svg%3E%0A");
  transform: rotate(90deg);
}
.accordion-button-new::after {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='m1.532 12 6.182-6-6.182-6L0 1.487 4.65 6 0 10.513z'/%3E%3C/defs%3E%3Cg transform='translate%282.571%29' fill='none' fill-rule='evenodd'%3E%3Cuse fill='%23435971' xlink:href='%23a'/%3E%3Cuse fill-opacity='.1' fill='%23566a7f' xlink:href='%23a'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 0.75rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button-new:hover {
  z-index: 2;
}
.accordion-button-new:focus {
  z-index: 3;
  border-color: rgba(249, 249, 255, 0.54);
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
  background-color: #696cffab;
}

.accordion-item {
  background-color: #fff;
  border: 0 solid #d9dee3;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.accordion-body {
  padding: 0.79rem 1.125rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}


.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}
.accordion-button::after {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: var(--bs-danger);
  background-image: none !important;
}
.accordion-button.collapsed::after {
  background-color: var(--bs-gray-300);
}
/* For Mobile Number */
.mobile_number{
    width: 33%;
    border-radius: 0px !important;
}
.m-r-l{
  margin-left: -136px !important;
}
/* End Mobile Number */
/* For pyramid graph */
.pyrmd-paragraph{
  color: rgb(1, 87, 155);
  font-size: 13px;
  font-weight: bold;
  fill: rgb(1, 87, 155);
  margin-bottom: 0;
  text-align: center;
}
.pyrmd-head{
  margin-top: 27px;
  margin-left: 10px;
  color:black;
  font-Weight:bold;
}
.pyrmd-icon{
  margin-top: -130px;
}
    
/* End  */
/* Tab Spacing Padding */
.form-group {
  padding: 0px 0px 10px !important; 
}
/* End TAb spacing */

/* Graph Alert position centre */
.center-alert {display: flex;justify-content: center;align-items: center;text-align: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 100%;}
/* End Graph position Center */

/* Graph Alert */
.alert-warning {
  border-radius: 2px;
  padding: 15px;
  box-shadow: rgb(210 232 241) 0px 1px 2px, rgb(210 232 241) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgb(255 246 219) 0px 32px 64px !important;
  background-color: #d2e8f1 !important;
  border-color: #227698 !important;
  opacity: 0.8 !important;
  color: black !important;
}
.btn-close:focus{
  box-shadow: none !important;
}
/* End Graph Alert */

/* Card Background color */
.bg-color-card{
  background-color: #e6fffc;
}
.bg-color-card-hazmat {
  background-color: #ffbdc185;
}
.haz-box{
  background: rgba(231, 79, 90, 0.4) !important;
  color: rgba(231, 79, 90, 1) !important;
}
.bg-color-card-eyewash {
  background: #9fe6b391;
}
.eyewash-box{
  background: rgba(42, 217, 148, 0.2)!important;
  color: rgb(42, 217, 148) !important;
}
.bg-color-card-prescription {
 background: #00b2ff2b;
}
.prescription-box{
  background: #00b2ff57!important;
  color: #00b2ff !important;
}

.bg-color-card-mrd {
  background: #80008038;
 }
 .mrd-box{
   background: #80008038!important;
   color: #800080 !important;
 }

 .bg-color-card-qa {
  background-color: rgb(74 219 14 / 32%) !important;
 }
 .qa-box{
  background: rgb(74 219 14 / 32%) !important;
   color: rgba(74, 219, 14) !important;
 }

 .bg-color-card-license {
  background-color: #d0d02757 !important;
 }
 .license-box{
  background: #d0d02752 !important;
   color: #adad2d !important;
 }

 .bg-color-card-icat {
  background-color: #f0ff75 !important;
 }
 .icat-box{
  background: #e4ff008a !important;
   color: #abbd17 !important;
 }

 .bg-color-card-adr {
  background-color: #66a3f25e !important;
 }
 .adr-box{
  background: #66a3f25e !important;
   color: #61a0e0 !important;
 }

 .bg-color-card-btr {
  background-color: #f266665c !important;
 }
 .btr-box{
  background: #f266665c !important;
   color: #F26666 !important;
 }

 .bg-color-card-antibiotic {
  background-color: #d88c9a78 !important;
 }
 .antibiotic-box{
  background: #d88c9a78!important;
   color: #ff6480 !important;
 }

 .bg-color-card-hav2 {
  background-color: #f1995378 !important;
 }
 .hav2-box{
  background: #f199536b !important;
   color: #F19953 !important;
 }
/* End */
/* All graph height */
.graph-height{min-width: 100%; max-width: 100%; min-height: 400px;}
/* End graph Height */

/* Custom Toggle Button CSS  */
.btn-toggle{
  color: #fff !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  padding: 5px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  border-radius: 0.35rem !important;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  text-transform: capitalize !important;
  margin-bottom: 0 !important;
}
div.dt-buttons > .btn-toggle{
  background: none !important;
  border: none !important;
  padding: 0px !important;
}
.toggle-container {
  display: flex;
  align-items: center;
  /* width: 100px !important; */
  border-radius: 0.35rem !important;
}
.toggle-btn {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 8px;
  background-color: #ccc;
  border-radius: 0.35rem !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 2px;
}

.toggle-btn-inner {
  position: absolute;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #747474;
  border-radius: 50%;
  transition: transform 0.3s ease;
  margin-top: -8px;
}

.toggle-btn.active .toggle-btn-inner {
  transform: translateX(24px);
}

.toggle-btn.active {
  background-color: #5cb85c;
}

.toggle-btn-text {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  color: red; 
  vertical-align: middle;
  font-weight: 600;
  transition: color 0.3s ease;
}
.toggle-btn.active + .toggle-btn-text {
  color: green; 
}
/*  End toggle datatable  */


    /* code for toggle */
  .onoffswitch1 {
      position: relative; width: 90px;
      -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
  }

  .onoffswitch1-checkbox {
      display: none;
  }

  .onoffswitch1-label {
      display: block; overflow: hidden; cursor: pointer;
      border: 2px solid #999999; border-radius: 30px;
  }

  .onoffswitch1-inner {
      display: block; width: 200%; margin-left: -100%;
      -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
      -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
  }

  .onoffswitch1-inner:before, .onoffswitch1-inner:after {
      display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
      font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
      -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
      border-radius: 30px;
      box-shadow: 0px 15px 0px rgba(0,0,0,0.08) inset;
  }

  .onoffswitch1-inner:before {
      content: "YES";
      padding-left: 10px;
      background-color: #4272ca; color: #FFFFFF;
      border-radius: 30px 0 0 30px;
  }

  .onoffswitch1-inner:after {
      content: "NO";
      padding-right: 10px;
      background-color: #ed4646; color: #FFFFFF;
      text-align: right;
      border-radius: 0 30px 30px 0;
  }

  .onoffswitch1-switch {
      display: block; width: 30px; margin: 0px;
      background: #FFFFFF;
      border: 2px solid #999999; border-radius: 30px;
      position: absolute; top: 0; bottom: 0; right: 56px;
      -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s;
      -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s; 
      background-image: -moz-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%); 
      background-image: -webkit-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%); 
      background-image: -o-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%); 
      background-image: linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%);
      box-shadow: 0 1px 1px white inset;
  }

  .onoffswitch1-checkbox:checked + .onoffswitch1-label .onoffswitch1-inner {
      margin-left: 0;
  }

  .onoffswitch1-checkbox:checked + .onoffswitch1-label .onoffswitch1-switch {
      right: 0px; 
  }
  /* end toggle code */
  /* for inline icons */
  .ico-wrap  {
    color: #1bb4ff;
    position: relative;
    top: -24px;
    float: right;
}
/* End */
/* Dropdown calendar position */
.drop-cal{
  position: absolute;
  top: 36px;
}  
/* End */

/* toggle for active/Inactive*/

.wrapper-toggle-custom {
    width: max-content;
    display: flex;
    padding: 0px 0;
    transition: background-color 0.3s ease-in-out; /* add transition effect */
}
.wrapper-toggle-custom > div{
  cursor: default;
}

#custom-toggle {
    -webkit-appearance: none;
    appearance: none;
    height: 25px;
    width: 70px;
    background-color: #00005c;
    -webkit-border-radius: 25px;
    border-radius: 25px !important;
    padding: 0 7px;
    margin: 0;
    cursor: pointer;
    /* border: 1px solid #00005c; */
    
}
#custom-toggle.tgl-on {
  background-color: green;
}

#custom-toggle.tgl-off {
  background-color: red;
}

#custom-toggle.tgl-def {
  background-color: gray;
}

#custom-toggle.tgl-def::-webkit-slider-thumb {
    background-color: rgb(255, 251, 244);
}

#custom-toggle.tgl-on::-webkit-slider-thumb {
    background-color: rgb(255, 255, 255);
}

#custom-toggle.tgl-off::-webkit-slider-thumb {
    background-color: rgb(255, 255, 255);
}

#custom-toggle::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

#custom-toggle:focus {
    outline: none;
}

.rangeActive {
    background-color: green;
}

/* End Toggle button  */

/* for globally tooltip */
.tooltip-inner {
  background-color: #199fcd!important;
  color: white;
}
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #199fcd!important;
}
.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #199fcd!important;
}
.bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #199fcd!important;
}
.bs-tooltip-right .tooltip-arrow::before {
  border-right-color: #199fcd!important;
}
/* End */

/* Placeholder font-size under filter Dropdown */
.search-div .search-text::placeholder {font-size: 12px;}
/* End */

/* Sweetalert class for unauthorized section */
  .unauthorized-color{
    color: #ff0000 !important;
    font-weight: 600 !important;
  }

/* End */
/* For alert fixed in the center of the screen */
.center_graph_const{
  width: 500px;
   position: fixed;
  top: 64%;
  left: 57%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  }    
/* End */

/* .bg-light .accordion, .accordion, .accordion-header .accordion-button-new{
  border-radius: var(--bs-border-radius) !important;
} */

#card_div_incv3
{
    border: 1px solid #adaeec;
    margin-bottom: 5px;
}
#card_header_div_incv3
{
    border-color: #adaeec;
    background-color: #adaeec;
    border-radius: 3px;
    line-height: 0px;
    color: #ffffff;
    padding-left: 10px;
}
#card_body_div_incv3
{
    padding: 13px 5px 5px 17px;
}

/* sticky badge under download button */
    .new-badge {
        color: white;
        font-weight: 700;
        position: absolute;
        z-index: 100;
        top: -25px;
        right: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        min-width: 32px;
        min-height: 32px;
        border-radius: 50%;
        background-color: #0be59a;
        overflow: hidden;
        font-size: 14px;
    }

    .new-badge::before {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        top: -6px;
        right: -6px;
        border-radius: 50%;
        background-color: #00d866;
    }

    .new-badge:hover {
        background-color: #1cd31c;
        color: white;
    }

    .new-badge:hover::before {
        background-color: #00d866;
    }
    .btn {
        position: relative;
        /* margin-bottom: 10px; */
    }
    .blink {
        animation: blink 1.6s infinite;
    }
    
    @keyframes blink {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

  .read-more
  {
    color: #0099ff !important;
  }

/* ENd */