:root {
	--c-main: #ef2c32;
	scroll-behavior: smooth;
}

*,
*:before,
*:after {
	-webkit-font-smoothing: antialiased;
}

html,
button,
input,
select,
textarea {
	color: #222;
}

html {
	font-family: system-ui;
	font-size: 16px;
	line-height: 1.4;
}

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

audio,
canvas,
img,
video {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

img,
svg {
	max-width: 100%;
	height: auto;
}


a {
	color: #1187df;
}

.theme-changelog {
	margin: 0 auto;
	width: 800px;
	max-width: 95%;
	display: flex;
	flex-direction: column;
}

.theme-changelog .heading {
	font-size: 32px;
	text-align: center;
	font-weight: 800;
	margin-bottom: 15px;
}

.theme-changelog .byline {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
}

.theme-changelog .sep:before {
	content: "|";
	color: #ccc;
	font-size: .9em;
	padding: 0 5px;
	display: inline-flex;
	align-self:	center;
}

.changelog-release {
	padding: 30px 58px;
	margin-top: 20px;
	margin-bottom: 20px;

	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 15px;
	box-shadow: 0 5px 40px 0 rgba(31, 39, 52, .10);
	border-radius: 8px;
	border: 1px solid #efefef;
}

.changelog-release ul {
	padding: 0;
	padding-left: 24px;
	line-height: 1.6;
	list-style-type: disc;
}

.changelog-release li {
	 margin-bottom: 10px;
	 padding-left: 15px;
}

.changelog-release li::marker {
	content: "\2713";
	font-weight: 800;
	color: var(--changelog-type-color);
}

.changelog-version {
	margin-top: 18px;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 800;
	display: flex;
	align-items: center;
}

.changelog-version-date {
	margin-left: 16px;
	padding: 0 9px;
	font-size: 11px;
	font-weight: 700;
	line-height: 22px;
	text-transform: uppercase;
	color: #7e7f81;
	border-radius: 50px;
	background: rgb(37 40 48 / 5%);
	letter-spacing: .04em;
}

.changelog-item-type {
	display: inline-flex;
	margin-top: 18px;
	padding: 0 8px;
	margin-right: 5px;
	border-radius: 5px;
	line-height: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
	font-size: 11px;

	background: var(--changelog-type-color);
}

.changelog-items-new {
	--changelog-type-color: #6dd345;
}

.changelog-items-added {
	--changelog-type-color: #1fa0ff;
}

.changelog-items-improved {
	--changelog-type-color: #c17aff;
}

.changelog-items-fixed {
	--changelog-type-color: #df8e3c;
}

.changelog-items-misc {
	--changelog-type-color: #888;
}