﻿/* 
*
*	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,500,700|Roboto+Condensed:700");
/* Defaults */
html, body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    color: #343434;
    background: #1E4A78;
    min-width: 800px;
}

#mainContent {
    background: #fff;
}

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: 1266px;
    width: 100%;
    margin: 0 auto;
}

ul.container {
    margin-left: -40px;
}

.container.container-lg {
    max-width: 1024px;
}

.index {
    padding: 40px;
}

.force-hidden {
    display: none !important;
}

.bd-bx {
    box-sizing: border-box;
}

/* 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: 1245px;
    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: 1250px) {
    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: 1250px) {
    .mobile-search-link {
        display: block;
        position: absolute;
        padding: 20px;
        right: 45px;
        top: 2px;
    }

    .engaged-actors-card-container {
        overflow-x: auto;
    }
}

.toggle-mobile-menu {
    display: none;
}

@media screen and (max-width: 1250px) {
    .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: 1250px) {
    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;
            text-align: justify;
        }

    .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;
    }

.tabs-content.profile-participants {
}

    .tabs-content.profile-participants .tab-content.selected {
        display: flex;
        flex-wrap: wrap;
    }

    .tabs-content.profile-participants .tab-content .action-summary {
        border-radius: 8px;
        padding: unset !important;
        background-color: #fff;
        margin: unset !important;
        box-shadow: 5px 5px 6px 0 rgb(0 0 0 / 3%);
        display: flex;
        flex-direction: column;
        width: 200px;
        height: 150px;
        margin: 18px 18px 18px 0px !important;
        padding: 16px 16px 32px !important;
    }

        .tabs-content.profile-participants .tab-content .action-summary:first-child {
        }

        .tabs-content.profile-participants .tab-content .action-summary .details {
            padding: unset !important;
        }

            .tabs-content.profile-participants .tab-content .action-summary .details p {
                font-size: 14px;
                margin: 5px 0;
                font-weight: 500;
                color: #727679;
            }

        .tabs-content.profile-participants .tab-content .action-summary .participant-facts {
            font-weight: 500;
            color: #727679;
            font-size: 14px;
        }

            .tabs-content.profile-participants .tab-content .action-summary .participant-facts .date-joined span {
                color: #343434;
            }

.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 .group ul {
            max-height: 250px;
        }

        .map-container .data-filters-container.advanced .data-filters .type {
            display: block;
        }

        .map-container .data-filters-container.advanced .data-filters .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 .group {
                flex: 1;
                flex-basis: 33%;
            }

                .map-container .data-filters-container .data-filters .group .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;
}

@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 .group .fieldset-header {
    display: block;
    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 .group .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 .group .fieldset-header.fh-countries:before {
        background-image: url(/assets/filter-icons/countries.png);
    }

    .data-filters .group .fieldset-header.fh-cities:before {
        background-image: url(/assets/filter-icons/cities.png);
    }

    .data-filters .group .fieldset-header.fh-regions:before {
        background-image: url(/assets/filter-icons/regions.png);
    }

    .data-filters .group .fieldset-header.fh-organizations:before {
        background-image: url(/assets/filter-icons/organizations.png);
    }

    .data-filters .group .fieldset-header.fh-investors:before {
        background-image: url(/assets/filter-icons/investors.png);
    }

    .data-filters .group .fieldset-header.fh-companies:before {
        background-image: url(/assets/filter-icons/companies.png);
    }

    .data-filters .group .fieldset-header.selected {
        background-color: #79aee2;
        width: calc(100% + 10px);
        margin-left: -5px;
        box-shadow: 0 0 15px #999;
    }

    .data-filters .group .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 .group .fieldset-header > div {
        padding: 5px;
        font-size: 0.9rem;
    }
}

.data-filters .group .fieldset-header > div p {
    margin: 0;
    flex: 1;
}


.data-filters .group .fieldset-header > div input {
    display: none;
    pointer-events: none;
}

    .data-filters .group .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 .group .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 0;
    background-color: white;
    margin: 16px 2px;
    box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 2%);
    display: flex;
    border: 2px solid #f8f8f8;
    border-radius: 8px;
}

.old-style .action-summary {
    padding: 20px 0;
    border: none;
    border-bottom: solid 1px #cdcdcd;
    display: flex;
    margin: 0;
    box-shadow: none;
    border-radius: unset;
}


.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 24px;
}

.old-style .action-summary .details {
    padding: 0 40px 0 30px;
}

.action-summary .details .flex.action-summary-details {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 16px;
}

    .action-summary .details .flex.action-summary-details div {
        margin-right: 12px;
    }

.action-summary .details .flex.action-summary-details {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 16px;
}

    .action-summary .details .flex.action-summary-details div {
        margin-right: 12px;
    }

.action-summary .details > a {
    text-decoration: none;
}

    .action-summary .details > a img {
        position: relative;
        top: 2px;
        margin-left: 5px;
    }

.old-style .action-summary .details > a img {
    position: relative;
    top: 2px;
    margin-left: 1px;
}

.action-summary .details h4 {
    line-height: normal;
    margin: 0 0 20px 0;
    color: #f03b63;
    transition: opacity 0.2s linear;
    font-size: 16px;
    margin-bottom: 8px;
}

    .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;
    flex-direction: column;
}

    .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 20px;
    font-weight: 600;
}

.old-style .action-summary.total-commitments p {
    font-size: 14px;
    margin: 5px 0;
    font-weight: 400;
}

.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;
    }

.w70percents {
    width: 70%;
}

@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 .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: 20px 16px;
    flex: 1;
}

    .events-list-cards .events-list > * .details .details-info {
        display: flex;
        flex-direction: row;
        margin-bottom: 8px;
    }

        .events-list-cards .events-list > * .details .details-info p {
            font-size: 12px;
            margin-right: 8px;
        }

    .events-list-cards .events-list > * .details .details-info-initiatives {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .events-list-cards .events-list > * .details .details-read-more {
        color: #1E4A78;
        font-weight: 600;
        text-decoration: underline;
        font-size: 14px;
        display: flex;
        justify-content: flex-end;
    }

    .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;
    position: relative;
}

    .advanced-filters.new-filters {
        background-color: white !important;
        padding: 0px 0px 30px 0px !important;
    }

        .advanced-filters.new-filters button {
            background-color: white !important;
            color: black !important;
        }

        .advanced-filters.new-filters .filter-actions {
            display: flex;
            justify-content: space-between;
        }

            .advanced-filters.new-filters .filter-actions p {
                font-size: 20px;
                cursor: default;
            }

            .advanced-filters.new-filters .filter-actions .icon {
                height: 20px;
            }

            .advanced-filters.new-filters .filter-actions .reset,
            .coop-initiatives-top-filters .reset {
                outline: none !important;
                box-shadow: none !important;
                text-decoration: underline !important;
                color: #235e9c !important;
                font-weight: 600 !important;
                border: none !important;
                margin: 0px !important;
            }

                .advanced-filters.new-filters .filter-actions .reset:hover {
                    cursor: pointer;
                }

        .advanced-filters.new-filters .filter-container {
            box-shadow: unset !important;
        }

        .advanced-filters.new-filters .action-apply {
            border: 1.2px solid #FFFFFF;
            border-radius: 5px;
            background-color: #4B92DB;
            font-size: 14px;
            padding: 8px 24px;
            margin: 10px 0px 0px 0px;
            float: none;
            cursor: pointer;
        }

            .advanced-filters.new-filters .action-apply:active {
                box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.8);
            }

    .advanced-filters button {
        background-color: white;
        padding: 5px 30px 5px 20px;
        color: black;
        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,
        .coop-initiatives-top-filters button.reset {
            border-color: #cdcdcd;
            padding-right: 0px;
            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.new-filters .filter-container {
        box-shadow: 1px 1px 2px #000;
        background-color: #fff;
        width: 320px;
        pointer-events: none;
        padding: unset !important;
        position: unset !important;
        margin-top: unset !important;
        opacity: unset !important;
        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.new-filters .filter-container h3 {
        margin: 0;
        background-color: white !important;
        padding: 10px 0px;
        color: black !important;
        border-bottom: 1px solid lightgray;
        font-size: 16px;
    }

    .advanced-filters .filter-container .keyword-search {
        margin: 5px 0;
        padding: 10px;
        border: solid 1px black;
        width: calc(100% - 20px - 2px);
        box-shadow: 1px 1px 2px #999;
    }

    .advanced-filters.new-filters .filter-container .keyword-search {
        box-shadow: unset !important;
    }

    .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;
        background-color: white;
    }

    .advanced-filters.new-filters .filter-container ul {
        background-color: unset !important;
        box-shadow: unset !important;
        height: unset !important;
        background-color: white !important;
    }

@media screen and (max-height: 768px) {
    .advanced-filters .filter-container ul {
        height: 100px;
    }
}

.coop-initiatives-top-filters button.reset {
    background-color: transparent;
    cursor: pointer;
}

.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.new-filters .filter-container ul li {
    padding-left: unset !important;
}

.advanced-filters .filter-container ul li.invisible {
    display: none !important;
}

.advanced-filters .filter-container ul li.filtered {
    display: none;
}

.advanced-filters .filter-container ul a {
    text-decoration: none;
    color: black;
}

.advanced-filters .filter-container input[type=button] {
    background-color: #4A92D8;
    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.new-filters .filter-container.filter-container-collapsible .expanded ul {
    overflow: auto !important;
    padding: 10px 0px !important;
    max-height: 100% !important;
}

.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: 40px 30px 30px 30px;
    color: #1E4A78;
    text-transform: uppercase;
    display: flex;
    font-weight: bold;
}

    .ci-total em {
        font-style: normal;
    }

.image-page {
    padding: 32px 48px;
}

.image-page-title {
    color: #182F47;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
}

.image-page-link {
    color: #1F4A77;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.image-page .content.content-header-text p {
    text-align: justify;
    margin-bottom: 32px;
}

.image-page .content.content-header-text {
}

    .image-page .content.content-header-text .content-header-intro {
        display: flex;
        flex-direction: row;
    }

        .image-page .content.content-header-text .content-header-intro .content-header-detail {
        }

        .image-page .content.content-header-text .content-header-intro .content-header-image {
            display: flex;
            justify-content: flex-start;
            width: 100%;
            padding-left: 62px;
        }

            .image-page .content.content-header-text .content-header-intro .content-header-image img {
                border-radius: 150px;
                width: 220px;
                height: 220px;
                object-fit: cover;
            }

.image-page-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

.content-committed {
    padding: 18px 0px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    transform: rotateX(180deg); /* scroll thumb and track */
}

    .content-committed::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    .content-committed::-webkit-scrollbar-track {
        background-color: #ffffff;
        height: 10px;
    }

    .content-committed::-webkit-scrollbar-thumb {
        border-radius: 15px;
        background-color: lightgray;
        height: 10px;
    }

    .content-committed p {
        margin: 0;
    }

    .content-committed .p-margin {
        margin: 0px 0px 12px 0px;
    }

    .content-committed .commited-card {
        padding: 16px 0;
        min-width: 500px;
        display: flex;
    }

.commited-card .image-card {
    padding: 0;
    min-width: unset;
    border: 0.5px solid #DADADA;
    border-radius: 8px;
    box-shadow: 0 0 12px 0 rgba(31,79,130,0.1);
    margin-right: 12px;
    overflow: hidden;
    transform: rotateX(180deg);
    min-width: 350px;
    display: flex;
}

.commited-card .image-card-big {
    padding: 0;
    min-width: unset;
    border: 0.5px solid #DADADA;
    border-radius: 8px;
    box-shadow: 0 0 12px 0 rgba(31,79,130,0.1);
    margin-right: 12px;
    overflow: hidden;
    transform: rotateX(180deg);
    min-width: 500px;
    display: flex;
}

.commited-card span {
    font-weight: 600;
    font-size: 20px;
    color: #F03E63;
    font-family: 'Merriweather';
}

.commited-card div {
    margin-top: 12px;
}

.commited-card p {
    margin-top: 18px;
}

.filter-column {
    width: 23%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .filter-column.detail {
        width: 230px;
    }

    .filter-column::-webkit-scrollbar {
        width: 6px;
        height: 10px;
    }

    .filter-column::-webkit-scrollbar-track {
        background-color: #f6f6f6;
        height: 10px;
    }

    .filter-column::-webkit-scrollbar-thumb {
        border-radius: 15px;
        background-color: lightgray;
        height: 10px;
    }

.image-page .content h1 {
    color: #1F4A77;
    /*font-size: 36px;*/
    line-height: 52px;
    margin: 0;
    font-weight: 600;
}

.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: #F8F9FB;
    position: relative;
    margin-left: 32px;
    max-width: 78%;
    min-width: 76%;
}

.image-page.initiative-details-content .list-column {
    background-color: #FFF;
}

.image-page .list-column .advanced-filters {
    margin-top: 0;
}

.image-page .list-column .list-view {
    padding: 0 30px 30px 30px;
    overflow-y: scroll;
    height: 100%;
    flex: 1;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    max-height: calc(100% - 60px);
}

.image-page .list-column .short-list .list-view {
    height: fit-content;
    flex: unset;
}

.image-page .list-column .list-view .search {
    padding: 14px;
    width: 572px;
    border: 1px solid lightgray;
    border-radius: 8px;
}

.image-page .list-column .list-view::-webkit-scrollbar {
    display: none;
}

.image-page .list-column .list-view .sort {
    height: unset;
    font-size: 14px;
}

    .image-page .list-column .list-view .sort select {
        outline: none;
        border: none;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
    }

