@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');
@font-face {
	font-family: 'Fixel Display';
	font-display: swap;
	src: url("fonts/FixelDisplay-Black.woff2") format("woff2");
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'Fixel Display';
	font-display: swap;
	src: url("fonts/FixelDisplay-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Fixel Display';
	font-display: swap;
	src: url("fonts/FixelDisplay-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}

* { 
	padding: 0; 
	margin: 0; 
	box-sizing: unset!important;
	-webkit-box-sizing: unset!important;
    -moz-box-sizing: unset!important;
}
:root {
	--lavand-extralight: #f1ecfc;
	--lavand-light: #e7e0fa;
	--lavand: #b99fff;
	--lavand20: #b99fff33;
	--lavand60: #b99fff99;
	--violet-light: #8864e8;
	--violet: #5721b5;
	--violet10: #5721b51A;
	--violet20: #5721b533;
	--violet-dark: #391277;
	--orange: #f2a03d;
	--orange30: #f2a03d55;
	--orange-max: #f27405;
	--carmine-pink: #f24141;
	--carmine-pink20: #f2414133;
}

body { 
	font-family: 'Noto Sans', sans-serif; 
	background: white;
	color: #303030;
	min-width: 1200px;
}

summary { 
	display: list-item!important; 
	font-size: initial!important;
}
ul { list-style: initial; }

.divider {clear: both;}
.hidden { display: none; visibility: hidden; }
.line-divider { display: block; }
.relative-block { position: relative; top: 0; }
.flexbox { display: flex; }
.round { border-radius: 100%; }
.center {  margin-left: auto; margin-right: auto; }
.groups { 
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 30px;
}
.groups .group {
	width: 100%;
}
.emphasize {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 700;
}

.w1400 { width: 100%; max-width: 1400px; }
.w1200 { width: 100%; max-width: 1200px; }
.w895 { width: 100%; max-width: 895px; }
.w588 { width: 100%; max-width: 588px; }
.w380 { width: 100%; max-width: 380px; }

.bold { font-weight: bold; }
p, li { font-size: 25px; line-height: 35px; margin-bottom: 35px; }
p.note { font-style: italic; }
p.formula {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 900;
	font-size: 25px;
	line-height: 30px;
	margin-top: -10px;
}
.arrows {
	width: 110px;
	height: 29px;
	margin: 15px 0 5px;
}

ul li {
	margin-left: 35px;
	padding-left: 5px;
}
ul.compact { margin: -15px 0 35px; }
ul.compact li { margin-bottom: 5px; }

ul.list-letters { list-style: lower-latin; }

ul.rating { margin-bottom: 35px; }
ul.rating li { 
	display: flex;
	gap: 8px;
	margin-left: 0;
	padding-left: 0;
}
ul.rating li span { 
	width: 100%;
	max-width: 110px;
	text-align: right;
	font-weight: bold;
}
ul.rating li span::after {
	content: " —";
	font-weight: normal;
}

ul.answers {
	display: flex;
	gap: 20px;
	list-style: none;
	margin-top: -15px;
	margin-bottom: 30px;
}
ul.answers li {
	width: 100%;
	max-width: 160px;
	margin: 0;
	padding: 0;
	line-height: 24px;
	display: flex;
	/* align-items: end; */
	gap: 5px;
}
ul.answers li span {
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	color: #e0e0e0;
	margin-bottom: -5px;
	font-family: 'Fixel Display', sans-serif;
}
#methods ul.answers li { font-size: 20px; }

a { color: var(--violet); }
a:hover { color: var(--carmine-pink); }

hr { width: 250px; size: 1px; margin-bottom: 15px; }

h1, h2, h3, h4 { font-family: 'Fixel Display', sans-serif; font-weight: 900; }
h2 {
	font-size: 42px;
    line-height: 50px;
	margin-bottom: 20px;
}
h2.in-text { margin-top: 45px; }
h3 { 
	font-size: 32px;
	/* font-weight: 900; */
	line-height: 42px;
	/* text-transform: uppercase; */
	margin-bottom: 10px;
}
h4 {
    font-size: 24px;
    line-height: 32px;
	text-transform: uppercase;
}

#chart-tooltip {
	font-size: 14px;
	line-height: 18px;
	font-weight: normal;
	width: 100%;
	max-width: 200px;
	pointer-events: none; 
	background: rgba(255,255,255,.9);
	border: var(--violet) 1px solid;
	color: black;
	position: absolute;
	top: 30px; 
	left: 30px;
	padding: 10px 15px 15px;
	border-radius: 3px;
	display: none;
	z-index: 9999;
}
#chart-tooltip .tt-title {
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	color: var(--violet);
	margin-bottom: 5px;
}
#chart-tooltip .tt-sphere {
	background: black;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: rgba(255,255,255,.6);
	margin: -10px -15px 0;
	padding: 10px 15px;
}
#chart-tooltip .tt-details { display: flex; align-items: stretch; justify-content: space-between; } 
#chart-tooltip .tt-place { padding: 10px 15px 0 0; }
#chart-tooltip .tt-direction { 
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 3px;
 } 
