/**
 * @license Copyright 2021 Lahuen Health SPA. All Rights Reserved.
 */
.c-quick-table {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}

.c-quick-table__table {
	border-collapse: separate;
	border-spacing: 0 0.5rem;
	table-layout: fixed;
}

.c-quick-table .c-table-header__row {
	background-color: var(--primary-f-light);
	color: var(--primary-d-normal);
	font: 400 1.2rem / normal 'Open Sans', sans-serif;
	text-align: left;
}

.c-quick-table .c-table-header__cell {
	padding: 1rem;
	position: relative;
	text-align: left;
}

.c-quick-table :is(.c-table-header__cell, .c-table-body__cell):first-child {
	border-radius: 0.5rem 0 0 0.5rem;
}

.c-quick-table :is(.c-table-header__cell, .c-table-body__cell):last-child {
	border-radius: 0 0.5rem 0.5rem 0;
}

.c-quick-table .c-table-body {
	color: var(--gray-a);
	font: 400 1.2rem / normal 'Open Sans', sans-serif;
}

.c-quick-table .c-table-body__row {
	background-color: #fff;
	border-radius: 0.5rem;
	transition: box-shadow 0.25s ease;
}

.c-quick-table .c-table-body__row:hover {
	box-shadow: inset 0 0 0.2rem var(--primary-a-normal);
}

.c-quick-table .c-table-body__cell {
	border-right: 0.1rem solid #dddde4;
	padding: 0.5rem 1rem;
	text-align: left;
	vertical-align: top;
}

.c-quick-table .c-table-body__cell:last-child {
	border-right: none;
}

.c-quick-table p {
	margin: 0;
}

.c-quick-table .c-table-body__cell .c-table-cell__content {
	min-height: 3rem;
}

.c-quick-table .c-table-actionbar {
	display: flex;
}

.c-quick-table .c-table-actionbar__all {
	display: flex;
	flex: 1;
}

.c-quick-table .c-table-actionbar__exposed {
	display: flex;
	flex: 1;
	gap: 0.3rem;
}

.c-quick-table .c-table-actionbar__exposed .c-table-actionbar__action {
	background: center/70% no-repeat;
	border-radius: 0.5rem;
	height: 2.5rem;
	padding: 0.3rem;
	transition: background-color 0.25s ease;
	width: 2.5rem;
}

.c-quick-table .c-table-actionbar__exposed .c-table-actionbar__action:hover {
	background-color: #f1f1f6;
}

.c-quick-table .c-table-actionbar__exposed .c-table-actionbar__action .c-label {
	display: none;
}

.c-quick-table__spinner {
	background-color: #fff8;
	border-radius: 0.5rem;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.c-quick-table__empty {
	align-items: center;
	background-color: #fff;
	border-radius: 0.5rem;
	display: flex;
	flex: 1;
	justify-content: center;
}

.c-quick-table .c-empty__body {
	align-items: center;
	color: var(--primary-d-normal);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.c-quick-table__empty .c-empty__title {
	font: 600 1.5rem/1.5rem 'Lato', sans-serif;
}

.c-quick-table__empty .c-empty__subtitle {
	font: 400 1.2rem/1.2rem 'Open Sans', sans-serif;
}