.image-page .list-column .list-view > div {
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .image-page .list-column .list-view > div::-webkit-scrollbar {
        display: none;
    }

    .image-page .list-column .list-view > div.coop-actions {
        /*margin-top: 0;
                height: calc(100% - 80px);*/
    }

.image-page .announcements .list-column {
    max-width: 100%;
    min-width: 100%;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modalDisclaimer {
    display: none;
}

    .modalDisclaimer.active {
        display: block;
    }

    .modalDisclaimer .modal {
        padding: 0;
        z-index: 6;
    }

    .modalDisclaimer .modal-content {
        width: auto;
        max-width: 1022px;
    }

    .modalDisclaimer .buttons {
        text-align: right;
    }

    .modalDisclaimer label,
    .modalDisclaimer button {
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        line-height: 20px;
    }

    .modalDisclaimer button {
        color: #FFF;
        border: none;
        background: var(--main-color);
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 500;
    }

        .modalDisclaimer button.button-decline {
            --main-color: #E83367;
        }

        .modalDisclaimer button.button-accept {
            --main-color: #4472C4;
        }

@media screen and (max-width: 481px) {
    .modalDisclaimer button {
        margin-top: 8px;
    }

        .modalDisclaimer button:first-child {
            margin-top: 0;
        }
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 1022px;
}

    .modal-content .modal-title {
        font-size: 18px;
        font-weight: 600;
        color: #1E4A78;
    }
/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover, .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.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;
}

.old-style {
    background-color: #ecf0f3;
    font-family: Roboto,sans-serif;
    font-weight: 400;
    color: #000;
}

.coop-init-introduction {
    background-color: #ffffff;
}

.coop-init-intro {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.coop-init-introduction.old-style {
    background-color: #ecf0f3;
    padding: 30px 0;
    display: block;
}

.coop-init-introduction .coop-init-data {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.coop-init-introduction .coop-init-picture {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 36px;
}

    .coop-init-introduction .coop-init-picture img {
        width: 180px;
        height: 90px;
        object-fit: contain;
    }

.old-style .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-introduction-title {
    width: 100%;
    margin-bottom: 18px;
    border-bottom: 1px solid lightgray;
}

.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 {
    width: 100%;
}

.old-style .coop-init-introduction .coop-init-key-facts .coop-init-description {
    font-family: Merriweather,serif;
    color: #1e4a78;
    margin: 20px 0;
    font-weight: 400;
}

.coop-init-introduction .coop-init-key-facts .coop-init-description {
    color: black;
    font-weight: 600;
}

.coop-init-introduction .coop-init-key-facts .coop-init-data {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0px;
}

    .coop-init-introduction .coop-init-key-facts .coop-init-data .ci-value.coop-init-data-item {
        border-left: 1px solid grey;
        padding-right: 10px;
        display: flex;
        align-items: center;
    }

    .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item {
        align-items: center;
    }

        .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item:before {
            content: '\00B7';
            padding: 0 10px;
        }

        .coop-init-introduction .coop-init-key-facts .coop-init-data .ci-value.coop-init-data-item:first-child:before,
        .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item:first-child:before {
            content: '';
            padding: 0;
        }

        .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item h3 {
            font-size: 14px;
            color: grey;
            font-weight: 500;
            margin: 4px 10px 4px 0px;
        }

    .coop-init-introduction .coop-init-key-facts .coop-init-data .ci-value.coop-init-data-item:last-child {
        border-right: unset;
        padding-right: 10px;
        padding-left: 10px;
    }

    .coop-init-introduction .coop-init-key-facts .coop-init-data .ci-value.coop-init-data-item p {
        font-weight: 600;
        font-size: 14px;
    }

    .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item p {
        font-weight: 600;
        font-size: 14px;
        margin: 4px 0;
    }

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.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;
    }

.old-style .coop-init-introduction .ci-value h3 {
    color: #1e4a78;
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.ci-value p {
    white-space: pre-wrap;
}

.old-style p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.old-style .coop-init-introduction .ci-value, .old-style .coop-init-introduction .ci-value h3.qi-title {
    display: none;
}

{
}

.old-style .coop-init-introduction .ci-value.visible, .old-style .coop-init-introduction .ci-value h3.qi-title.visible {
    display: block;
}

.coop-init-introduction:not(.old-style) .ci-value {
    display: none;
}

    .coop-init-introduction:not(.old-style) .ci-value.visible {
        display: flex;
        flex-direction: row;
    }

    .coop-init-introduction:not(.old-style) .ci-value h3 {
        color: grey;
        font-size: 13px;
        font-weight: 500;
        margin: 8px 10px 8px 0px;
    }

    .coop-init-introduction:not(.old-style) .ci-value p {
        color: black;
        font-size: 13px;
        font-weight: 500;
        margin: 8px 0px 8px 0px;
    }

.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.old-style {
    padding: 20px;
    display: flex;
    flex-direction: column !important;
    background-color: #fff;
}

.old-style .coop-init-actions .coop-init-actions-container {
    width: calc(100% - 40px);
    max-width: 1024px;
    margin: 0 auto;
}

.coop-initiatives-top-filters {
    padding: 0 30px;
}

    .coo-init-search .search-box, .coop-initiatives-top-filters .search-box {
        margin-bottom: 32px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

        .coo-init-search .search-box .textbox, .coop-initiatives-top-filters .search-box .textbox {
            padding: 14px;
            width: 50%;
            border: 1px solid #d3d3d3;
            border-radius: 8px;
            box-shadow: 0 0 10px 0 #e8e8e8;
        }

    .coo-init-search .sorting, .coop-initiatives-top-filters .sorting {
        display: flex;
        flex-direction: row;
        margin-bottom: 12px;
    }

.icon-sdg-icon {
    background-image: url(../assets/icons/sdgicon.svg);
    height: 18px;
    width: 18px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.ghost-dropdown {
    height: unset;
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
    cursor: pointer;
}

.ghost-tracked .dropdown-content.auto-nowrap, .ghost-tracked .dropdown-content.auto-nowrap.open {
    width: auto;
}

.dropdown-content.auto-nowrap ul > li {
    white-space: nowrap;
}

.ghost-dropdown .dropdown-content.open {
    background-color: white;
    border: 1px solid lightgray;
    width: 174px;
    position: absolute;
    left: 43px;
    box-shadow: 0 0px 5px 0 #e8e8e8;
    z-index: 10;
    max-height: 250px;
    overflow-y: auto;
}

    .ghost-dropdown .dropdown-content.open ul {
        padding: 0;
        list-style-type: none;
        margin: 0;
        font-size: 15px;
    }

        .ghost-dropdown .dropdown-content.open ul li {
            color: black;
            padding: 4px 8px 4px 4px;
        }

            .ghost-dropdown .dropdown-content.open ul li:hover {
                background-color: #3366BB;
                color: white;
                padding: 4px 8px 4px 4px;
            }

.coo-init-search .filters {
    margin-bottom: 32px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .coo-init-search .filters label {
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

.coop-init-actions .coop-init-actions-container .coop-participants-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .coop-init-actions .coop-init-actions-container .coop-participants-title .show-map-participants-link {
        color: #1e4a78;
        text-decoration: underline;
        font-size: 14px;
    }

.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;
    }

    .coop-init-actions .coop-init-actions-container .tabs .tab {
        color: #1E4A78;
        margin-left: 0;
        margin-right: 20px;
        background-color: #ecf0f3;
        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;
            background-color: #ffffff;
            z-index: 1;
        }

.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;
    }

.coop-init-actions .coop-init-actions-container .coop-init-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* max-height: 420px;*/
    /* overflow-y: auto;*/
}

.coop-init-actions .coop-init-actions-container .card-33 {
    box-shadow: 0 0 10px 0 #e8e8e8;
    width: 200px;
    margin-right: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}

    .coop-init-actions .coop-init-actions-container .card-33.list-view {
        width: 100% !important;
    }

    .coop-init-actions .coop-init-actions-container .card-33 .title-red {
        color: #f03b63;
        font-family: 'Merriweather';
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .coop-init-actions .coop-init-actions-container .card-33 .tag {
        font-size: 11px;
        padding: 2px 8px;
        border: 1px solid black;
        border-radius: 12px;
        font-weight: 600;
    }

    .coop-init-actions .coop-init-actions-container .card-33 .info-font {
        font-size: 12px;
        align-items: center;
        margin-bottom: 8px;
    }

    .coop-init-actions .coop-init-actions-container .card-33 .card-link {
        display: flex;
        justify-content: flex-end;
        font-size: 14px;
        font-weight: 600;
        margin-top: 16px;
    }

        .coop-init-actions .coop-init-actions-container .card-33 .card-link a {
            color: #1F4A77;
        }

.newly-added-tag-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .newly-added-tag-container .newly-added-tag {
        border: none;
        background-color: #1F4A77;
        color: white;
        display: flex;
        align-items: center;
        max-height: 15px;
        min-width: 64px;
        font-size: 11px;
        padding: 2px 8px;
        border-radius: 12px;
        font-weight: 600;
    }


.info-font {
    color: #a3a6a7;
}

    .info-font span {
        color: #343434;
    }

.coop-init-values {
    display: flex;
    flex-direction: row;
    padding: 16px;
    background-color: #F8F9FB;
    margin-top: 16px;
    justify-content: space-between;
}

    .coop-init-values .values-column {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

.coop-init-introduction {
    padding: 32px 0px 0px;
    display: flex;
    flex-direction: row;
}

    .coop-init-introduction .coop-init-key {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

        .coop-init-introduction .coop-init-key .coop-init-contact {
            display: flex;
            flex-direction: column;
            padding: 16px;
            background-color: #F8F9FB;
            width: 20%;
        }

            .coop-init-introduction .coop-init-key .coop-init-contact p {
                color: #1e4a78;
                font-weight: 600;
            }

            .coop-init-introduction .coop-init-key .coop-init-contact span {
                color: black;
            }

.initiative-updated {
    display: flex;
    justify-content: flex-end;
    padding: 0px 0px;
    color: #f03b63;
    font-size: 15px;
    font-weight: 600;
}

/*.initiative-updated .initiative-updated-month {
        margin-left: 4px;
        font-weight: 600;
        margin-right: 4px;
    }*/

.initiative-details-content {
    padding: 32px 48px;
    width: unset;
    /*height: 800px;*/
}

    .initiative-details-content .initiative-menu {
        height: 200px;
        display: flex;
        flex-direction: column;
        padding: unset;
    }

        .initiative-details-content .initiative-menu li {
            text-transform: uppercase;
            text-decoration: underline;
            font-size: 14px;
            color: #000 !important;
            margin: 12px 0px;
            display: unset;
            cursor: pointer;
        }

        .initiative-details-content .initiative-menu a:hover {
            cursor: pointer;
        }

    .initiative-details-content .initiative-menu-link {
        font-weight: 500;
    }

        .initiative-details-content .initiative-menu-link.active {
            text-decoration: none;
            font-weight: 600;
        }

    .initiative-details-content .list-column {
        overflow-y: auto;
        width: 100%;
    }

        .initiative-details-content .list-column .list-column-section {
            background-color: #F8F9FB;
            padding: 32px 48px;
            margin-bottom: 32px;
        }

        .initiative-details-content .list-column::-webkit-scrollbar {
            display: none;
        }

        .initiative-details-content .list-column .profile-section {
        }

            .initiative-details-content .list-column .profile-section .profile-description-info {
                display: flex;
                justify-content: space-between;
                margin-bottom: 16px;
            }

                .initiative-details-content .list-column .profile-section .profile-description-info .profile-description-info-col {
                    display: flex;
                    flex-direction: column;
                    width: 50%;
                }

                    .initiative-details-content .list-column .profile-section .profile-description-info .profile-description-info-col .section-title {
                        margin-bottom: 25px;
                    }

                    .initiative-details-content .list-column .profile-section .profile-description-info .profile-description-info-col .contact {
                        width: 350px;
                    }

.profile-section .section-title {
    color: #1F4A77;
    font-size: 22px;
    font-weight: 600;
    margin: 0px;
    display: flex;
    justify-content: space-between;
}

.progress-more-info {
    color: #1F4A77;
    font-size: 12px !important;
    font-weight: 600;
    margin: 16px 0 22px;
    text-decoration: underline;
    cursor: pointer;
    font-style: italic;
}

.initiative-details-content .list-column .profile-section .section-title span {
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.initiative-details-content .list-column .profile-section .section-title .coop-participants-title span {
    font-size: 22px;
    text-decoration: none;
    cursor: default;
}

.initiative-details-content .list-column .profile-section .description-progress progress {
    width: 100%;
    height: 1.5em;
}

.initiative-details-content .list-column .profile-section .description-progress .description-progress-label {
    display: flex;
    flex-direction: row;
    font-size: 14px;
}

    .initiative-details-content .list-column .profile-section .description-progress .description-progress-label .year-tags {
        font-style: italic;
        color: grey;
    }

.initiative-details-content .list-column .profile-section .section-content {
    color: #343434;
    margin: 12px 0px 42px;
}

    .initiative-details-content .list-column .profile-section .section-content .section-text {
        padding: 0 24px 24px;
        font-size: 14px;
        line-height: 22px;
    }

.section-content .section-text {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 22px;
}

.initiative-details-content .list-column .profile-section .description-container {
    display: flex;
    flex-direction: row;
    margin: 20px 0px 26px;
    justify-content: center;
}

.section-participants {
    display: flex;
    flex-direction: row;
    margin-top: 28px;
}

    .section-participants::-webkit-scrollbar {
        height: 30px; /* width of the entire scrollbar */
    }

    .section-participants::-webkit-scrollbar-track {
        background: white; /* color of the tracking area */
    }

    .section-participants::-webkit-scrollbar-thumb {
        background-color: #D8D8D8; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 11px solid white; /* creates padding around scroll thumb */
    }

.participants-card-simple {
    box-shadow: 0 0 10px 0 #e8e8e8;
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
}

    .participants-card-simple:last-child {
        margin-right: unset;
    }

.card-format {
    padding: 10px;
    border-radius: 25px;
    height: 23px
}

    .card-format .icon {
        display: inline-block;
    }

.icon-format-active {
    background: #4c92d7;
}

.icon-greyed {
    color: grey;
}

.icon-blue {
    color: #4c92d7;
}

.icon-format-active .icon {
    filter: invert(100%) brightness(120%);
}

.flex-items-center {
    display: flex;
    align-items: center
}

.title-blue-link {
    font-size: 14px;
    color: #1F4A77
}

.participants-card-simple-title {
    padding: 18px 12px;
    border-bottom: 1px solid #CDCDCD;
    color: #f03b63;
    font-weight: 600;
    font-family: 'Merriweather';
    font-size: 13px;
}

.participants-card-simple-content {
    padding: 12px 12px 32px;
    font-size: 14px;
}

    .participants-card-simple-content object {
        font-size: 16px !important;
        height: 13px !important;
        background-size: 16px !important;
    }

.participants-location-card {
    margin-top: 24px;
    background-color: #F8FBFE;
    padding: 18px 24px;
    font-size: 14px;
    width: auto;
    align-items: center;
    display: flex;
}

    .participants-location-card i {
        font-size: 16px;
    }

.center-dot:after {
    content: " \2219 ";
    margin: 0 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.text-strong {
    font-weight: 600;
}

.progress-tracking {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 28px;
}

.progress-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expand-initiatives {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    color: #1F4A77;
}

@media screen and (max-width: 769px) {
    .progress-tracking {
        flex-direction: column;
    }

    .progress-section-content {
        box-shadow: none !important;
    }
}

/*
    .progress-section:first-child .progress-icon:last-child {
        border-right: 1.5px solid #D9D9D9;
    }

    .progress-section:last-child .progress-icon:first-child {
        border-left: 1.5px solid #D9D9D9;
    }
*/
.progress-section-title {
    color: #343434;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 80%;
    cursor: pointer;
}

    .progress-section-title.active {
        border-bottom: 4px solid #4c92d7;
    }

.progress-section-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    box-shadow: #D9D9D9 1.5px 0 0 0;
    padding-top: 10px;
}

.progress-section:last-child .progress-section-content {
    box-shadow: none;
}

.progress-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 15px 20px;
    max-width: 70px;
    min-height: 95px;
    flex-wrap: wrap;
    opacity: 0.1;
    font-size: 14px;
}

    .progress-icon.active {
        opacity: 1;
    }

    .progress-icon span {
        text-align: center;
    }

    .progress-icon .circle-icons {
        color: #1F4A77;
        padding: 10px 12px;
        border-radius: 40px;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 18px;
        text-decoration: none;
        background-color: #B7D3F1;
        font-size: 20px;
    }

    .progress-icon.active .circle-icons:hover {
        cursor: pointer;
        box-shadow: 1px 1px 5px 0px rgba(31,74,119,0.43);
    }

    .progress-icon.readonly .circle-icons:hover {
        cursor: default;
        box-shadow: none;
    }

.acc-kontainer {
    width: 100%;
    margin: auto;
}

.acc-margin {
    margin-bottom: 18px;
}

.acc-kontainer .acc-body {
    width: 98%;
    width: calc(100% - 20px);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.2);
    line-height: 28px;
    padding: 0 20px;
    box-sizing: border-box;
    transition: 0.5s;
}

    .acc-kontainer .acc-body span {
        font-weight: 600;
    }
/* ACCORDION */
.acc-kontainer label {
    cursor: pointer;
    background-color: rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: block;
    padding: 12px 18px;
    width: 100%;
    color: white;
    background-color: #1f4a77;
    font-weight: 400;
    box-sizing: border-box;
    z-index: 100;
    border-radius: 8px;
}

.acc-kontainer input {
    display: none;
}

.acc-kontainer label:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f078';
    font-weight: bolder;
    float: right;
}

.acc-kontainer label {
    background-color: #1f4a77;
}

.acc-kontainer .active label:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f077';
    transition: 0.5s;
}

.acc-kontainer .acc-body {
    height: auto;
    color: #000;
    font-size: 16px;
    padding: 20px;
    transition: .5s;
    background-color: white;
    border-radius: 4px;
    margin: unset;
    margin-bottom: 16px;
    margin-left: 10px;
}

    .acc-kontainer .acc-body.targets {
        background-color: transparent;
        padding: 8px 0px;
    }

    .acc-kontainer .acc-body .targets-content {
        display: flex;
        flex-direction: column;
    }

        .acc-kontainer .acc-body .targets-content .targets-content-1 {
            display: flex;
            flex-direction: row;
        }

            .acc-kontainer .acc-body .targets-content .targets-content-1 .targets-cell {
                background-color: white;
                margin-right: 8px;
                padding: 16px;
                width: 20%;
            }

                .acc-kontainer .acc-body .targets-content .targets-content-1 .targets-cell:last-child {
                    margin-right: 0 px;
                    overflow-x: auto;
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                }

        .acc-kontainer .acc-body .targets-content .targets-content-2 {
            background-color: white;
            margin-top: 8px;
            padding: 16px;
        }


.acc-body-risk {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .acc-body-risk .risk-container {
        /*display: flex;*/
        width: 100%;
        /*flex-direction: row;*/
    }

        .acc-body-risk .risk-container .scope-initiative-card {
            /*min-width: 60%;*/
        }

            .acc-body-risk .risk-container .scope-initiative-card .scope-initiative-card-tabs .scope-card-text {
                display: flex;
                flex-direction: row;
            }

                .acc-body-risk .risk-container .scope-initiative-card .scope-initiative-card-tabs .scope-card-text .scope-card-title {
                    margin-right: 8px;
                }

        .acc-body-risk .risk-container .scope-cards-container {
            margin: 0 0 0 10px;
            padding: 0;
            border: none;
            width: 100%;
            min-height: 124px;
        }

            .acc-body-risk .risk-container .scope-cards-container .scope-card {
                margin: 0;
                margin-bottom: 26px;
            }

@media screen and (max-width: 540px) {
    .acc-body-risk {
        flex-direction: column;
    }

        .acc-body-risk .risk-container {
            display: flex;
            width: 100%;
            flex-direction: column;
        }

            .acc-body-risk .risk-container .scope-initiative-card {
                min-width: unset;
            }

            .acc-body-risk .risk-container .scope-cards-container {
                margin: 0 0 0 10px;
                padding: 0;
                border: none;
                width: unset;
                min-height: 124px;
            }
}

.description-container-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 38px;
    max-width: 200px;
}

.description-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #dededf;
    width: 100%;
}

    .description-icon span {
        text-align: center;
        font-weight: 600;
        padding-bottom: 6px;
        color: #343434;
    }

    .description-icon .circle-icons {
        color: #1F4A77;
        padding: 12px;
        border-radius: 40px;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 18px;
        text-decoration: none;
        background-color: #B7D3F1;
        font-size: 20px;
    }

.description-container .description-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    color: #343434;
}

    .description-container .description-section span {
        margin-top: 10px;
    }

.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;
}

.event-progress-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid lightgray;
    box-shadow: 3px 3px 3px #cdcdcd;
    margin-bottom: 32px;
}

    .event-progress-card .progress-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .event-progress-card .progress-bar progress {
            width: 420px;
            height: 1.5em;
            margin-right: 12px;
        }

    .event-progress-card progress::-webkit-progress-value {
        background-color: #aaa !important;
    }

    .event-progress-card p {
        margin-bottom: 12px;
        font-weight: 600;
        margin-top: 0px;
    }

@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;
    }
}

.disclaimer-text {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-size: 10px;
    z-index: 2;
    width: 400px;
}

    .disclaimer-text a {
        text-decoration: underline;
        cursor: pointer;
    }

@media screen and (max-width: 481px) {
    .disclaimer-text {
        position: relative;
        width: auto;
        right: auto;
        margin: 0 8px 72px;
        z-index: 0;
    }
}

@media screen and (max-width: 769px) {
    .disclaimer-text {
        bottom: auto;
    }
}

.svg-map-container .svg-map-filters {
    color: #f03b63;
    border-right: solid 1px #e5e5e5;
    display: flex;
    height: 100%;
    width: 50px;
    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;
    z-index: -1;
    background-color: #1f3349;
    display: none;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
}

    .map-tooltip.trans-visible {
        display: block;
    }

    .map-tooltip h3 {
        margin: 0;
        font-size: 18px;
    }

    .map-tooltip p {
        margin: 0;
        font-size: 14px;
    }

    .map-tooltip .chart {
        height: 140px;
        display: block;
    }

