
:root {
    font-size: 10px
}

@media(min-width:425px) {
    :root {
        font-size: calc(8.19149px + .42553vw)
    }
}

@media(min-width:1600px) {
    :root {
        font-size: 20px
    }
}

* {
    box-sizing: border-box
}

p {
    clear: both
}

body {
    padding: 0 1.6rem;
    margin: 0;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3em;
    color: #4d4d4f;
    text-rendering: optimizeLegibility;
}
h2,h3,h4 {
	text-transform: uppercase;
}
h2 {
	font-size: 2rem;
    line-height: 1.1em;
    margin: 0;
}
h4 {
	font-size: 1.1rem;
}

#logo {
    max-width: 10rem;
    position: relative;
    top: 1rem;
    display: block;
    margin-bottom: -5rem;
}

#logo svg {
	fill: #0aa9d5;
}

a {
	color: #0aa9d5;
}
#mapLegend {
  display:flex;
  flex-wrap;
}
#container {
  flex-basis:90%;
  height: 65vh;
  min-width: 310px;
  margin: 0 auto;
	min-height: 300px;
}
.loading {
  margin-top: 10em;
  text-align: center;
  color: gray;
}
.emoji {
	font-size:1.6rem;
	text-align:right;
	padding: 0.8rem 0.6rem;
}

#nextSteps {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
	margin-top: 7rem;
	font-size: 1.4rem;
	line-height: 1.3em;
}
#nextSteps h2 {
	padding-bottom: 1.5rem;
}
#nextSteps ol {
    margin: 0;
}
#nextSteps > div {
	margin-bottom:1rem;
}
.bigmoji {
    font-size: 5rem;
}
.highcharts-credits {
	opacity: 0.3;
}

#sources ul {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
@media only screen and (max-width: 634px) {
  #mapLegend {
    flex-wrap:wrap;
  }
	#container {
		flex-basis:100%;
	}
	#nextSteps {
    		grid: none;
	}
	#sources ul {
		display: block;
	}
}