/*! Hint.css - v2.5.0 - 2017-04-23
* http://kushagragour.in/lab/hint/
* Copyright (c) 2017 Kushagra Gour */
[class*=hint--] {
  position: relative;
  display: inline-block; }

[class*=hint--]:after, [class*=hint--]:before {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s; }

[class*=hint--]:hover:after, [class*=hint--]:hover:before {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: .1s;
  -moz-transition-delay: .1s;
  transition-delay: .1s; }

[class*=hint--]:before {
  content: '';
  position: absolute;
  background: 0 0;
  border: 6px solid transparent;
  z-index: 1000001; }

[class*=hint--]:after {
  background: #383838;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 12px;
  white-space: nowrap;
  text-shadow: 0 -1px 0 #000;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); }

[class*=hint--][aria-label]:after {
  content: attr(aria-label); }

[class*=hint--][data-hint]:after {
  content: attr(data-hint); }

[aria-label='']:after, [aria-label='']:before, [data-hint='']:after, [data-hint='']:before {
  display: none !important; }

.hint--top-left:before, .hint--top-right:before, .hint--top:before {
  border-top-color: #383838; }

.hint--bottom-left:before, .hint--bottom-right:before, .hint--bottom:before {
  border-bottom-color: #383838; }

.hint--top:after, .hint--top:before {
  bottom: 100%;
  left: 50%; }

.hint--top:before {
  margin-bottom: -11px;
  left: calc(50% - 6px); }

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

.hint--bottom:after, .hint--bottom:before {
  top: 100%;
  left: 50%; }

.hint--bottom:before {
  margin-top: -11px;
  left: calc(50% - 6px); }

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

.hint--right:before {
  border-right-color: #383838;
  margin-left: -11px;
  margin-bottom: -6px; }

.hint--right:after {
  margin-bottom: -14px; }

.hint--right:after, .hint--right:before {
  left: 100%;
  bottom: 50%; }

.hint--right:hover:after, .hint--right:hover:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--left:before {
  border-left-color: #383838;
  margin-right: -11px;
  margin-bottom: -6px; }

.hint--left:after {
  margin-bottom: -14px; }

.hint--left:after, .hint--left:before {
  right: 100%;
  bottom: 50%; }

.hint--left:hover:after, .hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--top-left:after, .hint--top-left:before {
  bottom: 100%;
  left: 50%; }

.hint--top-left:before {
  margin-bottom: -11px;
  left: calc(50% - 6px); }

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-left: 12px; }

.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

.hint--top-right:after, .hint--top-right:before {
  bottom: 100%;
  left: 50%; }

.hint--top-right:before {
  margin-bottom: -11px;
  left: calc(50% - 6px); }

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
  margin-left: -12px; }

.hint--top-right:hover:after, .hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--bottom-left:after, .hint--bottom-left:before {
  top: 100%;
  left: 50%; }

.hint--bottom-left:before {
  margin-top: -11px;
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-left: 12px; }

.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

.hint--bottom-right:after, .hint--bottom-right:before {
  top: 100%;
  left: 50%; }

.hint--bottom-right:before {
  margin-top: -11px;
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
  margin-left: -12px; }

.hint--bottom-right:hover:after, .hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--large:after, .hint--medium:after, .hint--small:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0 #592726; }

.hint--error.hint--top-left:before, .hint--error.hint--top-right:before, .hint--error.hint--top:before {
  border-top-color: #b34e4d; }

.hint--error.hint--bottom-left:before, .hint--error.hint--bottom-right:before, .hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--left:before {
  border-left-color: #b34e4d; }

.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0 #6c5328; }

.hint--warning.hint--top-left:before, .hint--warning.hint--top-right:before, .hint--warning.hint--top:before {
  border-top-color: #c09854; }

.hint--warning.hint--bottom-left:before, .hint--warning.hint--bottom-right:before, .hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--left:before {
  border-left-color: #c09854; }

.hint--warning.hint--right:before {
  border-right-color: #c09854; }

.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0 #1a3c4d; }

.hint--info.hint--top-left:before, .hint--info.hint--top-right:before, .hint--info.hint--top:before {
  border-top-color: #3986ac; }

.hint--info.hint--bottom-left:before, .hint--info.hint--bottom-right:before, .hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--left:before {
  border-left-color: #3986ac; }

.hint--info.hint--right:before {
  border-right-color: #3986ac; }

.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0 #1a321a; }

.hint--success.hint--top-left:before, .hint--success.hint--top-right:before, .hint--success.hint--top:before {
  border-top-color: #458746; }

.hint--success.hint--bottom-left:before, .hint--success.hint--bottom-right:before, .hint--success.hint--bottom:before {
  border-bottom-color: #458746; }

.hint--success.hint--left:before {
  border-left-color: #458746; }

.hint--success.hint--right:before {
  border-right-color: #458746; }

.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

.hint--always.hint--top-right:after, .hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

.hint--always.hint--bottom-right:after, .hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--left:after, .hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--right:after, .hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--rounded:after {
  border-radius: 4px; }

.hint--no-animate:after, .hint--no-animate:before {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  transition-duration: 0s; }

.hint--bounce:after, .hint--bounce:before {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }
/**
 * Mixins
 */
/*----------  Fonts  ----------*/
/*----------  Custom  ----------*/
*,
*::before,
*::after {
  box-sizing: border-box; }

:root {
  --color-no-data: $color__no-data; }

body {
  font-family: "Hind", sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
  color: #333;
  --china-color: $red;
  --breakpoint: "xsmall"; }
  @media screen and (min-width: 35em) {
    body {
      --breakpoint: "small"; } }
  @media screen and (min-width: 48em) {
    body {
      --breakpoint: "medium"; } }
  @media screen and (min-width: 64em) {
    body {
      --breakpoint: "large"; } }

a {
  text-decoration: none;
  color: #ed392a;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:hover {
    -webkit-box-shadow: inset 0px -2px 0px 0 #d4d0cb;
    -moz-box-shadow: inset 0px -2px 0px 0 #d4d0cb;
    box-shadow: inset 0px -2px 0px 0 #d4d0cb; }

.title {
  font-family: "Roboto", sans-serif;
  margin: 1rem auto;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.36;
  color: #000;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .title {
      font-size: 25px;
      font-size: 1.5625rem; } }

p {
  margin: 0 0 1.5rem; }

.desc {
  line-height: 1.8; }

p.instructions {
  margin-bottom: 2rem; }

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em; }

.note {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: gray; }

/*----------  Components  ----------*/
/*================================
=            Tooltips            =
================================*/
.tooltip,
.tooltip-info {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  position: absolute;
  z-index: 20;
  width: fit-content;
  height: auto;
  margin: 0 15px;
  padding: 8px 8px 10px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #728c99;
  border-radius: 3px;
  background-color: #fff;
  pointer-events: none; }
  .tooltip p,
  .tooltip-info p {
    margin: 0; }
  .tooltip .tooltip-heading,
  .tooltip-info .tooltip-heading {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #000; }
    @media screen and (min-width: 48em) {
      .tooltip .tooltip-heading,
      .tooltip-info .tooltip-heading {
        line-height: 1.8; } }
  .tooltip .tooltip-label,
  .tooltip-info .tooltip-label {
    color: #000;
    text-transform: capitalize; }
    .tooltip .tooltip-label.indented,
    .tooltip-info .tooltip-label.indented {
      padding-left: 0.75rem; }
  .tooltip .tooltip-list,
  .tooltip-info .tooltip-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #808081; }
    .tooltip .tooltip-list li,
    .tooltip-info .tooltip-list li {
      margin-bottom: 0.25rem; }
    .tooltip .tooltip-list .active-category,
    .tooltip-info .tooltip-list .active-category {
      font-weight: bold; }
    .tooltip .tooltip-list .coal .tooltip-label,
    .tooltip-info .tooltip-list .coal .tooltip-label {
      color: #a483a8; }
    .tooltip .tooltip-list .oil .tooltip-label,
    .tooltip-info .tooltip-list .oil .tooltip-label {
      color: #e7ae3f; }
    .tooltip .tooltip-list .gas .tooltip-label,
    .tooltip-info .tooltip-list .gas .tooltip-label {
      color: #8cb561; }
    .tooltip .tooltip-list .cement .tooltip-label,
    .tooltip-info .tooltip-list .cement .tooltip-label {
      color: #455a64; }
    .tooltip .tooltip-list .gas_flaring .tooltip-label,
    .tooltip-info .tooltip-list .gas_flaring .tooltip-label {
      color: #3b75bb; }
  .tooltip .tooltip-body,
  .tooltip-info .tooltip-body {
    line-height: 1.2;
    color: #808081; }
  .tooltip .tooltip-close,
  .tooltip-info .tooltip-close {
    display: block;
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    z-index: 25;
    width: 25%;
    text-align: right;
    font-weight: bold;
    pointer-events: all; }
    @media screen and (min-width: 48em) {
      .tooltip .tooltip-close,
      .tooltip-info .tooltip-close {
        display: none; } }

.tooltip-info {
  max-width: 100px; }
  @media screen and (min-width: 48em) {
    .tooltip-info {
      max-width: 300px; } }

/*=====================================
=            Form Elements            =
=====================================*/
label {
  font-family: "Roboto", sans-serif;
  color: gray;
  display: block; }

.filter-label, .toggle-group label:after {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 5px;
  display: block;
  color: #000; }
  @media screen and (min-width: 48em) {
    .filter-label, .toggle-group label:after {
      font-size: 18px; } }
  .filter-label-info {
    color: gray;
    font-weight: normal; }

.filter-desc {
  font-size: 12px;
  margin-bottom: 5px;
  color: gray; }

p.filter-desc {
  line-height: 1.3; }

.filter-select {
  font-size: 15px;
  line-height: 1.28571em;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 3px 35px 5px 7px;
  -webkit-user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #555;
  border: 2px solid #455a64;
  -webkit-border-radius: 2px;
  background: #fff;
  background-image: url(b1b0d3dedcc2d31610845d58239d8d8d.svg), linear-gradient(to right, #455a64, #455a64);
  background-repeat: no-repeat;
  background-position: 101% center;
  background-size: 30px 30px, 30px 30px;
  -moz-appearance: none;
  -webkit-appearance: none; }

.filter-input {
  margin: 0;
  padding: 5px 9px;
  background: #f1f1f1;
  border: 1px solid #455a64;
  border-radius: 2px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.2; }
  .filter-input:focus {
    background: #fff; }

.dropdown-btn {
  display: inline-block;
  height: 30px;
  margin: 0;
  padding: 10px 15px;
  background-image: url(b1b0d3dedcc2d31610845d58239d8d8d.svg), linear-gradient(to right, transparent, transparent);
  background-repeat: no-repeat;
  background-position: 101% center;
  border: 0;
  border-radius: 2px; }
  .dropdown-btn-0 {
    background-color: #c42d21; }
  .dropdown-btn-1 {
    background-color: #1D435E; }

.checkbox-container {
  position: relative; }
  .checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    transition: 0.2s; }
  .checkbox-container input[type="checkbox"] + label {
    display: inline-block;
    font-weight: normal;
    color: #000; }
  .checkbox-container input[type="checkbox"] + label:before {
    content: "";
    display: inline-block;
    vertical-align: -0.2em;
    width: 1rem;
    height: 1rem;
    border: 2px solid #455a64;
    border-radius: 0.2em;
    margin-right: 0.3em;
    background-color: white;
    transition: 0.2s; }
  .checkbox-container input[type="checkbox"]:checked + label {
    font-weight: semibold;
    font-color: red; }
  .checkbox-container input[type="checkbox"]:focus + label:before,
  .checkbox-container input[type="checkbox"]:checked:focus + label:before {
    outline: 2px solid rgba(69, 90, 100, 0.5); }
  .checkbox-container input[type="checkbox"]:hover + label:before {
    background-color: rgba(69, 90, 100, 0.5);
    box-shadow: inset 0 0 0 0.15em white; }
  .checkbox-container input[type="checkbox"]:checked + label:before {
    background-color: #455a64;
    box-shadow: inset 0 0 0 0.15em white; }
  .checkbox-container input[type="checkbox"]:disabled + label {
    opacity: 0.5; }

/*----------  Toggle Switch  ----------*/
.toggle-group {
  --toggle-width: 33px;
  --toggle-height: 15px;
  --toggle-border: 2px;
  --toggle-width-offset: calc((var(--toggle-width) / 2) - 3px);
  --toggle-padding: 20px;
  position: relative;
  padding: var(--toggle-padding) 0 1px 0; }
  .toggle-group input[type="checkbox"] {
    position: absolute;
    visibility: hidden; }
  .toggle-group label {
    display: block;
    position: relative;
    width: var(--toggle-width);
    height: var(--toggle-height);
    cursor: pointer;
    -webkit-box-shadow: inset 0 0 0 20px #c5c5c5, 0 0 0 2px #c5c5c5;
    -moz-box-shadow: inset 0 0 0 20px #c5c5c5, 0 0 0 2px #c5c5c5;
    box-shadow: inset 0 0 0 20px #c5c5c5, 0 0 0 2px #c5c5c5; }
  .toggle-group label:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    height: calc(var(--toggle-height));
    width: var(--toggle-width-offset);
    top: 0px;
    left: 0px;
    right: auto;
    background: #fff;
    transition: 0.3s; }
  .toggle-group label:after {
    content: attr(data-label);
    display: block;
    position: absolute;
    z-index: 0;
    top: -5px;
    left: calc(var(--toggle-width) + 15px);
    color: #000;
    white-space: nowrap;
    margin-bottom: 0; }
  .toggle-group input[type="checkbox"]:checked + label {
    -webkit-box-shadow: inset 0 0 0 20px #455a64, 0 0 0 2px #455a64;
    -moz-box-shadow: inset 0 0 0 20px #455a64, 0 0 0 2px #455a64;
    box-shadow: inset 0 0 0 20px #455a64, 0 0 0 2px #455a64; }
  .toggle-group input[type="checkbox"]:checked + label:before {
    left: calc(100% - var(--toggle-width-offset)); }
  .toggle-group input[type="checkbox"]:disabled + label:after {
    color: #c5c5c5;
    font-weight: normal;
    cursor: not-allowed; }
  .toggle-group input[type="checkbox"]:disabled + label {
    cursor: not-allowed; }
  .toggle-group .hint-placer {
    display: inline-block;
    width: 5px;
    height: 1px;
    position: absolute;
    top: 0; }
    .toggle-group .hint-placer.isWeighted {
      left: calc(var(--toggle-width) * 5.7); }
    .toggle-group .hint-placer.isAdjusted {
      left: calc(var(--toggle-width) * 6.8); }

/*----------  Clear  ----------*/
.filter-clear {
  margin-top: 1rem; }
  .filter-clear .desktop-instructions {
    display: none; }
    @media screen and (min-width: 48em) {
      .filter-clear .desktop-instructions {
        display: block; } }
  @media screen and (min-width: 48em) {
    .filter-clear .mobile-instructions {
      display: none; } }
  .filter-clear button {
    margin-top: 0; }

/*===============================
=            Buttons            =
===============================*/
.btn {
  color: #fff;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.69;
  letter-spacing: 0.7px;
  padding: 0.25rem 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-radius: 2px;
  cursor: pointer; }

.btn.btn-red {
  background-color: #ed392a; }
  .btn.btn-red:hover {
    background-color: #c42d21; }

.btn.btn-blue {
  background-color: #2b3d46; }
  .btn.btn-blue:hover {
    background-color: #728c99; }
  .btn.btn-blue.inactive {
    background-color: #728c99; }

.btn.btn-transparent {
  background-color: transparent;
  color: #000;
  text-transform: none; }

.btn.btn-gray {
  background-color: #f1f1f1;
  color: #808081; }
  .btn.btn-gray:hover {
    background-color: #d6d6d6; }

/*===============================
=            Loading            =
===============================*/
.loading-container {
  position: relative; }

.loading {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  border: 5px solid #fff;
  border-top-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  animation: loading 1.2s linear infinite;
  -webkit-animation: loading 1.2s linear infinite;
  box-sizing: border-box; }

@keyframes loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

.hide-on-load {
  opacity: 0;
  visibility: hidden; }

/*==============================
=            Source            =
==============================*/
.source {
  margin-top: 2rem;
  padding-bottom: 2rem;
  text-align: right; }
  @media screen and (min-width: 48em) {
    .source {
      margin-top: 2rem; } }
  .source img {
    max-width: 300px;
    height: auto; }
  .source p {
    font-size: 0.8rem;
    line-height: 1.1;
    margin: 0;
    text-align: right;
    color: gray; }

/*==================================
=            Disclaimer            =
==================================*/
.desktop-disclaimer {
  font-size: 14px;
  margin-top: 2rem; }
  @media screen and (min-width: 48em) {
    .desktop-disclaimer {
      display: none; } }

/*----------  Hint.css  ----------*/
[class*=hint--]:after {
  background: #fff;
  color: #333;
  font-weight: normal;
  text-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }

.hint--bottom-left:before, .hint--bottom-right:before, .hint--bottom:before {
  display: none; }

.hint-bubble {
  position: relative;
  display: inline-block;
  background-color: #f1f1f1;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 9.5px;
  font-weight: bold;
  color: #ed392a;
  top: -1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .hint-bubble:hover {
    color: #c42d21; }

.hint-footnote {
  text-decoration: none;
  color: #ed392a;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .hint-footnote:hover {
    -webkit-box-shadow: inset 0px -2px 0px 0 #d4d0cb;
    -moz-box-shadow: inset 0px -2px 0px 0 #d4d0cb;
    box-shadow: inset 0px -2px 0px 0 #d4d0cb; }

/*----------  Custom Components  ----------*/
/*===================================
=            Page Layout            =
===================================*/
/*----------  Main Content  ----------*/
body {
  padding-left: 1rem;
  padding-right: 1rem; }

.source,
.note {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }

.note {
  text-align: right; }

.desc-desktop {
  display: none; }
  @media screen and (min-width: 48em) {
    .desc-desktop {
      display: block; } }

@media screen and (min-width: 48em) {
  .desc-mobile {
    display: none; } }

/*----------  Main Chart  ----------*/
.content-wrapper {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-gap: 0rem; }

.desc-filters {
  max-width: 700px;
  margin: 0 auto;
  grid-row: 1; }

.filters {
  margin-bottom: 2rem; }
  @media screen and (min-width: 48em) {
    .filters {
      display: grid;
      grid-template-columns: fit-content(40%) auto;
      grid-gap: 3rem;
      align-items: center; } }
  .filters .filter-label, .filters .toggle-group label:after, .toggle-group .filters label:after {
    display: inline-block; }
  .filters .filter-select {
    min-width: 140px;
    width: initial; }

.chart-container {
  grid-row: 2; }

.global-total {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
  color: #000;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .global-total {
      font-size: 18px;
      font-size: 1.125rem; } }
  .global-total span {
    display: inline-block;
    padding-bottom: 5px;
    font-style: normal;
    font-weight: bold;
    border-bottom: 2px solid #ed392a; }
  .global-total .current-year {
    margin-left: 0.1rem; }

/*============================
=            Chart           =
============================*/
.chart {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  text-align: center; }
  .chart text {
    font-family: "Hind", sans-serif; }
  .chart line {
    stroke: #c5c5c5;
    stroke-width: 1.5px;
    fill: none; }
  .chart .rect {
    fill: #fff;
    -webkit-tap-highlight-color: transparent; }
  .chart .country-lines {
    transition: stroke 600ms; }
    .chart .country-lines.is-highlighted {
      stroke: #ed392a; }
  .chart .country-lines-events {
    stroke-width: 20;
    stroke: transparent; }
  .chart .axis--categories path {
    fill: none;
    stroke: #c5c5c5; }
  .chart .axis--categories .category-labels {
    display: none;
    text-anchor: middle;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: capitalize; }
    @media screen and (min-width: 48em) {
      .chart .axis--categories .category-labels {
        display: block;
        font-size: 13px;
        font-size: 0.8125rem; } }
    .chart .axis--categories .category-labels[data-category="gas_flaring"] {
      text-anchor: start; }
  .chart .axis--countries .country-labels {
    text-anchor: middle;
    font-size: 14px;
    font-size: 0.875rem; }
    @media screen and (min-width: 35em) {
      .chart .axis--countries .country-labels {
        font-size: 18px;
        font-size: 1.125rem; } }
  .chart .bubbles {
    fill-opacity: 0.9;
    transition: stroke 600ms; }
    .chart .bubbles.is-highlighted {
      stroke: #ed392a; }
  .chart .g-total .total-circle {
    fill: #fff; }
  .chart .g-total .total-full-arc {
    stroke: #c5c5c5;
    fill: #c5c5c5; }
  .chart .g-total .total-arc {
    stroke: #ed392a;
    fill: #ed392a; }
    .chart .g-total .total-arc.is-visible {
      visibility: visible; }
  .chart .g-total text {
    text-anchor: middle; }
  .chart .g-total .total-label {
    font-size: 15px;
    font-size: 0.9375rem;
    text-decoration: underline; }
  .chart .g-total .total-num {
    font-size: 28px;
    font-size: 1.75rem;
    fill: #ed392a;
    font-weight: bold; }
  .chart .g-total .total-desc {
    font-size: 13px;
    font-size: 0.8125rem; }

/*===============================
=            Legends            =
===============================*/
.legend {
  margin-top: 1rem; }
  @media screen and (min-width: 48em) {
    .legend {
      margin-top: 0; } }
  .legend .legend-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; }
    @media screen and (min-width: 35em) {
      .legend .legend-list {
        justify-content: space-between; } }
  .legend li {
    flex: 0 1 auto;
    text-transform: capitalize;
    min-width: calc(100% / 3 - 2.5rem);
    margin-right: 0.25rem; }
    @media screen and (min-width: 35em) {
      .legend li {
        min-width: unset;
        margin-right: 0; } }
    .legend li::before {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: gray;
      margin-right: 0.5rem; }
    .legend li.coal::before {
      background-color: #a483a8; }
    .legend li.oil::before {
      background-color: #e7ae3f; }
    .legend li.gas::before {
      background-color: #8cb561; }
    .legend li.cement::before {
      background-color: #455a64; }
    .legend li.gas_flaring::before {
      background-color: #3b75bb; }
