/*
  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: 0 8px;
  font-family: "Nunito Sans", "Carbona", "Tahoma", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  vertical-align: middle;
}

.cell {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 8px 0;
  color: var(--color-content-default, #282828);
  font-family: "Nunito Sans", "Carbona", "Tahoma", "Helvetica", "Arial", sans-serif;
  flex-direction: row;
  flex-wrap: wrap;
}

.dense_cell {
  margin: 0;
}

.cell_custom {
  gap: 8px;
}

.cell_action {
  flex-direction: row;
  gap: 8px;
}

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

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

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