#chart-tooltip .tt-value { 
	padding: 10px 15px 15px;
	margin: 0 -15px -15px 0;
	background: rgba(0,0,0,.1);
	color: black;
	font-size: 24px;
	font-weight: 800;
	min-width: 60px;
	text-align: right;
 } 
#chart-tooltip .note {
	font-size: 13px;
	font-style: italic;
	opacity: .6;
}



/* HEADER */
header {
	margin: 0;
	color: white;
	background: radial-gradient(circle at 80%, #8864e8 0%, #5a25b7 60%, #391277 100%);
	background-attachment: fixed;
	padding: 130px 0 140px;
	position: relative;
	box-sizing: border-box!important;
	min-height: 100vh;
}
header::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: url(i/harodnja.jpg) no-repeat;
	background-size: cover;
	background-position:  bottom center;
	background-attachment: fixed;
	mix-blend-mode: multiply;
	opacity: .3;
	position: absolute;
	top: 0; left: 0;
	z-index: 1;
}
header .w1200 {
	position: relative;
	z-index: 100;
}
#title-text { 
	align-items: flex-start; 
	gap: 30px; 
	margin-top: 30px;
}
#header-pic {
	width: 460px;
	height: 506px;
	transition: all .3s;
}
#cni-logo { 
	margin-bottom: 25px;
	margin-left: -10px;
	max-width: 500px;
 }
#title-text h1 {
	font-size: 62px;
	line-height: 72px;
	color: white;
	margin: 25px 0 15px;
}
#title-text p { margin-bottom: 20px; }
header a { color: white; }
header a:hover { color: var(--lavand); }
header a:visited { color: white; }
header a:active { color: var(--orange); }



/* NAVIGATION */
nav {
	/* height: 50px; */
	padding-top: 10px;
	padding-bottom: 10px;
	transition: background .25s;
}
nav .wrapper {
	margin-top: 5px;
	justify-content: center;
	align-items: baseline;
	gap: 45px;
}
nav .item {
	display: inline-block;
	font-family: 'Fixel Display', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 22px;
	color: white;
	/* margin: 0 45px 0 0; */
	cursor: pointer;
}
nav .item.active { color: #d5c5ff; }
nav .item:hover { opacity: .8; }
nav.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: #391277ee;
}
nav.default {
	position: absolute;
	width: 100%;
	z-index: 50;
}



/* RESULTS */ 
#results {
	background: white;
	padding: 90px 45px 0;
	position: relative;
}
#results .w1200.flexbox { align-items: flex-start; justify-content: flex-start; }

#barometer-navigation {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	width: 100%;
	max-width: 420px;
}
#barometer-indices .annotation {
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 5px;
	color: #686868;
}
#indices-selector {
    padding: 10px 15px 10px;
    margin: 0 0 25px;
    font-size: 20px;
    width: 100%;
	box-sizing: border-box!important;
}
#barometer-indices .row {
	padding: 9px 15px 7px;
	cursor: pointer;
}
#barometer-indices .row:hover {
	color: var(--carmine-pink);
}
#barometer-indices .row.active {
	background-color: var(--lavand-extralight);
	border-radius: 10px;
	color: var(--violet);
	pointer-events: none;
}
#barometer-indices .subindex > .row {
	margin-left: 15px;
	font-weight: 700;
}
#barometer-indices .metric > .row {
	margin-left: 30px;
	font-weight: 500;
}

