/* 
*
*	NAZCA 2019
*	Howoco / Declan Tyson
*	v3.0.0
*	14/09/2019
*
*/
/* colours */
/* spacing */
@import url("https://fonts.googleapis.com/css?family=Merriweather:300,700|Roboto:300,400,700|Roboto+Condensed:700");
/* Defaults */
html, body {
  margin: 0;
  font-family: 'Roboto',  sans-serif;
  font-weight: 400;
  scroll-behavior: smooth; }

h1 {
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  line-height: 51px; }

h2 {
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  line-height: 44px; }

h4 {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  font-size: 22px;
  line-height: 30px; }

h5 {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  font-size: 22px;
  line-height: 26px; }

h6 {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 29px;
  color: #7E7E7E;
  margin: 5px 0; }

a {
  color: #f03b63; }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; }
  .container.container-lg {
    max-width: 1024px; }

.index {
  padding: 40px; }

.force-hidden {
  display: none !important; }

/* Mixins */
header {
  background: #1E4A78;
  color: #fff; }
  header .container {
    display: flex;
    flex-direction: row; }
    header .container .logo a {
      align-self: center;
      flex: 0 0 auto;
      display: flex;
      flex-direction: row;
      width: 270px;
      padding: 10px 20px;
      color: #ffffff;
      text-decoration: none;
      align-items: center; }
      header .container .logo a img {
        width: 39px;
        height: 30px;
        margin-right: 20px; }
      header .container .logo a h1 {
        font-size: 1.15rem;
        margin: 0;
        line-height: normal; }
        header .container .logo a h1 span {
          display: block;
          font-size: 0.75rem; }
  header.large .logo a {
    padding: 40px 20px; }
    header.large .logo a img {
      width: 52px;
      height: 40px; }
    header.large .logo a h1 {
      font-size: 1.25rem; }
      header.large .logo a h1 span {
        font-size: 0.8rem; }

nav > ul {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 5px;
  padding: 0;
  height: 100%;
  align-items: center; }
  nav > ul > li {
    list-style: none;
    flex: 0 1 auto;
    flex-wrap: wrap;
    font-size: 0.8rem;
    height: 100%;
    position: relative; }
    nav > ul > li .nav-children {
      display: none;
      position: absolute;
      top: 75%;
      list-style-type: none;
      padding: 10px 0;
      background: white;
      width: 150%;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
      box-shadow: 0 0 15px #999;
      z-index: 100;
      width: 165px; }
      nav > ul > li .nav-children li {
        padding: 10px;
        margin: 0 10px;
        text-align: center;
        border-bottom: solid 1px #cdcdcd;
        transition: background-color 0.2s linear; }
        nav > ul > li .nav-children li:last-of-type {
          border-bottom: none; }
        nav > ul > li .nav-children li a {
          color: #182F47;
          text-decoration: none; }
        nav > ul > li .nav-children li:hover {
          background-color: #cdcdcd; }
    nav > ul > li:hover .nav-children {
      display: block; }
    nav > ul > li > a, nav > ul > li > span {
      display: flex;
      text-align: center;
      align-items: center;
      height: 100%;
      color: #fff;
      padding: 0 28px;
      text-decoration: none;
      cursor: pointer;
      background-color: transparent;
      transition: background-color 0.125s ease-out;
      -webkit-transition: background-color 0.125s ease-out; }
    nav > ul > li > a:hover {
      background-color: rgba(0, 0, 0, 0.25); }
    nav > ul > li.current > a, nav > ul > li.current span {
      background-color: rgba(0, 0, 0, 0.25); }
    nav > ul > li.has-children > span:after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 5px 0 5px;
      border-color: #ffffff transparent transparent transparent;
      margin-left: 5px; }
    nav > ul > li.map-link {
      border-left: solid 1px #cdcdcd;
      border-right: solid 1px #cdcdcd;
      font-weight: 700;
      font-size: 18px; }
      nav > ul > li.map-link a, nav > ul > li.map-link span {
        padding: 0 30px; }
nav .search {
  width: 15px;
  height: 15px; }
@media screen and (max-width: 1200px) {
  nav {
    position: fixed;
    height: 100%;
    width: 100%;
    right: -100%;
    top: 0;
    background-color: #182F47;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    transition: right 0.4s ease-out; }
    nav.mobile-open {
      right: 0; }
    nav ul {
      flex-direction: column;
      padding: 30px;
      height: auto;
      max-width: 320px;
      width: 100%;
      align-self: center;
      overflow-y: auto;
      flex-wrap: nowrap; }
      nav ul li {
        height: auto;
        border-top: solid 1px #1E4A78;
        padding: 10px;
        font-size: 18px;
        width: 100%;
        box-sizing: border-box; }
        nav ul li.current a, nav ul li.current span {
          background-color: transparent; }
        nav ul li:hover .nav-children {
          display: none; }
        nav ul li > a {
          padding: 0; }
        nav ul li:nth-of-type(2) a {
          padding: 0; }
        nav ul li.has-children span:after {
          position: absolute;
          right: 0;
          transform: rotateZ(-90deg); }
        nav ul li.submenu-back {
          border: none;
          font-size: 14px;
          font-weight: 700;
          margin-bottom: 40px; }
          nav ul li.submenu-back:before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 5px 0 5px;
            border-color: #ffffff transparent transparent transparent;
            position: absolute;
            left: -20px;
            margin: 5px;
            transform: rotateZ(90deg); }
        nav ul li:last-of-type {
          border-bottom: solid 1px #1E4A78; }
        nav ul li.map-link {
          border-right: none;
          border-left: none;
          font-weight: 400; }
          nav ul li.map-link > a {
            padding: 0; }
        nav ul li.has-children > span {
          padding: 0; } }
@media screen and (max-width: 480px) {
  nav ul li.map-link, nav ul li.search-link {
    display: none; } }

.mobile-search-link {
  display: none; }
  @media screen and (max-width: 1200px) {
    .mobile-search-link {
      display: block;
      position: absolute;
      padding: 20px;
      right: 45px;
      top: 2px; } }

.toggle-mobile-menu {
  display: none; }
  @media screen and (max-width: 1200px) {
    .toggle-mobile-menu {
      display: flex;
      flex-direction: column;
      height: 24px;
      width: 24px;
      position: absolute;
      right: 0;
      z-index: 1001;
      margin: 0;
      padding: 20px;
      box-sizing: content-box;
      cursor: pointer;
      transition: transform 0.2s linear; }
      .toggle-mobile-menu.open {
        transform: rotateZ(90deg);
        position: fixed; }
      .toggle-mobile-menu .line {
        border: solid 2px white;
        margin-bottom: 5px; } }

@media screen and (max-width: 1200px) {
  header.large .logo a {
    width: 235px;
    padding: 20px; }
    header.large .logo a img {
      width: 39px;
      height: 30px; }
    header.large .logo a h1 {
      font-size: 1.15rem; }
  header.large .mobile-search-link,
  header.large .toggle-mobile-menu {
    padding: 30px 20px; } }
footer {
  background: linear-gradient(to bottom, #1E4A78 0%, #182F47 100%);
  padding: 30px 20px;
  color: #fff; }
  footer.footer-minimal {
    background: #1E4A78;
    margin-top: 80px;
    padding: 10px; }
  footer .container {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row; }
    footer .container .logo {
      align-self: center;
      flex: 0 0 auto;
      max-width: 250px;
      margin-right: 20px; }
    footer .container .menus {
      flex: 1;
      display: flex;
      flex-direction: row; }
      footer .container .menus ul {
        flex: 1;
        margin: 0;
        padding: 20px 10px 20px 0; }
        footer .container .menus ul li {
          list-style: none;
          font-size: 0.9rem;
          margin: 0 0 10px 0; }
          footer .container .menus ul li.footer-nav-header {
            text-transform: uppercase;
            font-size: 0.6rem;
            font-weight: bold;
            opacity: 0.7;
            margin: 5px 0; }
          footer .container .menus ul li a {
            color: #fff;
            text-decoration: none; }
    footer .container .newsletter {
      flex: 1;
      padding: 20px; }
      footer .container .newsletter h3 {
        margin: 5px 0; }
      footer .container .newsletter h4 {
        margin: 5px 0 20px 0;
        font-weight: normal; }
      footer .container .newsletter form {
        display: flex; }
        footer .container .newsletter form input[type=email] {
          flex: 7;
          margin-right: 10px; }
        footer .container .newsletter form input[type=submit] {
          flex: 1; }

.body-copy {
  width: 100%;
  max-width: 1024px;
  display: flex;
  margin: 0 auto; }
  .body-copy .copy {
    width: calc(66% - 30px);
    padding: 0 30px 0 0; }
    .body-copy .copy h4, .body-copy .copy h5, .body-copy .copy h6 {
      color: #79aee2; }
    .body-copy .copy p, .body-copy .copy li {
      font-family: 'Merriweather', serif;
      font-weight: 300; }
  .body-copy .supporting-component {
    width: calc(33% - 30px);
    padding: 0 0 0 30px; }

@media screen and (max-width: 1024px) {
  .body-copy {
    flex-wrap: wrap; }
    .body-copy .copy,
    .body-copy .supporting-component {
      width: calc(100% - 60px);
      padding: 0 30px; } }
input {
  padding: 7px; }
  input[type=text], input[type=email] {
    border: none; }
  input[type=button], input[type=submit] {
    border-radius: 5px;
    border: solid 2px #78abe0;
    background-color: #4e91d7;
    color: #fff; }

.card {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px #999;
  display: flex;
  border: solid 1px #cdcdcd;
  position: relative;
  background-color: #ffffff;
  flex-wrap: wrap;
  text-decoration: none; }
  .card.card-33 {
    width: calc(33% - 25px);
    margin: 10px; }
  .card.card-66 {
    width: 66%; }
  .card .card-title {
    width: 100%;
    padding: 10px 20px;
    background-color: #1E4A78;
    color: #ffffff;
    font-weight: 700;
    height: 60px;
    display: flex;
    align-items: center; }

.card-container {
  display: flex;
  flex-wrap: wrap; }
  .card-container .card.with-tile-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    .card-container .card.with-tile-image img {
      max-width: 90%; }
    .card-container .card.with-tile-image:after {
      display: block;
      content: ' ';
      padding-bottom: 100%; }
    .card-container .card.with-tile-image:before {
      display: block;
      content: ' ';
      background-color: rgba(0, 0, 0, 0.4);
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.2s linear; }
    .card-container .card.with-tile-image:hover:before {
      opacity: 1; }

@media screen and (max-width: 480px) {
  .card.card-33, .card.card-66 {
    width: calc(50% - 25px);
    margin: 10px; } }
.tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 20px 0; }
  .tabs .tab {
    width: 100px;
    padding: 10px;
    border: solid 1px #999;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    top: 1px;
    color: #999;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px; }
    .tabs .tab.selected {
      color: #182F47;
      border-color: #182F47; }

.tabs-content .tab-content {
  display: none; }
  .tabs-content .tab-content.selected {
    display: block; }

.chart {
  display: flex;
  justify-content: center; }
  .chart .legends-wrapper {
    display: flex;
    flex-direction: row; }
    .chart .legends-wrapper > ul {
      flex: 1; }
  .chart > div {
    padding: 10px;
    height: 100px !important;
    width: 100px !important; }
  .chart ul {
    margin: 0;
    padding: 0; }
    .chart ul li {
      margin: 5px 0;
      padding: 0;
      color: #ffffff;
      list-style-type: none;
      line-height: 16px;
      font-size: 12px;
      display: flex; }
      .chart ul li:before {
        content: ' ';
        display: inline-block;
        height: 6px;
        width: 8px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        margin: 5px;
        border: solid 2px #fff; }
      .chart ul li.key-theme:before {
        background-color: #e6d298; }
      .chart ul li.no-data:before {
        background-color: #565E66; }
      .chart ul li.expired:before {
        background-color: #FBCD34; }
      .chart ul li.in-progress:before {
        background-color: #FF9C80; }
      .chart ul li.achieved:before {
        background-color: #FF6171; }
      .chart ul li.overachieved:before {
        background-color: #007f88; }
      .chart ul li.energy:before {
        background-color: #6f8092; }
      .chart ul li.transport:before {
        background-color: #b2d5ff; }
      .chart ul li.waste-management:before {
        background-color: #4b8fe2; }
      .chart ul li.agriculture:before {
        background-color: #23d98c; }
      .chart ul li.forest:before {
        background-color: #007f88; }
    .chart ul.action-type-legend li:nth-of-type(1):before {
      background-color: #bddeff; }
    .chart ul.action-type-legend li:nth-of-type(2):before {
      background-color: #71b3ff; }
    .chart ul.action-type-legend li:nth-of-type(3):before {
      background-color: #0062d7; }
    .chart ul.action-type-legend li:nth-of-type(4):before {
      background-color: #013e7f; }
    .chart ul.action-type-legend li:nth-of-type(5):before {
      background-color: #76f7d8; }
    .chart ul.action-type-legend li:nth-of-type(6):before {
      background-color: #0ece7b; }
    .chart ul.action-type-legend li:nth-of-type(7):before {
      background-color: #00c1b0; }
    .chart ul.action-type-legend li:nth-of-type(8):before {
      background-color: #027a4a; }
    .chart ul.action-type-legend li:nth-of-type(9):before {
      background-color: #565f66; }
    .chart ul.action-theme-legend li:nth-of-type(2):before {
      background-color: #eddeb3; }
    .chart ul.action-theme-legend li:nth-of-type(3):before {
      background-color: #e7d396; }
    .chart ul.action-theme-legend li:nth-of-type(4):before {
      background-color: #c8b57b; }
    .chart ul.action-theme-legend li:nth-of-type(5):before {
      background-color: #eddeb3; }
    .chart ul.action-theme-legend li:nth-of-type(6):before {
      background-color: #e7d396; }
    .chart ul.action-theme-legend li:nth-of-type(7):before {
      background-color: #c8b57b; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(2):before {
      background-color: #ececec; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(3):before {
      background-color: #d9d9d9; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(4):before {
      background-color: #c5c5c5; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(5):before {
      background-color: #b2b2b2; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(6):before {
      background-color: #9c9c9c; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(7):before {
      background-color: #565f66; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(8):before {
      background-color: #ececec; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(9):before {
      background-color: #d9d9d9; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(10):before {
      background-color: #c5c5c5; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(11):before {
      background-color: #b2b2b2; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(12):before {
      background-color: #9c9c9c; }
    .chart ul.crosscutting-theme-legend li:nth-of-type(13):before {
      background-color: #565f66; }
    .chart ul .legend-header {
      font-weight: bold; }
      .chart ul .legend-header:before {
        display: none; }

.ss-wrapper {
  overflow: hidden;
  width: calc(100% - 40px);
  height: calc(100vh - 475px);
  position: relative;
  z-index: 1;
  float: left; }
  @media screen and (max-width: 960px) {
    .ss-wrapper {
      height: calc(100vh - 325px);
      width: 100%; } }

.ss-content {
  height: 100%;
  width: 100%;
  padding: 0 32px 0 0;
  position: relative;
  overflow: auto;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.ss-scroll {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  width: 9px;
  border-radius: 4px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s linear; }

.ss-container:hover .ss-scroll {
  opacity: 1; }

.ss-grabbed {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none; }

.map-container {
  position: relative;
  height: calc(100vh - 65px);
  width: 100%;
  overflow: hidden; }
  .map-container .map-column {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px 5px 5px 0; }
    @media screen and (max-height: 768px) {
      .map-container .map-column .theme-filters, .map-container .map-column .stakeholder-filters {
        height: 120px; }
        .map-container .map-column .theme-filters h4, .map-container .map-column .stakeholder-filters h4 {
          font-size: 0.8rem; }
        .map-container .map-column .theme-filters img, .map-container .map-column .stakeholder-filters img {
          height: 18px; } }
  .map-container #map-canvas {
    height: 100%; }
    .map-container #map-canvas > div {
      background-color: #b2d1ef !important; }
  .map-container .data-filters-container {
    background-color: #ffffff;
    width: 254px;
    float: left;
    height: 100%;
    position: relative;
    transition: left 0.25s ease-in-out;
    -webkit-transition: left 0.25s ease-in-out;
    z-index: 10; }
    .map-container .data-filters-container.advanced .data-filters {
      overflow-y: scroll;
      align-items: flex-start; }
      .map-container .data-filters-container.advanced .data-filters fieldset.group ul {
        max-height: 250px; }
      .map-container .data-filters-container.advanced .data-filters fieldset.type {
        display: block; }
      .map-container .data-filters-container.advanced .data-filters fieldset.text-search {
        padding-bottom: 5px; }

/* unused for now */
/*
  .search-toggle {
    display: flex;
    flex-direction: row;
    width: calc(100% - 20px);
    padding: $spacing-md $spacing-sm;
    position: absolute;
    bottom: 0;
    align-items: center;
    label {
      text-align: center;
      flex: 3;
    }
    .toggle {
      flex: 1;
      border-radius: 12px;
      border: none;
      background-color: $border-grey;
      position: relative;
      height: 24px;
      &:after {
        content: ' ';
        position: absolute;
        background-color: white;
        padding: 11px;
        border-radius: 11px;
        top: 1px;
        transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
      }
      &.basic {
        &:after { left: 1px; }
      }
      &.advanced {
        &:after { left: calc(100% - 24px) }
      }
    }
  }
*/
.arrow-left {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 15px;
  background-image: url(/assets/dark_blue_arrow_left.png);
  background-position: 0px 110px; }
.arrow-top-left {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 15px;
  background-image: url(/assets/dark_blue_arrow_left.png);
  background-position: 0px 20px; }
.arrow-bottom-left {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 15px;
  background-image: url(/assets/dark_blue_arrow_left.png);
  background-position: 0px 200px; }
.arrow-right {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-right: 15px;
  background-image: url(/assets/dark_blue_arrow_right.png);
  background-position: 100% 110px; }
.arrow-top-right {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-right: 15px;
  background-image: url(/assets/dark_blue_arrow_right.png);
  background-position: 100% 20px; }
.arrow-bottom-right {
  background-repeat: no-repeat;
  background-size: 15px;
  padding-right: 15px;
  background-image: url(/assets/dark_blue_arrow_right.png);
  background-position: 100% 200px; }
.arrow-bottom {
  background-repeat: no-repeat;
  background-size: auto 15px;
  padding-bottom: 15px;
  background-image: url(/assets/dark_blue_arrow_down.png);
  background-position: 50% 100%; }
.arrow-top {
  background-repeat: no-repeat;
  background-size: auto 15px;
  padding-top: 15px;
  background-image: url(/assets/dark_blue_arrow_up.png);
  background-position: 50% 0; }

.stakeholder-details {
  padding: 10px 30px 10px 10px;
  border-bottom: solid 1px white; }
  .stakeholder-details:nth-of-type(2) {
    padding-bottom: 0;
    border-bottom: none; }
  .stakeholder-details p {
    margin: 0;
    color: #fff;
    font-size: 12px; }
    .stakeholder-details p.name {
      font-weight: 700;
      font-size: 16px; }

.results-list {
  position: absolute;
  top: 142px;
  right: 5px;
  transition: all 0.4s ease-out;
  max-width: 545px;
  width: 100%;
  z-index: 10;
  height: 0;
  overflow: hidden;
  padding: 0;
  background-color: #182F47;
  margin-top: 5px; }
  .results-list.visible {
    padding: 30px 0;
    height: calc(100% - 242px); }
  .results-list .close-results {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    display: none; }
    @media screen and (max-width: 960px) {
      .results-list .close-results {
        display: block; } }
  .results-list h2 {
    margin: 0;
    padding: 0 30px;
    color: #fff;
    font-size: 32px; }
  .results-list .country-button {
    background-image: url(/assets/internal-link-symbol.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-color: #ffffff;
    padding: 5px;
    border: solid 1px #999;
    border-radius: 4px;
    font-size: 13px;
    padding-right: 27px;
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    width: 90px;
    display: inline-block; }
  .results-list .tabs {
    border-bottom: solid 1px #ffffff; }
    .results-list .tabs .tab {
      width: 105px;
      border: solid 1px #6E8091;
      border-bottom-color: #ffffff;
      color: #6E8091; }
      .results-list .tabs .tab.selected {
        border-color: #ffffff;
        border-bottom-color: #182F47;
        color: #ffffff; }
  .results-list .tabs-content {
    max-height: calc(100% - 142px); }
    .results-list .tabs-content .tab-content {
      padding: 20px; }
      @media screen and (max-width: 767px) {
        .results-list .tabs-content .tab-content {
          padding-top: 0; } }
      .results-list .tabs-content .tab-content p {
        color: #ffffff; }
    .results-list .tabs-content .tab-content-totals {
      display: flex;
      padding: 10px 5px;
      font-size: 18px; }
      .results-list .tabs-content .tab-content-totals span {
        flex: 1;
        color: #fff;
        font-weight: bold; }
        .results-list .tabs-content .tab-content-totals span:last-of-type {
          display: flex;
          justify-content: flex-end; }
    .results-list .tabs-content .tab-content-action-status .chart {
      display: flex;
      flex-direction: column; }
      .results-list .tabs-content .tab-content-action-status .chart > div {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto; }
    .results-list .tabs-content .expando-stakeholder-content {
      overflow: hidden;
      max-height: 20000px;
      transition: 0.2s linear all; }
      .results-list .tabs-content .expando-stakeholder-content.collapsed {
        max-height: 0; }
    .results-list .tabs-content .stakeholder-type {
      background-color: #f03b63;
      line-height: 18px;
      font-size: 14px;
      padding: 5px 10px;
      color: #ffffff;
      font-weight: 700;
      position: relative;
      cursor: pointer;
      transition: 0.2s linear all;
      opacity: 1;
      width: 100%;
      margin-top: 10px; }
      .results-list .tabs-content .stakeholder-type:hover {
        opacity: 0.75; }
      .results-list .tabs-content .stakeholder-type .country-name {
        display: inline-block;
        padding-right: 95px; }
      .results-list .tabs-content .stakeholder-type .actions {
        position: absolute;
        right: 35px;
        top: 5px; }
      .results-list .tabs-content .stakeholder-type .expando {
        position: absolute;
        padding: 6px 10px;
        right: 0;
        top: 0;
        transition: all 0.2s linear;
        transform: rotateZ(-180deg);
        pointer-events: none; }
      .results-list .tabs-content .stakeholder-type.expanded .expando {
        transform: rotateZ(0deg); }
    .results-list .tabs-content .commitment-result {
      color: #ecf0f3;
      border-bottom: solid 1px #cdcdcd; }
      .results-list .tabs-content .commitment-result .commitment-result-header {
        display: flex;
        flex-direction: row;
        padding: 20px;
        cursor: pointer;
        transition: background-color 0.2s linear;
        background-color: transparent; }
        .results-list .tabs-content .commitment-result .commitment-result-header:hover {
          background-color: rgba(255, 255, 255, 0.2); }
        .results-list .tabs-content .commitment-result .commitment-result-header .commitment-result-stakeholder {
          flex: 10;
          font-family: 'Merriweather', serif; }
        .results-list .tabs-content .commitment-result .commitment-result-header .commitment-result-count {
          flex: 1; }
        .results-list .tabs-content .commitment-result .commitment-result-header .count {
          margin-right: 20px; }
        .results-list .tabs-content .commitment-result .commitment-result-header .expando {
          flex: 1;
          text-align: center;
          transform: rotateZ(0deg);
          transition: all 0.2s linear; }
          .results-list .tabs-content .commitment-result .commitment-result-header .expando img {
            width: 14px; }
        .results-list .tabs-content .commitment-result .commitment-result-header.expanded .expando {
          transform: rotateZ(-180deg); }
      .results-list .tabs-content .commitment-result .commitment-result-details {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out; }
        .results-list .tabs-content .commitment-result .commitment-result-details.visible {
          max-height: 400px;
          overflow: visible;
          margin-top: 10px; }
        .results-list .tabs-content .commitment-result .commitment-result-details.announced-commitment * {
          color: #c5c5c5 !important; }
        .results-list .tabs-content .commitment-result .commitment-result-details .commitment {
          padding: 0 20px 20px 38px; }
          .results-list .tabs-content .commitment-result .commitment-result-details .commitment.view-profile-wrap {
            padding-left: 0;
            padding-right: 0; }
          .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-type {
            color: #4e91d7;
            font-size: 14px; }
          .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-details {
            position: relative; }
            .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-details span {
              display: block; }
              .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-details span.announcement-icon {
                display: inline;
                position: absolute;
                left: -30px; }
                .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-details span.announcement-icon:after {
                  color: #000000;
                  left: -9px; }
            .results-list .tabs-content .commitment-result .commitment-result-details .commitment .commitment-details .action-name {
              font-family: 'Merriweather', serif;
              font-size: 18px;
              font-weight: bold; }
      .results-list .tabs-content .commitment-result .view-profile {
        padding: 5px;
        background-color: #efefef;
        border-color: #cdcdcd;
        color: #182F47;
        border-radius: 3px;
        display: inline-flex;
        align-items: center;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.2s linear;
        margin-left: 20px; }
        .results-list .tabs-content .commitment-result .view-profile:hover {
          opacity: 0.8; }
        .results-list .tabs-content .commitment-result .view-profile img {
          margin-left: 5px; }
      .results-list .tabs-content .commitment-result.stakeholder-focus-commitment {
        border-top: solid 1px #cdcdcd; }

.toggle-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 545px;
  background-color: #3C7AB8;
  text-align: right;
  display: none;
  transition: all 0.2s linear;
  color: #ffffff;
  padding: 12px;
  box-sizing: border-box;
  font-size: 12px;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer; }
  .toggle-panel img {
    margin-left: 20px; }
  .toggle-panel:hover {
    background-color: #2f6192; }
  .toggle-panel.visible {
    display: flex; }
    @media screen and (max-width: 1024px) {
      .toggle-panel.visible {
        display: none; } }
  .toggle-panel .collapse {
    display: none; }
  .toggle-panel.open .collapse {
    display: inline-block; }
  .toggle-panel.open .expand {
    display: none; }

.zoom-controls {
  position: absolute;
  top: 180px;
  z-index: 9;
  left: 40px; }
  .zoom-controls .zoom-in,
  .zoom-controls .zoom-out {
    width: 25px;
    height: 23px;
    margin-bottom: 2px;
    transition: all 0.2s linear;
    background-image: url(/assets/zoom.png);
    cursor: pointer; }
    .zoom-controls .zoom-in:hover,
    .zoom-controls .zoom-out:hover {
      background-image: url(/assets/zoom-pressed.png); }
  .zoom-controls .zoom-in {
    background-position: 0 0; }
  .zoom-controls .zoom-out {
    background-position: 0 24px; }

@media screen and (max-width: 960px) {
  .map-container .data-filters-container {
    width: 100%;
    float: none;
    height: auto;
    display: flex; }
    .map-container .data-filters-container .stakeholders {
      width: 25%;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center; }
    .map-container .data-filters-container fieldset.text-search {
      display: flex;
      justify-content: center;
      align-items: center; }
    .map-container .data-filters-container .data-filters {
      height: auto;
      flex: 1; }
      .map-container .data-filters-container .data-filters form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; }
        .map-container .data-filters-container .data-filters form fieldset.group {
          flex: 1;
          flex-basis: 33%; }
          .map-container .data-filters-container .data-filters form fieldset.group button.fieldset-header > div {
            padding: 10px; }

  .results-list {
    top: 72px !important; }
    .results-list.visible {
      height: calc(100% - 195px); } }
@media screen and (max-width: 767px) {
  .map-container .data-filters-container {
    display: none; } }
#timeline-map-images {
  display: none;
  position: relative;
  overflow: hidden; }
  #timeline-map-images img {
    opacity: 0;
    transition: opacity 0.2s linear;
    position: absolute;
    min-width: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%; }
    #timeline-map-images img:first-of-type {
      opacity: 1;
      position: relative;
      height: auto; }

.js-info-bubble-close {
  display: none; }

.theme-filters, .stakeholder-filters {
  display: flex; }
  @media screen and (max-height: 768px) {
    .theme-filters, .stakeholder-filters {
      height: 66px; } }
  .theme-filters.link-filters, .link-filters.stakeholder-filters {
    margin: 5px;
    margin-bottom: -20px;
    position: relative;
    height: 106px; }
  .theme-filters .themes-title, .stakeholder-filters .themes-title, .stakeholder-filters .stakeholders-title {
    background-color: #DDB942;
    height: calc(100% - 5px);
    margin: 0 1px 5px 0;
    align-items: center;
    display: flex;
    padding: 0 20px; }
    .theme-filters .themes-title h4, .stakeholder-filters .themes-title h4, .stakeholder-filters .stakeholders-title h4 {
      width: 100%;
      display: inline-block;
      margin: 0;
      text-align: center;
      font-size: 16px;
      color: #333;
      text-transform: uppercase;
      font-family: 'Roboto', sans-serif;
      line-height: 16px; }
      .theme-filters .themes-title h4 span, .stakeholder-filters .themes-title h4 span, .stakeholder-filters .stakeholders-title h4 span {
        display: block;
        font-weight: 400;
        text-transform: none; }
  .theme-filters a, .stakeholder-filters a {
    flex: 1;
    text-decoration: none;
    height: 100%; }
    .theme-filters a .theme:hover, .stakeholder-filters a .theme:hover, .theme-filters a .stakeholder-filters .stakeholder:hover, .stakeholder-filters a .stakeholder:hover {
      background-color: #D1C495; }
  .theme-filters .theme, .stakeholder-filters .theme, .stakeholder-filters .stakeholder {
    flex: 1;
    height: calc(100% - 25px) !important;
    margin: 0 1px 5px 1px;
    background-color: #E7D494;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    z-index: 1;
    cursor: pointer; }
    .theme-filters .theme.selected, .stakeholder-filters .theme.selected, .stakeholder-filters .selected.stakeholder {
      background-color: #D1C495; }
    .theme-filters .theme img, .stakeholder-filters .theme img, .stakeholder-filters .stakeholder img {
      height: 32px; }
    .theme-filters .theme h4, .stakeholder-filters .theme h4, .stakeholder-filters .stakeholder h4 {
      color: #940719;
      font-size: 16px;
      margin: 0;
      width: 100%;
      line-height: normal;
      text-align: center; }
    .theme-filters .theme span, .stakeholder-filters .theme span, .stakeholder-filters .stakeholder span {
      color: #940719; }
      .theme-filters .theme span.count, .stakeholder-filters .theme span.count, .stakeholder-filters .stakeholder span.count {
        display: none; }

.stakeholder-filters .stakeholders-title {
  background-color: #354b62; }
  .stakeholder-filters .stakeholders-title h4 {
    color: #fff; }
.stakeholder-filters .stakeholder {
  background-color: #cdcdcd; }
  .stakeholder-filters .stakeholder h4 {
    color: #000;
    font-family: 'Roboto', sans-serif; }
.stakeholder-filters a .stakeholder.selected, .stakeholder-filters a .stakeholder:hover {
  background-color: #4e91d7; }

@media screen and (max-width: 960px) {
  .theme-filters .theme img, .stakeholder-filters .theme img, .stakeholder-filters .stakeholder img {
    height: 20px; }
  .theme-filters .theme h4, .stakeholder-filters .theme h4, .stakeholder-filters .stakeholder h4 {
    font-size: 12px; } }
.stakeholders {
  padding: 33px 30px;
  margin: 5px;
  background-color: #efefef;
  text-align: center;
  position: relative; }
  @media screen and (max-height: 768px) {
    .stakeholders {
      padding: 10px 30px; } }
  .stakeholders p {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: normal; }
    .stakeholders p span {
      font-weight: 700;
      color: #182F47; }
  .stakeholders .map-info {
    left: auto;
    bottom: 5px;
    right: 5px;
    z-index: 100; }
    .stakeholders .map-info .disclaimer {
      bottom: -100px; }
      .stakeholders .map-info .disclaimer:after {
        width: 0;
        height: 0;
        content: '';
        z-index: 2;
        border-bottom: 7.5px solid rgba(0, 0, 0, 0.8);
        border-top-width: 0px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        bottom: auto;
        top: -7px; }

fieldset.text-search {
  padding: 30px 20px;
  border: none;
  position: relative;
  z-index: 10; }
  @media screen and (max-height: 768px) {
    fieldset.text-search {
      padding: 10px 20px; } }
  fieldset.text-search label {
    display: block;
    text-align: center;
    margin: 5px 0;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
    color: #182F47; }
  fieldset.text-search .search {
    display: flex;
    width: 100%; }
    fieldset.text-search .search input[type=text] {
      border: solid 1px #cdcdcd;
      flex: 1;
      padding: 5px;
      height: 1rem;
      width: 100px;
      position: relative;
      z-index: 11;
      text-align: center;
      font-size: 13px; }
    fieldset.text-search .search button[type=submit] {
      display: none;
      background-color: #182F47;
      background-image: url("/assets/search.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 50%;
      border: none;
      padding: 14px;
      position: relative;
      z-index: 11; }
  fieldset.text-search .suggestions {
    position: absolute;
    width: calc(100% - 40px);
    border: solid 1px #cdcdcd;
    background-color: #ffffff;
    margin-top: -2px;
    z-index: 9;
    max-height: 200px;
    overflow-y: scroll; }
    fieldset.text-search .suggestions a {
      color: #000;
      text-decoration: none; }
    fieldset.text-search .suggestions .suggestion {
      padding: 10px;
      font-size: 0.8rem; }
      fieldset.text-search .suggestions .suggestion:hover {
        background-color: #cdcdcd; }

.data-filters {
  position: relative;
  padding: 0 20px 20px 20px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  height: calc(100% - 175px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center; }
  @media screen and (max-height: 768px) {
    .data-filters {
      justify-content: flex-end;
      padding: 20px 20px 0 20px;
      height: auto; } }
  .data-filters > p {
    font-size: 12px; }
  .data-filters .cifs {
    position: relative;
    margin-top: 33px; }
    .data-filters .cifs p {
      font-size: 12px; }
    .data-filters .cifs .cooperative-initiatives-filter-search {
      border: solid 1px #cdcdcd;
      width: 100%;
      box-sizing: border-box; }
      .data-filters .cifs .cooperative-initiatives-filter-search.hidden {
        display: none; }
    .data-filters .cifs .cifs-results {
      position: absolute;
      bottom: 30px;
      border: solid 1px #cdcdcd;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      width: 100%;
      box-sizing: border-box;
      background-color: #fff;
      max-height: 320px;
      overflow-y: auto; }
      .data-filters .cifs .cifs-results.hidden {
        display: none; }
      .data-filters .cifs .cifs-results .cifs-result {
        font-size: 12px;
        text-align: left;
        padding: 10px 20px;
        cursor: pointer; }
        .data-filters .cifs .cifs-results .cifs-result:hover {
          background-color: #cdcdcd; }
    .data-filters .cifs .cifs-selected {
      padding: 7px 20px 7px 7px;
      border: solid 1px #cdcdcd;
      font-weight: bold;
      font-size: 12px;
      text-align: left;
      position: relative;
      cursor: pointer; }
      .data-filters .cifs .cifs-selected.hidden {
        display: none; }
      .data-filters .cifs .cifs-selected:after {
        content: '\2297';
        position: absolute;
        right: 5px;
        top: 50%;
        font-size: 12px;
        transform: translateY(-50%); }
  .data-filters form {
    width: 100%; }
  .data-filters fieldset.type {
    border: solid 2px #4e91d7;
    border-radius: 5px;
    padding: 20px;
    margin: 0 0 30px 0;
    display: none; }
    .data-filters fieldset.type label {
      display: flex;
      flex-direction: row;
      margin: 5px 0;
      color: #4e91d7;
      font-weight: bold; }
      .data-filters fieldset.type label span {
        flex: 1; }
  .data-filters fieldset.group {
    border: none;
    margin-bottom: 2px;
    padding: 0; }
    .data-filters fieldset.group label {
      display: flex; }
      .data-filters fieldset.group label span {
        flex: 1; }
    .data-filters fieldset.group button.fieldset-header {
      display: block;
      width: 100%;
      text-align: center;
      cursor: pointer;
      background-color: #e4eef9;
      border: solid 1px #4e91d7;
      padding: 0 0 0 50px;
      margin: 5px 0;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      box-shadow: none;
      border-radius: 4px;
      position: relative; }
      .data-filters fieldset.group button.fieldset-header:before {
        content: " ";
        position: absolute;
        left: -1px;
        top: -1px;
        height: 100%;
        width: 50px;
        border: solid 1px #4e91d7;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        background-color: #ffffff;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 15px; }
      .data-filters fieldset.group button.fieldset-header.fh-countries:before {
        background-image: url(/assets/filter-icons/countries.png); }
      .data-filters fieldset.group button.fieldset-header.fh-cities:before {
        background-image: url(/assets/filter-icons/cities.png); }
      .data-filters fieldset.group button.fieldset-header.fh-regions:before {
        background-image: url(/assets/filter-icons/regions.png); }
      .data-filters fieldset.group button.fieldset-header.fh-organizations:before {
        background-image: url(/assets/filter-icons/organizations.png); }
      .data-filters fieldset.group button.fieldset-header.fh-investors:before {
        background-image: url(/assets/filter-icons/investors.png); }
      .data-filters fieldset.group button.fieldset-header.fh-companies:before {
        background-image: url(/assets/filter-icons/companies.png); }
      .data-filters fieldset.group button.fieldset-header.selected {
        background-color: #79aee2;
        width: calc(100% + 10px);
        margin-left: -5px;
        box-shadow: 0 0 15px #999; }
      .data-filters fieldset.group button.fieldset-header > div {
        display: flex;
        padding: 10px;
        color: #333;
        font-size: 1rem;
        line-height: 1rem;
        align-items: center; }
        @media screen and (max-height: 768px) {
          .data-filters fieldset.group button.fieldset-header > div {
            padding: 5px;
            font-size: 0.9rem; } }
        .data-filters fieldset.group button.fieldset-header > div p {
          margin: 0;
          flex: 1;
          font-weight: bold; }
          .data-filters fieldset.group button.fieldset-header > div p span {
            font-weight: normal; }
        .data-filters fieldset.group button.fieldset-header > div input {
          display: none;
          pointer-events: none; }
          .data-filters fieldset.group button.fieldset-header > div input:after {
            content: ' ';
            padding: 6px;
            transition: all 0.2s linear;
            -webkit-transition: all 0.2s linear;
            border: solid 2px #cdcdcd;
            border-radius: 2px;
            position: relative;
            display: block;
            margin-top: -2px;
            background-color: #efefef; }
          .data-filters fieldset.group button.fieldset-header > div input:checked:after {
            border-color: #4e91d7;
            background-color: #4e91d7;
            background-image: url("/assets/checked.png");
            background-size: 100%; }
    .data-filters fieldset.group ul {
      padding: 0 20px;
      margin: 0;
      max-height: 1px;
      overflow: hidden; }
      .data-filters fieldset.group ul li {
        list-style: none;
        color: #333;
        margin: 5px 0;
        padding-left: 20px;
        font-size: 0.8rem; }
        .data-filters fieldset.group ul li.title {
          padding-top: 10px;
          margin-bottom: 10px;
          color: #1E4A78;
          font-weight: bold;
          padding-left: 0;
          font-size: 1rem; }
        .data-filters fieldset.group ul li:last-of-type {
          padding-bottom: 20px;
          border-bottom: solid 1px #cdcdcd; }
      .data-filters fieldset.group ul:last-of-type li:last-of-type {
        border-bottom: none; }

.stakeholder-categories {
  padding: 80px 40px;
  background-image: url(/assets/trees.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .stakeholder-categories .categories {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    .stakeholder-categories .categories .category {
      flex: 1;
      color: #000;
      background-color: #e6ebef;
      padding: 30px;
      border-right: solid 2px #bfc3c6;
      border-bottom: solid 2px #bfc3c6;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: bold;
      font-family: 'Roboto', sans-serif;
      cursor: pointer;
      transition: all 0.2s ease-out;
      text-decoration: none; }
      .stakeholder-categories .categories .category:hover {
        background-color: #ffffff; }
      .stakeholder-categories .categories .category.coop-inits {
        background-color: #ffffff; }
        .stakeholder-categories .categories .category.coop-inits:hover {
          background-color: #e6ebef; }
      .stakeholder-categories .categories .category span {
        font-weight: normal; }
      .stakeholder-categories .categories .category p {
        margin: 0;
        width: 100%; }
      .stakeholder-categories .categories .category:last-of-type {
        border-right: none; }
    .stakeholder-categories .categories .countries,
    .stakeholder-categories .categories .total {
      width: 100%;
      padding: 30px;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      text-align: center;
      font-size: 32px;
      font-weight: normal;
      text-decoration: none; }
      .stakeholder-categories .categories .countries span,
      .stakeholder-categories .categories .total span {
        font-weight: bold; }
    .stakeholder-categories .categories .countries {
      background-color: rgba(215, 32, 73, 0.75); }

@media screen and (max-width: 1024px) {
  .stakeholder-categories {
    padding: 30px; }
    .stakeholder-categories .categories .category {
      flex-basis: 33%;
      box-sizing: border-box;
      padding: 10px;
      font-size: 14px; }
      .stakeholder-categories .categories .category:nth-of-type(3n) {
        border-right: none; }
    .stakeholder-categories .categories .total {
      font-size: 22px; } }
.stakeholder-facts {
  margin-top: 40px;
  display: flex; }
  .stakeholder-facts.climate-facts {
    margin-top: 0;
    display: block; }
    .stakeholder-facts.climate-facts .stakeholder-fact {
      margin: 0;
      border-right: none; }
      .stakeholder-facts.climate-facts .stakeholder-fact ul {
        display: flex;
        border-bottom: solid 1px #cdcdcd; }
        .stakeholder-facts.climate-facts .stakeholder-fact ul li {
          padding: 5px 0;
          flex: 1; }
      .stakeholder-facts.climate-facts .stakeholder-fact:last-of-type ul {
        border: none; }
    .stakeholder-facts.climate-facts.single-column {
      display: block; }
      .stakeholder-facts.climate-facts.single-column .stakeholder-fact {
        width: 50%;
        border: none !important; }
    .stakeholder-facts.climate-facts.single-row .stakeholder-fact ul {
      border: none; }
  .stakeholder-facts .stakeholder-fact {
    margin: 10px;
    flex: 1; }
    .stakeholder-facts .stakeholder-fact:first-of-type {
      margin-left: 0; }
    .stakeholder-facts .stakeholder-fact:last-of-type {
      margin-right: 0; }
    .stakeholder-facts .stakeholder-fact .title {
      background-color: #6f8092;
      padding: 5px;
      font-size: 18px;
      text-align: center; }
    .stakeholder-facts .stakeholder-fact ul {
      margin: 0;
      padding: 0; }
      .stakeholder-facts .stakeholder-fact ul li {
        padding: 10px 0;
        margin: 0;
        list-style-type: none;
        display: flex; }
        .stakeholder-facts .stakeholder-fact ul li span {
          flex: 1; }
    .stakeholder-facts .stakeholder-fact label {
      font-weight: 700;
      width: 50%;
      display: block; }
    .stakeholder-facts .stakeholder-fact .value {
      width: 50%; }
    .stakeholder-facts .stakeholder-fact .adaptation-items p {
      margin-top: 0; }
    .stakeholder-facts .stakeholder-fact .chart {
      display: flex;
      flex-direction: column; }
      .stakeholder-facts .stakeholder-fact .chart > div, .stakeholder-facts .stakeholder-fact .chart canvas {
        width: 240px !important;
        height: 240px !important; }
        .stakeholder-facts .stakeholder-fact .chart > div.legends-wrapper, .stakeholder-facts .stakeholder-fact .chart canvas.legends-wrapper {
          height: auto !important; }
      .stakeholder-facts .stakeholder-fact .chart li {
        padding: 5px 0; }
        .stakeholder-facts .stakeholder-fact .chart li:before {
          height: 14px;
          width: 14px;
          border-radius: 14px;
          margin: 0 5px; }

.stakeholder-introduction {
  background-color: #182F47; }
  .stakeholder-introduction .stakeholder-introduction-container {
    width: calc(100% - 40px);
    max-width: 1024px;
    padding: 40px 20px;
    margin: 0 auto;
    color: #fff; }
    .stakeholder-introduction .stakeholder-introduction-container .stakeholder-name {
      font-weight: 700;
      margin: 20px 0 0 0; }
    .stakeholder-introduction .stakeholder-introduction-container .country-name {
      font-weight: 400;
      margin: 5px 0 40px 0;
      font-size: 20px; }
  .stakeholder-introduction .stakeholder-key-facts {
    border-top: solid 1px #cdcdcd; }
    .stakeholder-introduction .stakeholder-key-facts .stakeholder-introduction-container {
      display: flex;
      flex-wrap: wrap; }
      .stakeholder-introduction .stakeholder-key-facts .stakeholder-introduction-container .stakeholder-key-fact {
        flex: 1;
        margin: 0 10px 30px 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center; }
        .stakeholder-introduction .stakeholder-key-facts .stakeholder-introduction-container .stakeholder-key-fact .title {
          margin: 0; }
        .stakeholder-introduction .stakeholder-key-facts .stakeholder-introduction-container .stakeholder-key-fact img {
          margin: 20px 0; }
        .stakeholder-introduction .stakeholder-key-facts .stakeholder-introduction-container .stakeholder-key-fact .value {
          color: #DDB942;
          font-weight: 700; }

.stakeholder-action-summary {
  background-color: #efefef; }
  .stakeholder-action-summary .stakeholder-actions-container {
    width: calc(100% - 40px);
    max-width: 1024px;
    padding: 40px 20px;
    margin: 0 auto; }
    .stakeholder-action-summary .stakeholder-actions-container h3 {
      color: #1E4A78; }
    .stakeholder-action-summary .stakeholder-actions-container .stakeholder-fact .title {
      color: #ffffff; }
    .stakeholder-action-summary .stakeholder-actions-container .chart li {
      color: #000000; }

.stakeholder-actions .stakeholder-actions-container {
  width: calc(100% - 40px);
  max-width: 1024px;
  padding: 40px 20px;
  margin: 0 auto; }
  .stakeholder-actions .stakeholder-actions-container h3 {
    color: #1E4A78; }
  .stakeholder-actions .stakeholder-actions-container .action-list .action-list-header {
    display: flex;
    background-color: #6f8092;
    padding: 5px;
    font-size: 18px;
    margin: 40px 0 10px 0; }
    .stakeholder-actions .stakeholder-actions-container .action-list .action-list-header span {
      flex: 1;
      color: #fff;
      padding: 0 10px; }
    .stakeholder-actions .stakeholder-actions-container .action-list .action-list-header .count {
      text-align: right; }
  .stakeholder-actions .stakeholder-actions-container .action-summary-list .action-summary .details > a {
    display: flex; }
    .stakeholder-actions .stakeholder-actions-container .action-summary-list .action-summary .details > a img {
      align-self: center; }

.stakeholder-climate-information-container {
  width: calc(100% - 40px);
  max-width: 1024px;
  padding: 40px 20px;
  margin: 0 auto;
  background-image: url(/assets/coming-soon.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center; }
  .stakeholder-climate-information-container h3 {
    color: #1E4A78;
    margin-bottom: 0; }
  .stakeholder-climate-information-container p {
    margin: 5px 0; }
  .stakeholder-climate-information-container .stakeholder-fact {
    border-right: solid 1px #cdcdcd; }
    .stakeholder-climate-information-container .stakeholder-fact:last-of-type {
      border: none; }

@media screen and (max-width: 1024px) {
  .stakeholder-facts {
    overflow-x: scroll; } }
.action-summary {
  padding: 20px 0;
  border-bottom: solid 1px #cdcdcd;
  display: flex; }
  .action-summary.announced-commitment * {
    color: #7E7E7E !important; }
  .action-summary.announced-commitment .themes .theme, .action-summary.announced-commitment .themes .stakeholder-filters .stakeholder, .stakeholder-filters .action-summary.announced-commitment .themes .stakeholder, .action-summary.announced-commitment .themes .theme.crosscutting, .action-summary.announced-commitment .themes .stakeholder-filters .crosscutting.stakeholder, .stakeholder-filters .action-summary.announced-commitment .themes .crosscutting.stakeholder {
    background-color: #ffffff; }
  .action-summary:last-of-type {
    border: none; }
  .action-summary .details {
    flex: 1;
    padding: 0 40px 0 30px; }
    .action-summary .details > a {
      text-decoration: none; }
      .action-summary .details > a img {
        position: relative;
        top: 2px;
        margin-left: 5px; }
    .action-summary .details h4 {
      line-height: normal;
      margin: 0 0 20px 0;
      color: #f03b63;
      transition: opacity 0.2s linear;
      font-size: 16px;
      margin: 0; }
      .action-summary .details h4:hover.announced {
        opacity: 1;
        color: #ee2350; }
  .action-summary .action-type {
    font-size: 14px;
    width: 150px;
    margin: 10px;
    text-align: right;
    position: relative;
    font-weight: bold; }
    .action-summary .action-type .status {
      display: none;
      padding: 10px;
      border-radius: 3px;
      position: absolute;
      margin-top: 10px;
      right: 0px;
      width: 150px;
      color: #ffffff;
      text-align: center;
      background-color: #565e66 !important; }
      .action-summary .action-type .status:before {
        content: ' ';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 10px 7.5px;
        border-color: transparent;
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -7.5px;
        border-radius: 0;
        border-bottom-color: #565e66;
        border-top-color: transparent !important; }
      .action-summary .action-type .status.no-data {
        background-color: #565E66; }
        .action-summary .action-type .status.no-data:before {
          border-top-color: #565E66; }
      .action-summary .action-type .status.expired {
        background-color: #FBCD34; }
        .action-summary .action-type .status.expired:before {
          border-top-color: #FBCD34; }
      .action-summary .action-type .status.in-progress {
        background-color: #FF9C80; }
        .action-summary .action-type .status.in-progress:before {
          border-top-color: #FF9C80; }
      .action-summary .action-type .status.achieved {
        background-color: #FF6171; }
        .action-summary .action-type .status.achieved:before {
          border-top-color: #FF6171; }
      .action-summary .action-type .status.overachieved {
        background-color: #007f88; }
        .action-summary .action-type .status.overachieved:before {
          border-top-color: #007f88; }
    .action-summary .action-type:hover .status {
      display: block; }
  .action-summary > .status {
    width: 150px;
    margin: 10px 0;
    text-align: right; }
    .action-summary > .status:before {
      content: ' ';
      display: inline-block;
      height: 8px;
      width: 8px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      margin: 0 5px; }
    .action-summary > .status.no-data:before {
      background-color: #565E66; }
    .action-summary > .status.expired:before {
      background-color: #FBCD34; }
    .action-summary > .status.in-progress:before {
      background-color: #FF9C80; }
    .action-summary > .status.achieved:before {
      background-color: #FF6171; }
    .action-summary > .status.overachieved:before {
      background-color: #007f88; }
  .action-summary .themes .theme, .action-summary .themes .stakeholder-filters .stakeholder, .stakeholder-filters .action-summary .themes .stakeholder {
    display: inline-block;
    margin: 0 10px 10px 0;
    background-color: #E7D494;
    border: solid 1px #8b7939;
    border-radius: 20px;
    padding: 2px 5px;
    text-align: center;
    font-size: 12px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    width: 150px;
    color: #8b7939; }
    .action-summary .themes .theme.crosscutting, .action-summary .themes .stakeholder-filters .crosscutting.stakeholder, .stakeholder-filters .action-summary .themes .crosscutting.stakeholder {
      background-color: #d4d1c8;
      color: #70632e;
      border-color: #a2997a; }
  .action-summary .data-partners {
    display: flex;
    align-items: center; }
    .action-summary .data-partners .data-partner {
      margin: 0 20px 0 0; }
      .action-summary .data-partners .data-partner img {
        max-width: 100%;
        max-height: 100%;
        align-self: center;
        margin: 10px 0 0 0;
        padding-right: 25px;
        transition: background-image .25s linear;
        background-size: 15px;
        background-repeat: no-repeat;
        background-position: right center;
        background-image: url(/assets/external-link-symbol-lg.png); }
  .action-summary.total-commitments h4 img {
    margin-left: 5px;
    position: relative;
    top: 4px; }
  .action-summary.total-commitments h4 em {
    transition: opacity 0.2s linear;
    font-style: normal; }
  .action-summary.total-commitments h4:hover {
    opacity: 1; }
    .action-summary.total-commitments h4:hover em {
      opacity: 0.5; }
  .action-summary.total-commitments p {
    font-size: 14px;
    margin: 5px 0; }
  .action-summary.total-commitments .themes {
    width: auto;
    display: flex;
    margin: 10px 0 0 0;
    align-items: flex-start;
    flex-wrap: wrap; }
    .action-summary.total-commitments .themes .theme, .action-summary.total-commitments .themes .stakeholder-filters .stakeholder, .stakeholder-filters .action-summary.total-commitments .themes .stakeholder {
      margin: 0 10px 10px 0; }
  .action-summary.total-commitments .participants {
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    padding: 5px 30px; }
  .action-summary.theme-action-summary {
    padding: 5px; }
    .action-summary.theme-action-summary a {
      text-decoration: none; }
    .action-summary.theme-action-summary p {
      font-size: 14px;
      margin: 0; }
    .action-summary.theme-action-summary .actions {
      display: flex;
      align-items: flex-end;
      font-weight: 700;
      padding: 5px;
      font-size: 14px;
      margin-left: 30px; }
      .action-summary.theme-action-summary .actions.zero {
        display: none; }
    .action-summary.theme-action-summary .details {
      padding: 0; }

@media screen and (max-width: 1024px) {
  .action-summary h4 {
    margin-bottom: 10px; }

  .action-summary {
    flex-direction: column; }

  .action-summary .data-partner img {
    background-image: url(/assets/external-link-symbol-lg.png); } }
.textbanner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  height: 180px;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 50px;
  position: relative; }
  .textbanner .goto-next, .textbanner .goto-previous {
    width: 78px;
    margin: 0 11px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    z-index: 10; }
  .textbanner .items {
    flex: 1;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center; }
    .textbanner .items .item {
      transition: all 0.2s ease-in-out;
      position: absolute;
      width: 100%;
      left: 0;
      text-align: center;
      opacity: 0;
      font-size: 24px;
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      overflow: visible;
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: center; }
      .textbanner .items .item.previous {
        left: -100%; }
      .textbanner .items .item.next {
        left: 100%; }
      .textbanner .items .item.focused {
        opacity: 1;
        left: 0; }
  .textbanner .controls {
    display: flex;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); }
    .textbanner .controls .control-item {
      padding: 5px;
      margin: 0 10px;
      background-color: #bababa;
      border-radius: 10px;
      transition: background-color 0.2s linear;
      cursor: pointer; }
      .textbanner .controls .control-item.selected {
        background-color: #ed3e65; }

@media screen and (max-width: 960px) {
  .textbanner {
    height: 60px; }
    .textbanner .goto-next, .textbanner .goto-previous {
      width: 20px;
      margin: 0; }
    .textbanner .items .item {
      font-size: 14px; } }
.bubblebanner-container {
  background-color: #718eac;
  padding: 80px 20px;
  color: #fff;
  text-align: center; }
  .bubblebanner-container h2 {
    margin-top: 0; }
  .bubblebanner-container .bubblebanner {
    position: relative;
    padding-bottom: 100px;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    height: 420px;
    display: flex;
    align-items: center; }
    .bubblebanner-container .bubblebanner .goto-next, .bubblebanner-container .bubblebanner .goto-previous {
      width: 78px;
      margin: 0 11px;
      height: 100%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px; }
    .bubblebanner-container .bubblebanner .items {
      flex: 1;
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      align-items: center; }
      .bubblebanner-container .bubblebanner .items .item {
        background-color: #718eac;
        transition: all 0.5s ease-in-out;
        position: absolute;
        width: calc(100% - 40px);
        left: 100%;
        text-align: center;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        opacity: 0;
        padding: 20px;
        z-index: 1;
        top: 0; }
        .bubblebanner-container .bubblebanner .items .item img {
          max-width: 100%;
          max-height: 360px; }
        .bubblebanner-container .bubblebanner .items .item img.mobile {
          display: none; }
        .bubblebanner-container .bubblebanner .items .item.previous {
          left: -100%;
          opacity: 0;
          z-index: 100; }
        .bubblebanner-container .bubblebanner .items .item.next {
          left: 100%;
          opacity: 0;
          z-index: 99; }
        .bubblebanner-container .bubblebanner .items .item.focused {
          left: 0%;
          opacity: 1;
          z-index: 101; }
    .bubblebanner-container .bubblebanner .controls {
      display: flex;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%); }
      .bubblebanner-container .bubblebanner .controls .control-item {
        padding: 5px;
        margin: 0 10px;
        background-color: #bababa;
        border-radius: 10px;
        transition: background-color 0.2s linear;
        cursor: pointer; }
        .bubblebanner-container .bubblebanner .controls .control-item.selected {
          background-color: #ed3e65; }

@media screen and (max-width: 960px) {
  .bubblebanner-container .bubblebanner {
    padding-bottom: 0; } }
@media screen and (max-width: 767px) {
  .bubblebanner-container {
    padding: 30px 20px; }
    .bubblebanner-container .bubblebanner {
      height: 320px; }
      .bubblebanner-container .bubblebanner .goto-next, .bubblebanner-container .bubblebanner .goto-previous {
        width: 20px;
        margin: 0; }
      .bubblebanner-container .bubblebanner .items .item {
        font-size: 14px;
        padding: 10px;
        width: calc(100% - 20px); }
        .bubblebanner-container .bubblebanner .items .item img {
          display: none; }
        .bubblebanner-container .bubblebanner .items .item img.mobile {
          display: inline-block; }
        .bubblebanner-container .bubblebanner .items .item p {
          margin: 0; } }
@media screen and (max-width: 480px) {
  .bubblebanner-container .bubblebanner {
    height: 250px;
    padding-bottom: 0; } }
.events-notification {
  display: flex;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  z-index: 2; }
  .events-notification a {
    text-decoration: none; }
  .events-notification .head, .events-notification .body, .events-notification .tail {
    padding: 20px;
    position: relative;
    height: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-left: 40px;
    transition: all 0.2s linear; }
    .events-notification .head p, .events-notification .body p, .events-notification .tail p {
      margin: 0; }
    .events-notification .head:after, .events-notification .body:after, .events-notification .tail:after {
      transition: all 0.2s linear; }
  .events-notification .head {
    background-color: #e3963a;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    color: #fff;
    font-size: 16px; }
    .events-notification .head img {
      padding-right: 5px; }
    .events-notification .head:after {
      position: absolute;
      left: 100%;
      top: 0;
      z-index: 1;
      content: ' ';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 35px;
      border-right-width: 0;
      border-color: transparent transparent transparent #e3963a; }
    .events-notification .head:hover {
      background-color: #cd7d1d; }
      .events-notification .head:hover:after {
        position: absolute;
        left: 100%;
        top: 0;
        z-index: 1;
        content: ' ';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 35px;
        border-right-width: 0;
        border-color: transparent transparent transparent #cd7d1d; }
  .events-notification .body {
    flex: 1;
    background-color: #fbac4f;
    color: #000;
    font-size: 18px; }
    .events-notification .body:after {
      position: absolute;
      left: 100%;
      top: 0;
      z-index: 1;
      content: ' ';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 35px;
      border-right-width: 0;
      border-color: transparent transparent transparent #fbac4f; }
    .events-notification .body:hover {
      background-color: #faa036; }
      .events-notification .body:hover:after {
        position: absolute;
        left: 100%;
        top: 0;
        z-index: 1;
        content: ' ';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 35px;
        border-right-width: 0;
        border-color: transparent transparent transparent #faa036; }
  .events-notification .tail {
    background-color: #ffc279;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 30px; }

@media screen and (max-width: 960px) {
  .events-notification {
    max-width: 320px;
    top: 140px; }
    .events-notification .body, .events-notification .tail {
      display: none; }
    .events-notification .head {
      padding: 5px 20px;
      width: 100%;
      color: #000;
      border-radius: 40px;
      cursor: pointer;
      pointer-events: all;
      text-align: center; }
      .events-notification .head p {
        width: 100%; }
      .events-notification .head:after {
        display: none; }
      .events-notification .head:hover:after {
        display: none; } }
.news-publications {
  padding: 80px 30px; }
  .news-publications h2 {
    margin: 0;
    padding-bottom: 30px;
    text-align: center; }
  .news-publications .news-items {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    overflow: hidden; }
    .news-publications .news-items .item {
      width: calc(33% - 8.75px);
      box-sizing: border-box;
      margin: 5px;
      height: 294px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      transition: top 0.2s ease-out;
      top: 0; }
      .news-publications .news-items .item .description {
        position: absolute;
        top: 100%;
        width: 100%;
        transform: translateY(0);
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        transition: all 0.4s ease-out;
        opacity: 0;
        box-sizing: border-box; }
        .news-publications .news-items .item .description h4 {
          font-size: 18px;
          line-height: 20px;
          margin: 0 0 10px 0; }
        .news-publications .news-items .item .description p {
          margin: 10px 0 0 0; }
      .news-publications .news-items .item img {
        position: relative;
        left: 50%;
        height: 100%;
        min-width: 100%;
        transform: translateX(-50%);
        transition: all 0.4s ease-out; }
      .news-publications .news-items .item.double-width {
        width: calc(66% - 5px); }
        .news-publications .news-items .item.double-width img {
          height: auto;
          min-height: 100%;
          width: 100%;
          left: 0;
          top: 50%;
          transform: translateY(-50%); }
      .news-publications .news-items .item:hover .description {
        transform: translateY(-100%);
        opacity: 1; }
      .news-publications .news-items .item:hover img {
        transform: translateX(-50%) scale(1.5); }
      .news-publications .news-items .item:hover.double-width img {
        transform: translateY(-50%) scale(1.5); }
  .news-publications .goto-next, .news-publications .goto-previous {
    width: 100%;
    max-width: 1014px;
    margin: 10px auto;
    padding: 10px;
    background-color: #efefef;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s linear; }
    .news-publications .goto-next:hover, .news-publications .goto-previous:hover {
      background: #999; }
    .news-publications .goto-next.disabled, .news-publications .goto-previous.disabled {
      opacity: 0.4;
      cursor: default; }
      .news-publications .goto-next.disabled:hover, .news-publications .goto-previous.disabled:hover {
        background-color: #efefef; }

@media screen and (max-width: 767px) {
  .news-publications {
    padding: 10px 0; }
    .news-publications .news-container {
      overflow-x: scroll; }
    .news-publications h2 {
      font-size: 18px;
      color: #182F47;
      margin: 10px 0;
      padding: 0; }
    .news-publications .goto-next, .news-publications .goto-previous {
      display: none; }
    .news-publications .news-items {
      width: 1000%;
      max-width: none;
      height: auto;
      flex-wrap: nowrap; }
      .news-publications .news-items .item, .news-publications .news-items .item.double-width {
        width: 8%;
        height: auto; }
        .news-publications .news-items .item img, .news-publications .news-items .item.double-width img {
          height: auto;
          width: 100%;
          top: auto;
          left: auto;
          transform: none; }
        .news-publications .news-items .item .description, .news-publications .news-items .item.double-width .description {
          position: relative;
          top: auto;
          transform: none;
          opacity: 1;
          background: transparent;
          color: #000; }
          .news-publications .news-items .item .description h4, .news-publications .news-items .item.double-width .description h4 {
            color: #f03b63; }
        .news-publications .news-items .item:hover img, .news-publications .news-items .item.double-width:hover img {
          transform: none; }
        .news-publications .news-items .item:hover .description, .news-publications .news-items .item.double-width:hover .description {
          transform: none; } }
.data-partners-container {
  padding: 80px 30px;
  background-color: #182F47; }
  .data-partners-container h2 {
    margin-top: 0;
    text-align: center;
    color: #fff; }
  .data-partners-container .icons {
    width: 100%;
    max-width: 1200px;
    display: flex;
    padding: 30px 0;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    .data-partners-container .icons .icon {
      width: calc(100% / 7 - 20px);
      height: 80px;
      justify-content: center;
      align-items: center;
      flex: 1;
      padding: 0 10px;
      display: flex; }
      .data-partners-container .icons .icon img {
        opacity: 0.7;
        max-width: 100px;
        max-height: 100%;
        align-self: center; }

@media screen and (max-width: 960px) {
  .data-partners-container h2 {
    font-size: 24px;
    line-height: normal;
    margin: 0; }
  .data-partners-container .icons .icon {
    width: calc(33% - 20px);
    flex: auto; } }
.image-text-banner {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: #ecf0f3; }
  .image-text-banner img {
    display: flex;
    min-width: 100%;
    align-self: center;
    transform: translateX(-50%);
    position: absolute;
    left: 50%; }
  .image-text-banner h1 {
    max-width: 1024px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 80px;
    font-weight: 700;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
    font-size: 40px; }

@media screen and (max-width: 1024px) {
  .image-text-banner h1 {
    margin: 0 30px; } }
.event-card {
  margin: -40px auto 0 auto;
  max-width: 1024px; }
  .event-card .logo {
    width: 40%;
    border-right: solid 1px #cdcdcd;
    display: flex;
    align-content: center;
    justify-content: center; }
    .event-card .logo img {
      max-width: 300px;
      max-height: 200px;
      padding: 40px 0;
      align-self: center;
      height: auto; }
  .event-card .info {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 40%; }
    .event-card .info h3 {
      margin: 0;
      font-size: 24px; }
    .event-card .info .date, .event-card .info .location {
      margin: 5px 0 0 0;
      font-size: 20px;
      font-weight: 700; }
    .event-card .info a {
      padding-top: 40px;
      text-decoration: none;
      color: black;
      display: flex;
      align-items: center; }
      .event-card .info a:after {
        display: inline-block;
        content: ' ';
        width: 16px;
        height: 16px;
        margin: 0 10px;
        background-image: url(/assets/external-link-symbol.png);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat; }

.homepage-event-card {
  padding: 80px;
  background-color: #f8f8f8; }
  .homepage-event-card h2 {
    color: #1E4A78;
    font-weight: lighter;
    margin: 0 0 40px 0;
    text-align: center; }
  .homepage-event-card .event-card {
    margin: 0 auto; }
  .homepage-event-card .info .events-link {
    color: #1E4A78;
    font-weight: bold;
    display: flex;
    padding-top: 40px;
    padding-bottom: 15px;
    align-items: flex-start;
    font-size: 13px;
    border-bottom: solid 1px #000000; }
    .homepage-event-card .info .events-link span {
      flex: 1; }
  .homepage-event-card .info a {
    margin: 0;
    padding: 15px 0;
    color: #1E4A78;
    font-weight: bold;
    font-size: 13px; }
    .homepage-event-card .info a.internal {
      padding-top: 0;
      font-weight: normal;
      background-color: #f03b63;
      padding: 7px;
      font-size: 11px;
      margin: 0;
      display: inline-block;
      border-radius: 5px;
      border: solid 1px #fff;
      color: #fff;
      text-decoration: none;
      width: 90px;
      text-align: center; }
      .homepage-event-card .info a.internal:after {
        display: none; }
    .homepage-event-card .info a.external {
      width: calc(50% + 25px);
      box-sizing: border-box; }

@media screen and (max-width: 960px) {
  .event-card {
    width: calc(100% - 40px);
    margin: 20px; }
    .event-card .info {
      padding: 40px 30px; } }
@media screen and (max-width: 480px) {
  .event-card .logo {
    width: 100%; }
  .event-card .info {
    border-top: solid 1px #cdcdcd;
    padding: 40px 0;
    margin: 0 30px;
    text-align: center;
    width: 100%; }
    .event-card .info a {
      justify-content: center; } }
.reports-list h4 {
  color: #79aee2; }
.reports-list .items {
  max-height: 220px;
  margin-bottom: 40px;
  overflow-y: scroll;
  padding-right: 20px; }
  .reports-list .items .item {
    display: flex;
    padding: 20px;
    background-color: #faf0f1;
    font-weight: 700;
    margin-bottom: 10px;
    transition: background-color 0.2s linear; }
    .reports-list .items .item a {
      flex: 1;
      text-decoration: none; }
    .reports-list .items .item:before {
      display: inline-block;
      width: 16px;
      height: 16px;
      margin: 0 10px 0 0;
      content: ' ';
      background-image: url(/assets/document.png);
      background-size: 100%;
      background-repeat: no-repeat; }
    .reports-list .items .item:hover {
      background-color: #edcacd; }

.events-list {
  width: 100%; }
  .events-list .tabs {
    justify-content: flex-start;
    padding: 10px 20px 0 20px;
    margin-bottom: 0; }
    .events-list .tabs .tab {
      width: auto; }
  .events-list .tabs-content {
    margin: 10px;
    margin-top: 0;
    padding: 30px;
    background-color: #efefef;
    height: 320px;
    overflow-y: scroll; }
  .events-list .items {
    padding: 0;
    margin: 0; }
    .events-list .items .item {
      list-style-type: none;
      padding: 20px 0;
      margin: 0;
      border-bottom: solid 1px #cdcdcd; }
      .events-list .items .item:first-of-type {
        padding-top: 0; }
      .events-list .items .item:last-of-type {
        padding-bottom: 0;
        border: none; }
      .events-list .items .item a {
        font-family: 'Merriweather', serif;
        font-weight: 700;
        text-decoration: none;
        transition: opacity 0.2s linear; }
        .events-list .items .item a:hover {
          opacity: 0.5; }
        .events-list .items .item a img {
          position: relative;
          top: 2px;
          margin-left: 5px; }
      .events-list .items .item .event-description {
        margin: 0; }

.events-list-cards {
  width: calc(100% - ($spacing-lg * 2));
  max-width: 1024px;
  margin: 30px auto; }
  @media screen and (max-width: 767px) {
    .events-list-cards {
      margin: 30px; } }
  .events-list-cards h4 {
    color: #79aee2;
    margin-bottom: 10px; }
  .events-list-cards p {
    font-family: 'Merriweather', serif;
    font-weight: 300; }
  .events-list-cards .events-list {
    display: flex; }
    @media screen and (max-width: 767px) {
      .events-list-cards .events-list {
        flex-direction: column; } }
    .events-list-cards .events-list a {
      text-decoration: none; }
    .events-list-cards .events-list > * {
      width: 33%;
      margin: 20px;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
      position: relative;
      display: flex;
      flex-direction: column;
      color: #000; }
      @media screen and (max-width: 767px) {
        .events-list-cards .events-list > * {
          max-width: none;
          width: 100%;
          margin: 10px 0; } }
      .events-list-cards .events-list > *.invisible {
        opacity: 0; }
      .events-list-cards .events-list > * img {
        display: block;
        width: 100%;
        flex: 2; }
      .events-list-cards .events-list > * .details {
        background-color: #facd34;
        padding: 30px;
        flex: 1; }
        .events-list-cards .events-list > * .details h5 {
          margin: 5px 0;
          font-family: 'Roboto';
          font-size: 18px; }
        .events-list-cards .events-list > * .details p {
          margin: 0;
          font-family: 'Roboto';
          font-size: 14px; }
      .events-list-cards .events-list > *:first-of-type {
        margin-left: 0; }
      .events-list-cards .events-list > *:nth-of-type(3n) {
        margin-right: 0; }

.stargate-frame {
  width: 100%;
  overflow: hidden;
  border: none; }

.advanced-filters {
  padding: 10px 30px;
  background-color: #4e91d7;
  margin: 5px 0 0 0;
  position: relative; }
  .advanced-filters button {
    background-color: #4e91d7;
    padding: 5px 30px 5px 20px;
    color: white;
    border: solid 1px white;
    border-radius: 5px;
    box-shadow: 1px 1px 2px black;
    position: relative;
    margin-right: 20px;
    background-image: url(/assets/filters.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: right 5px center; }
    .advanced-filters button.has-selected span {
      content: ' ';
      display: block;
      background-color: #f03b63;
      width: 10px;
      height: 10px;
      border-radius: 20px;
      position: absolute;
      left: 5px;
      top: 50%;
      transform: translateY(-50%); }
    .advanced-filters button.active:before {
      position: absolute;
      top: 23px;
      left: 50%;
      transform: translateX(-50%);
      filter: drop-shadow(1px 3px 1px black);
      width: 0;
      height: 0;
      content: '';
      z-index: 2;
      border-top: 10.5px solid white;
      border-bottom-width: 0px;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent; }
    .advanced-filters button.active:after {
      position: absolute;
      top: 23px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      content: '';
      z-index: 2;
      border-top: 9px solid #4e91d7;
      border-bottom-width: 0px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent; }
    .advanced-filters button.reset {
      border-color: #cdcdcd;
      padding-right: 10px;
      padding-left: 10px;
      background-color: #235e9c;
      background-image: none; }
  .advanced-filters .filter-container {
    padding: 5px;
    box-shadow: 1px 1px 2px black;
    background-color: white;
    position: absolute;
    margin-top: 20px;
    width: 320px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s linear; }
    .advanced-filters .filter-container.visible {
      opacity: 1;
      pointer-events: all;
      z-index: 10; }
    .advanced-filters .filter-container h3 {
      margin: 0;
      background-color: #1F4F82;
      padding: 10px;
      color: white; }
    .advanced-filters .filter-container .keyword-search {
      margin: 5px 0;
      padding: 10px;
      border: solid 1px black;
      box-shadow: 1px 1px 2px #999;
      width: calc(100% - 20px - 2px); }
    .advanced-filters .filter-container .clear-keyword-search {
      cursor: pointer;
      position: absolute;
      padding: 13px 10px;
      height: 20px;
      right: 0; }
      .advanced-filters .filter-container .clear-keyword-search:hover {
        opacity: 0.8; }
    .advanced-filters .filter-container ul {
      margin: 0;
      padding: 10px;
      background-color: #F4F8FD;
      box-shadow: 1px 1px 2px #999;
      height: 120px;
      overflow-y: scroll; }
      @media screen and (max-height: 768px) {
        .advanced-filters .filter-container ul {
          height: 100px; } }
      .advanced-filters .filter-container ul li {
        list-style-type: none;
        padding-left: 30px;
        font-size: 14px;
        line-height: 20px;
        margin: 5px 0;
        cursor: pointer;
        display: flex; }
        .advanced-filters .filter-container ul li.invisible {
          display: none !important; }
        .advanced-filters .filter-container ul li.filtered {
          display: none; }
        .advanced-filters .filter-container ul li:before {
          content: ' ';
          display: inline-block;
          padding: 0 5px;
          background-color: #cdcdcd;
          margin-right: 20px;
          height: 10px;
          margin-top: 5px; }
        .advanced-filters .filter-container ul li.radio:before {
          border-radius: 20px; }
        .advanced-filters .filter-container ul li.selected:before {
          background-color: #f03b63; }
      .advanced-filters .filter-container ul a {
        text-decoration: none;
        color: black; }
    .advanced-filters .filter-container input[type=button] {
      background-color: #f03b63;
      padding: 10px 30px;
      margin: 5px 20px 0 30px;
      float: right;
      border: none; }
    .advanced-filters .filter-container.filter-container-collapsible h3 {
      font-size: 14px;
      background-image: url(/assets/down-arr-right.png);
      background-position: 95% center;
      background-size: 15px;
      background-repeat: no-repeat;
      cursor: pointer;
      margin-bottom: 3px; }
    .advanced-filters .filter-container.filter-container-collapsible ul {
      max-height: 0px;
      overflow: hidden;
      transition: max-height 0.2s linear;
      padding: 0; }
    .advanced-filters .filter-container.filter-container-collapsible input.keyword-search {
      display: none; }
    .advanced-filters .filter-container.filter-container-collapsible .expanded h3 {
      background-image: url(/assets/up-arr-right.png); }
    .advanced-filters .filter-container.filter-container-collapsible .expanded ul {
      max-height: 120px;
      overflow: scroll;
      padding: 10px; }
    .advanced-filters .filter-container.filter-container-collapsible .expanded input.keyword-search {
      display: block; }
    .advanced-filters .filter-container.filter-container-large, .advanced-filters .filter-container.filter-container-extra-large {
      width: 95%;
      right: 0;
      min-width: 960px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }
      .advanced-filters .filter-container.filter-container-large ul, .advanced-filters .filter-container.filter-container-extra-large ul {
        height: 150px; }
        @media screen and (max-height: 768px) {
          .advanced-filters .filter-container.filter-container-large ul, .advanced-filters .filter-container.filter-container-extra-large ul {
            height: 100px; } }
        .advanced-filters .filter-container.filter-container-large ul[data-filters=countries], .advanced-filters .filter-container.filter-container-extra-large ul[data-filters=countries] {
          height: 103px; }
          @media screen and (max-height: 768px) {
            .advanced-filters .filter-container.filter-container-large ul[data-filters=countries], .advanced-filters .filter-container.filter-container-extra-large ul[data-filters=countries] {
              height: 53px; } }
      .advanced-filters .filter-container.filter-container-large > div, .advanced-filters .filter-container.filter-container-extra-large > div {
        width: 32%;
        margin: 0 5px;
        margin-bottom: 10px; }
      .advanced-filters .filter-container.filter-container-large.filter-quad > div, .advanced-filters .filter-container.filter-quad.filter-container-extra-large > div {
        width: 48%; }
    .advanced-filters .filter-container.filter-container-extra-large > div {
      width: calc(25% - 10px); }
  .advanced-filters .search {
    float: right;
    margin-left: 10px;
    width: 210px; }
  .advanced-filters .sort {
    float: right;
    margin-left: 10px;
    margin-top: 2px;
    padding-right: 5px; }
    .advanced-filters .sort label {
      font-size: 12px;
      color: #fff; }
    .advanced-filters .sort select {
      border: none;
      background-color: transparent;
      color: #fff;
      font-size: 12px;
      -webkit-appearance: none;
      padding-right: 10px;
      background-image: url("/assets/drop-down.png");
      background-repeat: no-repeat;
      background-position: right center;
      width: 132px; }
      .advanced-filters .sort select option {
        color: #000; }
      .advanced-filters .sort select.hidden {
        display: none; }
  .advanced-filters.filters-closed button[data-filters=more] {
    opacity: 0.5;
    pointer-events: none; }

@media screen and (max-width: 960px) {
  .advanced-filters .filter-container.filter-container-large, .advanced-filters .filter-container.filter-container-extra-large {
    min-width: 0;
    width: calc(100% - 10px); }
  .advanced-filters .sort select {
    width: 120px; } }
@media screen and (max-width: 767px) {
  .advanced-filters {
    padding: 10px 20px; }
    .advanced-filters button {
      margin-right: 10px; }
    .advanced-filters .search {
      clear: both;
      margin: 10px 0;
      width: 50%;
      box-sizing: border-box; }
    .advanced-filters .sort {
      width: 50%;
      float: left;
      margin: 10px 0 0 0;
      box-sizing: border-box; }
    .advanced-filters .filter-container.filter-container-large, .advanced-filters .filter-container.filter-container-extra-large {
      min-width: 0;
      overflow: scroll;
      width: 75%;
      left: 12.5%;
      height: 400px; }
      .advanced-filters .filter-container.filter-container-large > div, .advanced-filters .filter-container.filter-container-extra-large > div {
        width: 100%; } }
.list {
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: -1px -1px 10px #999;
  z-index: 1;
  padding: 20px;
  height: 100%; }
  .list .list-view.tabs {
    justify-content: left; }
    .list .list-view.tabs .tab {
      width: auto; }
    .list .list-view.tabs .total {
      padding: 10px 20px;
      border-bottom: solid 1px #cdcdcd;
      margin-left: -10px;
      flex: 1;
      font-weight: 700;
      color: #1E4A78;
      text-align: right; }
  .list .list-view.tabs-content {
    flex: 1;
    overflow-y: scroll; }

.theme-list h3, .stakeholder-list h3 {
  background-color: #1E4A78;
  color: #fff;
  padding: 5px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer; }
  .theme-list h3 .expando, .stakeholder-list h3 .expando {
    position: absolute;
    padding: 6px 10px;
    right: 0;
    top: 0;
    transition: all .2s linear;
    transform: rotateZ(-180deg);
    pointer-events: none; }
    .theme-list h3 .expando img, .stakeholder-list h3 .expando img {
      height: 12px; }
  .theme-list h3.expanded .expando, .stakeholder-list h3.expanded .expando {
    transform: rotateZ(0deg); }
  .theme-list h3 .count, .stakeholder-list h3 .count {
    padding-right: 5px; }
  .theme-list h3 .action-count, .stakeholder-list h3 .action-count {
    position: absolute;
    right: 40px; }

.expando-stakeholder-content {
  overflow: hidden;
  max-height: 200000px;
  transition: 0.2s linear all; }
  .expando-stakeholder-content.collapsed {
    max-height: 0; }

.totals-and-load-more {
  display: flex; }
  .totals-and-load-more * {
    flex: 1; }
    .totals-and-load-more *:nth-child(2) {
      flex: 2;
      text-align: center;
      font-size: 16px; }
      .totals-and-load-more *:nth-child(2) button {
        font-size: 16px; }
    .totals-and-load-more *:nth-child(3) {
      text-align: right; }
  .totals-and-load-more h4 {
    color: #1E4A78;
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif; }
  .totals-and-load-more button {
    border: solid 1px #cdcdcd;
    background-color: #efefef;
    border-radius: 2px;
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer; }

@media screen and (max-width: 960px) {
  .link-filters.theme-filters, .link-filters.stakeholder-filters,
  .link-filters.stakeholder-filters {
    margin-bottom: 0px;
    height: 70px; } }
@media screen and (max-width: 480px) {
  .theme-filters, .stakeholder-filters, .stakeholder-filters {
    display: none; }

  .map-column {
    padding: 0 !important; }

  .advanced-filters {
    margin: 0; } }
@-moz-document url-prefix() {
  .list {
    overflow-y: scroll; } }
.ci-total {
  padding: 20px;
  color: #1E4A78;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  font-weight: bold; }
  .ci-total em {
    font-style: normal; }

.image-page {
  position: relative;
  height: calc(100vh - 56px);
  width: 100%;
  overflow: hidden; }
  .image-page.filter-page {
    height: calc(100vh - 147px); }
    @media screen and (max-height: 768px) {
      .image-page.filter-page {
        height: calc(100vh - 107px); } }
  .image-page .list-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    top: 20px;
    position: relative;
    box-shadow: -1px 1px 3px #999; }
    .image-page .list-column .advanced-filters {
      margin-top: 0; }
    .image-page .list-column .list-view {
      padding: 0 30px 30px 30px;
      flex: 1;
      max-height: calc(100% - 60px); }
      .image-page .list-column .list-view > div {
        margin: 20px 0;
        height: calc(100% - 40px);
        overflow-y: scroll; }
        .image-page .list-column .list-view > div.coop-actions {
          margin-top: 0;
          height: calc(100% - 80px); }
  .image-page .image-container {
    width: 40%;
    float: left;
    height: 100%;
    position: relative;
    top: 20px; }
    .image-page .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      z-index: -1; }
    .image-page .image-container .content {
      padding: 40px 80px;
      height: 50%;
      overflow-y: auto;
      box-sizing: border-box;
      font-family: 'Merriweather', serif;
      font-size: 14px;
      line-height: 18px; }
      .image-page .image-container .content h1 {
        color: #1E4A78;
        font-weight: 700;
        font-size: 36px;
        margin: 10px 0; }
  .image-page .tablet-content-view {
    display: none; }

@media screen and (max-width: 960px) {
  .image-page {
    height: auto; }
    .image-page.filter-page {
      height: auto; }
    .image-page .image-container {
      display: none; }
      .image-page .image-container.coop-init-image-container {
        display: block;
        width: auto;
        float: none;
        top: 0; }
        .image-page .image-container.coop-init-image-container h1 {
          font-size: 24px; }
        .image-page .image-container.coop-init-image-container img {
          display: none; }
        .image-page .image-container.coop-init-image-container .content {
          padding: 30px; }
    .image-page .list-column {
      top: 0; }
      .image-page .list-column .list-view > div {
        height: auto;
        overflow: auto; }
    .image-page .tablet-content-view {
      display: flex;
      position: relative;
      justify-content: flex-end; }
      .image-page .tablet-content-view img {
        height: 320px; }
      .image-page .tablet-content-view .content {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(100% - 80px);
        margin: 40px;
        overflow-y: auto;
        width: calc(50% + 80px); }
        .image-page .tablet-content-view .content h1 {
          color: #1E4A78;
          font-weight: 700;
          font-size: 36px;
          margin: 10px 0; } }
@media screen and (max-width: 480px) {
  .image-page .list-column .list-view {
    height: calc(100% - 450px); }
    .image-page .list-column .list-view > div {
      height: calc(100% - 120px); }
  .image-page .tablet-content-view {
    justify-content: flex-start; }
    .image-page .tablet-content-view img {
      display: none; }
    .image-page .tablet-content-view .content {
      position: relative;
      text-align: left;
      margin: 20px;
      width: auto; }
      .image-page .tablet-content-view .content h1 {
        font-size: 24px; } }
.stakeholder-timeline {
  position: relative; }
  .stakeholder-timeline #timeline-map {
    height: calc(100vh - 260px); }
  .stakeholder-timeline .timeline-details {
    position: absolute;
    display: flex;
    top: 80px;
    right: 40px; }
    .stakeholder-timeline .timeline-details h2 {
      color: #f03b63;
      padding: 0 30px;
      margin: 0;
      font-size: 100px;
      line-height: normal; }
    .stakeholder-timeline .timeline-details .totals {
      border-left: solid 3px #f03b63;
      padding: 0 30px; }
      .stakeholder-timeline .timeline-details .totals p {
        margin: 5px 0;
        font-weight: bold; }
        .stakeholder-timeline .timeline-details .totals p .label {
          font-weight: normal; }
      .stakeholder-timeline .timeline-details .totals .total-number-of-stakeholders {
        padding: 10px 0;
        border-bottom: solid 3px #f03b63;
        font-size: 42px;
        font-weight: normal;
        margin: 0 0 30px 0; }
  .stakeholder-timeline .timeline-summary-mobile {
    display: none; }

.gm-style-pbc {
  display: none !important; }

.map-info {
  position: absolute;
  left: 30px;
  bottom: 30px; }
  .map-info .info-hover {
    height: 25px;
    width: 25px;
    background-image: url("/assets/info.png");
    transition: all 0.2s linear;
    cursor: pointer; }
    .map-info .info-hover:hover {
      background-image: url("/assets/info-hover.png"); }
  .map-info .disclaimer {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    width: 240px;
    box-shadow: 5px 5px 5px #999;
    font-size: 10px;
    pointer-events: none;
    transition: opacity 0.2s linear;
    text-align: left; }
    .map-info .disclaimer:after {
      width: 0;
      height: 0;
      content: '';
      z-index: 2;
      border-top: 7.5px solid rgba(0, 0, 0, 0.8);
      border-bottom-width: 0px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      position: absolute;
      bottom: -7px;
      left: 10px; }
  .map-info:hover .disclaimer {
    opacity: 1; }

@media screen and (max-width: 767px) {
  #timeline-map > div {
    display: none !important; }

  .stakeholder-timeline .timeline-details {
    display: none; }
  .stakeholder-timeline .timeline-summary-mobile {
    background-image: url(/assets/mob-map.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.4);
    flex-direction: column; }
    .stakeholder-timeline .timeline-summary-mobile h3 {
      font-weight: 300;
      text-align: center;
      font-size: 32px;
      margin: 10px 0; }
      .stakeholder-timeline .timeline-summary-mobile h3 span {
        font-weight: 700; }
    .stakeholder-timeline .timeline-summary-mobile a {
      display: block;
      background-color: #f03b63;
      color: #fff;
      padding: 20px 40px;
      text-align: center;
      text-decoration: none;
      opacity: 1;
      transition: opacity 0.2s linear;
      border-radius: 5px;
      margin: 10px 0; }
      .stakeholder-timeline .timeline-summary-mobile a:hover {
        opacity: 0.7; } }
.quick-links {
  padding: 20px;
  background-color: #4e91d7; }
  .quick-links .container {
    display: flex; }
    .quick-links .container a {
      flex: 1;
      text-decoration: none;
      text-align: center;
      font-weight: 700;
      color: #ffffff;
      display: flex;
      justify-content: center; }
      .quick-links .container a img {
        margin-left: 10px;
        align-self: center; }
  @media screen and (max-width: 767px) {
    .quick-links {
      display: none; } }
  .quick-links.homepage-reveal {
    background-color: #1E4A78;
    padding: 0;
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 767px) {
      .quick-links.homepage-reveal {
        display: block;
        position: absolute;
        bottom: 0vh;
        width: 100%; }
        .quick-links.homepage-reveal.ios-fix {
          bottom: 0px; } }
    .quick-links.homepage-reveal:before {
      content: ' ';
      display: block;
      background-color: #f03b63;
      width: 30px;
      height: 30px;
      border: solid 2px #1E4A78;
      border-radius: 15px;
      background-image: url(/assets/double-arrow-w.png);
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      left: calc(50% - 15px);
      top: -15px;
      transition: transform 0.5s linear;
      cursor: pointer; }
    .quick-links.homepage-reveal:hover:before {
      background-color: #e61241; }
    .quick-links.homepage-reveal a {
      padding: 20px; }

.homepage-container {
  display: none;
  position: absolute;
  top: 100vh;
  transition: top 0.4s linear;
  width: 100%;
  left: 0;
  background: #ffffff;
  z-index: 2; }
  .homepage-container.opening {
    display: block; }
  .homepage-container.open {
    display: block;
    top: 122px; }
  .homepage-container.closing {
    top: 100vh;
    display: block; }
  .homepage-container .homepage-reveal {
    background-color: #192f47; }
    .homepage-container .homepage-reveal:before {
      transform: rotateZ(-180deg); }
  .homepage-container.open .homepage-reveal {
    position: relative;
    bottom: auto; }

.scroll-down-arrow {
  margin: 10px auto;
  display: block; }

.coop-init-introduction {
  background-color: #ecf0f3;
  padding: 30px 0; }
  .coop-init-introduction .coop-init-introduction-container {
    width: calc(100% - 40px);
    max-width: 1024px;
    padding: 20px;
    margin: 0 auto; }
    .coop-init-introduction .coop-init-introduction-container .coop-init-name {
      font-weight: 700;
      font-size: 36px;
      margin: 0;
      color: #1E4A78;
      padding-right: 40px;
      background-image: url("/assets/external-link-symbol-lg.png");
      background-size: 24px;
      background-repeat: no-repeat;
      background-position: center right;
      display: inline-block; }
    .coop-init-introduction .coop-init-introduction-container .title-link {
      text-decoration: none;
      transition: opacity 0.1s linear;
      opacity: 1; }
      .coop-init-introduction .coop-init-introduction-container .title-link:hover {
        opacity: 0.6; }
  .coop-init-introduction .coop-init-key-facts .coop-init-description {
    font-family: 'Merriweather', serif;
    color: #1E4A78;
    margin: 20px 0; }
  .coop-init-introduction .coop-init-key-facts .coop-init-themes .theme, .coop-init-introduction .coop-init-key-facts .coop-init-themes .stakeholder-filters .stakeholder, .stakeholder-filters .coop-init-introduction .coop-init-key-facts .coop-init-themes .stakeholder {
    display: inline-block;
    margin: 0 10px 10px 0;
    background-color: #E7D494;
    border: solid 1px #DDB942;
    border-radius: 20px;
    padding: 5px;
    width: 180px;
    text-align: center;
    font-size: 12px;
    font-family: 'Merriweather', serif;
    font-weight: 700; }
    .coop-init-introduction .coop-init-key-facts .coop-init-themes .theme.crosscutting, .coop-init-introduction .coop-init-key-facts .coop-init-themes .stakeholder-filters .crosscutting.stakeholder, .stakeholder-filters .coop-init-introduction .coop-init-key-facts .coop-init-themes .crosscutting.stakeholder {
      background-color: #d4d1c8;
      border-color: #a2997a; }
  .coop-init-introduction .ci-value {
    display: none; }
    .coop-init-introduction .ci-value.visible {
      display: block; }
    .coop-init-introduction .ci-value h3 {
      color: #1e4a78; }
      .coop-init-introduction .ci-value h3.qi-title {
        display: none; }
        .coop-init-introduction .ci-value h3.qi-title.visible {
          display: block; }
    .coop-init-introduction .ci-value .qi-block {
      padding-left: 50px; }
      .coop-init-introduction .ci-value .qi-block h3 {
        font-size: 1rem; }

.coop-init-actions .coop-init-actions-container {
  width: calc(100% - 40px);
  max-width: 1024px;
  padding: 40px 20px;
  margin: 0 auto; }
  .coop-init-actions .coop-init-actions-container .tabs {
    justify-content: flex-start;
    position: relative; }
    .coop-init-actions .coop-init-actions-container .tabs:after {
      display: block;
      content: ' ';
      border-bottom: solid 1px #cdcdcd;
      position: absolute;
      width: 100%;
      bottom: -1px;
      z-index: -1; }
    .coop-init-actions .coop-init-actions-container .tabs .tab {
      color: #1E4A78;
      margin-left: 0;
      margin-right: 20px;
      background-color: #ffffff;
      width: 140px; }
      .coop-init-actions .coop-init-actions-container .tabs .tab .type-count {
        float: right; }
      .coop-init-actions .coop-init-actions-container .tabs .tab.selected {
        border-color: #1E4A78; }
  .coop-init-actions .coop-init-actions-container .action-summary h4 {
    display: inline;
    margin-right: 5px; }
  .coop-init-actions .coop-init-actions-container .action-summary img {
    position: relative;
    top: 2px; }
  .coop-init-actions .coop-init-actions-container .action-summary .participant-facts {
    font-weight: 700; }
    .coop-init-actions .coop-init-actions-container .action-summary .participant-facts span.value {
      font-weight: 400; }

.show-map-participants-link {
  font-family: 'Merriweather', serif;
  color: #7E7E7E;
  text-decoration: none;
  font-weight: bold; }
  .show-map-participants-link img {
    position: relative;
    top: 3px;
    left: 3px; }

.privacy-container {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -75px;
  max-width: 1024px;
  width: calc(100% - 20px); }
  .privacy-container a {
    text-decoration: none;
    margin-right: 40px;
    color: #333;
    font-size: 13px;
    line-height: 20px; }
    .privacy-container a:hover {
      text-decoration: underline; }

.body-copy.privacy-copy h4 {
  margin-top: 80px;
  font-size: 21px;
  color: #4B92D8; }
.body-copy.privacy-copy h5 {
  font-size: 16px;
  color: black; }
.body-copy.privacy-copy p {
  font-size: 16px;
  color: black;
  font-family: 'Merriweather', serif; }

@media screen and (max-width: 767px) {
  .privacy-container a {
    margin-right: 20px; } }
.global-stakeholder-search {
  display: flex;
  position: fixed;
  top: -100px;
  width: calc(100% - 40px);
  padding: 20px;
  background-color: #ffffff;
  border-bottom: solid 1px #cdcdcd;
  box-shadow: -1px -1px 10px #999;
  justify-content: center;
  z-index: 2000;
  transition: top 0.4s ease-out; }
  .global-stakeholder-search.open {
    top: 0; }
  .global-stakeholder-search .close {
    padding: 0 5px;
    align-self: center;
    display: flex;
    font-weight: bold;
    color: #1E4A78;
    cursor: pointer;
    text-indent: -9999px;
    background-image: url("/assets/Close_menu_icon.png");
    width: 20px;
    background-repeat: no-repeat;
    background-position: center; }
  .global-stakeholder-search input {
    border: solid 1px #cdcdcd;
    max-width: 720px;
    padding-right: 20px;
    width: calc(100% - 20px);
    font-size: 20px;
    font-family: 'Roboto', sans-serif; }
    .global-stakeholder-search input:active, .global-stakeholder-search input:focus {
      outline: solid 1px #999; }
  .global-stakeholder-search .global-suggestions {
    display: none;
    position: absolute;
    width: calc(100% - 40px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 740px;
    top: 78px;
    background: #fff;
    border: solid 1px #cdcdcd;
    padding: 0 20px;
    max-height: 300px;
    overflow-y: scroll; }
    .global-stakeholder-search .global-suggestions.open {
      display: block; }
    .global-stakeholder-search .global-suggestions a {
      color: black;
      text-decoration: none; }
      .global-stakeholder-search .global-suggestions a div {
        padding: 10px 0; }

@media screen and (max-width: 767px) {
  .global-stakeholder-search input::placeholder {
    font-size: 12px; } }
.announcement-icon {
  display: inline;
  padding: 15px;
  margin-right: 10px;
  background-image: url(/assets/a-icon-large.png);
  background-repeat: no-repeat;
  background-position: center; }
  .announcement-icon.small {
    padding: 10px;
    background-size: 20px;
    margin-right: 5px;
    margin-top: 5px;
    background-image: url(/assets/a-icon-small.png);
    cursor: pointer;
    position: relative; }
    .announcement-icon.small:after {
      opacity: 0;
      background-color: #ffffff;
      content: 'This indicates a new announced action';
      padding: 5px;
      width: 90px;
      border: solid 1px #999;
      box-shadow: 3px 3px 3px #cdcdcd;
      position: absolute;
      bottom: 30px;
      left: -9px;
      font-size: 9px;
      pointer-events: none;
      transition: opacity .2s linear;
      text-align: center;
      color: #000000;
      font-weight: normal;
      font-family: 'Roboto', sans-serif; }
    .announcement-icon.small.coop:after {
      content: 'This indicates a new announced Cooperative Initiative'; }
    .announcement-icon.small:before {
      opacity: 0;
      width: 0;
      height: 0;
      content: '';
      z-index: 2;
      border-top: 7.5px solid #ffffff;
      border-bottom-width: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      position: absolute;
      bottom: 24px;
      left: 5px;
      transition: opacity .2s linear; }
    .announcement-icon.small:hover:after, .announcement-icon.small:hover:before {
      opacity: 1; }

.announced {
  position: relative; }
  .announced:after {
    opacity: 0;
    background-color: #ffffff;
    content: 'This indicates a new announced action';
    padding: 5px;
    width: 90px;
    border: solid 1px #999;
    box-shadow: 3px 3px 3px #cdcdcd;
    position: absolute;
    bottom: 30px;
    left: -9px;
    font-size: 9px;
    pointer-events: none;
    transition: opacity .2s linear;
    text-align: center;
    color: #000000;
    font-weight: normal;
    font-family: 'Roboto', sans-serif; }
  .announced.coop:after {
    content: 'This indicates a new announced Cooperative Initiative'; }
  .announced:before {
    opacity: 0;
    width: 0;
    height: 0;
    content: '';
    z-index: 2;
    border-top: 7.5px solid #ffffff;
    border-bottom-width: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    bottom: 24px;
    left: 5px;
    transition: opacity .2s linear; }
  .announced:hover:after, .announced:hover:before {
    opacity: 1; }

.image-page.announcement-page .action-summary .total-commitments p {
  margin-top: 5px; }
.image-page.announcement-page .action-summary .date {
  font-size: 14px;
  width: 150px;
  padding: 5px 30px;
  text-align: right;
  position: relative;
  font-weight: 700;
  color: #666666; }
.image-page.announcement-page .action-summary .participants {
  justify-content: flex-end;
  color: #666666; }
.image-page.announcement-page .image-container {
  top: 0; }
.image-page.announcement-page .totals {
  padding: 30px 60px;
  margin: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3); }
  .image-page.announcement-page .totals p {
    font-size: 18px; }
    .image-page.announcement-page .totals p span {
      font-weight: 700;
      color: #182f47; }
.image-page.announcement-page .content h1 {
  color: #ffffff; }
.image-page.announcement-page .list-column .list-view {
  max-height: calc(100% - 140px); }
  .image-page.announcement-page .list-column .list-view.tabs-content {
    padding: 0; }
    .image-page.announcement-page .list-column .list-view.tabs-content .tab-content {
      padding: 30px;
      margin: 0;
      height: calc(100% - 80px); }
  .image-page.announcement-page .list-column .list-view.tabs {
    padding: 10px;
    margin: 20px;
    max-height: 16px;
    justify-content: flex-start; }
    .image-page.announcement-page .list-column .list-view.tabs > div {
      margin: 0 10px;
      height: 16px;
      width: 170px;
      overflow-y: visible; }
      .image-page.announcement-page .list-column .list-view.tabs > div .count {
        float: right; }

@media screen and (max-width: 1024px) {
  .image-page.announcement-page .totals {
    display: none; }
  .image-page.announcement-page .content h1 {
    color: #1E4A78; } }
.action-summary.announced-commitment h4 em.adhoc-dataprovider-non100 {
  color: #f03b63 !important; }

.country-info {
  max-width: 1200px;
  padding: 40px 0;
  margin: 20px auto;
  border-bottom: solid 2px #cdcdcd;
  position: relative; }
  .country-info .region {
    color: #1E4A78;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif;
    margin: 30px 0; }
  .country-info .title {
    display: flex;
    transition: all 0.2s linear;
    background-color: #ffffff;
    width: 100%; }
    .country-info .title.fixed {
      position: fixed;
      padding: 20px 0;
      top: 0;
      z-index: 2; }
      .country-info .title.fixed .flag {
        height: 24px; }
      .country-info .title.fixed .country-name {
        font-size: 32px;
        line-height: 24px;
        margin: 0 5px; }
        .country-info .title.fixed .country-name.multiline-title .second-line {
          display: inline; }
  .country-info .flag {
    height: 100px;
    display: inline-block;
    transition: all 0.2s linear;
    border: solid 1px #cdcdcd; }
  .country-info .country-name {
    display: inline-block;
    font-size: 138px;
    line-height: 100px;
    margin: 0 20px;
    color: #f03b63;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif; }
    .country-info .country-name.multiline-title {
      font-size: 55px;
      line-height: 50px; }
      .country-info .country-name.multiline-title .second-line {
        display: block; }

.country-data {
  display: flex;
  max-width: 1200px;
  margin: 0 auto; }
  .country-data section {
    flex: 1;
    margin: 5px;
    height: auto;
    border: solid 1px;
    width: 50%; }
    .country-data section h2 {
      font-size: 28px;
      text-transform: uppercase;
      font-family: 'Roboto Condensed', 'Roboto', sans-serif;
      padding: 10px;
      color: #ffffff;
      margin: 0; }
    .country-data section h3 {
      font-size: 22px;
      font-family: 'Roboto Condensed', 'Roboto', sans-serif;
      padding: 5px;
      margin: 0;
      text-align: center; }
    .country-data section article {
      padding: 30px;
      border-bottom: solid 1px; }
      .country-data section article .map {
        margin: 0 auto;
        display: block; }
      .country-data section article .landmark-dates {
        display: flex;
        flex-direction: column;
        height: 400px;
        width: 250px;
        margin: 0 auto;
        padding-top: 40px; }
        .country-data section article .landmark-dates li {
          flex: 1;
          list-style-type: none;
          position: relative;
          font-size: 22px;
          font-family: 'Roboto Condensed', 'Roboto', sans-serif;
          color: #f03b63; }
          .country-data section article .landmark-dates li:before {
            content: ' ';
            background-color: #ffffff;
            height: 20px;
            display: block;
            width: 20px;
            border: solid 2px #f03b63;
            border-radius: 20px;
            position: absolute;
            left: -40px;
            z-index: 1; }
          .country-data section article .landmark-dates li:after {
            content: ' ';
            border: solid 1px #f03b63;
            height: 100%;
            position: absolute;
            left: -30px;
            top: 0; }
          .country-data section article .landmark-dates li:last-of-type:after {
            display: none; }
          .country-data section article .landmark-dates li span {
            display: block;
            font-size: 28px;
            color: #000000; }
      .country-data section article.climate-action-plans {
        max-width: 400px;
        margin: 0 auto;
        border-bottom: none;
        display: flex;
        flex-direction: column; }
        .country-data section article.climate-action-plans .action-plan {
          flex: 1;
          display: block;
          padding: 30px;
          background-color: #f03b63;
          border-radius: 5px;
          color: #ffffff;
          margin: 20px 0;
          text-decoration: none;
          font-weight: 700;
          font-size: 22px; }
          .country-data section article.climate-action-plans .action-plan span {
            display: block;
            border-top: solid 1px #ffffff;
            margin-top: 20px;
            padding-top: 20px;
            font-weight: normal;
            font-size: 16px; }
      .country-data section article.country-totals {
        display: flex;
        flex-wrap: wrap; }
        .country-data section article.country-totals > div {
          margin: 20px;
          padding: 60px 40px;
          background-color: #ffffff;
          border-radius: 10px;
          font-weight: bold;
          flex: 1;
          text-align: center; }
          .country-data section article.country-totals > div .value {
            display: block;
            font-size: 48px;
            margin-top: 5px;
            font-weight: normal; }
        .country-data section article.country-totals p {
          width: 100%; }
        .country-data section article.country-totals .total-actions {
          border: solid 3px #4d92d7;
          color: #4d92d7; }
        .country-data section article.country-totals .total-actors {
          border: solid 3px #1e4d81;
          color: #1e4d81; }
    .country-data section.country-data__country {
      border-color: #f03b63;
      background-color: #fff8fa; }
      .country-data section.country-data__country article {
        border-color: #f03b63; }
        .country-data section.country-data__country article p {
          max-width: 400px;
          margin: 10px auto; }
      .country-data section.country-data__country h2 {
        text-align: center;
        background-color: #f03b63; }
      .country-data section.country-data__country h3 {
        color: #f03b63;
        background-color: #f5cfd7; }
    .country-data section.country-data__actors {
      border-color: #1E4A78;
      background-color: #ecf3fa; }
      .country-data section.country-data__actors article {
        border-color: #1E4A78; }
        .country-data section.country-data__actors article.actor-distributions {
          display: flex;
          position: relative;
          padding: 40px 30px; }
          .country-data section.country-data__actors article.actor-distributions ul, .country-data section.country-data__actors article.actor-distributions .charts {
            flex: 1; }
          .country-data section.country-data__actors article.actor-distributions ul {
            margin: 0;
            padding: 0; }
            .country-data section.country-data__actors article.actor-distributions ul li {
              list-style-type: none;
              padding: 5px;
              margin: 0;
              border-bottom: solid 1px #cdcdcd;
              position: relative;
              font-size: 13px;
              line-height: 20px;
              font-family: 'Roboto Condensed', 'Roboto', sans-serif; }
              .country-data section.country-data__actors article.actor-distributions ul li img {
                position: absolute;
                left: 20px;
                transform: translateX(-50%);
                height: 20px; }
              .country-data section.country-data__actors article.actor-distributions ul li em {
                font-style: normal;
                padding-left: 30px; }
              .country-data section.country-data__actors article.actor-distributions ul li span {
                display: block;
                float: right;
                font-weight: bold;
                width: 30px; }
              .country-data section.country-data__actors article.actor-distributions ul li:first-of-type {
                border-top: solid 1px #cdcdcd; }
        .country-data section.country-data__actors article:last-of-type {
          border: none; }
      .country-data section.country-data__actors h2 {
        text-align: center;
        background-color: #1E4A78; }
      .country-data section.country-data__actors h3 {
        color: #1E4A78;
        background-color: #b6cae0; }

.country-page .actions {
  margin: 10px auto;
  max-width: 1190px;
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #bababa; }
  .country-page .actions h2 {
    margin: 0;
    padding: 20px 0;
    color: #ffffff;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    line-height: normal;
    width: 100%;
    max-width: 1190px;
    background-color: #6f8092; }
    .country-page .actions h2.fixed {
      position: fixed;
      top: 59px;
      z-index: 2; }
  .country-page .actions section {
    flex: 1; }
    .country-page .actions section.actions__country {
      border-right: solid 1px #bababa;
      margin-left: 5px; }
    .country-page .actions section.actions__actors {
      margin-right: 5px; }
.country-page .list {
  box-shadow: none; }
  .country-page .list h3 {
    margin: 10px;
    text-transform: uppercase;
    color: #999999; }
  .country-page .list .tab-content {
    padding-top: 20px; }
    .country-page .list .tab-content .none-found {
      margin: 0 20px;
      font-size: 14px; }
  .country-page .list .list-view {
    overflow: visible; }
    .country-page .list .list-view .total {
      color: #999;
      position: relative;
      top: 40px;
      border-bottom: none;
      border-top: solid 1px #cdcdcd; }
    .country-page .list .list-view .action-summary {
      position: relative; }
      .country-page .list .list-view .action-summary .details {
        max-width: 360px; }
      .country-page .list .list-view .action-summary .action-type,
      .country-page .list .list-view .action-summary .participants {
        position: absolute;
        right: 0; }

@media screen and (max-width: 960px) {
  .country-info {
    margin: 0;
    padding: 0;
    border: none; }
    .country-info .region {
      display: none; }
    .country-info .flag {
      height: 30px; }
    .country-info .country-name {
      font-size: 32px;
      line-height: 30px;
      margin: 0 10px; }
    .country-info .title {
      margin: 0;
      padding: 25px; }
      .country-info .title.fixed {
        border-bottom: solid 1px #cdcdcd;
        padding: 25px; }
        .country-info .title.fixed .country-name {
          line-height: 30px; }

  .country-data {
    flex-direction: column;
    margin: 0 25px; }
    .country-data section {
      width: 100%; }
      .country-data section article {
        padding: 20px; }
        .country-data section article.country-totals > div {
          margin: 10px;
          padding: 20px 20px; }
        .country-data section article.actor-distributions .charts {
          position: relative; }
          .country-data section article.actor-distributions .charts canvas {
            width: 100% !important;
            transform: scale(1.3);
            padding-top: 30px;
            padding-left: 10px; }

  .country-page .actions {
    border: none; }
    .country-page .actions h2 {
      display: none; }
    .country-page .actions section.actions__actors, .country-page .actions section.actions__country {
      border: none;
      margin: 0; }
  .country-page .list {
    height: auto;
    padding: 10px 20px; }
    .country-page .list h3 {
      background-color: #f03b63;
      color: #ffffff;
      margin: 0 10px;
      padding: 10px;
      background-image: url(/assets/up-arr-right.png);
      background-repeat: no-repeat;
      background-position: 95% center;
      background-size: 15px; }
    .country-page .list .list-view {
      position: relative;
      max-height: 1000px;
      transition: max-height 0.2s linear;
      overflow: scroll; }
      .country-page .list .list-view.tabs {
        overflow: visible; }
      .country-page .list .list-view .tab {
        background-color: #ffffff;
        z-index: 2; }
      .country-page .list .list-view .total {
        position: absolute;
        right: 0;
        top: 38px;
        width: calc(100% - 40px); }
    .country-page .list.collapsed h3 {
      background-image: url(/assets/down-arr-right.png); }
    .country-page .list.collapsed .list-view {
      max-height: 0px;
      overflow: hidden;
      padding-bottom: 0;
      margin: 0; } }
.targeted-actions-chart {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 1px 1px 2px #999;
  margin: 40px 20px;
  position: relative; }
  .targeted-actions-chart .unavailable-text {
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0;
    margin-top: -10px;
    text-align: center;
    width: 100%;
    font-weight: bold;
    display: none; }
  .targeted-actions-chart.unavailable .unavailable-text {
    display: block; }
  .targeted-actions-chart.unavailable .chart-container {
    opacity: 0.25; }
  .targeted-actions-chart .chart-container {
    padding: 30px 0;
    margin: 0 auto;
    width: 370px; }
    .targeted-actions-chart .chart-container .terms,
    .targeted-actions-chart .chart-container .stakeholder-types {
      float: left; }
    .targeted-actions-chart .chart-container .stakeholder-types .long-term,
    .targeted-actions-chart .chart-container .stakeholder-types .medium-term,
    .targeted-actions-chart .chart-container .stakeholder-types .short-term {
      position: relative;
      min-height: 29px;
      width: 200px;
      border-bottom: solid 1px #cdcdcd;
      transition: all 0.15s linear; }
    .targeted-actions-chart .chart-container .stakeholder-types .short-term {
      border-bottom: none; }
    .targeted-actions-chart .chart-container .stakeholder-types.open .long-term,
    .targeted-actions-chart .chart-container .stakeholder-types.open .medium-term,
    .targeted-actions-chart .chart-container .stakeholder-types.open .short-term {
      width: 290px; }
    .targeted-actions-chart .chart-container .term {
      color: #ffffff;
      padding: 0 10px;
      width: 150px;
      min-height: 29px;
      transition: all 0.15s linear;
      line-height: 29px;
      font-size: 12px; }
      .targeted-actions-chart .chart-container .term em {
        font-style: normal; }
      .targeted-actions-chart .chart-container .term.closed {
        width: 0px;
        opacity: 0.5;
        cursor: pointer; }
        .targeted-actions-chart .chart-container .term.closed:hover {
          opacity: 1; }
        .targeted-actions-chart .chart-container .term.closed em {
          display: none; }
      .targeted-actions-chart .chart-container .term.long-term {
        background-color: #999;
        border-bottom: solid 1px #999; }
      .targeted-actions-chart .chart-container .term.medium-term {
        background-color: #1E4A78;
        border-bottom: solid 1px #1E4A78; }
      .targeted-actions-chart .chart-container .term.short-term {
        background-color: #4e91d7;
        border-bottom: solid 1px #4e91d7; }
      .targeted-actions-chart .chart-container .term .value {
        font-weight: bold; }
    .targeted-actions-chart .chart-container .type {
      width: 40px;
      opacity: 0.5;
      position: relative;
      transition: all 0.15s linear;
      cursor: pointer; }
      .targeted-actions-chart .chart-container .type:hover {
        opacity: 1; }
      .targeted-actions-chart .chart-container .type.open {
        width: 150px;
        opacity: 1; }
        .targeted-actions-chart .chart-container .type.open em {
          display: block;
          position: absolute;
          top: -17px;
          left: 5px;
          font-style: normal;
          font-size: 12px; }
          .targeted-actions-chart .chart-container .type.open em span {
            font-weight: bold; }
      .targeted-actions-chart .chart-container .type em {
        display: none; }
      .targeted-actions-chart .chart-container .type.cities {
        left: 0; }
      .targeted-actions-chart .chart-container .type.companies {
        left: 40px; }
        .targeted-actions-chart .chart-container .type.companies.open-cities {
          left: 150px; }
      .targeted-actions-chart .chart-container .type.regions {
        left: 80px; }
        .targeted-actions-chart .chart-container .type.regions.open-cities, .targeted-actions-chart .chart-container .type.regions.open-companies {
          left: 190px; }
      .targeted-actions-chart .chart-container .type.investors {
        left: 120px; }
        .targeted-actions-chart .chart-container .type.investors.open-cities, .targeted-actions-chart .chart-container .type.investors.open-companies, .targeted-actions-chart .chart-container .type.investors.open-regions {
          left: 230px; }
      .targeted-actions-chart .chart-container .type.csos {
        left: 160px; }
        .targeted-actions-chart .chart-container .type.csos.open-cities, .targeted-actions-chart .chart-container .type.csos.open-companies, .targeted-actions-chart .chart-container .type.csos.open-regions, .targeted-actions-chart .chart-container .type.csos.open-investors {
          left: 270px; }
    .targeted-actions-chart .chart-container .long-term .type {
      background-color: #999; }
    .targeted-actions-chart .chart-container .medium-term .type {
      background-color: #1E4A78; }
    .targeted-actions-chart .chart-container .short-term .type {
      background-color: #4e91d7; }
  .targeted-actions-chart .chart-key {
    clear: both;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif;
    padding: 10px 0;
    font-size: 12px; }
    .targeted-actions-chart .chart-key .term-key {
      float: left;
      width: 170px;
      transition: all 0.15s linear; }
      .targeted-actions-chart .chart-key .term-key.closed {
        width: 20px; }
        .targeted-actions-chart .chart-key .term-key.closed span {
          opacity: 0; }
    .targeted-actions-chart .chart-key .type-key {
      float: left; }
      .targeted-actions-chart .chart-key .type-key div {
        float: left;
        width: 40px;
        text-align: center; }
        .targeted-actions-chart .chart-key .type-key div img {
          height: 17px; }
        .targeted-actions-chart .chart-key .type-key div span {
          display: none; }
        .targeted-actions-chart .chart-key .type-key div.open {
          width: 150px; }
          .targeted-actions-chart .chart-key .type-key div.open span {
            display: inline-block;
            padding: 0 5px;
            vertical-align: super; }
  .targeted-actions-chart .custom-select {
    border: solid 1px #4e91d7;
    cursor: pointer;
    position: relative; }
    .targeted-actions-chart .custom-select .selected {
      color: #1E4A78;
      padding: 10px;
      display: block;
      background-image: url(/assets/down-arrow-dropdown.png);
      background-position: 97% center;
      background-repeat: no-repeat;
      background-size: 15px; }
    .targeted-actions-chart .custom-select.open .options {
      display: block; }
    .targeted-actions-chart .custom-select.open .selected {
      opacity: 0.4; }
    .targeted-actions-chart .custom-select .options {
      display: none;
      border: solid 1px #4e91d7;
      padding: 0;
      margin: 0;
      position: absolute;
      background-color: #ffffff;
      z-index: 1;
      width: 100%;
      left: -1px; }
      .targeted-actions-chart .custom-select .options .option {
        list-style-type: none;
        margin: 0;
        padding: 5px;
        margin: 5px; }
        .targeted-actions-chart .custom-select .options .option:hover {
          background-color: #f4f8fd; }
  @media screen and (max-width: 960px) {
    .targeted-actions-chart .chart-container {
      width: 100%; }
      .targeted-actions-chart .chart-container .terms {
        float: none; }
        .targeted-actions-chart .chart-container .terms .term {
          width: calc(100% - 20px); }
      .targeted-actions-chart .chart-container .stakeholder-types,
      .targeted-actions-chart .chart-container .chart-key {
        display: none; } }

text.jvectormap-marker.jvectormap-element {
  text-anchor: middle;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter; }

circle.jvectormap-marker.focused:not(.profile-hidden),
path.jvectormap-region.focused:not(.profile-hidden) {
  fill: #ef3961 !important;
  fill-opacity: 0.8 !important; }

.svg-map-container {
  position: relative; }
  @media screen and (max-width: 540px) {
    .svg-map-container {
      display: none; } }
  .svg-map-container .disclaimer-text {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-size: 10px;
    z-index: 1;
    width: 400px; }
    .svg-map-container .disclaimer-text a {
      text-decoration: underline;
      cursor: pointer; }
  .svg-map-container .svg-map-filters {
    color: #f03b63;
    border-right: solid 1px #f03b63;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    transition: width 0.4s ease-out;
    z-index: 2;
    background-color: #ffffff; }
    .svg-map-container .svg-map-filters .data-filters {
      display: none; }
    .svg-map-container .svg-map-filters .filters-toggle-label {
      transform: rotateZ(-90deg);
      transform-origin: center;
      text-transform: uppercase;
      transition: width 0.4s linear;
      font-size: 12px;
      margin-top: -2px;
      white-space: nowrap;
      position: relative;
      left: -27px; }
    .svg-map-container .svg-map-filters .filters-toggle {
      position: absolute;
      right: 0;
      width: 50px;
      height: 100%;
      cursor: pointer; }
      .svg-map-container .svg-map-filters .filters-toggle:after {
        display: block;
        content: ' ';
        width: 20px;
        height: 20px;
        border: solid 1px #f03b63;
        border-radius: 10px;
        background-image: url(/assets/double-arrow.png);
        background-repeat: no-repeat;
        background-position: center;
        background-color: #ffffff;
        position: absolute;
        right: -10px;
        top: calc(50% - 10px);
        transition: transform 0.5s linear; }
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
          .svg-map-container .svg-map-filters .filters-toggle:after {
            top: 0; } }
    .svg-map-container .svg-map-filters.open {
      width: 320px; }
      .svg-map-container .svg-map-filters.open .data-filters {
        display: block;
        width: 250px; }
      .svg-map-container .svg-map-filters.open .filters-toggle-label {
        opacity: 0;
        width: 0; }
      .svg-map-container .svg-map-filters.open .filters-toggle:after {
        transform: rotateZ(-180deg); }
  .svg-map-container #map {
    padding-left: 50px;
    transition: all 0.4s linear;
    width: calc(100% - 50px);
    height: calc(100vh - 231px);
    position: relative;
    left: 0; }
    .svg-map-container #map.shift {
      left: -500px; }
    .svg-map-container #map .un-disclaimer-dialog {
      padding: 40px 60px;
      box-sizing: border-box; }
      .svg-map-container #map .un-disclaimer-dialog h2 {
        margin: 30px 0 40px 0;
        font-size: 24px;
        line-height: 38px;
        color: #1E4A78;
        font-family: 'Merriweather', serif; }
      .svg-map-container #map .un-disclaimer-dialog h3 {
        margin: 0;
        font-size: 13px;
        color: #1E4A78;
        font-weight: bold; }
      .svg-map-container #map .un-disclaimer-dialog p, .svg-map-container #map .un-disclaimer-dialog label {
        display: block;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 18px; }
      .svg-map-container #map .un-disclaimer-dialog input {
        margin-left: 0;
        float: left; }
      .svg-map-container #map .un-disclaimer-dialog button {
        margin: 0 0 0 10px;
        padding: 10px;
        border: none;
        border-radius: 3px;
        width: auto;
        font-size: 12px;
        float: right;
        color: #ffffff;
        background-color: #f03b63; }
        .svg-map-container #map .un-disclaimer-dialog button:first-of-type {
          background-color: #00db8d; }
      @media screen and (max-height: 768px) {
        .svg-map-container #map .un-disclaimer-dialog {
          padding: 20px 40px; }
          .svg-map-container #map .un-disclaimer-dialog h2 {
            font-size: 20px;
            line-height: 32px;
            margin: 20px 0; } }
    .svg-map-container #map.filters-open {
      padding-left: 320px;
      width: calc(100% - 320px); }
    .svg-map-container #map.profile-open {
      pointer-events: none; }
  .svg-map-container .stakeholders {
    padding: 15px 15px 15px 65px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.5);
    width: calc(100% - 80px);
    position: absolute;
    z-index: 1;
    width: calc(100% - 80px);
    margin: 0;
    transition: all 0.4s ease-out; }
    .svg-map-container .stakeholders.filters-open {
      padding-left: 335px;
      width: calc(100% - 350px); }
    .svg-map-container .stakeholders p {
      font-size: 16px; }

.mobile-map-search {
  display: none; }
  @media screen and (max-width: 540px) {
    .mobile-map-search {
      display: block;
      height: calc(100vh - 181px);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      .mobile-map-search .location-search {
        width: 250px;
        position: fixed;
        top: 45%;
        left: 50%;
        transform: translateX(-50%); }
        .mobile-map-search .location-search .locations-list-button {
          font-weight: normal;
          background-color: #f03b63;
          padding: 7px;
          font-size: 11px;
          margin: 15px 0;
          display: inline-block;
          width: 100%;
          border-radius: 5px;
          border: solid 1px #fff;
          color: #fff;
          text-decoration: none;
          box-sizing: border-box;
          text-align: center; }
        .mobile-map-search .location-search h2 {
          padding: 4px;
          color: #ffffff;
          font-weight: bold;
          text-align: center;
          font-size: 18px;
          line-height: 18px;
          background-color: #1E4A78;
          box-shadow: 2px 2px 5px #000000aa;
          margin: 0;
          padding: 15px 0; }
        .mobile-map-search .location-search .keyword-search {
          padding: 10px;
          display: block;
          box-sizing: border-box;
          width: 100%;
          font-size: 14px;
          line-height: 18px;
          box-shadow: 2px 2px 5px #000000aa;
          -webkit-box-shadow: 2px 2px 5px #000000aa;
          border: solid 1px #666666aa; }
        .mobile-map-search .location-search ul {
          background-color: #F4F8FD;
          border: solid 1px #666666;
          display: none;
          margin: 0;
          padding: 5px 0;
          max-height: 120px;
          overflow: scroll; }
          .mobile-map-search .location-search ul.active-search {
            display: block; }
          .mobile-map-search .location-search ul .close {
            display: none; }
          .mobile-map-search .location-search ul li {
            list-style-type: none;
            padding-left: 30px;
            font-size: 14px;
            line-height: 20px;
            margin: 5px 0;
            cursor: pointer; }
            .mobile-map-search .location-search ul li:before {
              content: ' ';
              display: inline-block;
              padding: 0 5px;
              background-color: #cdcdcd;
              margin-right: 20px;
              height: 10px;
              margin-top: 5px;
              border-radius: 20px; }
            .mobile-map-search .location-search ul li.invisible, .mobile-map-search .location-search ul li.filtered {
              display: none; }
      .mobile-map-search.modal-view ul {
        max-height: none;
        position: absolute;
        top: -25vh;
        height: 60vh;
        width: 80vw;
        left: -10vw;
        display: block;
        padding-top: 30px; }
        .mobile-map-search.modal-view ul .close {
          display: block;
          position: absolute;
          font-size: 12px;
          padding: 5px;
          top: 0;
          background-color: #cdcdcd;
          margin: 0;
          width: 100%;
          text-align: right;
          box-sizing: border-box;
          text-transform: uppercase;
          cursor: pointer;
          letter-spacing: 1px; }
      .mobile-map-search.modal-view:before {
        content: ' ';
        position: absolute;
        background-color: rgba(0, 0, 0, 0.4);
        top: 0;
        height: 100vh;
        left: 0;
        width: 100vw; } }

.results-list.country-summary {
  top: 167px;
  right: 0;
  z-index: 1; }

#disclaimer-link {
  display: none; }

.jvectormap-zoomin {
  top: 60px; }

.jvectormap-zoomout {
  top: 80px; }

path.jvectormap-region.jvectormap-element[data-code=D06]:hover {
  fill: #f03b63;
  fill-opacity: 0.8; }

path.jvectormap-region.jvectormap-element[data-code=D04] {
  fill: #ffffff; }

text.jvectormap-marker.jvectormap-element {
  pointer-events: none; }

.event-tracking {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  padding-left: 72px;
  background-image: url(/assets/blue-arrow.jpg);
  background-repeat: no-repeat;
  background-color: #3D79B4; }
  .event-tracking a {
    font-weight: normal;
    background-color: #f03b63;
    padding: 7px;
    font-size: 11px;
    margin: 8.5px 15px;
    display: inline-block;
    border: none;
    border-radius: 5px;
    border: solid 1px #fff;
    color: #fff;
    text-decoration: none; }
  @media screen and (max-width: 540px) {
    .event-tracking {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      width: calc(100% - 40px);
      background-image: none; }
      .event-tracking a {
        margin-right: 0; } }

.map-tooltip {
  position: absolute;
  display: none;
  z-index: 1;
  padding: 5px;
  background-color: #ffffff;
  border: solid 1px #cdcdcd;
  border-radius: 2px; }
  .map-tooltip h3 {
    margin: 0;
    font-size: 14px; }
  .map-tooltip p {
    margin: 0;
    font-size: 10px; }
  .map-tooltip.visible {
    display: block; }
    @media (hover: none) and (pointer: coarse) {
      .map-tooltip.visible {
        display: none; } }

.infowindow-container {
  position: absolute;
  display: none;
  z-index: 200; }
  .infowindow-container .infowindow {
    overflow: auto;
    cursor: default;
    clear: both;
    position: relative;
    border-radius: 2px;
    width: 300px;
    height: 270px;
    background-color: #1f3349;
    border-color: #cdcdcd;
    border-style: solid;
    padding: 0px;
    border-width: 1px; }
  .infowindow-container .close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer; }

.infobubble-chart {
  position: relative; }
  .infobubble-chart .chart {
    margin-bottom: 5px; }
    .infobubble-chart .chart div {
      width: 100px !important;
      height: 100px !important; }
    .infobubble-chart .chart canvas {
      width: 100px !important;
      height: 100px !important; }
    .infobubble-chart .chart ul {
      flex: 1; }
  .infobubble-chart .country-button,
  .infobubble-chart .profile-button {
    background-image: url(/assets/internal-link-symbol.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    padding: 5px;
    border: solid 1px #999;
    border-radius: 4px;
    font-size: 13px;
    padding-right: 27px;
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    width: 90px;
    display: inline-block; }
    .infobubble-chart .country-button.hidden,
    .infobubble-chart .profile-button.hidden {
      display: none; }
  .infobubble-chart .country-button {
    background-color: #ffffff; }
  .infobubble-chart .profile-button {
    background-color: #cdcdcd; }

.stargate {
  background-color: #ecf0f3;
  padding: 80px 20px; }
  .stargate .default {
    display: none; }
  .stargate .hidden .default {
    display: block; }
  .stargate .hidden > * {
    display: none; }
  .stargate .stargate-inner {
    margin: 0 auto;
    max-width: 1024px;
    display: flex;
    flex-wrap: wrap; }
    .stargate .stargate-inner .stargate-filter {
      border: solid 1px #cdcdcd;
      background: #efefef;
      padding: 10px;
      flex: 1;
      margin: 10px; }
      .stargate .stargate-inner .stargate-filter p {
        font-size: 13px;
        line-height: 18px;
        margin: 15px 0; }
        .stargate .stargate-inner .stargate-filter p.description {
          margin-top: 0;
          font-size: 14px; }
          .stargate .stargate-inner .stargate-filter p.description span {
            font-size: 12px; }
      @media screen and (max-width: 840px) {
        .stargate .stargate-inner .stargate-filter {
          flex: 100%; } }
      .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items {
        display: flex;
        flex-wrap: wrap;
        clear: both;
        padding-top: 10px;
        border-left: solid 1px #ffffff;
        border-bottom: solid 1px #ffffff; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item {
          flex: 33%;
          box-sizing: border-box;
          padding: 10px;
          height: 100px;
          border-right: solid 1px #ffffff;
          border-top: solid 1px #ffffff;
          opacity: 1;
          transition: all 0.1s linear;
          cursor: pointer;
          color: #ffffff;
          position: relative; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(1) {
            background-color: #007f88; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(2) {
            background-color: #78B5AD; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(3) {
            background-color: #8C8834; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(4) {
            background-color: #FAAC4E; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(5) {
            background-color: #F98667; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(6) {
            background-color: #AE916D; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(7) {
            background-color: #718DAC; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(8) {
            background-color: #F76977; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(9) {
            background-color: #940719; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(10) {
            background-color: #007f88; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(11) {
            background-color: #78B5AD; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(12) {
            background-color: #8C8834; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item h4 {
            margin: 0;
            font-size: 12px;
            line-height: 20px;
            padding-right: 20px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item .stargate-filter-item-total {
            font-size: 36px;
            line-height: 36px;
            position: absolute;
            right: 10px;
            bottom: 10px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:hover {
            opacity: 0.65; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item.selected {
            opacity: 0.65;
            border: solid 1px black;
            margin-left: -1px;
            margin-bottom: -1px; }
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items {
            display: block; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item {
              float: left;
              width: 50%; }
              .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(2n + 1) {
                clear: both; } }
      .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-view-all {
        background-color: #1E4A78;
        cursor: pointer;
        border: solid 1px #ffffff;
        color: #ffffff;
        border-radius: 4px;
        transition: all 0.25s linear;
        padding: 5px 20px;
        font-family: 'Roboto'; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-view-all:active, .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives .stargate-filter-view-all.selected {
          background-color: #f03b63; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-total {
        margin-bottom: 20px; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-items {
        padding-top: 0; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-items .stargate-filter-item {
          width: 50%;
          height: 131px;
          flex: 50%; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(2) {
            background-color: #8c8834; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-items .stargate-filter-item:nth-of-type(3) {
            background-color: #78b5ad; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_summit-initiatives.stargate-filter_cop25-initiatives .stargate-filter-items .stargate-filter-item h4 {
            font-size: 16px;
            line-height: 24px;
            padding: 10px 20px 0 10px; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-filter-theme {
        font-style: normal; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initatives-key {
        font-size: 11px;
        clear: both;
        position: relative;
        top: -5px; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initatives-key span:before {
          padding: 5px;
          border-radius: 5px;
          content: ' ';
          display: inline-block;
          margin-right: 5px; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initatives-key span.stargate-theme-initiatives-uncas:before {
          background-color: #4e91d7; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initatives-key span.stargate-theme-initiatives-existing:before {
          background-color: #f03b63;
          margin-left: 5px; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives {
        border-radius: 5px;
        border: solid 1px #1E4A78;
        height: 400px;
        background-color: #ffffff;
        overflow-y: scroll;
        top: 5px;
        clear: both;
        position: relative; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative {
          padding: 20px;
          position: relative;
          border-bottom: solid 1px #cdcdcd;
          cursor: pointer; }
          @media screen and (max-width: 480px) {
            .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative {
              padding-right: 40px; } }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative .stargate-theme-initiative-total {
            position: absolute;
            right: 10px;
            top: 10px;
            font-size: 22px;
            color: #1E4A78; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative h3 {
            font-family: 'Merriweather', serif;
            margin: 0;
            color: #4e91d7;
            font-size: 16px;
            line-height: 16px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative p {
            margin: 0;
            font-size: 11px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative .stargate-theme-initiative-theme {
            padding: 5px 20px;
            display: inline-block;
            margin-top: 10px;
            background-color: #a5b6c7;
            font-size: 10px;
            border: solid 1px #cdcdcd;
            font-family: 'Merriweather', serif;
            font-weight: bold;
            color: #ffffff;
            border-radius: 20px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative:hover {
            background-color: rgba(78, 145, 215, 0.25); }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.selected {
            background-color: #4e91d7; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.selected h3, .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.selected p, .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.selected .stargate-theme-initiative-total {
              color: #ffffff; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative:hover {
            background-color: rgba(240, 59, 99, 0.25); }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative h3 {
            color: #f03b63; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative.selected {
            background-color: #f03b63; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative.selected h3, .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative.selected p, .stargate .stargate-inner .stargate-filter.stargate-filter_theme-initiatives .stargate-theme-initiatives .stargate-theme-initiative.existing-initiative.selected .stargate-theme-initiative-total {
              color: #ffffff; }
      .stargate .stargate-inner .stargate-filter.stargate-filter_participants {
        flex: 100%;
        min-height: 400px; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_participants h4 {
          margin: 0;
          font-size: 18px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_participants h4 a {
            text-decoration: none; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants h4 a img {
              margin-left: 10px;
              position: relative;
              top: 2px; }
        .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs {
          justify-content: flex-start;
          margin: 0; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs .tab {
            background-color: #ffffff;
            margin-left: 0;
            border-bottom: solid 1px #1E4A78; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs .tab .stargate-participant-type-total {
              float: right; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs .tab.selected {
              color: #1E4A78;
              border-color: #1E4A78;
              border-bottom: none; }
          @media screen and (max-width: 480px) {
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs {
              flex-direction: column; }
              .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs .tab {
                flex: 1;
                width: 100%;
                box-sizing: border-box;
                border-bottom: none;
                border-radius: 0; }
                .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs .tab.selected {
                  border-bottom: none; } }
        .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content {
          border: solid 1px #1E4A78;
          border-radius: 10px;
          border-top-left-radius: 0px;
          background-color: #ffffff;
          padding: 10px;
          height: 300px;
          overflow-y: scroll; }
          @media screen and (max-width: 480px) {
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content {
              border-top-right-radius: 0; } }
          .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content .no-country-page {
            font-size: 14px;
            line-height: 14px;
            padding: 10px;
            color: #f03b63;
            font-style: normal;
            border-bottom: solid 1px #cdcdcd;
            margin: 0 5px; }
          .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a {
            text-decoration: none;
            border-bottom: solid 1px #cdcdcd;
            display: block;
            margin: 0 5px; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a:first-of-type {
              border-top: solid 1px #cdcdcd; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a:hover .title {
              opacity: 0.4; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a .title {
              transition: all 0.25s linear;
              font-size: 14px;
              line-height: 14px;
              padding: 2px 10px 10px 10px; }
              .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a .title em {
                font-style: normal; }
              .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a .title img {
                margin-left: 10px;
                position: relative;
                top: 4px; }
            .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a.static-event {
              padding: 10px 0; }
              .stargate .stargate-inner .stargate-filter.stargate-filter_participants .tabs-content .tab-content a.static-event p {
                margin: 0 10px;
                font-size: 13px;
                color: #000000; }
      .stargate .stargate-inner .stargate-filter .stargate-filter-total {
        float: right;
        color: #1E4A78;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px; }
        .stargate .stargate-inner .stargate-filter .stargate-filter-total span {
          font-size: 32px;
          line-height: 32px;
          margin-left: 10px;
          float: right; }

.increase-spacing {
  margin-top: 40px;
  margin-bottom: 40px; }

.loader {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  transition: all 0.2s linear;
  pointer-events: none;
  background-image: url(/assets/spinner.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  top: 0;
  left: 0; }
  .loader.loading {
    opacity: 1;
    pointer-events: all; }

.loading-content {
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  opacity: 0; }
  .loading-content.loaded {
    opacity: 1; }

.clear {
  clear: both; }

/*# sourceMappingURL=styles.css.map */
