/*
  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
 */
:host {
  display: table-cell;
  padding: 0px 8px;
}

.th_cell {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 8px;
  font-family: "Nunito Sans", "Carbona", "Tahoma", "Helvetica", "Arial", sans-serif;
  box-sizing: border-box;
}
.th_cell--sortable-true:hover, .th_cell--sortable-false:hover {
  cursor: pointer;
}

.justify--left {
  justify-content: flex-start;
}
.justify--center {
  justify-content: center;
}
.justify--right {
  justify-content: flex-end;
}

.dense-th {
  min-height: 48px;
  height: auto;
}

:host:first-child {
  padding-left: 16px;
}

:host:last-child {
  padding-right: 16px;
}