#infoBoxTemplate > div {
    width: 500px;
}

@media screen and (max-width: 481px) {
    #infoBoxTemplate > div {
        width: 240px;
    }
}

.infowindow {
    position: relative;
    width: 300px;
    height: 270px;
}

    .infowindow .close {
        position: absolute;
        top: 5px;
        right: 10px;
        color: #ffffff;
        font-weight: bold;
        cursor: pointer;
    }

.chart-area .legend {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template: auto auto auto / auto auto;
    grid-auto-flow: column;
    grid-gap: 11px;
}

    .chart-area .legend li {
        color: #FFF;
        font-size: 14px;
        line-height: 16px;
    }

        .chart-area .legend li::before {
            content: '';
            display: inline-block;
            margin-right: 7px;
            height: 10px;
            width: 10px;
            border-radius: 5px;
            background: var(--legend-color);
        }

.legend-company {
    --legend-color: #D8B0B3;
}

.legend-investor {
    --legend-color: #F76977;
}

.legend-organization {
    --legend-color: #F98667;
}

.legend-region {
    --legend-color: #AE916D;
}

.legend-city {
    --legend-color: #718DAC;
}

.legend-country {
    --legend-color: #FAAC4E;
}

.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: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    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;
}

    .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;
}

.content-disclaimer {
    background: #E83367;
    color: #FFF;
}

    .content-disclaimer p {
        margin: 0 auto;
        width: 100%;
        max-width: 1200px;
        padding: 32px 16px;
        font-size: 15px;
        line-height: 24px;
        font-weight: 500;
        box-sizing: border-box;
    }

.slider-text-blocks {
    height: 160px;
    display: flex;
    overflow: hidden;
}

    .slider-text-blocks .control {
        cursor: pointer;
        flex-basis: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.7);
        color: #192F46;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        z-index: 1;
    }

        .slider-text-blocks .control.control-previous {
            border-radius: 0 6px 6px 0;
        }

            .slider-text-blocks .control.control-previous::before {
                content: '\f053';
            }

        .slider-text-blocks .control.control-next {
            border-radius: 6px 0 0 6px;
        }

            .slider-text-blocks .control.control-next::before {
                content: '\f054';
            }

    .slider-text-blocks .slider-blocks-container {
        flex: 1;
        position: relative;
    }

        .slider-text-blocks .slider-blocks-container > ul {
            list-style: none;
            padding: 0;
            margin: 0;
            overflow: hidden;
            height: 100%;
            position: absolute;
            transition: 1s;
        }

            .slider-text-blocks .slider-blocks-container > ul > li {
                width: 25%;
                padding: 0 2px;
                float: left;
                height: 100%;
                box-sizing: border-box;
            }

                .slider-text-blocks .slider-blocks-container > ul > li .block {
                    display: flex;
                    flex-direction: column;
                    gap: 6px;
                    padding: 10px 20px;
                    background: #DBE9F8;
                    overflow-y: auto;
                    height: 100%;
                    box-sizing: border-box;
                    justify-content: space-between;
                }

                .slider-text-blocks .slider-blocks-container > ul > li h3 {
                    color: #182F47;
                    font-size: 20px;
                    line-height: 26px;
                    font-weight: bold;
                    margin: 0;
                }

                .slider-text-blocks .slider-blocks-container > ul > li p {
                    color: #192F46;
                    font-size: 14px;
                    line-height: 20px;
                    margin: 0;
                }

                .slider-text-blocks .slider-blocks-container > ul > li a {
                    color: #1F4A77;
                }

                    .slider-text-blocks .slider-blocks-container > ul > li a.external-link {
                        font-size: 16px;
                        line-height: 17px;
                        align-self: flex-end;
                    }

.slider--small {
    margin: 0 -20px 0 -20px;
}

    .slider--small .slider-text-blocks .control {
        flex-basis: 25px;
    }

.slider--height-small .slider-text-blocks {
    height: 100px;
}

.slider--height-med .slider-text-blocks {
    height: 120px;
}

@media screen and (max-width: 481px) {
    .slider-text-blocks {
        height: 160px;
    }
}

a.external-link {
    color: #1F4A77;
    font-weight: 500;
    text-decoration: none;
}

    a.external-link span {
        text-decoration: underline;
    }

    a.external-link::after {
        content: '\f35d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: #f03b63;
        position: relative;
        font-size: 80%;
    }

    a.external-link.goto-page::after {
        content: '\f061';
    }
