/* @import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,900&subset=latin,cyrillic); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#fundraising-infographic {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	background: #0D1116;
	color: #EAF0F7;
	border-radius: 5px;
	overflow: hidden;
}

#fundraising-infographic .value {
	font-weight: bold;
	color: #6DEF89;
}
#fundraising-infographic .value::after {
	content: " грн";
}

#fundraising-infographic .buttons-group {
	display: flex;
	gap: 8px;
}
#fundraising-infographic .button {
	display: flex;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 5px;
}
#fundraising-infographic .button .icon {
	width: 16px;
	height: 16px;
	min-width: 16px;
	aspect-ratio: 1 / 1;
	filter: invert(0.48) sepia(1) saturate(.3) hue-rotate(175deg);
}
#commits-buttons .button .btn-label {
	font-weight: bold;
}
#fundraising-infographic .button .btn-note {
	display: inline-block;
	border-radius: 5px;
	background: #1C2530;
	color: #EAF0F7;
	font-size: 12px;
	line-height: 12px;
	padding: 2px 6px;
	align-self: flex-start;
	margin-top: -2px;
	/* margin-left: -2px; */
}
#fundraising-infographic .button.filled {
	border: 1px solid #3C424C;
	background: #212830;
}
#fundraising-infographic .button.outlined {
	border: 1px solid #3C424C;
}

#fund-header {
	background: #020408;
	padding: 20px 10px 0;
	border-bottom: 1px solid #3C424C;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#fund-header nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

#fund-header nav .nav-group {
	display: flex;
	align-items: center;
	gap: 8px;
}
#fund-header nav .nav-group#nav-left { gap: 18px; }
#fund-header nav .nav-group#nav-menu { gap: 12px; }
#fund-header nav .nav-group#nav-right { gap: 12px; }
#fund-header nav .search {
	padding-right: 60px;
}
.nav-divider {
	width: 1px;
	height: 20px;
	background: #3C424C;
}
.userpic {
	width: 30px;
	height: 30px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	border: 1px solid #3C424C;
}
#fund-content {
	padding: 24px 30px;
}
#fund-content h3 {
	font-size: 28px;
	font-weight: normal;
	padding-bottom: 10px;
	border-bottom: 1px solid #3C424C;
	margin-bottom: 20px;
}
#commits-buttons {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
#commits {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.commits-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.commits-group-header {
	display: flex;
	gap: 16px;
}
.commits-group-date {
	color: #59636E;
}
.commits-group-main {
	width: 100%;
	display: flex;
	gap: 16px;
}
.commits-track {
	width: 16px;
	position: relative;
}
.commits-track::after{
	content: "";
	width: 1px;
	height: 100%;
	background: #3C424C;
	position: absolute;
	left: 8px;
}
.commits-wrapper {
	width: 100%;
	padding: 15px 15px;
	border: 1px solid #3C424C;
	border-radius: 5px;
	margin: 5px 0;
	background: #0D1116;
	transition: background .3s ease-out,
		border-color .3s ease-out;
	cursor: pointer;
}
.commits-wrapper:hover {
	background: #1B232C;
	border-color: #67727F;
}

.commit {
	width: 100%;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	
}
.commit .commit-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.commit h4.commit-title {
	font-size: 18px;
	line-height: 20px;
}
.commits-wrapper:hover h4.commit-title {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.commit .commit-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	font-family: 'Roboto Mono', monospace;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 10px
}
.commit .commit-info a:link,
.commit .commit-info a:visited {
	color: #218BFF;
}
.commit .commit-info a:hover {
	color: #66AFFF;
}
.commit .commit-info a:active {
	color: #f93703;
}
.commit .commit-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
.commit .commit-pic {
	width: 16px;
	height: 16px;
	aspect-ratio: 1/1;
	border-radius: 10px;
	margin-bottom: 3px;
}
.commit .commit-meta-details {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	color: #59636E;
}
.commit .commit-status {
	font-style: italic;
}

#fund-footer {
	font-family: 'Roboto Mono', monospace;
	font-size: 20px;
	background: #020408;
	padding: 20px 30px 30px;
	border-top: 1px solid #3C424C;
}

@media (max-width: 1360px) {
	#fund-header nav .nav-group#nav-utils, nav .nav-divider { display: none; }
}
@media (max-width: 1080px) {
	#fund-header nav .nav-group#nav-user .button { display: none; }
}
@media (max-width: 660px) {
	#fund-content {
		padding: 24px 15px;
	}
	#commits-buttons { 
		flex-direction: column-reverse;
		gap: 8px;
		align-items: flex-start;
	}
	.commit {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
	.commit .commit-buttons {
		align-self: flex-end;
	}
	#fund-footer {
		padding: 20px 15px 30px;
	}
}