.ewcl-changelog {
	--ewcl-border: #c9d6e2;
	--ewcl-header: #dcdcdc;
	--ewcl-row: #eaf4ff;
	--ewcl-row-hover: #deedfc;
	--ewcl-row-open: #d8eafc;
	--ewcl-text: #1d2630;
	color: var(--ewcl-text);
	font-family: inherit;
	width: 100%;
}

.ewcl-sort-controls {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 6px;
}

.ewcl-sort-controls label {
	align-items: center;
	display: inline-flex;
	font-size: .82rem;
	font-weight: 600;
	gap: 6px;
	white-space: nowrap;
}

.ewcl-sort-select {
	appearance: auto;
	background: #fff;
	border: 1px solid #aeb9c4;
	border-radius: 3px;
	color: #222;
	font: inherit;
	min-height: 30px;
	padding: 3px 28px 3px 8px;
	margin-bottom: 0 !important;
}

.ewcl-table-wrap {
	border: 1px solid var(--ewcl-border);
	overflow-x: auto;
}

.ewcl-table {
	border: 0 !important;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 !important;
	min-width: 520px;
	table-layout: fixed;
	width: 100%;
}

.ewcl-table th,
.ewcl-table td {
	border: 0 !important;
	box-sizing: border-box;
	padding: 0;
	text-align: left;
	vertical-align: top;
}

.ewybory-changelog table.ewcl-table tbody,
.ewybory-changelog table.ewcl-table tbody tr.ewcl-item-row {
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ewybory-changelog table.ewcl-table tbody tr.ewcl-item-row {
	display: table-row !important;
}

.ewybory-changelog table.ewcl-table tbody tr.ewcl-item-row > td.ewcl-item-cell {
	display: table-cell !important;
	height: auto !important;
	line-height: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	vertical-align: top !important;
}

.ewcl-table thead tr {
	background: var(--ewcl-header);
}

.ewcl-table th {
	color: #20252a;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .015em;
	line-height: 1.15;
	padding: 7px 9px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ewcl-table th:first-child {
	width: 130px;
}

.ewcl-table th:last-child {
	width: 170px;
}

.ewcl-item-row {
	background: var(--ewcl-row);
}

.ewcl-item-row + .ewcl-item-row .ewcl-item-cell,
.ewcl-empty-row td {
	border-top: 1px solid var(--ewcl-border) !important;
}

.ewcl-item-cell {
	background: inherit;
}

.ewcl-item-summary {
	align-items: stretch;
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) 170px;
	height: auto !important;
	margin: 0 !important;
	min-height: 0 !important;
	outline: none;
	padding: 6px 0 !important;
	transition: background-color .15s ease;
}

.ewcl-item-row.is-expandable .ewcl-item-summary {
	cursor: pointer;
}

.ewcl-item-row.is-expandable .ewcl-item-summary:hover,
.ewcl-item-row.is-expandable .ewcl-item-summary:focus-visible {
	background: var(--ewcl-row-hover);
}

.ewcl-item-row.is-open,
.ewcl-item-row.is-open .ewcl-item-summary {
	background: var(--ewcl-row-open);
}

.ewcl-item-priority,
.ewcl-item-title,
.ewcl-item-progress {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	height: auto !important;
	margin: 0 !important;
	min-height: 0 !important;
	padding: 4px 9px !important;
}

.ewcl-item-title {
	font-size: .92rem;
	font-weight: 650;
	gap: 7px;
	line-height: 1.2;
	overflow: hidden;
	white-space: nowrap;
}

.ewcl-item-title span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ewcl-item-row.is-expandable .ewcl-item-summary:hover .ewcl-item-title span,
.ewcl-item-summary:focus-visible .ewcl-item-title span {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 2px;
}

.ewcl-item-title i {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	flex: 0 0 auto;
	height: 0;
	transition: transform .15s ease;
	width: 0;
}

.ewcl-item-summary[aria-expanded="true"] .ewcl-item-title i {
	transform: rotate(180deg);
}

.ewcl-priority {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 5px;
	box-sizing: border-box;
	display: inline-flex;
	font-size: .74rem;
	font-weight: 700;
	height: 25px;
	justify-content: center;
	line-height: 1;
	min-width: 104px;
	padding: 3px 7px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ewcl-priority--low {
	background: #ffdf71;
	border-color: #e5c550;
	color: #222;
}

.ewcl-priority--medium {
	background: #f59e0b;
	border-color: #dd8700;
	color: #19130a;
}

.ewcl-priority--high {
	background: #d92d3d;
	border-color: #bd1f2e;
	color: #fff;
}

.ewcl-priority--completed {
	background: #159447;
	border-color: #0e7f3b;
	color: #fff;
}

.ewcl-progress {
	align-items: center;
	display: grid;
	gap: 7px;
	grid-template-columns: minmax(55px, 1fr) 36px;
	width: 100%;
}

.ewcl-progress-track {
	background: #d5dfe8;
	border-radius: 0;
	height: 9px;
	overflow: hidden;
}

.ewcl-progress-track span {
	background: #3579b8;
	border-radius: 0;
	display: block;
	height: 100%;
	transition: width .25s ease;
}

.ewcl-progress.is-completed .ewcl-progress-track span {
	background: #159447;
}

.ewcl-progress strong {
	font-size: .82rem;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

.ewcl-item-description {
	background: #eee;
	border-top: 1px solid rgba(80, 115, 145, .25);
	box-sizing: border-box;
	font-size: .87rem;
	line-height: 1rem;
	overflow-wrap: anywhere;
	padding: 12px 12px 0 139px;
	width: 100%;
}

.ewcl-item-description[hidden] {
	display: none;
}

.ewcl-item-description > :first-child {
	margin-top: 0;
}

.ewcl-item-description > :last-child {
	margin-bottom: 0;
}

.ewcl-empty-row td {
	background: var(--ewcl-row);
	color: #66717c;
	padding: 14px !important;
	text-align: center;
}

@media (max-width: 720px) {
	.ewcl-sort-controls {
		justify-content: flex-start;
	}

	.ewcl-table {
		min-width: 0;
	}

	.ewcl-table thead {
		display: none;
	}

	.ewcl-item-summary {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.ewcl-priority {
		font-size: .7rem;
		min-width: 94px;
	}

	.ewcl-item-progress {
		display: block;
		grid-column: 1 / -1;
		padding: 14px 10px 0px 11px !important;
		width: 100%;
	}

	.ewcl-item-progress::before {
		content: "POSTĘP PRAC";
		display: block;
		font-size: .7rem;
		font-weight: 700;
		letter-spacing: .015em;
		line-height: 1;
		margin: 0 0 5px;
	}

	.ewcl-progress {
		grid-template-columns: minmax(0, 1fr) 38px;
		width: 100%;
	}

	.ewcl-item-description {
		padding-left: 14px;
padding-top: 16px;
	}
}
