html {
    --xl: 1920px;
    --lg: 1280px;
    --md: 1023px;
    --sm: 600px;

    --chart-height: 300px;
    --chart-md-height: 200px;

    --header-zIndex: 1100;

    --color-red: #F65B77;
    --color-yellow: #F6AF5B;
    --color-grey: #B5B5B5;
    --color-green: #4CD964;
}

/** Bundle theme **/

.svsearch {
    --background-image: none;
    --header-image: none;
    --bundle-logo: url("/img/svsearch/logo.svg");
    --bundle-title: url("/img/svsearch/title.svg");
    --bundle-sv: url("/img/svsearch/sv.svg");

    --header-appbar: rgba(255, 255, 255, 1);
    --header-divider: #fff;
    --header-summary-wrapper: #5552EC;
    --header-label: #000;
    --header-card-label: #F9FAFE;

    --dataset-header: rgba(255, 255, 255, 0.77);
    --dataset-item: rgba(255, 255, 255, 1);

    --primary-main: #5552EC;
    --color-alternative: rgba(255, 255, 255, 0.12);
}

.climate_risk {
    --background-image: url("/img/climate_risk/bg.png");
    --header-image: url("/img/climate_risk/header.png");
    --bundle-logo: url("/img/climate_risk/logo.svg");
    --bundle-title: url("/img/climate_risk/title.svg");
    --bundle-sv: url("/img/climate_risk/sv.svg");

    --header-appbar: rgba(255, 255, 255, 1);
    --header-divider: #fff;
    --header-summary-wrapper: #16B187;
    --header-label: #000;
    --header-card-label: #756F86;

    --dataset-header: rgba(255, 255, 255, 0.77);
    --dataset-item: rgba(255, 255, 255, 1);

    --primary-main: #16B187;
    --color-alternative: rgba(255, 255, 255, 0.12);
}

.vaccination {
    --background-image: url("/img/vaccination/bg.png");
    --header-image: url("/img/vaccination/header.png");
    --bundle-logo: url("/img/vaccination/logo.svg");
    --bundle-title: url("/img/vaccination/title.svg");
    --bundle-sv: url("/img/vaccination/sv.svg");

    --header-appbar: rgba(255, 255, 255, 1);
    --header-divider: #fff;
    --header-summary-wrapper: #F65B77;
    --header-label: #000;
    --header-card-label: #756F86;

    --dataset-header: rgba(255, 255, 255, 0.77);
    --dataset-item: rgba(255, 255, 255, 1);

    --primary-main: #F65B77;
    --color-alternative: rgba(255, 255, 255, 0.12);
}

#app {
    background-image: var(--header-image);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/** Default **/
.dot {
    width: 20px;
    text-align: center;
    opacity: 0.7;
    margin: 0;
}

.dot:before {
    content: ' \25CF';
    font-size: 10px;
}

.grow {
    flex: 1;
}

.grow-trans {
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 0;
    overflow: hidden;
}

.expand {
    transform: rotate(0deg);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms !important;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.row-reverse {
    display: flex;
    flex-direction: row-reverse;
}

.wrap {
    flex-wrap: wrap;
}

.column {
    display: flex;
    flex-direction: column;
}

.hide {
    display: none;
}

.paper {
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.08), 0 80px 160px rgba(0, 0, 0, 0.04) !important;
    border-radius: 18px !important;
}

.transparent {
    background-color: transparent !important;
}

.centered {
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.progress-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}

/* Event badge */

.badge-emerging {
    background-color: var(--color-red) !important;
}

.badge-ongoing {
    background-color: var(--color-yellow) !important;
}

.badge-finished {
    background-color: var(--color-grey) !important;
}

.badge-online {
    background-color: var(--color-green) !important;
}

.badge-root {
    height: 40px;
}

.badge {
    box-shadow: 0 0 0 2px #fff;
}

.badge::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
}

.icon-up {
    color: var(--color-green);
}

.icon-down {
    color: var(--color-red);
}

.label {
    color: #fff;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 400;
    font-family: Work Sans, serif;
    line-height: 12px;
    padding: 4px 8px;
    display: inline-flex;
    height: 20px;
    width: 59px;
    justify-content: center;
    align-items: center;
}

.label-full {
    width: 100%;
}

.label-red {
    background-color: var(--color-red);
}

.label-yellow {
    background-color: var(--color-yellow);
}

.label-grey {
    background-color: var(--color-grey);
}

.small-icon {
    width: 24px !important;
    height: 24px !important;
}

.popper {
    z-index: 1201;
}