#barometer-content {
	justify-content: space-between;
	align-items: start;
	gap: 40px;
}
#barometer-content .note {
	display: block;
	width: 100%;
	max-width: 320px;
	padding: 25px 30px;
	background-color: var(--lavand-extralight);
	border: 1px solid #d5c5ff;
	color: rgba(57,18,119,.8);
	border-radius: 8px;
	margin: 90px auto 0;
}
#barometer-content .note p {
	font-size: 16px;
	line-height: 22px;
	font-style: italic;
	margin-bottom: 10px;
}

#results h3 { margin: 0 0 5px; }

#barometer-chart {
	padding: 30px 25px 20px;
	/* width: 100%; */
	max-width: 600px;
	background-color: var(--lavand-light);
	box-shadow: 0 0 0 20px var(--lavand-extralight);
	border-radius: 25px;
}
#barometer-chart .disclaimer {
	border-top: 1px solid var(--lavand);
	color: rgba(0,0,0,.8);
	padding-top: 8px;
	margin-top: 15px;
}
#barometer-chart .disclaimer p { 
	font-size: 13px;
	line-height: 16px;
	margin: 0;
	font-style: italic;
}
#barometer-chart .disclaimer strong { color: var(--violet-light); }
#barometer-chart .chart {
	display: flex;
	flex-direction: column;
}
#barometer-chart .chart #stripesBar .refline {
	fill: none;
	stroke-width: 1;
	stroke-opacity: .2;
	stroke: #404040;	
	shape-rendering: crispEdges;
}
#barometer-chart .chart #stripesBar .label { 
	fill: #404040;
	font-size: 14px;
}
#barometer-chart .chart #stripesBar text.label { text-anchor: middle; }
#barometer-chart .chart #stripesBar .stripe {
	fill: none;
	stroke-width: 1;
	stroke-opacity: 1;
	stroke: #808080;
}
#barometer-chart .chart .row {
	display: flex;
	justify-content: space-between;
	gap: 7px;
	transition: all .3s;
	cursor: pointer;
	padding: 1px 3px;
	font-size: 14px;
}
#barometer-chart .chart .row.highlighted {
	background-color: #f0f0f0;
}
#barometer-chart .chart .row .row-back {
	fill: var(--violet);
	fill-opacity: 0;
	transition: all .3s;
}
#barometer-chart .chart .row text { transition: all .2s; }
#barometer-chart .chart .row.even .row-back { fill-opacity: .05; }


#barometer-chart .chart .row .rate {
	width: 20px;
	text-align: right;
}
#barometer-chart .chart .row .city { width: 100%; }
#barometer-chart .chart .row .value {
	width: 60px;
	text-align: right;
}
#barometer-chart .chart .row .stripe {
	fill: none;
	stroke-width: 2;
	stroke-opacity: 1;
	stroke: var(--violet);
}

#barometer-chart .chart .row:hover .row-back { fill-opacity: .1; }
#barometer-chart .chart .row:hover text { fill: var(--violet-dark); }
#barometer-chart .chart .row:hover .stripe { stroke: var(--carmine-pink); }
#barometer-chart .chart #stripesBar .stripe.highlighted { stroke: var(--carmine-pink); shape-rendering: crispEdges; }

#barometer-chart .chart .row.active, #barometer-chart .chart .row.active * { pointer-events: none; }
#barometer-chart .chart .row.active .row-back { fill: var(--violet); fill-opacity: .7; }
#barometer-chart .chart .row.active text { fill: white; }
#barometer-chart .chart .row.active .stripe { stroke: white; }
#barometer-chart .chart #stripesBar .stripe.active { stroke: var(--violet); stroke-width: 2; }


#cities-barcode {
	width: 400px;
	height: 25px;
	margin-bottom: 20px;
}
#cities-barcode .label {
	font-size: 12px;
	fill: #606060;
}
#cities-barcode .label.max {
	text-anchor: end;
}
#cities-barcode .strip {
	fill: none;
	stroke-width: .5;
	stroke-opacity: .8;
	stroke: black;
}
#cities-barcode .strip.highlighted {
	stroke-width: 1.5;
	stroke-opacity: 1;
	stroke: var(--carmine-pink);
}
#cities-barcode .strip.active {
	stroke-width: 1.5;
	stroke-opacity: 1;
	stroke: var(--violet);
}



