/*******************************************
* Write styles which are common across all
* Author : Sagar Nandy
* Date : Dec 12, 2024 
* Time : 06:41 PM
************************************************/

/* Google Fonts Library */

@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";


/* Bootstrap Icon Library */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-size:14px; */
}

.btn-info{
  background-color: #107c9e !important;
}

.offcanvas.offcanvas-start {
  width: 18rem !important;
}

.fs-7{
  font-size: 12px !important;
}

ul{
  list-style: none;
}

.bg-dark-info {
  background-color: rgb(33, 2, 172);
}

.blink {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* Allover styles */

.fs-14px {
  font-size: 14px !important;
}

p {
  font-size: 14px !important;
}

a {
  cursor: pointer;
}

.text-dark-info {
  color: #047a83;
}

/* Apply to the whole document or a specific container */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  height: 8px; /* Height of the horizontal scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #216999; /* Color of the thumb */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #216999; /* Darker color when hovered */
}

.bg-secondary-dark {
  background-color: rgb(67, 67, 68);
}

 /* Initialize the counter */
 .numbered-list-1 {
  counter-reset: list1;
}
.numbered-list-2 {
  counter-reset: list2 5; /* Start from 6 */
}
.numbered-list-3 {
  counter-reset: list3 11; /* Start from 12 */
}

/* Apply counter to list items */
.numbered-list-1 .list-group-item::before {
  counter-increment: list1;
  content: counter(list1) ". ";
  font-weight: bold;
}
.numbered-list-2 .list-group-item::before {
  counter-increment: list2;
  content: counter(list2) ". ";
  font-weight: bold;
}
.numbered-list-3 .list-group-item::before {
  counter-increment: list3;
  content: counter(list3) ". ";
  font-weight: bold;
}
.bg-footer{
  background-color: #253041 !important;
  color: #fff !important;
}
[v-cloak] {
  display: none !important;
}