.not-found {
    background: var(--header-image) no-repeat center center fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/** Data Grid **/

.MuiDataGrid-root {
    border: none !important;
    border-radius: unset !important;
}

.MuiDataGrid-columnSeparator {
    display: none !important;
}

.MuiDataGrid-root .MuiDataGrid-cell {
    border-bottom: none !important;
}

.MuiDataGrid-root .MuiDataGrid-colCell,
.MuiDataGrid-root .MuiDataGrid-cell:focus {
    outline: none !important;
}

.MuiDataGrid-colCellTitle {
    font-weight: 600 !important;
}

/*.MuiDataGrid-root .MuiDataGrid-columnsContainer {*/
/*    background-color: var(--dataset-header);*/
/*    backdrop-filter: blur(4px);*/
/*    border-top-left-radius: 18px;*/
/*    border-top-right-radius: 18px;*/
/*}*/

/*.MuiDataGrid-root .MuiDataGrid-footer {*/
/*    background-color: var(--dataset-item);*/
/*    border-bottom-left-radius: 18px;*/
/*    border-bottom-right-radius: 18px;*/
/*}*/

/*.MuiDataGrid-root .MuiDataGrid-overlay {*/
/*    background-color: var(--dataset-item) !important;*/
/*}*/

/*.MuiDataGrid-root .MuiDataGrid-dataContainer {*/
/*    background-color: var(--dataset-item);*/
/*}*/

.MuiAlert-root {
    align-items: center;
}

section {
    font-family: Open Sans, serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

/** Home **/

.Home {
    background: var(--header-image) no-repeat center center fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/** Search **/

.Search {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: 46px;
    background-color: #fff !important;
    padding: 0 8px 0 16px;
    border: 1px solid #dfe1e5;
    box-shadow: none;
    border-radius: 24px;
}

.SearchLogo {
    height: 233px;
    margin-top: 72px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

@media only screen and (max-height: 768px) {
    .SearchLogo {
        height: 100px;
    }
}

.Search-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.Search-open,
.Search:hover {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.SearchMenu {
    background: #fff;
    box-shadow: 0 4px 6px rgba(32, 33, 36, .28);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    border: 0;
    border-radius: 0 0 24px 24px;
    padding: 0 0 4px;
    overflow: hidden;
}

.SearchMenuDivider {
    background-color: #e8eaed !important;
    margin: 0 20px 4px 14px !important;
}

.SearchMenuAvatar {
    min-width: 0 !important;
}

.SearchMenuList {
    max-height: 360px;
    min-height: 36px;
    overflow: auto;
}

.SearchMenuItem {
    margin-left: 8px;
    overflow: hidden;
}

.Searching {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    color: var(--primary-main) !important;
    box-shadow: 0 0 0 0 var(--primary-main);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.SearchMobileHeader {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 48px;
    background-color: #fff;
}

.SearchMobile-input {
    width: 100%;
}

.SearchMobile-progres {
    padding: 12px;
}

.SearchMobileList {
    margin-top: 48px !important;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--primary-main);
        opacity: 0.7;
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px var(--primary-main);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--primary-main);
        opacity: 0;
    }
}

.Search-input {
    margin-left: 8px;
    flex: 1;
}

.Search-divider {
    height: 28px !important;
}

.SearchIcon {
    color: #9aa0a6;
}

.SearchButtons {
    padding-left: 3px;
    padding-right: 4px;
}

/** Appbar **/

#appbar {
    color: black;
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.2s;
    z-index: var(--header-zIndex);
}

.appbar-divider {
    background-color: var(--header-divider) !important;
    display: block;
}

.scrolled {
    background-color: var(--header-appbar);
}

/** User menu **/

.UserAvatarDropdown {
    margin-left: -8px !important;
}

.UserAvatarDropdownIcon {
    font-size: 30px !important;
    color: var(--primary-main) !important;
}

.UserMenuIcon {
    min-width: 0 !important;
    margin-right: 8px;
}

/** Logo **/

.Logo > img {
    display: block;
    content: var(--bundle-logo);
}

@media (max-width: 600px) {
    .Logo > img {
        width: 150px;
    }
}

.LogoTitle > img {
    content: var(--bundle-title);
}

@media (max-width: 600px) {
    .LogoTitle > img {
        width: 200px;
    }
}

.LogoSv > img {
    content: var(--bundle-sv);
}

@media (max-width: 600px) {
    .LogoSv > img {
        width: 160px;
    }
}

/** Headline **/

.Headline {
    display: flex;
    align-items: center;
    padding: 10px 0 10px;
}

.scrolled .Headline {
    padding: 0;
}

.HeadlineSummary {
    display: none;
    flex-direction: row;
    margin-left: 35px;
    align-items: center;
}

.scrolled .HeadlineSummary {
    color: #fff;
    display: flex;
}

.HeadlineSummary > .info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 600px) {
    .HeadlineSummary > .info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1023px) {
    .HeadlineSummary {
        margin-left: 0;
    }

    .HeadlineSummary > .info {
        margin-left: 20px;
    }

    .HeadlineSummary > .info > h6 {
        font-size: 14px;
        line-height: 16px;
    }

    .HeadlineSummary > .info > p {
        font-size: 14px;
        line-height: 16px;
    }
}

.HeadlineItem {
    padding: 0 8px 0 8px;
}

.HeadlineDivider {
    height: 15px !important;
    background-color: #fff !important;
}

@media (max-width: 600px) {
    .HeadlineDivider {
        display: none;
    }
}

/** Header **/

header {
    width: 100%;
    padding-top: 80px;
}

.HeaderLink {
    font-weight: 600;
}

.HeaderBreadcrumbs > * {
    font-size: 12px;
}

.HeaderBreadcrumbsTypography {
    font-size: 12px !important;
}

.scrolled .HeaderDivider {
    display: none;
}

.HeaderInfo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 24px;
}

