/*
  Font family is Nunito Sans. Its fallback is Helvetica
*/
/*
  Font sizes have been converted to rem considering a base size of 16px.
*/
/*
*  Z-Index
*  
*  The z-index CSS property sets the z-order of a positioned element and its descendants or flex items. 
*  Overlapping elements with a larger z-index cover those with a smaller one.
*  
*  REF: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
*  REF: https://www.smashingmagazine.com/2019/04/z-index-component-based-web-application/  
*/
/**
 * Define media query values
 */
/** Customs */
/** Animations */
/** Aligns */
/** Scoll Bar */
/** Hover & Pressed */
.counter-text {
  background: var(--color-surface-2, #ededed);
  color: var(--color-content-disable, #595959);
  box-sizing: content-box;
  width: fit-content;
  border-radius: 11px;
  padding: 0 8px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.counter-text--active {
  background: var(--color-system, #b2dffd);
  color: var(--color-content-din, black);
}
.counter-text--warning {
  background: var(--color-warning, #fde99b);
  color: var(--color-content-din, black);
}
.counter-text--delete {
  background: var(--color-delete, #e60f0f);
  color: var(--color-content-bright, white);
}