/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 30 2023 | 07:04:39 */
.awesome-changelog { margin: 10rem 0 30px 0 !important; } /* Main page */
.awesome-changelog .version {
	background: transparent !important;
	margin: 3rem 0 0 0 !important;
	/* background: #2b9eff;
	padding: 2px 5px;
	color: #fff; */
	font-size: 1.5rem !important;
	/* border-radius: 3px;
	display: inline-block; */
	font-weight: 600 !important;
	/* padding: 5px 10px; */
	margin-right: 0.5rem !important;
	color: var(--e-global-color-primary) !important;
}

.awesome-changelog .log-items li {
	list-style-type: none !important;
}

span.date.pt-tooltip.tooltipstered {
	font-size: 1.25rem !important;
	font-weight: 400 !important;
	color: var(--e-global-color-text) !important;
}

.awesome-changelog .log-items li .type.add {
	background: #ffb141 !important;
	border-radius: 5px;
	padding: 4px 8px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 1.1rem;
	margin: 10px 0 5px 0;
	cursor: default;
	line-height: 1.1em;
}

.awesome-changelog .log-items li .type.update {
	background: #2ac5ee !important;
	border-radius: 5px;
	padding: 4px 8px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 1.1rem;
	margin: 10px 0 5px 0;
	cursor: default;
	line-height: 1.1em;
}

.awesome-changelog .log-items li .type.fixed {
	background: #73b543 !important;
	border-radius: 5px;
	padding: 4px 8px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 1.1rem;
	margin: 10px 0 5px 0;
	cursor: default;
	line-height: 1.1em;
}

.awesome-changelog .log-items li .type.removed {
	background: var(--e-global-color-accent) !important;
	border-radius: 5px;
	padding: 4px 8px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 1.1rem;
	margin: 10px 0 5px 0;
	cursor: default;
	line-height: 1.1em;
}

.awesome-changelog .log-items li span {
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.2rem;
	/*margin-right: 0 !important;
	padding: 0 !important;*/
}






/* Set display: block only for the first .type element within each <li> */
.log-items li .type:first-child {
    display: block;
}

/* Set display: inline-block for all .type elements */
.log-items li .type {
    display: inline-block;
}

/* Ensure that .content elements are on a new line also align the text in the content spans with the first character */
.log-items li .content {
    display: block;
    text-indent: -0.5rem; /* Indent the first line by -1em (the width of the bullet point) */
    padding-left: 2rem !important; /* Add padding to compensate for the negative text indent */
}

/* Add a bullet point before the content with the class "content" */
.log-items li .content::before {
    content: "\2022"; /* Unicode code for the bullet point (•) */
    display: inline-block;
    margin-right: 5px; /* Add space between the bullet point and the text */
	font-size: 1.75rem;
	position: relative;
	top: 0.25rem;
}