.HeaderInfoCentered {
    align-items: center;
    padding-top: 0;
}

@media (max-width: 1023px) {
    .HeaderInfo {
        padding: 24px 0 0 0;
    }
}

/** Header Summary **/

.HeaderSummaryWrapper {
    background-color: var(--header-summary-wrapper) !important;
    display: flex;
    flex-direction: column;
    width: 400px;
    flex: 0 0 400px;
    box-shadow: none !important;
    margin-right: 24px;
}

.HeaderSummaryWrapper > div:first-child {
    display: flex;
    padding: 20px 20px 20px 20px;
    color: #fff;
}

.HeaderSummary {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.HeaderSummaryFlat > div:not(.Chart) {
    padding: 0 !important;
}

.HeaderSummaryFlat > div > .HeaderSummaryAvatar {
    background-color: #fff !important;
}

.HeaderSummary > div:not(.Chart) {
    display: flex;
    flex-direction: row;
    padding: 20px 20px 0 20px;
}

.HeaderSummary > div:last-child {
    padding-bottom: 20px;
}

@media (max-width: 1023px) {
    .HeaderSummaryWrapper {
        width: 100%;
        margin-right: 0;
        flex: 0 0 100%;
    }
}

.HeaderSummaryItem {
    margin-left: 10px;
}

@media (max-width: 1023px) {

    .HeaderSummaryItem > h4 {
        font-size: 16px;
        line-height: 21px;
    }

    .HeaderSummaryItem > p {
        font-size: 14px;
        line-height: 16px;
    }
}

.HeaderSummary-colorSecondary {
    opacity: 0.55;
}

.HeaderSummarySkeleton {
    width: 200px;
    background-color: var(--color-alternative) !important;
}

.HeaderSummary .HeaderSummarySkeleton {
    width: 200px;
    background-color: rgba(0, 0, 0, 0.11) !important;
}

.HeaderSummaryAvatar {
    background-color: var(--color-alternative) !important;
}

.HeaderSummary .HeaderSummaryAvatar {
    color: black;
    background-color: rgba(181, 181, 181, 0.23) !important;
}

/** Main Content **/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > div {
    margin-top: 48px;
}

main > div:last-child {
    margin-bottom: 24px;
}

main > div.flat:first-child {
    margin-top: 24px !important;
}

/** Table **/

.DataTable {
    width: 100%;
}

.DataTable > div {
    height: 100% !important;
}

.DataTablePagination {
    display: flex;
}

.DataList > li:last-child {
    display: none;
}

.DataListItem {
    align-items: unset !important;
}

.DataListCheck {
    min-width: 0 !important;
}

.DataListTitle {
    opacity: 0.55;
}

.DataListItem > table {
    padding: 5px 0 5px 0;
    table-layout: fixed;
    width: 100%;
}

.DataListItem > table > td, th {
    width: 33%;
}

.DataListItem > table > tbody > tr > td:not(:first-child) > div > *,
.DataListItem > table > tbody > tr > td:not(:first-child) > * {
    font-weight: 600;
}

.DataListItem > div {
    padding: 0 4px 0 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    opacity: 0.55;
}

.DataListDivider {
    margin: 0 16px 0 16px !important;
}

.DataListMenu {
    display: flex;
    flex-direction: row-reverse;
    padding: 8px 16px 8px 16px
}

.DataListSortHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
}

