#changelog-overview{
	height: calc(100% - 60px);
	top: 60px;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: fixed;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

#changelog-overview .close-btn {
	opacity: 0.3;
	text-decoration: none;
	padding: 1rem 2rem;
	position: fixed;
	top: 0;
	right: 0;
	cursor: pointer;
}

#changelog-overview .close-btn:hover {
	opacity: 1;
}

#changelog-overview .close-btn i {
	font-size: 34px;
	color: #282828;
}

.changelog-overview-wrapper{
	pointer-events:all;
	height: 100%;
	width: 100%;
	position: relative;
	background: linear-gradient(to bottom, #f3f3f3 1%,#ffffff 100%);
	border: 1px solid #888;
	animation-name: animatetop;
	animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
}
@-moz-keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
}
@-ms-keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
}
@keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
}

.preview-container {
	white-space: pre-wrap;
	margin: 40px 0;
	color: black;
	line-height: 20px;
}

.preview-container:nth-child(2){
	margin-top: 0;
}

.head-container{
	text-align: right;
	position: sticky;
	top: 0;
}

.date-container {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

.date-container hr{
	text-align: center;
	border: 1px solid #d6d6d6;
	width: 100%;
}

.date-str{
	text-align: right;
	width: 20%;
	background-color: #909293;
	color: white;
	font-weight: bold;
	font-size: .9rem;
	padding: 4px 10px;
	z-index: 99999;
}

.entry-container{
	display: flex;
}

.title-container{
	text-align: left;
	width: 80%;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 15px;
}

.type-container{
	width: 15%;
	margin: 16px;
	display: flex;
	align-items: start;
}

.type-str{
	display: inline-block;
	color: white;
	margin-left: auto;
	font-size: 0.8rem;
	letter-spacing: 2px;
	padding: 4px 15px;
	text-transform: uppercase;
	border-radius: 2px;
}

.bugfix {
	background: #f07d00;
}

.feature{
	background-color: #83b746;
}

.refactoring{
	background-color: #2196F3;
}