/* CITIES */
#cities {
	background-color: var(--lavand);
	padding: 100px 45px 120px;
}
#cities-map {
	width: 100%;
	margin: 30px auto 0;
}
#cities-map svg { margin-bottom: 60px; }
#cities-map .label { opacity: .4; }
#cities-map .label .title {
	font-family: 'Fixel Display', sans-serif;
	font-weight: 900;
	font-size: 30px;
	text-transform: uppercase;
	opacity: .4;
}
#cities-map .label .description {
	font-size: 14px;
	opacity: .8;
}
#cities-map .axis {
	fill: none;
	stroke: black;
	shape-rendering: crispEdges;
}
#cities .groups { 
	display: block;
}
#cities .groups .tabs {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 25px;
}
#cities .groups .group {
	width: 100%;
	max-width: 200px;
	text-align: center;
	padding: 10px 20px 20px;
	border-radius: 8px;
	cursor: pointer;
}
#cities .groups .group:hover { background: var(--violet10); }
#cities .group img { mix-blend-mode: multiply; }
#cities .groups .group.active {
	background: var(--violet20);
	pointer-events: none;
}
#cities .definition { margin-bottom: 0; }

.refs { opacity: .4; }
.refs text { 
	font-style: italic; 
	font-size: 14px;
	fill: black;
	opacity: .8;
}
#cities-map .refline {
	fill: none;
	stroke: black;
	opacity: .6;
	shape-rendering: crispEdges;
}
#cities-map .point .label { opacity: .6; }
#cities-map .point circle {
	fill: var(--violet);
}
#cities-map .point.a circle {
	stroke: var(--violet20);
	stroke-width: 20px;
}
#cities-map .point.b circle {
	stroke: var(--violet20);
	stroke-width: 10px;
}
#cities-map .point:hover { cursor: help; }
#cities-map .point:hover .label { opacity: 1; }
#cities-map .point:hover circle { fill: white; }
#cities-map .point.a:hover circle, #cities-map .point.b:hover circle  { stroke: #ffffff33; }



/* CONCLUSIONS */
#conclusions {
	padding: 80px 45px 0;
}
.conclusions {
	gap: 20px;
	flex-direction: column;
}
.conclusions .conclusion {
	width: 100%;
}

/* METHODS */
#methods { padding: 80px 45px 60px; }
/* #methods { padding: 120px 0 100px; } */
#methods .flexbox { align-items: flex-start; justify-content: space-between; gap: 30px; }
#methods ul.icons { list-style: none; margin-bottom: 30px; }
#methods .icons li { 
	display: flex; 
	align-items: flex-start; 
	padding-right: 120px;
}
#methods .icons li img {
	width: 70px; height: 70px;
	margin-right: 15px;
}
#methods .icons li div { margin-top: 5px; }
#methods .icons li p { margin-bottom: 0; }
#methods .note {
	padding-left: 25px;
	border-left: 5px solid #00000044;
}
#methods h3 { margin: 0 0 20px; }
#methods ul.factors { padding-left: 25px; }
#methods .factors li { font-style: italic; }
#methods ul.scale {
	margin-top: -10px;
}
#methods ul.scale li {
	display: flex;
	margin-bottom: 5px;
}
#methods ul.scale li name {
	width: 100%;
	max-width: 80px;
	text-align: right;
	font-weight: 800;
	font-style: italic;
	margin-right: 15px;
}



/* AUTHORS */
#authors { 
	padding: 80px 0 80px;
}
#authors .wrapper {
	align-items: flex-start;
	justify-content: space-between; 
}
#authors .authors { 
	flex-direction: column;
	justify-content: space-between; 
	margin: 0 auto;
	max-width: 750px;
}
#authors .author {
	align-items: start;
	gap: 20px;
	padding: 45px 45px 60px;
	background-color: #5721b5;
	border-radius: 15px;
	margin-bottom: 45px;
	color: white;
	
}
#authors .author img {
	width: 200px;
	height: 200px;
	border-radius: 200px;
	transition: all .3s;
}
#authors .author .info {
	margin-top: 10px;
}
#authors .author p {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 0;
}
#authors .author h3 {
	text-transform: unset;
	margin: 0 0 10px;
}