.DataListLoader {
    justify-content: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/** Chart **/

.Chart {
    width: 100%;
    height: var(--chart-height);
    padding: 20px 20px 30px 20px;
}

@media (max-width: 1023px) {
    .Chart {
        height: var(--chart-md-height);
        margin-bottom: 20px;
    }
}

.ChartContainer {
    max-width: 800px !important;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
}

.ChartTitle {
    padding-bottom: 10px;
    color: var(--header-label);
}

.ChartTitleCard {
    padding-bottom: 10px;
    color: var(--header-card-label);
}

/** Event Article **/

.EventArticlesHighlight > div:not(:last-child) {
    margin: 0 0 24px;
}

.EventArticle > div:first-of-type {
    padding: 20px;
}

.EventArticle > div:first-of-type > *:not(:last-child) {
    padding-bottom: 18px;
}

@media (max-width: 1023px) {
    .EventArticle > div:first-of-type > *:not(:last-child) {
        padding-bottom: 14px;
    }
}

.EventArticleTitle {
    padding-top: 10px;
}

.EventArticleDate {
    font-family: Work Sans, serif !important;
    font-weight: normal !important;
    opacity: 0.55;
}

.EventArticleTranslated {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 5px;
}

.EventArticleTranslated > p {
    color: #3E257A;
    font-family: Arial, serif !important;
    font-weight: 400 !important;
    font-style: normal;
    font-size: 11px !important;
    line-height: 13px !important;
    margin-right: 5px !important;
}

@media (max-width: 600px) {
    .EventArticleMain h3.EventArticleTitle {
        font-size: 18px;
        line-height: 22px;
    }

    .EventArticleMain p.EventArticleSource {
        font-size: 14px;
        line-height: 16px;
    }

    .EventArticleMain p.EventArticleText {
        font-size: 15px;
        line-height: 18px;
    }
}

.EventArticleActions {
    display: flex;
    flex-direction: row;
}

.EventArticleActions > * {
    margin-right: 16px;
}

.EventArticlesFooter {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    padding: 8px 20px 8px 20px;
}

.EventArticlesFooter > a {
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0.43;
}

.EventArticlesFooter > a > svg {
    font-size: 28px;
    margin-right: 5px;
}

ul.EventArticlesSimilar {
    margin: 0 20px 0 0;
}

ul.EventArticlesSimilar > li {
    padding-bottom: 18px;
    font-size: 20px;
}

ul.EventArticlesSimilar > li::marker {
    color: var(--primary-main);
}

@media (max-width: 1023px) {
    ul.EventArticlesSimilar > li {
        padding-bottom: 14px;
    }
}

ul.EventArticlesSimilar > li > h2 {
    font-size: 18px !important;
    line-height: 20px !important;
    opacity: 0.7;
}

ul.EventArticlesSimilar > li > p {
    font-size: 14px !important;
    line-height: 16px !important;
    opacity: 0.7;
}

/** Event Description **/

.EventDescriptionAlert {
    background-color: #fff !important;
    align-items: flex-start;
}

.EventDescriptionAlert .MuiAlertTitle-root {
    margin-top: 0 !important;
}

/** Event History **/

.EventHistoryChart {
    width: 100%;
    height: var(--chart-height);
    padding: 20px 20px 30px 20px;
}

@media (max-width: 1023px) {
    .EventHistoryChart {
        height: var(--chart-md-height);
    }
}

/** Company Chart **/

.CompanySentiment {
    padding: 20px 0 30px 0 !important;
}

.CompanyRange {
    margin-top: 20px !important;
}

.CompanyRangeLabel {
    margin-bottom: 5px;
    font-size: 14px !important;
    color: var(--header-label) !important;
}

.CompanyRangeSelect {
    width: 250px;
    background-color: #fff;
}

@media (max-width: 600px) {
    .CompanyRangeSelect {
        width: 100%;
    }
}

.CompanyRangeSelect:hover {
    border-color: #fff !important;
}

.CompanyWarningChart {
    height: 350px !important;
}

.CompanyWarningFilter > div {
    margin: 0 5px 5px 0;
}

.CompanyWarningChip {
    background-color: #fff !important;
}

/** Login **/

.Login {
    height: 100vh !important;
}

.LoginContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.LoginButton {
    margin-top: 16px !important;
    width: 250px;
}

.LoginMessageAnchor {
    top: 0 !important;
    transform: none !important;
}

.LoginMessageRoot {
    left: 0 !important;
    right: 0 !important;
}

.LoginMessage {
    width: 100%;
    border-radius: 0 !important;
    background-color: #fff !important;
    color: rgba(0, 0, 0, 0.6) !important;
    box-shadow: none !important;
}