@font-face {
  font-family: Gilroy;
  font-weight: 400;
  src: url(../assets/fonts/gr.woff2) format("woff2");
}


@font-face {
  font-family: Gilroy;
  font-weight: 500;
  src: url(../assets/fonts/gm.woff2) format("woff2");
}


@font-face {
  font-family: Gilroy;
  font-weight: 700;
  src: url(../assets/fonts/gs.woff2) format("woff2");
}

  
@font-face {
  font-family: Gilroy;
  font-weight: 900;
  src: url(../assets/fonts/gb.woff2) format("woff2");
}

@font-face {
  font-family: barcodeF;
  src: url(../assets/fonts/barcode.ttf) format("ttf");
}



body{
    font-family: Gilroy;
    /* letter-spacing: -1px */
}


.barcode{
  font-family: barcodeF !important;
}

.text-xxs{
  font-size:10px;
}


.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #16a34a;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


.stacked-bars:first-child,
.stacked-bars:last-child {
   stroke-linecap: round
}


button:disabled{
  cursor: not-allowed;
  opacity: 70%;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 20px;
  cursor:not-allowed;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border: 2px solid #fff;
  border-radius: 100px;
  
}
::-webkit-scrollbar-thumb:horizontal {
  background: #CBD5E1;
  border: 6px solid #fff;
  border-radius: 100px;
  cursor: pointer;
  
}


/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #CBD5E1;
}






.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner  div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #2563eb;
}

.lds-spinner-green  div:after {
  background: #22c55e;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.animate-pings {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1);
}


input:checked ~ .dot {
  transform: translateX(100%);
  background-color: #2563eb;
}

input:checked ~ .dot2 {
  transform: translateX(100%);
 
  background-color: #ea580c;
}



/* @media print { 
  table,
  table tr td,
  table tr th {
    page-break-inside: avoid;
  }
} */



.spinner {
  width: 24px;
  height: 24px;
  display: grid;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side,#0000 40%,#2563eb 41%);
  background: linear-gradient(0deg ,rgba(37,99,235,0.5) 50%,rgba(37,99,235,1) 0) center/1.9px 100%,
       linear-gradient(90deg,rgba(37,99,235,0.25) 50%,rgba(37,99,235,0.75) 0) center/100% 1.9px;
  background-repeat: no-repeat;
  animation: spinner-d3o0rx 1s infinite steps(12);
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}

.spinner::after {
  opacity: 0.83;
  transform: rotate(60deg);
}

@keyframes spinner-d3o0rx {
  100% {
     transform: rotate(1turn);
  }
}