#about-cni { max-width: 620px; }
#about-cni p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 15px;
}
#about-cni .links { gap: 15px; }



/* FOOTER */
footer {
	    background: black;
	    color: var(--violet);
	    padding: 40px 0 20px;
	}
	footer img { 
		max-width: 370px; 
	}
	footer ul { list-style: none; flex-direction: column; margin: 20px 0 0 5px; }
	footer li { display: flex; margin-bottom: 10px; line-height: 20px; padding-left: 0; margin-left: 0; }
	footer a { 
		color: var(--violet-light); 
		text-decoration: none; 
		display: block; 
		margin: 0 25px 5px 0; 
		font-size: 18px;
		text-transform: uppercase;
	}
	footer a:hover { color: var(--lavand); }
	footer .note {
		color: #565656;
		font-size: 12px;
		line-height: 14px;
		margin: 60px 0 0; 
		text-indent: -8px;
		max-width: 760px;
	}



@media screen and (max-width:1360px) {

	.w1200 { max-width: 1100px; }
	.w895 { max-width: 895px; }
	.w588 { max-width: 530px; }
	.w380 { max-width: 360px; }

	#header-pic { width: 400px; height: 440px; }

}

@media screen and (max-width:1220px) {

	body { min-width: 420px; }
	
	#header-pic { width: 360px; height: 396px; }
	p, ul li { font-size: 20px; line-height: 32px; margin-bottom: 25px; }
	p.note:not(footer p) { font-size: 16px; line-height: 24px; }

	.w1200 { max-width: 900px; }
	.w380 { max-width: 380px; }

	#title-text h1 {
		font-size: 52px;
		line-height: 62px;
	}
	header .w1200 { max-width: unset; }
	#title-text { margin: 30px 45px 0; }

	nav .wrapper { gap: 30px; }
	nav .item { font-size: 20px; line-height: 20px; }

	#barometer-content {
		flex-direction: column;
		gap: 20px;
	}
	#barometer-chart { max-width: unset; }

}

@media screen and (max-width:1080px) {
	
	#header-pic { width: 320px; height: 352px; }
	#cities .groups .tabs { gap: 8px; }

}

@media screen and (max-width:960px) {

	header { padding: 60px 0 80px; }
	#title-text { flex-direction: column; align-items: center; }
	#title-text .info { text-align: center; }

	.w1200, .w895, .w588, .w380 { max-width: 90%; }
	.w1200, .w895, .w588 { max-width: 100%; padding: 0; }
	#title-text h1 { font-size: 50px; line-height: 55px; margin-bottom: 15px; }

	#about .wrapper { margin: -80px 20px 0; width: unset; }

	nav .wrapper { 
		flex-wrap: wrap;
		gap: 5px 20px;
		padding: 0 20px;
    	width: unset;
		align-items: center;
	}
	nav .item { font-size: 16px; line-height: 16px; text-align: center; }

	h2 { font-size: 40px; line-height: 50px; }
	img { margin-left: auto; margin-right: auto; }
	h4 { max-width: 800px; margin-left: auto; margin-right: auto; }
	.w588 h4{ padding: 0 20px; }

	#methods ul.answers {
		flex-direction: column;
		gap: 10px;
	}
	ul.answers li {
		max-width: unset;
		margin-left: 5px;
		gap: 8px;
	}
	ul.answers li span {
		width: 30px;
		text-align: center;
		font-size: 32px;
		line-height: 30px;
	}

	#cities .groups .tabs { gap: 5px; }
	#cities .groups .tabs h4 { font-size: 18px; line-height: 22px; }

	#authors .author { margin: 0 20px 45px; }

	footer .w1200 { max-width: unset; width: unset; margin: 0 20px; }

	footer li { flex-wrap: wrap;}
}

@media screen and (max-width:760px) { 

	#authors .author img { width: 160px; height: 160px; }
	#about-cni { max-width: unset; margin: 0 45px; }
	#cities .groups .group {
		padding: 10px 10px 15px;
	}

}