/*# sourceMappingURL=styles.css.map */
/*Icons*/
.icon {
    /* font-family: FontAwesome; */
    font-size: 24px;
    height: 17px;
    width: 20px;
}

    .icon.icon-actions {
        background: url("../assets/icons/actions.svg");
        background-size: auto;
        background-repeat: no-repeat;
    }

    .icon.icon-budget {
        background: url("../assets/icons/budget.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-business-activity {
        background: url("../assets/icons/business activity.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-card-format {
        background: url("../assets/icons/card format.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-challenges {
        background: url("../assets/icons/challenges.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-check {
        background: url("../assets/icons/check.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-climate-focus {
        background: url("../assets/icons/climate focus.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-cross {
        background: url("../assets/icons/cross.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-deliverables {
        background: url("../assets/icons/deliverables.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-doc-copy {
        background: url("../assets/icons/doc copy.svg");
        background-repeat: no-repeat;
        background-size: initial;
        background-position: center;
    }

    .icon.icon-dropdown-closed {
        background: url("../assets/icons/dropdown closed.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-dropdown-opened {
        background: url("../assets/icons/dropdown opened.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-event {
        background: url("../assets/icons/event.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-filters {
        background: url("../assets/icons/filters.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-flag {
        background: url("../assets/icons/flag.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-functions {
        background: url("../assets/icons/functions.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-industry {
        background: url("../assets/icons/industry.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-left {
        background: url("../assets/icons/left.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-linkedin {
        background: url("../assets/icons/linkedin.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-list-format {
        background: url("../assets/icons/list format.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-location {
        background: url("../assets/icons/location.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-monitoring {
        background: url("../assets/icons/monitoring.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-participants {
        background: url("../assets/icons/participants.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-participation-criteria {
        background: url("../assets/icons/participation criteria.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-population {
        background: url("../assets/icons/population.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-radio-button-checked {
        background: url("../assets/icons/radio button checked.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-radio-button-unchecked {
        background: url("../assets/icons/radio button unchecked.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-recently-joined {
        background: url("../assets/icons/recently joined.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-redirect {
        background: url("../assets/icons/redirect.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-right {
        background: url("../assets/icons/right.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-rocket {
        background: url("../assets/icons/rocket.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-SDG {
        background: url("../assets/icons/SDG.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-search {
        background: url("../assets/icons/search.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-staff {
        background: url("../assets/icons/staff.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-star {
        background: url("../assets/icons/star.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-targets {
        background: url("../assets/icons/targets.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-thematic-areas {
        background: url("../assets/icons/thematic areas.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-trophy {
        background: url("../assets/icons/trophy.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-twitter {
        background: url("../assets/icons/twitter.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .icon.icon-world-region {
        background: url("../assets/icons/world region.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

.ghost-dropdown {
}

    .ghost-dropdown .dropdown-content {
        display: none;
    }

        .ghost-dropdown .dropdown-content.open {
            display: block
        }

    .ghost-dropdown .icon {
        display: inline-block;
        height: 8px;
    }

.tracked-dropdown {
    display: flex;
}

    .tracked-dropdown .dropdown-container {
        background-color: white;
        padding: 0px 8px;
        border: 1px solid lightgray;
        border-radius: 8px;
        margin-left: 12px;
    }

        .tracked-dropdown .dropdown-container:hover {
            padding: 0px 8px;
            border: 1px solid #1f4a77;
        }

.ghost-tracked .dropdown-content.open {
    width: 80px;
    left: 109px;
    border-radius: 3px;
    box-shadow: 2px 0 5px 0 #bababa;
}

    .ghost-tracked .dropdown-content.open ul li {
        text-align: right;
    }

.action-summary-description {
    align-items: baseline;
    justify-content: space-between;
}

.action-summary.total-commitments .action-summary-description p {
    font-weight: 400;
}

.action-summary-description .title-blue-link {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.filter-groups .filter-section {
    margin-bottom: 24px;
}

.filter-groups li {
    list-style: none;
    align-items: center;
}

    .filter-groups li label {
        font-size: 15px;
        display: flex;
        cursor: pointer;
        user-select: none;
    }

        .filter-groups li label:not(.radioItem) {
            align-items: center;
            margin: 5px 0;
        }

    .filter-groups li .flex-justify-between {
        align-items: center;
    }

    .filter-groups li ul li label {
        font-size: 13px;
    }

.filter-header {
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid lightgray;
}

    .filter-header h3 {
        margin: 0;
        font-size: 16px;
    }

    .filter-header .icon-dropdown-opened, .filter-header .icon-dropdown-closed,
    .filter-item .icon-dropdown-opened, .filter-item .icon-dropdown-closed {
        cursor: pointer;
        width: 14px;
    }

.filter-show-all {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.tag-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .tag-filters .cross {
        cursor: pointer;
    }

    .tag-filters .flex {
        border: 1.2px solid #1E4A78;
        border-radius: 16px;
        background-color: white;
        font-size: 12px;
        padding: 4px 8px;
        margin: 10px 16px 0px 0px;
        float: none;
        width: fit-content;
        color: #1E4A78;
    }

.action-summary .main-content {
    flex: 1;
}

.action-summary .details-content {
    flex: 1;
    border-top: 2px solid #ececec
}

    .action-summary .details-content .profile-section .section-title {
        padding: 0 24px;
    }

    .action-summary .details-content .profile-section .section-content {
        padding: 0;
    }

.paticipants-events {
    font-size: 14px;
}

    .paticipants-events .flex:after {
        content: '\00B7';
        padding: 0 5px;
    }

    .paticipants-events .flex:last-child:after {
        content: '';
        padding: 0;
    }


    .paticipants-events .reported {
        color: #f03b63;
        font-style: italic;
        margin-top: 5px;
    }

    .paticipants-events .not-reported {
        color: #7f8385;
        font-style: italic;
    }

.after-dot {
    content: '\00B7';
    padding: 0 5px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.commited-card.splide__slide {
    height: 200px;
    overflow: hidden;
}

    .commited-card.splide__slide img {
        height: 200px;
        margin: -16px;
    }

.image-page .list-column .list-view .coop-actions {
    overflow-y: auto;
}

.progress-more-info {
    cursor: pointer;
    display: inline-block;
    padding: 0 24px;
}

    .progress-more-info.progress-more-info-aligned {
        padding: 0 0;
    }

.progress-more-info-detail {
    cursor: pointer;
    display: inline-block;
    color: #1F4A77;
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    font-style: italic;
}

.blue-link-md {
    color: #1F4A77;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.about-text .blue-link-md {
    font-size: inherit;
}


.dark-link-with-icon {
    text-decoration: none;
    color: #343434;
    padding-right: 16px;
    padding-top: 5px;
    background-image: url(/assets/external-link-symbol-lg.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: top right;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
}

.flex-justify-end {
    display: flex;
    justify-content: flex-end;
}

.reporting_title {
    max-width: 70%;
    margin-top: 10px;
}

.target-completion {
    display: flex;
}

.target-progress-bar {
    height: 12px;
    border: 1px solid #343434;
    border-left: 0;
    overflow: hidden;
}

.target-progress {
    width: 127px;
}

    .target-progress:first-child .target-progress-bar {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border: 1px solid #343434;
    }

    .target-progress:last-child .target-progress-bar {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .target-progress .target-progress-bar.completed {
        background-color: #4c92d7;
        border: 0;
        height: 14px;
    }

    .target-progress .target-progress-text {
        text-align: center;
        font-size: 12px;
        line-height: 14px;
        margin-top: 8px;
    }

.acc-body.targets:not(:last-child) {
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 18px !important;
}

.targets-cell p, .targets-content-2 p, .targets p.targets-head {
    font-weight: 600;
}

.acc-margin .acc-content {
    display: none;
}

.acc-margin.active .acc-content {
    display: block;
}

.links-container a {
    text-decoration: none;
    color: #1F4A77;
    font-size: 14px;
    font-weight: 600;
    padding-right: 16px;
    padding-top: 5px;
    background-image: url(/assets/external-link-symbol-lg.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: top right;
}

.section-content.graph {
    width: 30%;
}

.icon.icon-right-arrow {
    background: url("../assets/right-arr-blue.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 12px;
    width: 12px;
    margin-left: 5px;
    display: inline-block;
}

.grey-link {
    color: #292929
}

.hand-cursor {
    cursor: pointer
}

.pre-wrap {
    white-space: pre-wrap;
}

.social .fab {
    font-size: 24px;
    margin: 5px;
    cursor: pointer;
}

.social {
    cursor: default;
}

    .social .fa-twitter {
        color: rgb(29, 161, 242);
    }

    .social .fa-linkedin {
        color: #0877b2;
    }

    .social .fa-facebook {
        color: #1b78ed;
    }

    .social .fa-instagram {
        color: #ef0e74;
    }

    .social .fa-youtube {
        color: #c62224;
    }

        .social .fa-twitter:hover,
        .social .fa-linkedin:hover,
        .social .fa-facebook:hover,
        .social .fa-instagram:hover,
        .social .fa-youtube:hover {
            opacity: 0.8;
        }
/*Layout Styles*/

.page-header h1 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    color: #1E4A78;
}

.text-orange {
    color: #a76819;
    font-size: 12px;
}

.global-suggestions a {
    display: block;
    margin: 0 -20px;
}

    .global-suggestions a:hover {
        background-color: #F8F9FB;
    }

.page-header p {
    margin: 0;
    font-size: 14px;
}

.page-breadcrumbs {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.coop-init-cards.short.short-list {
    height: 570px;
}

.events-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 32px 32px 0 32px;
    background-color: #F8F9FB;
    flex-wrap: wrap;
}

.single-event-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    max-height: 300px;
    border-radius: 8px;
    margin-right: 40px;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 20%);
    cursor: pointer;
    width: 350px;
    margin-bottom: 32px;
    text-decoration: none;
}

    .single-event-card:hover {
        box-shadow: 5px 5px 5px rgb(0 0 0 / 30%);
    }

    .single-event-card img {
        max-height: 100px;
        object-fit: cover;
    }

    .single-event-card .details {
        padding: 16px;
    }

        .single-event-card .details div {
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 16px;
        }

        .single-event-card .details .details-info, .details-info-initiatives {
            color: #424245;
            display: inline-block;
        }

.event-card-title {
    color: #f03b63;
    text-decoration: underline;
    font-family: "Merriweather";
    font-size: 14px;
}

.map-area {
    display: flex;
    align-items: stretch;
    position: relative;
}

#map-totals-is-open {
    display: none;
}

.map-totals {
    --maptotals-height: 664px;
    --maptotals-content-height: 600px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .map-totals .button::before {
        display: block;
        height: 32px;
        width: 32px;
        border-radius: 50%;
        background: #E83367;
        color: #FFF;
        content: '\f102';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        position: relative;
    }

#map-totals-is-open:checked + .map-totals .button::before {
    content: '\f103';
}

.map-totals .title {
    background: #4472C4;
    color: #FFF;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px 8px 0 0;
    padding: 16px 16px 8px;
    margin-top: -16px;
    cursor: pointer;
}

#map-totals-is-open:checked + .map-totals .title {
    z-index: 3;
}

#map-totals-is-open:checked + .map-totals .button {
    z-index: 4;
}

.map-totals .title .title-open,
.map-totals .title .title-close {
    display: none;
}

#map-totals-is-open:not(:checked) + .map-totals .title .title-open {
    display: block;
}

#map-totals-is-open:checked + .map-totals .title .title-close {
    display: block;
}

.map-totals .area {
    border-radius: 8px 8px 0 0;
    background: #F8F9FB;
    padding: 16px;
    height: var(--maptotals-content-height);
    overflow-y: auto;
}

    .map-totals .area::-webkit-scrollbar {
        width: 6px;
    }

    .map-totals .area::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .map-totals .area::-webkit-scrollbar-thumb {
        border-radius: 4.5px;
        background-color: #D8D8D8;
    }

.map-totals .total-numbers {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
    grid-gap: 4px;
}

.map-totals .area .total-numbers li {
    background: #DBE9F8;
    color: #192F46;
    font-size: 16px;
    line-height: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

    .map-totals .area .total-numbers li:last-child {
        grid-column: span 3;
    }

    .map-totals .area .total-numbers li .description {
        font-weight: bold;
        text-align: center;
    }

.map-totals h2 {
    color: #182F47;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin: 0 0 24px;
}

.map-totals section {
    margin: 32px 0 0;
}

    .map-totals section:first-child {
        margin-top: 0;
    }

.map-totals .news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-rows: repeat(3, 168px);
    grid-template-columns: repeat(auto-fill, var(--carousel-width));
    grid-auto-flow: column;
}

    .map-totals .news-list li {
        display: flex;
        border: 1px solid rgba(31,74,119,0.1);
        border-left: none;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.14);
        border-radius: 4px;
        overflow: hidden;
        box-sizing: border-box;
        margin: 4px;
    }

        .map-totals .news-list li img {
            display: block;
            height: 160px;
        }

        .map-totals .news-list li .details {
            flex: 1;
            background: #FFF;
            padding: 8px;
            font-size: 14px;
            line-height: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .map-totals .news-list li h3 {
            color: #DE3359;
            font-family: Merriweather;
            font-size: 16px;
            line-height: 24px;
            font-weight: bold;
            margin: 0;
            max-height: 48px;
            overflow: hidden;
        }

        .map-totals .news-list li p {
            color: #79797C;
            margin: 0;
            max-height: 60px;
            overflow: hidden;
        }

        .map-totals .news-list li .external-link {
            align-self: flex-end;
        }

.map-totals .partner-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, auto);
}

    .map-totals .partner-list li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .map-totals .partner-list li img {
            display: block;
            width: 160px;
        }

.map-totals .content {
    box-shadow: -2px 13px 20px 0 #b4b4b4;
    transition: 0.5s;
    max-height: 0;
    overflow: hidden;
    z-index: 3;
}

#map-totals-is-open:checked + .map-totals .content {
    border: solid 1px #F8F9FB;
    max-height: var(--maptotals-height);
}

@media screen and (max-width: 481px) {
    .map-totals {
        --maptotals-height: 384px;
        --maptotals-content-height: 320px;
    }

        .map-totals .area {
            padding: 8px;
        }

    .news-carousel .carousel-control {
        flex-basis: 40px !important;
    }

    .map-totals .news-list li img {
        display: none;
    }

    .map-totals .partner-list {
        grid-template-columns: repeat(2, auto);
    }
}

.news-carousel {
    --carousel-width: 520px;
    display: flex;
}

    .news-carousel .carousel-control {
        cursor: pointer;
        flex-basis: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FFF;
        color: #192F46;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        z-index: 1;
    }

        .news-carousel .carousel-control.control-left {
            border-radius: 4px 0 0 4px;
        }

            .news-carousel .carousel-control.control-left::before {
                content: '\f053';
            }

        .news-carousel .carousel-control.control-right {
            border-radius: 0 4px 4px 0;
        }

            .news-carousel .carousel-control.control-right::before {
                content: '\f054';
            }

    .news-carousel .carousel-area {
        width: var(--carousel-width);
        overflow: hidden;
        position: relative;
    }

        .news-carousel .carousel-area ul {
            position: relative;
            transition: 0.5s;
        }

@media screen and (max-width: 481px) {
    .news-carousel {
        --carousel-width: 240px;
    }
}

.footer-links {
    background: #1E4A78;
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    z-index: 5;
}

    .footer-links ul {
        padding: 12px 0;
        list-style: none;
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-end;
        width: auto;
    }

        .footer-links ul li {
            margin-right: 20px;
        }

            .footer-links ul li:last-child {
                margin-right: 0px;
            }

            .footer-links ul li a {
                color: #FFF;
            }

@media screen and (max-width: 481px) {
    .footer-links ul {
        margin: 0 16px;
        flex-direction: column;
    }
}

#filter-control-panel {
    display: none;
}

    #filter-control-panel + label {
        display: none;
        padding: 10px 16px;
        cursor: pointer;
        border-radius: 5px;
        background-color: #4B92DB;
        color: #FFF;
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 3;
    }

        #filter-control-panel + label::before {
            content: '\f0b0';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 4px;
        }

    #filter-control-panel:checked + label .text-open {
        display: none;
    }

    #filter-control-panel:not(:checked) + label .text-open {
        display: inline;
    }

    #filter-control-panel:checked + label .text-close {
        display: inline;
    }

    #filter-control-panel:not(:checked) + label .text-close {
        display: none;
    }

.map-filters {
    flex: 0 0 240px;
    padding: 24px;
    z-index: 2;
}

    .map-filters .filter-section details.dropdown-details {
        padding-right: 24px;
    }

        .map-filters .filter-section details.dropdown-details summary {
            margin-right: -24px;
        }

@media screen and (max-width: 769px) {
    .map-filters {
        flex-basis: 192px;
        padding: 16px;
    }

        .map-filters .filter-section details.dropdown-details {
            padding-right: 0;
        }

            .map-filters .filter-section details.dropdown-details summary {
                margin-right: 0;
            }

    .map-area .map-details .details {
        padding: 16px 16px 12px;
    }
}

@media screen and (max-width: 481px) {
    .map-area {
        position: relative;
    }

    .map-filters {
        position: absolute;
        background: #F8F9FB;
        box-shadow: -2px 13px 20px 0 #B4B4B4;
        padding-top: 72px;
        transition: 0.5s;
    }

    .map-area .map-details .details {
        padding-top: 72px;
    }

    #filter-control-panel + label {
        display: block;
    }

    #filter-control-panel:checked ~ .map-filters {
        left: 0;
    }

    #filter-control-panel:not(:checked) ~ .map-filters {
        left: -100%;
    }
}

.section-participants {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 28px;
    padding: 16px 16px;
    background-color: #EDF4FB;
    border-radius: 16px;
    overflow: auto;
    transform: rotate( 180deg );
    margin: 0 24px;
}

.participants-card-simple {
    flex: 1;
    margin-left: 32px;
    background-color: #ffffff;
    border-radius: 16px;
    border: .5px solid #1E4A78;
    max-width: 200px;
    min-width: 200px;
    transform: rotate( 180deg );
}

.participants-card-simple-title {
    padding: 8px 16px;
    border-bottom: 1px solid #1e4a78;
    color: black;
    font-weight: 600;
    font-family: 'Merriweather';
    font-size: 13px;
}

.participants-card-simple-content {
    padding: 12px 16px 26px;
    font-size: 14px;
}

    .participants-card-simple-content i {
        color: #1e4a78;
    }

.event-page-header {
    display: flex;
    flex-direction: row;
}

    .event-page-header .event-logo {
        margin-right: 60px;
    }

    .event-page-header .event-info {
        display: flex;
        flex-direction: column;
    }

        .event-page-header .event-info .event-title {
            font-size: 35px;
            font-weight: 600;
            color: #1e4a78;
        }

        .event-page-header .event-info .event-data {
            margin: 8px 0px;
            font-size: 14px;
        }

        .event-page-header .event-info a {
            color: #1e4a78;
            margin-top: 18px;
            cursor: pointer;
            text-decoration: underline;
            font-size: 14px;
            font-weight: 600;
        }

.event-page-details {
    display: flex;
    flex-direction: row;
    margin-top: 32px;
}

    .event-page-details p {
        font-weight: 600;
        color: #182F47;
        margin-top: 0;
    }

    .event-page-details .event-page-about {
        width: 60%;
        margin-right: 60px;
    }

        .event-page-details .event-page-about .about-text {
            margin-bottom: 32px;
        }

            .event-page-details .event-page-about .about-text p {
                font-weight: 400;
                text-align: justify;
            }


            .event-page-details .event-page-about .about-text ul {
                list-style: decimal;
                list-style-position: inside;
                font-weight: 400;
                /*text-align: justify;*/
                color: #182F47;
            }

                .event-page-details .event-page-about .about-text ul li {
                    margin-bottom: 16px;
                }

        .event-page-details .event-page-about .about-progress {
            padding: 18px;
            box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 10%);
        }

            .event-page-details .event-page-about .about-progress span {
                font-weight: 600;
            }

            .event-page-details .event-page-about .about-progress progress {
                width: 100%;
                margin-top: 8px;
            }


    .event-page-details .event-page-reports {
        width: 40%;
        max-height: 350px;
        overflow: auto;
        padding: 0 12px 0 0;
    }

        .event-page-details .event-page-reports.cop30 {
            max-height: 600px;
        }

.event-page-reports::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.event-page-reports::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background-color: lightgray;
    height: 10px;
}

.event-page-reports::-webkit-scrollbar-track {
    background-color: #ffffff;
    height: 10px;
}

.event-page-details .event-page-reports .event-report-card {
    background-color: white;
    box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 10%);
    display: flex;
    border-radius: 8px;
    flex-direction: row;
    margin-bottom: 16px;
}

    .event-page-details .event-page-reports .event-report-card:hover {
        box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 15%);
    }

    .event-page-details .event-page-reports .event-report-card .card-icon {
        padding: 12px;
        background-color: #EDF4FB;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 12px 0px 0px 12px;
        width: 18%;
    }

        .event-page-details .event-page-reports .event-report-card .card-icon span {
            font-size: 12px;
            font-weight: 600;
            color: #1e4a78;
            margin-top: 8px;
        }

        .event-page-details .event-page-reports .event-report-card .card-icon img {
            width: 65% !important;
        }

            .event-page-details .event-page-reports .event-report-card .card-icon img.w70percents {
                width: 70% !important;
            }

    .event-page-details .event-page-reports .event-report-card .card-description {
        padding: 12px;
        display: flex;
        flex-direction: column;
        font-size: 14px;
        width: 100%;
    }

        .event-page-details .event-page-reports .event-report-card .card-description a {
            text-decoration: none;
            color: #424245;
        }

        .event-page-details .event-page-reports .event-report-card .card-description .download {
            display: flex;
            justify-content: flex-end;
            text-decoration: underline;
            font-size: 14px;
            font-weight: 600;
            margin-top: 12px;
            color: #1e4a78;
        }

.download span {
    font-size: 15px;
    color: red;
    vertical-align: middle;
}

.event-page-tabs .list-column {
    width: 100%;
    background-color: #F8F9FB;
}

/*Event Tabs*/

.tab {
    overflow: hidden;
    background-color: white;
    padding: 0px 48px;
}

.tab-separator {
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.tab button {
    background-color: white;
    font-weight: 600;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px;
    transition: 0.1s;
    font-size: 16px;
    color: #182F47;
    margin-right: 32px;
}

    .tab button:hover {
        border-bottom: 4px solid #4B92DB;
    }

.tab .tablinks.active {
    border-bottom: 4px solid #4B92DB;
}

.tabcontent {
    padding: 0px 48px;
}

.engaged-actors {
    display: flex;
    flex-direction: column;
}

    .engaged-actors .title {
        color: #1F4A77;
        font-size: 22px;
        margin: 0;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 20px;
    }

.engaged-actors-card-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.actors-card-simple {
    flex: 1;
    margin-right: 32px;
    background-color: #ffffff;
    border-radius: 16px;
    border: .5px solid #1E4A78;
    max-width: 170px;
    min-width: 170px;
}

.actors-card-simple-selected {
    flex: 1;
    margin-right: 32px;
    background-color: #EDF4FB;
    border-radius: 16px;
    border: .5px solid #1E4A78;
    max-width: 170px;
    min-width: 170px;
}

.actors-card-simple-title {
    padding: 8px 12px;
    border-bottom: 1px solid #1e4a78;
    color: black;
    font-weight: 600;
    font-family: 'Merriweather';
    font-size: 13px;
}

    .actors-card-simple-title label {
        display: flex;
        align-items: center;
    }

        .actors-card-simple-title label span {
            margin-right: 3px;
        }

.actors-card-simple-content {
    padding: 12px 16px 12px;
    font-size: 14px;
}

    .actors-card-simple-content i {
        color: #1F4A77;
    }


.actors-card-simple-dropdown {
    padding: 10px 12px;
}

.actors-content i {
    color: #1e4a78;
}

.image-page {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Country */

.profile-header {
    margin: 36px 0 32px;
}

    .profile-header .title {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .profile-header .title img {
            height: 58px;
        }

        .profile-header .title h1 {
            color: #1F4A77;
            font-size: 36px;
            line-height: 52px;
            font-weight: bold;
            margin: 0;
        }

    .profile-header .details {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

        .profile-header .details .region {
            color: #182F47;
            font-size: 24px;
            line-height: 36px;
            font-weight: bold;
        }

        .profile-header .details .learn-more {
            color: #1F4A77;
            font-size: 16px;
            line-height: 19px;
            font-weight: 500;
            text-decoration: none;
        }

            .profile-header .details .learn-more .link {
                text-decoration: underline;
            }

@media screen and (max-width: 769px) {
    .profile-header .details {
        flex-direction: column;
        align-items: flex-start;
    }
}

.fas.link-arrow {
    color: #E83367;
    margin-left: 4px;
}

ul.colored-content-boxes {
    display: grid;
    grid-gap: 40px;
    grid-template: auto 1fr / 5fr 7fr;
    flex-wrap: wrap;
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

    ul.colored-content-boxes > li {
        --box-title-background: #4472C4;
        --box-content-background: #F8F9FB;
        --box-color-primary: #4B92DB;
    }

        ul.colored-content-boxes > li.featured {
            --box-title-background: #E83367;
            --box-content-background: #FFF8FA;
            --box-color-primary: #F03E63;
            --box-color-light: #FDEEF1;
            --box-color-dark: #DE3359;
            grid-row-start: 1;
            grid-row-end: span 2;
        }

        ul.colored-content-boxes > li > .title {
            background: var(--box-title-background);
            padding: 7px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px 8px 0 0;
        }

            ul.colored-content-boxes > li > .title h2 {
                color: #FFF;
                margin: 0;
                font-size: 24px;
                line-height: 36px;
                font-weight: bold;
                text-align: center;
            }

        ul.colored-content-boxes > li > .content {
            background: var(--box-content-background);
            padding: 34px 45px 45px;
            border-radius: 7px;
        }

.content-actor .content-company-card .card-content-simple {
    display: flex;
    flex-direction: column;
    padding: 25px 125px 25px 32px;
}

    .content-actor .content-company-card .card-content-simple .card-content-title {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 900;
        line-height: 18px;
        margin-bottom: 12px;
    }

    .content-actor .content-company-card .card-content-simple .card-content-text {
        color: #FFFFFF;
        font-size: 16px;
        line-height: 16px;
    }

ul.colored-content-boxes > li > .title + .content {
    border-radius: 0 0 7px 7px;
}

ul.colored-content-boxes > li > .content h3 {
    color: #182F47;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    margin: 34px 0 0;
}

    ul.colored-content-boxes > li > .content h3:first-child {
        margin-top: 0;
    }

ul.colored-content-boxes > li > .content p {
    color: #424245;
    font-size: 16px;
    line-height: 24px;
    margin: 18px 0 24px;
}

ul.colored-content-boxes > li > .content .filter-line {
    margin-top: 39px;
}

ul.colored-content-boxes > li > .content .standalone-graph {
    margin-top: 40px;
}

@media screen and (max-width: 769px) {
    ul.colored-content-boxes {
        display: flex;
        flex-direction: column;
    }

        ul.colored-content-boxes > li > .content {
            padding: 30px;
        }
}

.commitment-legend {
    display: grid;
    grid-template: repeat(4, 1fr) / repeat(3, 1fr);
    grid-auto-flow: column;
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
}

    .commitment-legend span:first-child {
        grid-row-start: 2;
    }

    .commitment-legend .term::before {
        content: '';
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 8px;
        background: var(--main-color);
    }

    .commitment-legend .total {
        text-align: center;
    }

    .commitment-legend .column-title {
        font-weight: bold;
        text-align: center;
    }

        .commitment-legend .column-title.progress {
            color: var(--main-color);
        }

            .commitment-legend .column-title.progress::before {
                content: '\f005';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                margin-right: 4px;
            }

    .commitment-legend .long-term {
        --main-color: #999999;
    }

    .commitment-legend .medium-term {
        --main-color: #2D326C;
    }

    .commitment-legend .short-term {
        --main-color: #4B92DB;
    }

    .commitment-legend .progress {
        --main-color: #DE3359;
    }

.chart-legend-flex {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .chart-legend-flex canvas {
        width: 320px !important;
        height: 320px !important;
    }

@media screen and (max-width: 769px) {
    .chart-legend-flex {
        flex-direction: column;
    }
}

.legend-actor::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 4px 0;
    border-radius: 50%;
    background: var(--main-color);
}

.legend-actor.actor-companies {
    --main-color: #D8B0B3;
}

.legend-actor.actor-investors {
    --main-color: #F76977;
}

.legend-actor.actor-organizations {
    --main-color: #F98667;
}

.legend-actor.actor-regions {
    --main-color: #AE916D;
}

.legend-actor.actor-cities {
    --main-color: #718DAC;
}

.chart-legend {
    list-style: none;
    padding: 0;
}

    .chart-legend.aside-legend {
        font-size: 16px;
        line-height: 20px;
        width: 200px;
    }

        .chart-legend.aside-legend li {
            border-top: solid 1px #CDCDCD;
            display: flex;
            gap: 8px;
            padding: 12px 0;
        }

            .chart-legend.aside-legend li:first-child {
                border-top: none;
            }

            .chart-legend.aside-legend li div {
                flex: 1;
                display: flex;
                justify-content: space-between;
            }

                .chart-legend.aside-legend li div span {
                    font-weight: bold;
                }

    .chart-legend.top-legend {
        display: flex;
        font-size: 14px;
        line-height: 16px;
        justify-content: space-between;
        margin-bottom: 16px;
    }

        .chart-legend.top-legend .legend-actor::before {
            margin: 2px 0;
        }

        .chart-legend.top-legend li {
            display: flex;
            gap: 4px;
        }

        .chart-legend.top-legend span {
            font-weight: bold;
        }

@media screen and (max-width: 769px) {
    .chart-legend.top-legend {
        flex-direction: column;
        gap: 8px;
    }
}

ul.timeline-list {
    margin: 0;
    padding: 0 80px;
    list-style: none;
}

    ul.timeline-list > li {
        margin-top: 15px;
        padding-left: 36px;
        font-size: 16px;
        position: relative;
    }

        ul.timeline-list > li:first-child {
            margin-top: 0;
        }

        ul.timeline-list > li::before {
            content: '';
            position: absolute;
            left: 0;
            border: solid 3px var(--box-color-primary);
            border-radius: 50%;
            width: 14px;
            height: 14px;
        }

        ul.timeline-list > li::after {
            content: '';
            position: absolute;
            left: 8.5px;
            top: 20px;
            bottom: -15px;
            width: 3px;
            background: var(--box-color-primary);
        }

        ul.timeline-list > li:last-child::after {
            content: none;
        }

        ul.timeline-list > li > .title {
            color: #3A3A3A;
            line-height: 22px;
            font-weight: bold;
        }

        ul.timeline-list > li > .date {
            color: #3A3A3A;
            line-height: 28px;
            margin-top: 4px;
            display: block;
        }

@media screen and (max-width: 769px) {
    ul.timeline-list {
        padding: 0;
    }
}

ul.timeline-cards {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.timeline-cards > li {
        margin-top: 20px;
    }

        ul.timeline-cards > li:first-child {
            margin-top: 0;
        }

        ul.timeline-cards > li a {
            display: block;
            padding: 20px;
            border: solid 1px var(--box-color-dark);
            background: var(--box-color-light);
            border-radius: 10px;
            text-decoration: none;
        }

            ul.timeline-cards > li a .title {
                height: 40px;
                overflow: hidden;
            }

                ul.timeline-cards > li a .title .text {
                    color: #1F4A77;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 19px;
                    text-decoration: underline;
                }

            ul.timeline-cards > li a .date {
                display: block;
                margin-top: 18px;
                color: #1A1A1C;
                font-size: 14px;
                line-height: 16px;
            }

.filter-field .title {
    color: #424245;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
    display: block;
}

.filter-field select {
    color: #424245;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    width: 215px;
    background-color: transparent;
    border: none;
    border-bottom: solid 1px #676769;
    padding: 4px 0;
}

.actors-card-simple-dropdown .filter-field select {
    width: 145px;
}

.filter-field .dropdown-select {
    color: #424245;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    width: 215px;
}

.tabs-navigation .navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 12px;
    padding: 0;
}

    .tabs-navigation .navigation ul li {
        padding: 0 6px 6px 6px;
        border-bottom: solid 4px transparent;
        cursor: pointer;
    }

        .tabs-navigation .navigation ul li.active {
            border-color: var(--box-color-primary);
        }

@media screen and (max-width: 481px) {
    .tabs-navigation .navigation ul {
        flex-direction: column;
    }

    .tabs-navigation .tabs {
        margin: 30px 0 0 !important;
    }

    .tabs-navigation .navigation ul li {
        padding-bottom: 0;
    }
}

.tabs-navigation .tabs {
    margin: 60px 0 0;
    display: block;
}

    .tabs-navigation .tabs > ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .tabs-navigation .tabs > ul > li {
            display: none;
        }

            .tabs-navigation .tabs > ul > li.active {
                display: block;
            }

.large-tabs-navigation {
    --box-title-background: #4472C4;
    --box-content-background: #F8F9FB;
    --box-color-primary: #4B92DB;
    margin-top: 57px;
}

    .large-tabs-navigation .featured {
        --box-title-background: #E83367;
        --box-content-background: #FFF8FA;
        --box-color-primary: #F03E63;
    }

    .large-tabs-navigation .navigation > ul {
        gap: 3px;
    }

        .large-tabs-navigation .navigation > ul > li {
            flex: 1;
            padding: 0;
            border-bottom: none;
            border: solid 3px var(--box-title-background);
            border-radius: 8px 8px 0 0;
            padding: 9.5px 0;
        }

            .large-tabs-navigation .navigation > ul > li.active {
                background: var(--box-title-background);
                border-color: var(--box-title-background);
            }

                .large-tabs-navigation .navigation > ul > li.active h2 {
                    color: #FFF;
                }

            .large-tabs-navigation .navigation > ul > li h2 {
                color: #182F47;
                font-size: 18px;
                line-height: 27px;
                font-weight: bold;
                text-align: center;
                margin: 0;
            }

    .large-tabs-navigation .tabs {
        margin-top: 0;
    }

        .large-tabs-navigation .tabs > ul > li {
            padding: 40px;
            background: var(--box-content-background);
            border-radius: 0 0 7px 7px;
        }

@media screen and (max-width: 769px) {
    .large-tabs-navigation .navigation > ul > li h2 {
        font-size: 14px;
    }
}

@media screen and (max-width: 481px) {
    .large-tabs-navigation .tabs {
        margin-top: 0 !important;
    }

        .large-tabs-navigation .tabs > ul > li {
            padding: 20px;
        }

    .large-tabs-navigation .navigation > ul > li h2 {
        font-size: 16px;
    }
}

.dynamic-chart {
    max-width: 100%;
}

.filter-line {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

    .filter-line:first-child {
        margin-top: 0;
    }

.data-list-filter .search-box {
    display: flex;
    flex-basis: 470px
}

    .data-list-filter .search-box input {
        flex: 1;
        font-family: Roboto;
        font-size: 16px;
        line-height: 19px;
        padding: 11px 20px;
        border: solid 1px #DADADA;
        border-radius: 8px 0 0 8px;
        min-width: 0;
    }

    .data-list-filter .search-box button {
        background: #4B92DB;
        border: none;
        border-radius: 0 5px 5px 0;
        color: #FFF;
        font-family: Roboto;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
        text-align: center;
        padding: 0 20px;
        cursor: pointer;
    }

.data-list-filter .filter-sorting {
    display: flex;
    gap: 30px;
}

    .data-list-filter .filter-sorting select {
        font-family: Roboto;
        font-size: 16px;
        line-height: 19px;
        background: none;
        border: none;
        cursor: pointer;
    }

@media screen and (max-width: 769px) {
    .data-list-filter .filter-line {
        flex-direction: column;
        gap: 20px;
    }

    .data-list-filter .search-box {
        flex: 1;
    }

        .data-list-filter .search-box input {
            padding: 6px 2px 6px 10px;
        }

        .data-list-filter .search-box button {
            padding: 0 6px;
        }

    .data-list-filter .filter-sorting {
        flex-direction: column;
        gap: 15px;
    }

    .filter-criteria {
        flex-direction: column;
        gap: 20px;
    }
}

.filter-criteria {
    display: flex;
    gap: 20px;
}

    .filter-criteria > ul {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
    }

        .filter-criteria > ul label {
            color: #1F4A77;
            font-size: 14px;
            line-height: 20px;
            border: solid 1px;
            padding: 1.5px 12px;
            cursor: pointer;
            border-radius: 12.5px;
            background: #FFF;
            display: flex;
            gap: 4px;
            align-items: center;
        }

            .filter-criteria > ul label:after {
                content: '\f00d';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
            }

        .filter-criteria > ul > li.engagement label:before {
            content: var(--engagement-icon);
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 8px;
            line-height: 16px;
            height: 16px;
            width: 16px;
            border-radius: 8px;
            display: inline-block;
            text-align: center;
            background-color: var(--engagement-color-primary);
            color: #FFF;
        }

.clear-filters {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    gap: 4px;
}

    .clear-filters:before {
        color: #DE3359;
        content: '\f00d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        display: inline-block;
    }

    .clear-filters span {
        color: #1F4A77;
        text-decoration: underline;
    }

.engagement {
    --engagement-color-primary: #777;
    --engagement-color-dark: #333;
    --engagement-color-light: #CCC;
    --engagement-icon: '\f007';
}

    .engagement.engagement-initiative {
        --engagement-color-primary: #4169e2;
        --engagement-color-dark: #3B5FCC;
        --engagement-color-light: #E3E9FB;
        --engagement-icon: '\f500';
    }

    .engagement.engagement-commitments {
        --engagement-color-primary: #00949f;
        --engagement-color-dark: #006B73;
        --engagement-color-light: #D9EFF1;
        --engagement-icon: '\f00c';
    }

    .engagement.engagement-climate {
        --engagement-color-primary: #7c487c;
        --engagement-color-dark: #734373;
        --engagement-color-light: #E5CEE5;
        --engagement-icon: '\f017';
    }

    .engagement.engagement-undertaken {
        --engagement-color-primary: #be6200;
        --engagement-color-dark: #994F00;
        --engagement-color-light: #F2E0CC;
        --engagement-icon: '\f04b';
    }

.data-list-results {
    display: flex;
    gap: 14px;
    flex-direction: column;
    align-items: end;
    margin-top: 10px;
}

    .data-list-results:first-child {
        margin-top: 0;
    }

    .data-list-results .data-list-results-expand {
        color: #1F4A77;
        font-size: 16px;
        line-height: 19px;
        font-weight: 500;
        text-decoration: underline;
        cursor: pointer;
    }

ul.profile-list-items {
    list-style: none;
    padding: 0;
    width: 100%;
}

    ul.profile-list-items > li {
        margin-top: 26px;
        color: #424245;
    }

        ul.profile-list-items > li:first-child {
            margin-top: 0;
        }

        ul.profile-list-items > li details {
            border: 1px solid rgba(31,74,119,0.1);
            box-shadow: 0 2px 5px rgba(0,0,0,0.14);
            border-radius: 10px;
            background-color: #FFF;
            padding: 24px;
        }

            ul.profile-list-items > li details summary {
                cursor: pointer;
                position: relative;
            }

                ul.profile-list-items > li details summary::marker,
                ul.profile-list-items > li details summary::-webkit-details-marker {
                    content: none;
                    display: none;
                }

                ul.profile-list-items > li details summary::before {
                    content: '\f078';
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    position: absolute;
                    right: 0;
                    top: 0;
                }

            ul.profile-list-items > li details[open] summary::before {
                content: '\f077';
            }

            ul.profile-list-items > li details[open] summary {
                padding-bottom: 27px;
            }

                ul.profile-list-items > li details[open] summary::after {
                    content: '';
                    display: block;
                    position: absolute;
                    bottom: 0;
                    left: -24px;
                    ;
                    right: -24px;
                    height: 1px;
                    background: rgba(31,74,119,0.15);
                }

        ul.profile-list-items > li summary h3 {
            color: #DE3359;
            font-family: Merriweather;
            font-size: 16px;
            line-height: 30px;
            font-weight: bold;
            text-decoration: underline;
            margin: 0;
        }

        ul.profile-list-items > li summary .type {
            color: #727679;
            font-size: 14px;
            line-height: 20px;
            font-weight: 500;
            border: solid 1px;
            padding: 1px 15px;
            border-radius: 12px;
        }

        ul.profile-list-items > li summary .title {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        ul.profile-list-items > li summary .excerpt {
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            margin-top: 12px;
        }

        ul.profile-list-items > li summary ul.details {
            font-size: 14px;
            line-height: 22px;
            display: flex;
            gap: 12px;
            list-style: none;
            padding: 0;
            margin-top: 12px;
        }

            ul.profile-list-items > li summary ul.details li.featured {
                color: #DE3359;
            }

        ul.profile-list-items > li summary .description {
            font-size: 14px;
            line-height: 22px;
            margin: 20px 0 0;
        }

        ul.profile-list-items > li summary .about {
            margin-top: 24px;
            display: flex;
            align-items: center;
        }

            ul.profile-list-items > li summary .about ul.details {
                margin-top: 0;
            }

            ul.profile-list-items > li summary .about .has-border {
                margin-left: 16px;
                padding-left: 16px;
                border-left: solid 1px #C1C1C1;
            }

        ul.profile-list-items > li summary ul.engagements {
            display: flex;
            gap: 14px;
            list-style: none;
            padding: 0;
        }

            ul.profile-list-items > li summary ul.engagements .icon:before,
            .actor-list-item ul.engagements .icon:before,
            .simple-item .engagement .icon:before {
                content: var(--engagement-icon);
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                display: block;
                text-align: center;
                width: 24px;
                height: 24px;
                line-height: 24px;
                font-size: 12px;
                border-radius: 50%;
                color: #FFF;
                background: var(--engagement-color-primary);
            }

        ul.profile-list-items > li .coop-init-details {
            margin-top: 24px;
        }

@media screen and (max-width: 481px) {
    ul.profile-list-items > li details {
        padding: 12px;
    }

    ul.profile-list-items > li summary .title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    ul.profile-list-items > li details[open] summary::after {
        left: -12px;
        right: -24px;
    }
}

@media screen and (max-width: 769px) {
    ul.profile-list-items > li summary .about .has-border {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

.actor-list-item ul.engagements .icon:before,
.simple-item .engagement {
    margin: 0 8px 0 0 !important;
}

.actor-list-item .engagement {
    margin: 0 9px;
}

@media screen and (max-width: 769px) {
    ul .profile-list-items > li summary ul.details {
        flex-direction: column;
        gap: 6px;
    }

    ul.profile-list-items > li summary .about {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 12px;
    }

    ul.profile-list-items > li summary ul.engagements {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

.engagement-details {
    padding: 0;
    list-style: none;
    margin: 0 -24px -24px;
}

    .engagement-details > li {
        padding: 24px;
    }

        .engagement-details > li:nth-child(2n) {
            background: rgba(248,249,251,0.75);
        }

        .engagement-details > li h4 {
            color: #424245;
            font-size: 16px;
            line-height: 24px;
            font-weight: bold;
            font-family: Roboto;
            margin: 0;
            display: flex;
            gap: 8px;
        }

            .engagement-details > li h4:before {
                content: var(--engagement-icon);
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                display: inline-block;
                text-align: center;
                width: 24px;
                height: 24px;
                line-height: 24px;
                font-size: 12px;
                border-radius: 50%;
                color: #FFF;
                background: var(--engagement-color-primary);
            }

            .engagement-details > li h4 span {
                flex: 1;
            }

        .engagement-details > li .engagements {
            margin-top: 10px;
            padding: 0;
            list-style: none;
        }

            .engagement-details > li .engagements > li {
                margin-top: 18px;
                padding-top: 18px;
                border-top: 1px solid rgba(31,74,119,0.15);
                display: flex;
                gap: 12px;
                padding-left: 32px;
            }

                .engagement-details > li .engagements > li:first-child {
                    margin-top: 0;
                    padding-top: 0;
                    border-top: none;
                }

            .engagement-details > li .engagements .content {
                flex: 1;
            }

            .engagement-details > li .engagements h5 {
                font-size: 14px;
                line-height: 20px;
                font-weight: 500;
                font-family: Roboto;
                padding: 2px 16px;
                margin: 0;
                border-radius: 12px;
                display: inline-block;
                background: var(--engagement-color-light);
                color: var(--engagement-color-dark);
            }

            .engagement-details > li .engagements h6 {
                color: #424245;
                font-size: 14px;
                line-height: 22px;
                font-weight: 500;
                font-family: Roboto;
                margin: 6px 0 0;
            }

            .engagement-details > li .engagements a h6 {
                color: #DE3359;
            }

            .engagement-details > li .engagements p {
                color: #79797C;
                font-size: 14px;
                line-height: 20px;
                font-family: Roboto;
                margin: 6px 0 0;
            }

@media screen and (max-width: 481px) {
    .engagement-details {
        margin: 0 -12px -12px;
    }

        .engagement-details > li {
            padding: 12px;
        }

            .engagement-details > li h4 {
                flex-direction: column;
            }

            .engagement-details > li .engagements > li {
                flex-direction: column;
                padding-left: 0;
            }
}

.status {
    --status-color-primary: #777;
    --status-icon: '\f007';
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .status.status-progress {
        --status-color-primary: #DE3359;
        --status-icon: '\f005';
    }

    .status.status-announced {
        --status-color-primary: #E78F00;
        --status-icon: '\f0f3';
    }

    .status .status-title {
        font-size: 14px;
        line-height: 22px;
        font-weight: bold;
        display: flex;
        gap: 6px;
        color: var(--status-color-primary);
    }

        .status .status-title:before {
            content: var(--status-icon);
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
        }

    .status .progress {
        display: flex;
        gap: 6px;
        align-items: center;
    }

        .status .progress .progress-bar {
            background: #D8D8D8;
            flex: 1;
            display: block;
            height: 9px;
            border-radius: 4.5px;
        }

            .status .progress .progress-bar .progress {
                background: var(--status-color-primary);
                display: block;
                height: 100%;
                border-radius: 4.5px;
            }

        .status .progress .percentage {
            color: #727679;
            font-size: 14px;
            line-height: 16px;
            font-weight: 500;
        }

.with-tooltip {
    position: relative;
}

    .with-tooltip .tooltip {
        position: absolute;
        display: none;
        background: #292929;
        color: #FFF;
        font-size: 14px;
        line-height: 17px;
        padding: 7px 12px;
        white-space: nowrap;
        margin-top: 7px;
        right: 7px;
        z-index: 500;
    }

        .with-tooltip .tooltip:before {
            content: '';
            display: block;
            height: 0;
            width: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid #292929;
            top: -5px;
            right: 9px;
            position: absolute;
            z-index: 1000;
        }

    .with-tooltip .tooltip-right {
        position: absolute;
        display: none;
        background: #292929;
        color: #FFF;
        font-size: 14px;
        line-height: 17px;
        padding: 7px 12px;
        white-space: nowrap;
        margin-top: 7px;
        left: -2px;
        z-index: 500;
    }

        .with-tooltip .tooltip-right:before {
            content: '';
            display: block;
            height: 0;
            width: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid #292929;
            top: -5px;
            left: 9px;
            position: absolute;
            z-index: 1000;
        }

    .with-tooltip:hover .tooltip {
        display: block;
    }

    .with-tooltip:hover .tooltip-right {
        display: block;
    }

.no-decoration {
    text-decoration: none !important;
}

.coop-init-cards.short {
    overflow-y: auto;
    max-height: 440px;
}

    .coop-init-cards.short.short-list {
        max-height: 570px;
    }

.map-filters .filter-section {
    margin-top: 40px;
}

    .map-filters .filter-section:first-child {
        margin-top: 0;
    }

    .map-filters .filter-section h3 {
        color: #182F47;
        font-size: 18px;
        line-height: 27px;
        font-weight: bold;
        margin: 0;
    }

    .map-filters .filter-section p {
        color: #424245;
        font-size: 14px;
        line-height: 22px;
        margin: 8px 0 0;
    }

        .map-filters .filter-section p:first-child {
            margin-top: 0;
        }

        .map-filters .filter-section p + a.goto-page {
            margin-top: 4px;
            font-size: 16px;
            line-height: 17px;
            display: block;
        }

details.dropdown-details > summary {
    padding-bottom: 1px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    gap: 4px;
    cursor: pointer;
}

    details.dropdown-details > summary::marker,
    details.dropdown-details > summary::-webkit-details-marker {
        content: none;
        display: none;
    }

    details.dropdown-details > summary::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    }

.actor-filter details.dropdown-details > summary::after {
    font-size: 12px;
    top: 8px;
    right: 4px;
    position: relative;
}

details.dropdown-details[open] > summary::after {
    content: '\f077';
}

details.dropdown-details summary > *:first-child {
    flex: 1;
}

.actor-filters {
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

    .actor-filters li {
        margin-top: 12px;
    }

        .actor-filters li:first-child {
            margin-top: 0;
        }

        .actor-filters li input {
            display: none;
        }

        .actor-filters li label {
            color: #1F4A77;
            font-size: 14px;
            line-height: 22px;
            border: 1px solid;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 16px;
            overflow: hidden;
        }

        .actor-filters li input:checked + label {
            background: #E4EFFA;
        }

        .actor-filters li label .text {
            color: #424245;
        }

        .actor-filters li label .number {
            font-weight: bold;
        }

        .actor-filters li label .actor-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            background-color: #FFF;
            height: 29px;
            width: 48px;
            border-right: solid 1px;
        }

.dropdown-select {
    margin-top: 27px;
}

    summary + .dropdown-select,
    .dropdown-select:first-child {
        margin-top: 19px;
    }

    .dropdown-select h4 {
        color: #424245;
        font-size: 14px;
        line-height: 22px;
        font-weight: bold;
        font-family: Roboto;
        margin: 0;
    }

    .dropdown-select > ul li {
        list-style-type: none;
        margin-bottom: 5px;
    }

    .dropdown-select details {
        margin-top: 7px;
        position: relative;
    }

        .dropdown-select details > summary {
            padding-bottom: 4px;
            border-color: #676769;
        }

            .dropdown-select details > summary span {
                color: rgba(66,66,69,0.7);
                font-size: 16px;
                line-height: 24px;
            }

        .dropdown-select details > ul {
            position: absolute;
            left: 0;
            right: 0;
            padding: 0;
            margin: 0;
            border: 1px solid #DEDEDE;
            border-top: solid 2px #1F4A77;
            border-radius: 0 0 10px 10px;
            background-color: #FFF;
            box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
            height: 156px;
            bottom: -159px;
            overflow-y: auto;
        }

            .dropdown-select details > ul.actors-initiatives {
                height: 285px;
            }

    .dropdown-select.up-dropdown details > ul {
        bottom: 100%;
        top: auto !important;
        border-radius: 10px 10px 0 0;
        border-top: none;
        border-bottom: solid 2px #1F4A77;
    }

    .dropdown-select details > input[type="search"] + ul {
        bottom: -189px;
    }

    .dropdown-select.up-dropdown details > input[type="search"] + ul {
        bottom: 59px;
    }

    .dropdown-select details > input[type="search"] {
        position: absolute;
        z-index: 10;
        width: 100%;
        border-top: solid 2px #1F4A77;
        border-bottom: none;
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        line-height: 20px;
        padding: 4px;
        bottom: -30px;
    }

    .dropdown-select.up-dropdown details > input[type="search"] {
        border-top: none;
        border-bottom: solid 2px #1F4A77;
        bottom: 29px;
    }

    .dropdown-select details[open] > ul {
        z-index: 6;
    }

    .dropdown-select details > ul li {
        position: relative;
    }

        .dropdown-select details > ul li input {
            display: none;
        }

        .dropdown-select details > ul li label {
            color: #424245;
            line-height: 24px;
            font-size: 16px;
            padding: 12px;
            display: flex;
            gap: 8px;
            background: #FFF;
            cursor: pointer;
        }

            .dropdown-select details > ul li label:hover {
                background: #EDF4FB;
            }

            .dropdown-select details > ul li label::before {
                content: '\f0c8';
                font-family: 'Font Awesome 5 Free';
                font-weight: 400;
                color: #424245;
                line-height: 24px;
            }

        .dropdown-select details > ul li input:checked + label::before {
            content: '\f14a';
            font-weight: 900;
            color: #4B92DB;
        }

        .dropdown-select details > ul li .tooltip {
            position: absolute;
            left: 4px;
            right: 4px;
            top: 100%;
            display: none;
            background: #292929;
            color: #FFF;
            font-size: 14px;
            line-height: 17px;
            padding: 7px 12px;
            margin-top: 7px;
            z-index: 1;
        }

            .dropdown-select details > ul li .tooltip::before {
                content: '';
                display: block;
                height: 0;
                width: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-bottom: 5px solid #292929;
                top: -5px;
                left: 7px;
                position: absolute;
            }

        .dropdown-select details > ul li:hover .tooltip {
            display: block;
        }

    .dropdown-select .option-empty {
        display: none;
    }

/*Company*/

.border-bottom-white {
    border-bottom: 1px solid white;
}

.border-bottom-grey {
    border-bottom: 1px solid #eff2f5;
    -webkit-box-shadow: 0px 0px 1px 0px #eff2f5;
    box-shadow: 0px 0px 1px 0px #eff2f5;
}

.content-actor {
    background-color: #182F47;
    color: white;
}

    .content-actor .grey-link {
        color: white;
    }

    .content-actor .content-actor-breadcrumbs i {
        color: white;
    }

    .content-actor .image-page .content h1 {
        color: white;
        margin-bottom: 12px;
    }

    .content-actor .image-page .content.content-header-text .content-header-intro {
        flex-direction: column;
    }

    .content-actor .content-company-resume {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .content-actor .content-company-resume-name {
        display: flex;
        flex-direction: row;
        font-size: 18px;
        font-weight: 600;
    }

        .content-actor .content-company-resume-name div:first-child {
            padding-right: 12px;
            border-right: 1px solid white;
        }

        .content-actor .content-company-resume-name div:last-child {
            margin-left: 12px;
        }

    .content-actor .content-company-resume-learn-more {
        text-decoration: underline;
        cursor: pointer;
        font-size: 14px;
    }

    .content-actor .content-company-data {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .content-actor .content-company-card {
        background: rgb(56,77,98);
        background: -moz-linear-gradient(90deg, rgba(56,77,98,1) 0%, rgba(93,109,127,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(56,77,98,1) 0%, rgba(93,109,127,1) 100%);
        background: linear-gradient(90deg, rgba(56,77,98,1) 0%, rgba(93,109,127,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#384d62",endColorstr="#5d6d7f",GradientType=1);
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 2px 1px #5D6D7F;
        box-shadow: 0px 0px 2px 1px #5D6D7F;
    }

        .content-actor .content-company-card .card-header {
            padding: 12px 16px;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid;
        }

        .content-actor .content-company-card .card-content {
            display: flex;
            flex-direction: column;
        }

            .content-actor .content-company-card .card-content .card-content-cell {
                padding: 8px 16px;
                font-size: 12px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
            }

                .content-actor .content-company-card .card-content .card-content-cell:nth-child(2n+1) {
                    background-color: rgba(93,109,127,0.5);
                }

                .content-actor .content-company-card .card-content .card-content-cell:nth-child(2n) {
                    background-color: rgba(56,77,98,0.5);
                }

                .content-actor .content-company-card .card-content .card-content-cell .progresbar {
                    width: 250px;
                    background-color: #bdc3cb;
                    border-radius: 10px;
                    height: 5px;
                    overflow: hidden
                }

                    .content-actor .content-company-card .card-content .card-content-cell .progresbar .progress {
                        background-color: #F98667;
                        height: 5px;
                        width: 0%;
                    }

.company-page {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    background: white;
    background-color: #DBE9F8;
}

.content-actor-middle {
    background-color: #DBE9F8;
}


    .content-actor-middle .company-info-square {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 48px 16px;
        background: #DBE9F8;
        border-left: 10px solid white;
    }

    .content-actor-middle .company-page:not(.custom-first) .company-info-square:first-child {
        border-left: none !important;
    }


    .content-actor-middle .company-info-square.first-child {
        border-left: none !important;
    }

    .content-actor-middle .company-info-square .company-info-square-title {
        font-size: 16px;
        font-weight: 600;
        color: #182F47;
        margin-bottom: 8px;
    }

    .content-actor-middle .company-info-square .company-info-square-subtitle {
        font-size: 20px;
        font-weight: 600;
        color: #1F4A77;
        text-align: center;
    }

    .content-actor-middle .company-info-square .company-info-square-subtitle-small {
        font-size: 14px;
        color: #1F4A77;
        color: #1F4A77;
    }

.geo-map {
    min-height: 650px;
    overflow: hidden;
}

    .geo-map .jvectormap-container {
        min-height: 650px;
        overflow: hidden;
    }

.transparent-marker {
    opacity: 0;
}

.trans-visible {
    opacity: 1;
    z-index: 1;
}

.map-details {
    flex: 1;
    border-left: 1px solid #DEDEDE;
    display: flex;
    flex-direction: column;
}

    .map-details .details {
        padding: 24px 24px 12px;
    }

        .map-details .details h2 {
            color: #182F47;
            font-size: 24px;
            line-height: 36px;
            font-weight: 500;
            margin: 0;
        }

        .map-details .details .selected-filters {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

            .map-details .details .selected-filters ul {
                padding: 0;
                margin: 0;
                list-style: none;
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }

                .map-details .details .selected-filters ul li label {
                    color: #1F4A77;
                    font-size: 14px;
                    line-height: 20px;
                    border: solid 1px;
                    padding: 1px 12px;
                    border-radius: 12.5px;
                    cursor: pointer;
                    display: block;
                }

                    .map-details .details .selected-filters ul li label::after {
                        content: '\f00d';
                        font-family: 'Font Awesome 5 Free';
                        font-weight: 900;
                        margin-left: 6px;
                    }

            .map-details .details .selected-filters .clear-filters {
                cursor: pointer;
            }

                .map-details .details .selected-filters .clear-filters::before {
                    content: '\f00d';
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    color: #f03b63;
                }

                .map-details .details .selected-filters .clear-filters span {
                    color: #1F4A77;
                    font-size: 16px;
                    line-height: 17px;
                    font-weight: 500;
                    text-decoration: underline;
                }

.no-filters {
    color: #1F4A77;
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
}

.border-bottom {
    border-bottom: 1px solid #fff
}

.info-link {
    color: #fff;
    font-size: 14px;
}

.company-info-card {
    box-shadow: 0 0 10px 0 #bababa;
    border-radius: 8px;
    color: #343434;
}

    .company-info-card .company-info-card-top-1 {
        padding: 2px 12px;
        background-color: #D9EFF1;
        width: fit-content;
        border-radius: 18px;
        font-size: 12px;
        color: #006B73;
        font-weight: 600;
        margin-bottom: 20px;
        height: 24px;
        display: flex;
        align-items: center;
    }

    .company-info-card .company-info-card-top-2 {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .company-info-card .company-info-card-top-3 {
        font-size: 18px;
        font-weight: 500;
    }

    .company-info-card .company-info-card-top-4 {
        display: flex;
        flex-direction: column;
    }

        .company-info-card .company-info-card-top-4.target-timegrame {
            width: 35%;
        }

        .company-info-card .company-info-card-top-4.traget-progres {
            width: 60%;
        }

        .company-info-card .company-info-card-top-4 .info-1 {
            font-size: 14px;
            font-weight: 600;
            color: #727679;
            margin-bottom: 6px;
        }

            .company-info-card .company-info-card-top-4 .info-1 .fas {
                color: #DE3359;
            }

        .company-info-card .company-info-card-top-4 .info-2 {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .company-info-card .company-info-card-top-4 .info-3 {
            font-size: 14px;
            color: #1A1A1C;
        }

        .company-info-card .company-info-card-top-4 .info-4 {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 6px;
        }

            .company-info-card .company-info-card-top-4 .info-4 .progresbar {
                width: 150px;
                background-color: #bdc3cb;
                border-radius: 10px;
                height: 5px;
                overflow: hidden
            }

                .company-info-card .company-info-card-top-4 .info-4 .progresbar .progress {
                    background-color: #DE3359;
                    height: 5px;
                    width: 0%;
                }

    .company-info-card .info-card-right {
        width: 40%;
        min-width: 40%;
    }

    .company-info-card .company-info-card-top-4 .info-5 {
        color: #DE3359;
        font-size: 14px;
    }

    .company-info-card .company-info-card-top {
        padding: 16px;
        background-color: #fff;
        border-radius: 8px;
    }

    .company-info-card .company-info-card-bottom {
        background-color: #f8fbfe;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        border-radius: 8px;
    }

        .company-info-card .company-info-card-bottom .company-info-card-bottom-1 {
            width: 60%;
            flex-wrap: wrap;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            flex-direction: row;
        }

            .company-info-card .company-info-card-bottom .company-info-card-bottom-1 span {
                margin-right: 6px;
                font-weight: 500;
                display: inline-flex
            }

        .company-info-card .company-info-card-bottom .company-info-card-bottom-2 {
            padding-left: 30px;
            border-left: 1px solid #1F4A77;
            width: 30%;
            display: flex;
            justify-content: space-between;
        }

.scope-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

    .scope-container:last-child {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
    }

    .scope-container .scope-title {
        font-size: 18px;
        color: #182F47;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .scope-container .scope-content {
        display: flex;
        flex-direction: row;
    }

        .scope-container .scope-content .scope-icon {
            color: #182F47;
            font-size: 32px;
            background: url(../assets/icon-emissions-cloud.svg);
            height: 77px;
            width: 89px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .scope-container .scope-content .scope-emissions {
            color: #182F47;
            display: flex;
            flex-direction: column;
            text-align: center;
            font-weight: 600;
            background-color: #DBE9F8;
            border: 1px solid rgba(24,47,71,0.6);
            border-radius: 8px;
            width: 30%;
            margin-right: 8px;
            align-items: center;
            justify-content: center;
        }

        .scope-container .scope-content .scope-emissions-impact {
            color: #182F47;
            display: flex;
            flex-direction: row;
            text-align: center;
            font-weight: 600;
            background-color: #DBE9F8;
            border: 1px solid rgba(24,47,71,0.6);
            border-radius: 8px;
            margin-right: 8px;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 22px 0px;
        }

            .scope-container .scope-content .scope-emissions-impact .scope-icon {
                width: 132.92px;
                height: 115px;
                margin-right: 27px;
            }

            .scope-container .scope-content .scope-emissions-impact .emissions-impact-latest {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                width: 50%;
                border-left: 1px solid #1F4A77;
                padding-left: 30px;
            }

                .scope-container .scope-content .scope-emissions-impact .emissions-impact-latest .emissions-impact-latest-title {
                    color: #182F47;
                    font-size: 20px;
                    font-weight: bold;
                    text-align: left;
                    margin-bottom: 22px;
                }

                .scope-container .scope-content .scope-emissions-impact .emissions-impact-latest .emissions-impact-latest-data {
                    color: #292929;
                    font-size: 34px;
                    font-weight: 500;
                    text-align: left;
                }

        .scope-container .scope-content .scope-emissions-impact-compared {
            color: #182F47;
            display: flex;
            flex-direction: row;
            text-align: center;
            font-weight: 600;
            background-color: #DBE9F8;
            border: 1px solid rgba(24,47,71,0.6);
            border-radius: 8px;
            margin-right: 8px;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 24px;
        }

            .scope-container .scope-content .scope-emissions-impact-compared .icon-container {
                display: flex;
                height: 100%;
                align-items: flex-start;
            }

                .scope-container .scope-content .scope-emissions-impact-compared .icon-container .scope-icon {
                    width: 80px;
                    height: 69px;
                }

            .scope-container .scope-content .scope-emissions-impact-compared .emissions-impact-latest {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                padding-left: 30px;
            }

                .scope-container .scope-content .scope-emissions-impact-compared .emissions-impact-latest .emissions-impact-latest-title {
                    color: #182F47;
                    font-size: 20px;
                    font-weight: bold;
                    text-align: left;
                    margin-bottom: 22px;
                }

                .scope-container .scope-content .scope-emissions-impact-compared .emissions-impact-latest .emissions-impact-latest-status {
                    color: #292929;
                    font-size: 30px;
                    font-weight: 500;
                    text-align: left;
                    padding-bottom: 16px;
                    border-bottom: 1px solid #1F4A77;
                    margin-bottom: 11.5px;
                }

                .scope-container .scope-content .scope-emissions-impact-compared .emissions-impact-latest .emissions-impact-latest-text {
                    color: #424245;
                    font-family: Roboto;
                    font-size: 16px;
                    text-align: left;
                    font-family: Roboto;
                    line-height: 24px;
                    margin-bottom: 12px;
                }

                .scope-container .scope-content .scope-emissions-impact-compared .emissions-impact-latest .emissions-impact-latest-resume {
                    color: #424245;
                    font-size: 16px;
                    font-weight: bold;
                    line-height: 24px;
                    text-align: left;
                }

        .scope-container .scope-content .scope-data-container {
            width: -webkit-fill-available;
        }

            .scope-container .scope-content .scope-data-container.four-squares {
                display: grid;
                grid-gap: 8px;
                grid-template-columns: 50% 50%;
            }

        .scope-container .scope-content .scope-data {
            background-color: white;
            padding: 19px 19px 22px;
        }

        .scope-container .scope-content .four-squares .scope-data {
            min-width: 388px;
        }

        .scope-container .scope-content .scope-data .scope-data-1 {
            color: #424245;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .scope-container .scope-content .scope-data .scope-data-2 {
            font-size: 18px;
        }

        .scope-container .scope-content .four-squares .scope-data:nth-child(odd):last-child {
            grid-column: 1 / span 2;
        }

.scope-cards-container {
    display: flex;
    flex-direction: row;
    padding-top: 28px;
    border-top: 1px solid #E5E5E5;
    margin-top: 28px;
}

.financial-actions-container {
    display: flex;
    flex-direction: row;
    margin-top: 28px;
    flex-wrap: wrap;
}

    .scope-cards-container .scope-card, .financial-actions-container .scope-card {
        background-color: white;
        padding: 20px;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 10px 10px 0;
    }

    .financial-actions-container .scope-source {
        justify-content: space-between;
    }

        .financial-actions-container .scope-source .scope-card-source {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-top: 8px;
        }

            .financial-actions-container .scope-source .scope-card-source .scope-source {
                display: flex;
                width: 100%;
                flex-direction: column;
            }

                .financial-actions-container .scope-source .scope-card-source .scope-source .scope-source-title {
                    font-weight: 600;
                    height: 16px;
                }

                .financial-actions-container .scope-source .scope-card-source .scope-source .scope-source-description {
                    font-size: 12px;
                }

    .financial-actions-container .scope-card {
        width: 333px;
    }
        /*.scope-cards-container .scope-card:first-child, .financial-actions-container .scope-card:first-child {
            margin-right: 10px;
        }

        .scope-cards-container .scope-card:last-child, .financial-actions-container .scope-card:last-child {
            margin-left: 10px;
        }*/
        .scope-cards-container .scope-card .scope-card-title, .financial-actions-container .scope-card .scope-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #424245;
        }

        .scope-cards-container .scope-card .scope-card-text, .financial-actions-container .scope-card .scope-card-text {
            font-size: 18px;
            color: #424245;
        }

        .scope-cards-container .scope-card .scope-card-link, .financial-actions-container .scope-card .scope-card-link, .scope-card-text .scope-card-link {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            color: #1F4A77;
            text-decoration: underline;
            font-weight: 600;
            margin-top: 8px;
            font-size: 16px;
            align-items: center;
            text-align: right;
        }

            .scope-cards-container .scope-card .scope-card-link i, .financial-actions-container .scope-card .scope-card-link i, .scope-card-text .scope-card-link i {
                color: #DE3359;
                font-size: 14px;
                margin-left: 8px;
            }

.action-scope-card-title {
    color: #182F47;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 26px;
}

.scope-cards-container.actions-scope-cards-container {
    display: flex;
    flex-direction: row;
    margin-top: 22px;
    padding: unset;
    border-top: none;
}

.actions-scope-cards-container .scope-card {
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}


.scope-initiative-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: flex-start;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 10px 0 rgba(24,47,71,0.25);
    margin-bottom: 26px;
}

    .scope-initiative-card.initiative {
        justify-content: space-between;
    }

    .scope-initiative-card.announced-item {
        border: 2px solid #f8f8f8;
        box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 2%);
    }

    .scope-initiative-card .scope-initiative-card-title {
        font-size: 16px;
        color: #DE3359;
        font-weight: 600;
        margin-bottom: 18px;
        text-decoration: underline;
    }

    .scope-initiative-card.pas-item .scope-initiative-card-title {
        font-size: 17px;
    }

    .scope-initiative-card.announced-item.pas-item h3 {
        font-size: 14px;
    }

    .scope-initiative-card.announced-item.pas-item .initiative_text {
        font-size: 14px;
    }

    .scope-initiative-card .scope-initative-card-small-title {
        font-size: 16px;
        color: #DE3359;
        font-weight: 600;
        margin-bottom: 18px;
        text-decoration: underline;
        width: 60%;
    }

    .scope-initiative-card .scope-initiative-card-text {
        color: #1A1A1C;
    }

    .scope-initiative-card .scope-initiative-card-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .scope-initiative-card .scope-initiative-card-tabs .chip {
            background-color: #E5CEE5;
            padding: 2px 12px;
            width: fit-content;
            border-radius: 18px;
            font-size: 12px;
            color: #734373;
            font-weight: 600;
            margin-bottom: 20px;
            height: 24px;
            display: flex;
            align-items: center;
        }

        .scope-initiative-card .scope-initiative-card-tabs .tab-data {
            color: #727679;
            font-size: 14px;
            font-weight: 500;
        }

.company-actions-table {
}

    .company-actions-table .table-title {
        display: flex;
        flex-direction: row;
        align-items: baseline;
    }

        .company-actions-table .table-title .table-title-main {
            color: #182F47;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 0;
            line-height: 26px;
            margin-right: 20px;
            align-items: center;
            display: flex;
        }

            .company-actions-table .table-title .table-title-main i {
                font-size: 5px;
                margin-left: 20px;
            }

        .company-actions-table .table-title .table-title-sub {
            color: #424245;
            font-family: Roboto;
            font-size: 16px;
            letter-spacing: 0;
            line-height: 24px;
        }

    .company-actions-table .table-content {
        display: flex;
        flex-direction: column;
        max-height: 866px;
        overflow: auto;
        padding-right: 16px;
    }

        .company-actions-table .table-content::-webkit-scrollbar {
            width: 6px;
            height: 10px;
        }

        .company-actions-table .table-content::-webkit-scrollbar-track {
            background-color: rgba(31,79,130,0.03);
            height: 10px;
        }

        .company-actions-table .table-content::-webkit-scrollbar-thumb {
            border-radius: 15px;
            background-color: lightgray;
            height: 10px;
        }

        .company-actions-table .table-content .table-header {
            display: flex;
            flex-direction: row;
        }

            .company-actions-table .table-content .table-header .header-cell-1 {
                padding: 18px 20px;
                font-size: 18px;
                color: #292929;
                font-weight: 600;
                width: 30%;
                margin-right: 14px;
                border-bottom: 2px solid #1F4A77;
            }

            .company-actions-table .table-content .table-header .header-cell-2 {
                padding: 18px 20px;
                font-size: 18px;
                color: #292929;
                font-weight: 600;
                border-bottom: 2px solid #1F4A77;
                width: -webkit-fill-available;
            }

        .company-actions-table .table-content .table-row {
            display: flex;
            flex-direction: row;
        }

            .company-actions-table .table-content .table-row .row-cell-1 {
                padding: 18px 20px;
                font-size: 16px;
                color: #292929;
                font-weight: 600;
                width: 30%;
                margin-right: 14px;
                border-bottom: 2px solid rgba(31,74,119,0.2);
            }

            .company-actions-table .table-content .table-row .row-cell-2 {
                padding: 18px 20px;
                font-size: 16px;
                color: #292929;
                display: flex;
                flex-direction: column;
                border-bottom: 2px solid rgba(31,74,119,0.2);
                width: -webkit-fill-available;
            }

.map-details .map {
    position: relative;
    flex: 1;
}

.fixed-aside {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 600px;
    padding: 24px;
    border: solid 1px #DADADA;
    background: #F8F9FB;
    box-shadow: -2px 13px 20px 0 #B4B4B4;
    z-index: 2;
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
}

    .fixed-aside::-webkit-scrollbar {
        width: 6px;
    }

    .fixed-aside::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .fixed-aside::-webkit-scrollbar-thumb {
        border-radius: 4.5px;
        background-color: #D8D8D8;
    }

    .fixed-aside .close-aside {
        position: absolute;
        right: 24px;
        top: 24px;
        cursor: pointer;
        display: block;
        font-size: 20px;
    }

    .fixed-aside.active {
        display: block;
    }

@media screen and (max-width: 481px) {
    .fixed-aside {
        width: 240px;
        padding: 12px;
    }

        .fixed-aside .close-aside {
            right: 12px;
            top: 12px;
        }
}

.actor-details-aside {
}

    .actor-details-aside .actor-title {
        color: #DE3359;
        font-family: Merriweather;
        font-size: 16px;
        line-height: 30px;
        font-weight: bold;
        text-decoration: underline;
        margin: 0;
    }

    .actor-details-aside .actor-total-number {
        margin: 6px 0 0;
        color: #1F4A77;
        font-size: 16px;
        line-height: 17px;
        font-weight: 500;
        display: block;
    }

.actor-types-list {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

    .actor-types-list > li {
        margin-top: 16px;
    }

        .actor-types-list > li:first-child {
            margin-top: 0;
        }

        .actor-types-list > li > details {
            border: 1px solid #DADADA;
            border-radius: 8px;
            background: #FFF;
            box-shadow: 0 0 8px 0 #E8E8E8;
            padding: 24px;
        }

            .actor-types-list > li > details > summary {
                color: #000;
                font-size: 18px;
                line-height: 20px;
                font-weight: bold;
                position: relative;
                cursor: pointer;
            }

                .actor-types-list > li > details > summary::marker,
                .actor-types-list > li > details > summary::-webkit-details-marker {
                    content: none;
                    display: none;
                }

                .actor-types-list > li > details > summary::before {
                    content: '\f078';
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    position: absolute;
                    right: 0;
                    top: 0;
                }

            .actor-types-list > li > details[open] > summary::before {
                content: '\f077';
            }

            .actor-types-list > li > details[open] > summary::after {
                content: '';
                border: solid 1px #DADADA;
                position: absolute;
                bottom: -24px;
                left: -24px;
                right: -24px;
            }

            .actor-types-list > li > details[open] > summary + * {
                margin-top: 48px;
            }

            .actor-types-list > li > details .filter-line {
                gap: 24px;
                justify-content: flex-end;
            }

            .actor-types-list > li > details .data-list-results {
                margin-top: 24px;
            }

    .actor-types-list ul.engagements {
        padding: 0;
    }

    .actor-types-list .engagement-types {
        background: #F8FBFE;
        padding: 8px;
        display: flex;
        gap: 8px;
        flex: 1;
    }

        .actor-types-list .engagement-types .title {
            color: #000000;
            font-size: 14px;
            line-height: 19px;
            font-weight: 500;
        }

        .actor-types-list .engagement-types ul {
            padding: 0;
            list-style: none;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

            .actor-types-list .engagement-types ul li {
                color: #000;
                font-size: 14px;
                line-height: 19px;
                display: flex;
                gap: 8px;
                align-items: center;
            }

                .actor-types-list .engagement-types ul li::before {
                    content: var(--engagement-icon);
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    display: block;
                    text-align: center;
                    width: 24px;
                    height: 24px;
                    line-height: 24px;
                    font-size: 12px;
                    border-radius: 50%;
                    color: #FFF;
                    background: var(--engagement-color-primary);
                }

    .actor-types-list .engagement-details > li .engagements > li {
        flex-direction: column;
        gap: 8px;
    }

@media screen and (max-width: 481px) {
    .actor-types-list > li > details {
        padding: 12px;
    }

        .actor-types-list > li > details[open] > summary::after {
            left: -12px;
            right: -12px;
        }

    .actor-types-list .engagement-types {
        flex-direction: column;
    }
}

.border-bottom {
    border-bottom: 1px solid #fff
}

.info-link {
    color: #fff;
    font-size: 14px;
}

    .info-link.external-link {
        color: #FFF;
    }

.company-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    color: #1F4A77;
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
    align-items: center;
    margin-bottom: 16px;
}

    .company-link i {
        color: #DE3359;
        font-size: 14px;
        margin-left: 8px;
    }

.company-acc {
}

    .company-acc .acc-body {
        background-color: rgba(31,79,130,0.03);
    }

.progress-company .progress-section .progress-section-content {
    padding-left: 89.5px;
    padding-right: 89.5px;
}

.progress-company .progress-icon {
    padding: 0px 20px;
}

.flex-wrap {
    flex-wrap: wrap;
}

/*Media Queries*/

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    .single-event-card {
        margin-right: unset;
        margin-bottom: 18px;
    }

    .image-page {
        padding: 16px;
        width: unset;
    }

    .image-page-content {
        flex-direction: column;
    }

    .coo-init-search .search-box .textbox, .coop-initiatives-top-filters .search-box .textbox {
        width: 100%;
    }

    .image-page .filter-column {
        width: 100%;
    }

    .image-page .list-column {
        margin-left: unset;
        width: 100%;
    }

        .image-page .list-column .list-view {
            padding: 16px;
        }

    .progress-section-content {
        flex-wrap: wrap;
        box-shadow: unset;
    }

    .section-participants {
        overflow-x: scroll;
    }

    .coop-init-introduction {
        padding: 16px;
        flex-wrap: wrap;
    }

        .coop-init-introduction .coop-init-picture {
            padding-left: 0px;
        }

    .initiative-updated {
        justify-content: center;
    }

    .initiative-details-content .initiative-menu {
        height: unset;
        padding-left: 16px;
    }

    .coop-init-introduction .coop-init-key-facts .coop-init-data {
        flex-wrap: wrap;
    }

        .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item {
            border-left: unset;
            padding-left: unset;
        }

    .initiative-details-content .list-column .list-column-section {
        padding: 16px;
    }

    .initiative-details-content .list-column .profile-section .description-container {
        flex-wrap: wrap;
    }

    .description-container-content {
        margin-right: unset;
        margin-bottom: 16px;
    }

    .initiative-details-content .list-column .profile-section .profile-description-info .profile-description-info-col .contact {
        white-space: pre-wrap;
        text-overflow: clip;
        overflow-wrap: break-word;
        width: unset;
    }

    .coo-init-search .filters {
        flex-wrap: wrap;
    }

    .image-page .list-column {
        max-width: unset;
        min-width: unset;
    }

    .coop-initiatives-top-filters {
        margin-bottom: unset !important;
    }

        .coo-init-search .search-box, .coop-initiatives-top-filters .search-box {
            flex-wrap: wrap;
            margin-bottom: unset;
        }

        .coo-init-search .sorting, .coop-initiatives-top-filters .sorting {
            flex-direction: column !important;
            margin-bottom: 12px;
            margin-top: 12px;
        }

    .progress-tracking {
        flex-wrap: wrap;
    }

    .coop-init-introduction .coop-init-key-facts .coop-init-data .coop-init-data-item:before {
        display: none;
    }

    .engaged-actors-card-container {
        overflow-x: auto;
    }

    .action-summary-description {
        flex-direction: column;
        padding-bottom: 16px;
    }

    .scope-container .scope-content .scope-emissions {
        width: 100%;
    }

    .scope-container .scope-content {
        flex-direction: column;
    }

    .scope-cards-container {
        overflow-x: auto;
    }

    .scope-container .scope-content .scope-emissions-impact-compared {
        flex-direction: column;
        width: fit-content;
    }

    .content-actor-middle .company-info-square {
        width: unset;
    }

    .company-page {
        flex-direction: column;
    }

    .content-actor .content-company-data {
        flex-direction: column;
    }

    .company-info-card .company-info-card-top-2 {
        flex-direction: column;
    }

    .company-info-card .company-info-card-bottom .company-info-card-bottom-2 {
        flex-direction: column;
    }

    .acc-kontainer .acc-body .targets-content .targets-content-1 {
        flex-wrap: wrap;
    }

        .acc-kontainer .acc-body .targets-content .targets-content-1 .targets-cell {
            width: 100%;
            margin-bottom: 8px;
        }

    .company-info-card .info-card-right {
        width: 100%;
        margin-left: 0;
    }

    .coop-initiatives-top-filters-responsive {
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .actor-list-item .flex {
        flex-wrap: wrap;
    }

    .actor-list-item .engagement {
        margin: 0 9px 0 0;
    }

    .actor-list-item .flex-justify-between {
        align-items: unset !important;
    }

    .scope-initiative-card .scope-initiative-card-tabs {
        flex-wrap: wrap;
    }

    .company-info-card .info-card-right {
        margin-left: 0 !important;
    }

    .event-page-details {
        flex-direction: column;
    }

        .event-page-details .event-page-about {
            width: 100%;
        }

        .event-page-details .event-page-reports {
            width: 100%;
        }

    .event-logo img {
        width: 100% !important;
    }

    .event-page-header {
        flex-wrap: wrap;
    }
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */
    .engaged-actors-card-container {
        overflow-x: auto;
    }

    .image-page {
        padding: 32px 16px;
        width: auto;
    }

        .image-page .list-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #F8F9FB;
            position: relative;
            margin-left: 12px;
            max-width: 73%;
            min-width: 70%;
        }

    .filter-actions-top {
        flex-direction: column;
    }

    .actor-list-item .flex {
        flex-wrap: wrap;
    }

    .coo-init-search .search-box, .coop-initiatives-top-filters .search-box {
        flex-direction: column;
        margin-bottom: unset;
    }

        .coo-init-search .search-box .textbox, .coop-initiatives-top-filters .search-box .textbox {
            margin-bottom: 16px;
        }

    .progress-tracking {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .progress-company .progress-section .progress-section-content {
        padding: 0 32px;
        border-right: 1px solid #d9d9d9;
        box-shadow: unset;
    }

    .scope-initiative-card .scope-initiative-card-tabs {
        flex-wrap: wrap;
    }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */
    .engaged-actors-card-container {
        overflow-x: auto;
    }

    .image-page {
        padding: 32px 16px;
        width: auto;
    }

        .image-page .list-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #F8F9FB;
            position: relative;
            margin-left: 12px;
            max-width: 60%;
            min-width: 70%;
        }

    .filter-actions-top {
        flex-direction: column;
    }

    .actor-list-item .flex {
        flex-wrap: wrap;
    }

    .coo-init-search .search-box, .coop-initiatives-top-filters .search-box {
        flex-direction: column;
        margin-bottom: unset;
    }

        .coo-init-search .search-box .textbox, .coop-initiatives-top-filters .search-box .textbox {
            margin-bottom: 16px;
        }

    .progress-tracking {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .progress-company .progress-section .progress-section-content {
        padding: 0 32px;
        border-right: 1px solid #d9d9d9;
        box-shadow: unset;
    }

    .scope-initiative-card .scope-initiative-card-tabs {
        flex-wrap: wrap;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */
    .engaged-actors-card-container {
        overflow-x: auto;
    }

    .image-page {
        padding: 32px 16px;
        width: auto;
    }

        .image-page .list-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #F8F9FB;
            position: relative;
            margin-left: 12px;
            max-width: 60%;
            min-width: 70%;
        }

    .filter-actions-top {
        flex-direction: column;
    }

    .actor-list-item .flex {
        flex-wrap: wrap;
    }

    .coo-init-search .search-box, .coop-initiatives-top-filters .search-box {
        flex-direction: column;
        margin-bottom: unset;
    }

        .coo-init-search .search-box .textbox, .coop-initiatives-top-filters .search-box .textbox {
            margin-bottom: 16px;
        }

    .progress-tracking {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .progress-company .progress-section .progress-section-content {
        padding: 0 32px;
        border-right: 1px solid #d9d9d9;
        box-shadow: unset;
    }

    .scope-initiative-card .scope-initiative-card-tabs {
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) and (max-width: 1296px) {
    .image-page {
        width: unset;
    }
}


.acc-kontainer .acc-body .targets-content .targets-content-1 .targets-cell
.legend-bullet {
    width: 12px;
    margin-top: 5px;
    font-size: 8px;
}

.emissions-card-title .legend-bullet {
    font-size: 7px;
    margin-top: 7px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    width: 297px;
}

.flex-row {
    display: flex;
    flex-direction: row !important;
}

.emissions-card-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}

.emissions-card-subtitle {
    font-weight: 400;
    font-size: 12px;
}

.medium-separator {
    width: 150px;
    border-bottom: solid 1px rgba(56,77,98,1);
    box-shadow: 1px 1px 1px #fff;
}

.card-left {
    flex: 0 0 40%;
    max-width: 40%;
}

.card-right {
    flex: 0 0 55%;
    max-width: 55%;
}

.commitment-item-icon {
    color: #1F4A77;
}

    .commitment-item-icon img {
        max-width: 180px;
        max-height: 90px;
        object-fit: contain;
    }

    .commitment-item-icon .fas {
        height: 18px;
        width: 18px;
        color: #DE3359;
    }

.reporting-year-text {
    font-size: 14px;
    color: #727679;
    font-weight: 600;
}

    .reporting-year-text span {
        margin-left: 4px;
        color: #727679;
    }

.actions-engagement-container {
    display: flex;
    flex-direction: column;
}

    .actions-engagement-container .engagement-title {
        font-size: 18px;
        color: #182F47;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .actions-engagement-container .engagement-section {
        display: flex;
        flex-direction: row;
    }

        .actions-engagement-container .engagement-section .engagement-card {
            display: flex;
            flex-direction: column;
            padding: 12px 12px 16px;
            background-color: white;
            width: 100%;
            margin: 0 8px;
        }

            .actions-engagement-container .engagement-section .engagement-card:first-child {
                margin: 0 0px;
            }

            .actions-engagement-container .engagement-section .engagement-card:last-child {
                margin: 0 0px;
            }

            .actions-engagement-container .engagement-section .engagement-card .engagement-card-title {
                font-weight: 600;
                font-size: 14px;
                line-height: 20px;
                margin-bottom: 8px;
            }

            .actions-engagement-container .engagement-section .engagement-card .engagement-card-list {
                font-weight: 400;
                font-size: 14px;
                margin: 0;
                line-height: 1.5;
            }

.partners .image {
    width: 76px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
}

    .partners .image.Carbonn {
        background-image: url(/assets/action-dps/Carbonn.png);
    }

        .partners .image.Carbonn:hover {
            background-image: url(/assets/action-dps/Carbonn-hover.png);
        }

    .partners .image.CDP {
        background-image: url(/assets/action-dps/CDP.png);
    }

        .partners .image.CDP:hover {
            background-image: url(/assets/action-dps/CDP-hover.png);
        }

    .partners .image.ClimateBondsInitiative {
        background-image: url(/assets/action-dps/ClimateBondsInitiative.png);
    }

        .partners .image.ClimateBondsInitiative:hover {
            background-image: url(/assets/action-dps/ClimateBondsInitiative-hover.png);
        }

    .partners .image.ClimateInitiativePlatform {
        background-image: url(/assets/action-dps/ClimateInitiativePlatform.png);
    }

        .partners .image.ClimateInitiativePlatform:hover {
            background-image: url(/assets/action-dps/ClimateInitiativePlatform-hover.png);
        }

    .partners .image.GCoM {
        background-image: url(/assets/action-dps/GCoM.png);
    }

        .partners .image.GCoM:hover {
            background-image: url(/assets/action-dps/GCoM-hover.png);
        }

    .partners .image.InvestorsOnClimateChange {
        background-image: url(/assets/action-dps/InvestorsOnClimateChange.png);
    }

        .partners .image.InvestorsOnClimateChange:hover {
            background-image: url(/assets/action-dps/InvestorsOnClimateChange-hover.png);
        }

    .partners .image.TheClimateGroup {
        background-image: url(/assets/action-dps/TheClimateGroup.png);
    }

        .partners .image.TheClimateGroup:hover {
            background-image: url(/assets/action-dps/TheClimateGroup-hover.png);
        }

    .partners .image.UNGlobalCompact {
        background-image: url(/assets/action-dps/UNGlobalCompact.png);
    }

        .partners .image.UNGlobalCompact:hover {
            background-image: url(/assets/action-dps/UNGlobalCompact-hover.png);
        }

.actor-list-item {
    background-color: white;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 6%);
    border: 1px solid rgba(31,74,119,0.05);
    border-radius: 10px;
    margin-bottom: 26px;
    padding: 18px 24px 26px;
}

    .actor-list-item .flex-justify-between {
        align-items: center;
        margin-bottom: 23.5px;
        color: #DE3359;
    }

    .actor-list-item .flex {
        align-items: center;
    }

        .actor-list-item .flex .data-separator {
            margin-left: 14px;
        }

    .actor-list-item .actor-item-title {
        opacity: 1;
        font-family: Merriweather;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 30px;
        color: #f03b63;
        transition: opacity 0.2s linear;
        text-decoration: none;
    }

        .actor-list-item .actor-item-title:hover {
            opacity: 0.5;
        }

    .actor-list-item .actor-item-chip {
        font-size: 13px;
        color: #424245;
        padding: 4px 12px;
        border: 1px solid #424245;
        border-radius: 20px;
        font-weight: 500;
    }


    .actor-list-item .actor-item-text-data {
        font-size: 14px;
        margin: 0 6px 0 0;
    }

    .actor-list-item ul.engagements {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .actor-list-item ul.engagement-column {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-direction: column;
        margin-top: 8px;
    }

    .actor-list-item ul.engagements .icon:before,
    .simple-item .engagement .icon:before {
        content: var(--engagement-icon);
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    }

    .actor-list-item ul.engagements .icon:before,
    .simple-item .engagement {
        margin: 0 8px 0 0 !important;
    }

.actor-list-engagment-details {
    padding: 0;
    list-style: none;
    margin: 27px -24px -24px;
    border-top: 1px solid rgba(31,74,119,0.15);
    margin: 0 -24px -24px;
}

    .actor-list-engagment-details > li {
        padding: 24px;
        margin: 0px !important;
    }

        .actor-list-engagment-details > li h4 {
            color: #424245;
            font-size: 16px;
            gap: 6px;
            margin-top: 10px;
            padding: 0;
            list-style: none;
        }

        .actor-list-engagment-details > li .engagements.climate-plan {
            flex-direction: row !important;
            flex-wrap: wrap;
        }

            .actor-list-engagment-details > li .engagements.climate-plan > li:not(.column-action) {
                margin: 0;
                padding-top: 0;
                border: none;
            }

            .actor-list-engagment-details > li .engagements.climate-plan > li.column-action {
                width: 100%;
            }

.actors-engagement:nth-child(odd) {
    background-color: white;
}

.actors-engagement:nth-child(even) {
    background-color: rgba(248,249,251,0.75);
}

.details-content .engagement-top-bar {
    margin: 27px -24px -24px;
    border-top: 1px solid rgba(31,74,119,0.15);
}

.engagement-details > li .engagement-column {
    flex-direction: column !important;
}

.text-decoration-none {
    text-decoration: none;
}

.drop-business {
    width: 270px;
}

.drop-business-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.actors-card-simple-dropdown select {
    cursor: pointer;
}

    .actors-card-simple-dropdown select:focus {
        outline: none;
    }

.initiative-detail-participants-overview .section-participants {
    margin: 0;
}

    .initiative-detail-participants-overview .section-participants::-webkit-scrollbar-track {
        background: #F8F9FB;
    }

    .initiative-detail-participants-overview .section-participants::-webkit-scrollbar-thumb {
        background-color: #D8D8D8;
        border-radius: 20px;
        border: 11px solid #F8F9FB;
    }

.initiative-detail-participants-overview .participants-location-card {
    margin: 0;
    background-color: #F8F9FB;
}

.font-18 {
    font-size: 18px;
}

.no-border {
    border: none !important;
}

.scope-emissions-separator {
    width: 70%;
    border-bottom: 1px solid #182F47
}

.scope-emissions-sink {
    font-size: 11px;
    color: rgba(66,66,69,0.7);
    line-height: 20px;
}

.emissions-impact-latest-sink {
    color: #292929;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    opacity: 0.7;
}

.text-underline {
    text-decoration: underline !important;
}

.blank-line {
    height: 20px;
    background: white;
    margin: 24px -20px 48px -20px;
}

    .blank-line:last-child {
        margin-bottom: 0;
    }

.slider-text-blocks .slider-blocks-container .small-block h3 {
    font-size: 19px;
}

.slider-text-blocks .slider-blocks-container .small-block p {
    font-size: 12px;
}

.min-h-500 {
    min-height: 500px;
}

.cop28_logo_background {
    display: flex;
    flex-direction: column;
    background-size: 100%;
    background-image: url(/assets/cop28-logoback.webp)
}

.event-logo.cop28_logo_background {
    background-size: 110%;
}

.ici-status__text {
    color: #f03b63;
    font-style: italic;
    font-size: 14px;
}

.ici-status__Concluded .details h4.title > a,
ul.profile-list-items > li summary.ici-status__Concluded a.title > h3,
.ici-status__Concluded .ici-status__text,
.ici-status__Concluded .scope-initiative-card-title,
.ici-status__Concluded .status-tag,
ul.profile-list-items > li summary.ici-status__Concluded ul.details li.featured.status-tag,
.ici-status__Concluded .paticipants-events .reported {
    color: #1A1A1C
}

.ici-status__Unknown .details h4.title > a,
ul.profile-list-items > li summary.ici-status__Unknown a.title > h3,
.ici-status__Unknown .ici-status__text,
.ici-status__Unknown .scope-initiative-card-title,
.ici-status__Unknown .status-tag,
ul.profile-list-items > li summary.ici-status__Unknown ul.details li.featured.status-tag,
.ici-status__Unknown .paticipants-events .reported {
    color: grey
}

.paticipants-events .reported.status-tag {
    margin-top: 0;
}

.no-click {
    pointer-events: none;
}

.img-with-border {
    border: 1px solid #1F4A77;
}

.company-acc.non_initiative .acc-body {
    padding-top: 12px;
}

.non_initiative .company-info-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.non_initiative .acc-body-non_ini-info {
    font-size: 12px;
    margin: 0 0 16px 0;
    line-height: 16px;
}

.company-info-card .info-card-kpi__name {
    font-size: 20px;
    color: #1f4a77;
    font-weight: 600;
    margin: 12px 8px 2px 8px;
}

.company-info-card .info-card-kpi__info {
    margin: 0px 8px 12px 8px;
    font-size: 12px;
    line-height: 16px;
    color: #9a9a9a;
    font-weight: 600;
}

.acc-kontainer.non_initiative label {
    font-size: 22px;
}

.acc-kontainer.non_initiative .flex-justify-between label {
    width: 30px;
}

    .acc-kontainer.non_initiative .flex-justify-between label:first-child {
        width: 100%;
        margin-right: -10px;
        cursor: unset;
    }

        .acc-kontainer.non_initiative .flex-justify-between label:first-child:before {
            content: '';
        }

    .acc-kontainer.non_initiative .flex-justify-between label span {
        cursor: default;
    }

    .acc-kontainer.non_initiative .flex-justify-between label a {
        color: #fff;
        text-decoration: underline;
    }

        .acc-kontainer.non_initiative .flex-justify-between label a:hover {
            opacity: 0.6;
        }

.acc-kontainer.non_initiative.active label:before {
    content: '\f077';
    transition: 0.5s;
}

.non_initiative .company-info-card .company-info-card-top-4 .info-4 {
    flex-direction: column;
}

    .non_initiative .company-info-card .company-info-card-top-4 .info-4 .progresbar {
        width: 100%;
        margin: 0 12px 8px 8px;
        display: flex;
        align-items: center;
        overflow: initial;
    }

        .non_initiative .company-info-card .company-info-card-top-4 .info-4 .progresbar .progress {
            background-color: #4B92DB;
        }

        .non_initiative .company-info-card .company-info-card-top-4 .info-4 .progresbar .progress-dot::before {
            content: '';
            display: flex;
            width: 8px;
            height: 8px;
            background-color: #007bff;
            border-radius: 50%;
        }

    .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend {
        display: flex;
        width: 100%
    }

        .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .base {
            display: flex;
            flex-direction: column;
            padding: 0 5px 0 0;
            margin-left: -24px;
        }

            .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .base > div,
            .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .target-year > div {
                display: flex;
                justify-content: end;
                font-size: 10px;
                line-height: 12px;
                font-weight: 400;
                font-style: italic;
            }

                .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .base > div:first-child,
                .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .target-year > div:first-child {
                    color: #747474;
                    font-style: normal;
                    font-weight: 600;
                }

        .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .current {
            display: flex;
            flex-direction: column;
            padding: 0 5px;
        }

            .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .current > div {
                display: flex;
                justify-content: end;
                font-size: 10px;
                line-height: 14px;
                font-weight: 400;
                font-style: italic;
            }

                .non_initiative .company-info-card .company-info-card-top-4 .info-4 .legend .current > div:first-child {
                    color: #4B92DB;
                    font-style: normal;
                    font-weight: 600;
                }

.non_initiative .company-info-card .company-info-card-top-4.traget-progres {
    width: 70%;
}

.kpi_block {
    margin: 0 12px 0 20px;
}

.kpi-progress {
    display: flex;
}

.kpi-unit {
    color: #4B92DB;
    font-weight: 600;
    font-size: 12px;
    margin-left: 12px;
    display: flex;
}

.non_initiative .external-link {
    font-size: 12px;
}

.kpi-no_progress .flex-column {
    width: 33%;
    align-items: center;
}

.kpi-no_progress .company-info-card-top-4.traget-progres {
    width: 85%;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 #bababa;
}

.kpi-no_progress .base_year,
.kpi-no_progress .base_label,
.kpi-no_progress .base_value {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
}


.kpi-no_progress .base_label {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px
}

.kpi-no_progress .base_value {
    font-size: 30px;
    line-height: 44px
}

.kpi-no_progress .reported_year,
.kpi-no_progress .reported_label,
.kpi-no_progress .reported_value {
    color: #4B92DB;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
}

.kpi-no_progress .reported_label {
    color: #747474;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px
}

.kpi-no_progress .reported_value {
    font-size: 34px;
    line-height: 44px
}

.kpi-no_progress .target_not_defined {
    justify-content: center;
    color: #747474;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 18px;
}

.non_initiative .info-card-kpi_header {
    font-weight: 600;
    margin: 4px 4px 0 0;
    color: #747474;
    font-size: 14px;
    line-height: 14px
}

.non_initiative .info-card-kpi_text {
    font-weight: 400;
    margin: 0 4px 0 0;
    color: #747474;
    font-size: 12px;
    line-height: 14px
}

.acc-kontainer .acc-body .info-card-kpiAxis,
.non_initiative.acc-kontainer .acc-body .info-card-kpiFocus,
.non_initiative.acc-kontainer .acc-body .info-card-kpiRegion,
.pas-item .info-card-axis,
.pas-item .info-card-objectives {
    line-height: 20px;
}

    .non_initiative.acc-kontainer .acc-body .info-card-kpiAxis > span,
    .non_initiative.acc-kontainer .acc-body .info-card-kpiFocus > span,
    .non_initiative.acc-kontainer .acc-body .info-card-kpiRegion > span,
    .pas-item .info-card-axis > span,
    .pas-item .info-card-objectives > span {
        background: #0070c0;
        color: #fff;
        font-size: 10px;
        line-height: 12px;
        padding: 2px 6px;
        font-weight: 400;
    }

    .non_initiative.acc-kontainer .acc-body .info-card-kpiFocus > span {
        background: #c7c7c8;
    }

    .non_initiative.acc-kontainer .acc-body .info-card-kpiRegion > span {
        background: #2e3558;
    }

    .pas-item .info-card-objectives > span {
        background: #8238b3;
    }

.non_initiative .info-4 .top {
    width: 100%;
    display: flex;
    flex-direction: row;
    color: #747474;
    justify-content: space-between;
    font-size: 16px;
    line-height: 14px;
    align-items: end;
}

    .non_initiative .info-4 .top .top_progress {
        display: flex;
        flex: 1 1;
        align-items: end;
    }

.non_initiative .info-4 .legend .legend_progress {
    display: flex;
    flex: 1 1;
    align-items: end;
}

.non_initiative .info-4 .top .base-value {
    margin-left: -2px;
}

.non_initiative .info-4 .top .current-value {
    color: #0070c0;
    font-size: 34px;
    line-height: 34px;
    display: flex;
    justify-content: end;
    margin-left: -4px;
}

.non_initiative .info-4 .top .target-value {
    margin-right: -4px;
}

.non_initiative .info-4 .legend .target-year {
    margin-right: -4px;
}

    .non_initiative .info-4 .legend .target-year div:first-child {
        height: 12px;
    }

.info_note {
    color: #c7c7c8;
    font-style: italic;
}

.info-card-info__note {
    font-size: 10px;
    color: #9a9a9a;
    font-style: italic;
    line-height: 14px;
}

.non_initiative a.external-link::after {
    margin-left: 5px;
}
