/*@media (max-width: 768px) {
  .datepicker.dropdown-menu {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }
}*/
.filter-pill {
  display:inline-block;
  background:#f3f4f6;
  color:#333;
  border:1px solid #e5e7eb;
  padding:4px 8px;
  border-radius: 6px;
  font-size:12px;
}

.filters-list {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.loader_text {
  width: calc(80px / cos(45deg));
  height: 14px;
  --c: #fff 0 15px, #0000 0 20px;
  background: 
    repeating-linear-gradient(135deg,var(--c)) left top,
    repeating-linear-gradient( 45deg,var(--c)) left bottom;
  background-size:  200% 50%;
  background-repeat: no-repeat;
  animation: l4 2s infinite linear;
}
@keyframes l4 {
    100% {background-position:top right,bottom right}
}

/* HTML: <div class="loader"></div> */
/*.loader_text {
  width: 90px;
  height: 14px;
  --c: 50%,#fff 90deg,#0000 0;
  background: 
    conic-gradient(from   45deg at calc(100% - 7px) var(--c)),
    conic-gradient(from -135deg at             7px  var(--c));
  background-position: calc(100%/3) 0;
  background-size: calc(100%/4) 100%;
  animation: l6 0.5s infinite linear;
}
@keyframes l6 {
    100% {background-position: 0 0}
}*/

.loader_pagination {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 12px;
  color: #0000;
  background: linear-gradient(90deg,#4fb1bb calc(50% + 0.5ch),#000 0) right/calc(200% + 1ch) 100%;
  -webkit-background-clip: text;
          background-clip: text;
  animation: l7 2s infinite steps(11);
}
.loader_pagination:before {
  content:"Loading..."
}
@keyframes l7 {to{background-position: left}}