@media screen and (max-width:650px) {

	p.text-large {
		font-size: 16px;
		line-height: 26px;
	}

	p.text-basic { font-size: 14px; line-height: 24px; }

	#header-pic { width: 300px; height: 330px; }

	footer ul { display: block; }
	footer .mainbox li { margin: 0 auto 10px; }

	h2 { font-size: 32px; line-height: 36px; }
	h3 { font-size: 28px; line-height: 32px; }

	#about .wrapper { margin: -80px 0 0; padding: 50px 20px; }

	#results .viz-box { flex-direction: column-reverse; align-items: center; }
	#legend svg { margin-bottom: 15px; }

	#title-text h1 { font-size: 40px; line-height: 45px; margin-top: 0; }
	p, p.note:not(footer p), ul li { font-size: 16px; line-height: 24px; margin-bottom: 15px; }
	ul li { margin-left: 25px; padding-left: 0px; }
	p.text-large { font-size: 18px; line-height: 26px; }

	#results .sphere img { width: 0; height: 0; margin: 0; }

	
	#methods .flexbox { flex-direction: column; gap: 0; }
	ul.answers { margin-top: 0; }
	#methods ul.answers li { font-size: 16px; line-height: 24px; }
	ul.compact { margin-top: -10px; }
	p.formula { margin-top: 0; }

	#cities { padding: 70px 45px 80px; }
	#cities .groups .tabs { flex-direction: column; }
	#cities .groups .group {
		max-width: unset;
		text-align: left;
		display: flex;
		justify-content: start;
		align-items: end;
		gap: 5px;
		padding: 10px 0 10px;
	}
	#cities .group img { 
		margin-top: -30px;
		max-width: 100px;
	}
	#cities .groups .tabs h4 {
		font-size: 20px;
		line-height: 24px;
		margin-right: 25px;
		width: 100%;
	}

	#authors .author { flex-direction: column; }
	#authors .author img { width: 200px; height: 200px; }
	#authors .author .info { text-align: center; }
	#authors .author p { font-size: 16px; line-height: 24px; }

	#results h3, #methods h3 { font-size: 28px; line-height: 36px; }
	h4 { font-size: 18px; line-height: 24px; }
	#results .charts .row .chart { display: none; }

	#viz { pointer-events: none; }
	
	footer a { font-size: 14px; margin: 0 15px 5px 0; }
	footer .note { margin-top: 30px; }

}

@media screen and (max-width: 510px) {

	h2 {
		font-size: 28px;
		line-height: 32px;
	}

	#nav-about { display: none; } 

	#title-text h1 { font-size: 32px; line-height: 38px; }
	#about h2 { font-size: 28px; line-height: 36px; }

	#results .terms .row { flex-direction: column; }
	#results .terms .indicator-name { margin-bottom: 5px; max-width: unset; }

	#methods .icons li img {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	#cities .groups .group { padding: 10px 0 4px; }
	#cities .groups .tabs h4 { font-size: 18px; line-height: 20px; }

	#barometer-chart {
		box-shadow: 0 0 0 20px var(--lavand-light);
		padding: 0 0 15px;
		border-radius: 10px;
	}
	#stripesBar { display: none; }
	#barometer-chart .chart .row .stripe { display: none; }
	#barometer-chart .chart .row .value { transform: translateX(30px); }

}
@media screen and (max-width: 480px) { #barometer-chart .chart .row .value { transform: translateX(20px); } }
@media screen and (max-width: 460px) { #barometer-chart .chart .row .value { transform: translateX(10px); } }
@media screen and (max-width: 440px) { #barometer-chart .chart .row .value { transform: translateX(0); } }
@media screen and (max-width: 400px) {

	nav .wrapper { gap: 5px 10px; }

	#header-pic { width: 250px; height: 275px; }
	
	#title-text h1 { font-size: 28px; line-height: 36px; }
	#about h2 { font-size: 24px; line-height: 32px; }
	#results h3, #methods h3 { font-size: 20px; line-height: 28px; }

	footer { padding: 60px 15px 80px; }
	footer img { margin-bottom: 40px; }

	#cni-logo, #cni-logo-footer { max-width: 250px; }

}