/*
    Green: #009E49
    Yellow: #FCD116 | 252, 209, 22
    Red: #CE1126
*/


* { 
    margin:0; 
    padding:0; 
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-size: 17px;
    line-height: 1.47059;
    color: #494949;
}
body { 
    background-color: rgb(245, 245, 248);
    font-family: system-ui, Helvetica Neue, sans-serif;
}
#main {
    position: relative;
    height: 100%;
    overflow: visible;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
/** {
    scrollbar-width: 10px;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}*/
/* Chrome, Edge, and Safari */
/**::-webkit-scrollbar {
    width: 10px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    border: 3px solid transparent;
}*/


/* Utilities  */
.visually-hidden, 
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.unselectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
@keyframes dash100 {
    0% {
        stroke-dasharray: 1, 297;
        stroke-dashoffset: 0
    }

    45%, 55% {
        stroke-dasharray: 266, 297;
        stroke-dashoffset: -78
    }

    100% {
        stroke-dasharray: 266, 297;
        stroke-dashoffset: -296
    }
}
.global-loader-modal {
    position: absolute;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}
.global-loader-modal div {
    position: fixed;
    height: 100px;
    width: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    display: block;
}
.global-loader-modal div.global-loader-modal-show svg {
    display: inline-block;
}
.circle-loader {
    display: block;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    fill: transparent;
    animation: spin 2.5s linear infinite;
    transform: translate3d(0, 0, 0);
}
.circle-loader circle.fixed {
    stroke: rgba(127, 127, 127, .2);
    stroke-width: 2;
}
.circle-loader circle.rotate {
    animation: dash100 2s linear infinite;
    stroke-width: 2;
    stroke: #7F7F7F;
    stroke-dasharray: 170%;
}





.toggle-field {
    position: relative;
    margin: 1em 0;
    padding: 1em 0;
    border: 1px solid rgb(220, 220, 225);
    border-right: none;
    border-left: none;
}
.toggle-field-checkbox-input {
    display: none;
}
.toggle-field-checkbox-input:checked + .toggle-field-label {
/*    color: #009E49;*/
}
.toggle-field-checkbox-input:checked + .toggle-field-label:before {
    background-color: #009E49;
}
.toggle-field-checkbox-input:checked + .toggle-field-label:after {
    left: 0.6em;
}
.toggle-field-label {
    position: relative;
    display: block;
    padding-left: 2.4em;
    line-height: 1.3;
    cursor: pointer;
}
.toggle-field-label:before,
.toggle-field-label:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1.2em;
    height: 1.2em;
    border-radius: 1.2em;
    content: '';
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.toggle-field-label:before {
    width: 1.8em;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.15s ease-in 0s;
}
.toggle-field-label:after {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: left 0.15s ease-in 0s;
}
.toggle-field-description {
    margin-top: 0.8em;
    font-size: 0.8em;
    color: rgb(150, 150, 155);
}
.toggle-field-reversed > input[type="checkbox"]:checked + label:after {
    left: auto;
    right: 0;
}
.toggle-field-reversed > label:before,
.toggle-field-reversed > label:after {
    left: auto;
    right: 0;
}
.toggle-field-reversed > label:after {
    right: 0.6em;
}
.toggle-field-reversed > label:after {
    transition: right 0.15s ease-in 0s;
}
.toggle-field-reversed > label {
    padding-left: 0;
    padding-right: 2.4em;
}






#header {
    display: flex;
    flex-direction: row;
    align-items: center;
/*    border-bottom: 1px solid #FCD116;*/
/*    padding: 20px;*/
}
#header-content {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 34px 54px;
/*    border-radius: 34px;*/
    background-color: #fff;
}
#header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
#header-nav li {
    display: block;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .15s cubic-bezier(.07,.95,0,1);
    font-weight: 500;
}
#header-nav li:hover {
    background-color: rgb(248, 248, 252);
}
#header-nav li.active,
#header-nav li.active:hover {
    background-color: rgb(252, 209, 22);
    color: rgb(40, 30, 30);
}
#header-nav li.disabled,
#header-nav li.disabled:hover {
    background-color: inherit;
    color: rgb(200, 200, 205);
    cursor: default;
}
#header-extra-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 13px;
}
#header-language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
#header-language-selector li {
    display: block;
    padding: 3px 0 0;
    transition: all .15s cubic-bezier(.07,.95,0,1);
    color: rgb(180, 180, 185);
    cursor: pointer;
    text-transform: uppercase;
}
#header-language-selector li:hover {
    color: rgb(150, 150, 155);
}
#header-language-selector li.active,
#header-language-selector li.active:hover {
    color: #111;
}
#sign-out-btn {
    font-size: inherit;
    border: 0;
    outline: 0;
    padding-top: 2px;
    background: transparent;
    cursor: pointer;
    color: rgb(227, 0, 0);
}



#header-image {
    position: relative;
    height: 80%;
    height: calc(100% - 130px);
    background-image: url('img/bg2.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
#header-image:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 1;
    background: rgba(0,0,0, 0.2);
/*    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);*/
}
 @media screen and (orientation:portrait) {
    #header-image {
        height: 45%;
        height: calc(50% - 130px);
    }
}
#header-image h2 {
    position: relative;
    z-index: 1;
    font-size: 70px;
    color: #fff;
}
#header-image p {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 50ch;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
}

.page-header {
    padding: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.page-header h2 {
    position: relative;
    z-index: 1;
    font-size: 70px;
    color: #111;
}
.page-header p {
    position: relative;
    z-index: 1;
    width: 50ch;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
}
.page-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 0 68px;
}
.page-content-inner {
    width: 80ch;
/*    margin: 54px;*/
    background-color: #fff;
    border-radius: 34px;
    padding: 40px 40px 42px;
}
.page-content h1 {
    font-size: 1.3em;
    margin-bottom: 0;
    line-height: inherit;
}
.page-content p {
    margin-bottom: 1em;
}
.page-content ul {
    margin-left: 1em;
}
.page-content ol {
    margin-left: 1.3em;
} 










.var-selector-container {
    margin: 54px;
    background-color: #fff;
    border-radius: 34px;
    padding: 40px 40px 42px;
}
.var-selector-row,
.var-filter-selector-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 34px;
}
.var-selector-primary-controls {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 34px;
}
.var-selector-secondary-controls {

}
.var-filters-container {
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
    padding-top: 20px;
}
.var-filter-selector-row {
    padding: 10px 0 15px;
}
.var-selector,
.var-filter-selector {
    flex-grow: 0.5;
    width: 50%;
}

.var-selector-label {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: inherit;
}
.var-selector-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 70px;
    outline: none;
    border: none;
    border-radius: 12px;
    padding: 0.5em 1em;
    background: rgba(252, 209, 22, 0.15);
    font-size: inherit;
}
#add-var-filter-btn,
#clear-filters-btn,
.remove-filter-btn {
    margin-top: 0.7em;
    padding: 7px 15px 7px 15px;
    border: 0;
    border-radius: 34px;
    background-color: rgb(0, 113, 227);
    color: #fff;
    font-size: 0.8em;
    font-weight: inherit;
    cursor: pointer;
    transition: all .15s cubic-bezier(.07,.95,0,1);
}
#add-var-filter-btn:hover {
    background-color: rgb(0, 119, 237);
}
#clear-filters-btn {
    display: none;
}
#clear-filters-btn,
.remove-filter-btn {
    margin-left: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    color: inherit;
}
#clear-filters-btn:hover {
    border-color: #aaa;
}
.remove-filter-btn {
    margin: 0;
    border-radius: 12px;
    padding: 8px 10px 5px 10px;
    height: 37px;
    background-color: rgb(230, 230, 235);
    transition: all .15s cubic-bezier(.07,.95,0,1);
    border: 0;
}
.remove-filter-btn > svg {
    width: 17px;
    height: 17px;
    fill: #fff;
}
.remove-filter-btn:hover {
    background-color: rgb(225, 225, 230);
}
.var-filter-selector-heading {
    font-weight: bold;
    margin-bottom: 0.3em;
    font-size: inherit;
}
.var-filter-selector-label {
    font-size: 0.8em;
    margin-bottom: 0.5em;
    display: block;
}
.var-filter-selector-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 70px;
    outline: none;
    border: none;
    border-radius: 12px;
    padding: 0.5em 1em;
    background: rgb(0, 119, 237, 0.1);
    font-size: inherit;
}

.date-range-inner-container {
    display: flex;
    flex-direction: row;
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    gap: 20px;*/
}
.date-selector {
    flex-grow: 0.5;
}
.date-selector-divider {
    display: block;
    width: 14px;
    color: #f0f0f0;
    text-align: center;
}
.date-selector-label {
    display: block;
    font-size: 0.8em;
    width: 80px;
}
.date-selector-input {
    outline: none;
    border: none;
    border-radius: 12px;
    padding: 0.5em 1em;
    background: rgba(252, 209, 22, 0.15);
    font-size: inherit;
}

.section-header {
    position: relative;
    font-size: 30px;
    padding-bottom: 24px;
    line-height: 1;
}
.sh-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
}
.sh-variable-title > label {
    display: block;
    text-align: left;
    font-size: 11px;
    margin-bottom: 5px;
}
.sh-variable-title > h3 {
    font-size: inherit;
}
.sh-divider {
    margin: 0;
    background-color: rgb(230, 230, 235);
    width: 1px;
    position: relative;
    top: 3px;
}
.sh-filters,
.sh-dates {
    margin-top: 0;
    font-size: 11px;
/*    text-align: left;*/
}
.sh-filters-list,
.sh-dates-list {
    margin-top: 7px;
}
.sh-filters-list > span,
.sh-dates-list > span {
    display: block;
    margin-top: 4px;
}
.section-header .adm-switch {
    cursor: pointer;
    margin-right: 5px;
}
.section-header .adm-switch:hover {
    color: #111;
    transition-duration: 0.1s;
}
.section-header .adm-switch.active,
.section-header .adm-switch.active:hover {
    color: rgb(0, 113, 227);
    border: 0;
}

.section-title {
    position: relative;
    text-align: center;
    font-size: 30px;
    padding-bottom: 24px;
    line-height: 1;
}
/*.section-title:before {
    display: block;
    margin-bottom: 18px;
    width: 100%;
    height: 5px;
    background-color: #FCD116;
    background-color: #494949;
    border-radius: 5px;
    content: '';
}*/
.section-title > span {
    font-weight: 300;
/*    display: block;
    font-size: 0.9em;
    margin-top: 0.3em;*/
}
.section-title > i {
    display: inline-block;
    margin: 0 0.5em;
    background-color: rgb(230, 230, 235);
    width: 1px;
/*    display: none;*/
}

.chart-container {
    margin: 54px;
    background-color: #fff;
    border-radius: 34px;
    padding: 40px 40px 42px;
}
.chart-container .bb-xgrid-focus {
    visibility: hidden;
}
.chart-container > div {
/*    min-height: 300px;*/
}
.chart-type-switch {
    padding-bottom: 34px;
    margin: 6px 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgb(230, 230, 234);
}
.chart-type-switch button {
    display: block;
    font-size: inherit;
    border: 0;
    outline: 0;
    background: rgb(246, 246, 249);
    cursor: pointer;
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-duration: 0.05s;
}
.chart-type-switch button:hover {
    background-color: rgb(243, 243, 246);
}
.chart-type-switch button.active {
    background-color: #FCD116;
}

.table-container {
    margin-top: 54px;
    border-top: 1px solid rgb(230, 230, 234);
    /*margin: 54px;
    background-color: #fff;
    border-radius: 34px;
    padding: 40px 40px 42px;*/
}
.table-container table {
    border-collapse: collapse;
    width: 100%;
}
.table-container tr {
    transition-duration: 0.05s;
}
.table-container tbody tr:hover {
    background-color: rgba(252, 209, 22, 0.08);
/*    background-color: rgba(0, 113, 227, 0.07);*/
}
.table-container th, td {
/*    border-bottom: 1px solid rgb(230, 230, 234);*/
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
    cursor: default;
}
.table-container thead th {
}
.table-container td {
    transition-duration: 0.05s;
}
.table-container tbody td:hover {
    background-color: rgba(252, 209, 22, 0.2);
/*    background-color: rgba(0, 113, 227, 0.15);*/
}

.map-container {
    position: relative;
    margin: 54px;
    background-color: #fff;
    border-radius: 34px;
    padding: 30px 40px 42px;
}
.map-container .section-title {
    padding-bottom: 30px;
}
#map-container {
    height: 750px;
    border-radius: 5px;
}
.map-legend {
    position: absolute;
    z-index: 200000;
    right: 65px;
    bottom: 125px;
    width: 250px;
    max-height: 450px;
    overflow-y: auto;
    padding: 20px 25px 20px 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    font-size: 12px;
}
.map-legend span {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 1em;
    vertical-align: middle;
    border-radius: 12px;
}
.map-legend-title {
    font-size: inherit;
    margin-bottom: 1em;
}
.map-legend-data-item-bar {
    position: relative;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.07);
}
.map-legend-data-item-bar > span {
    position: absolute;
    top: 1px;
    right: 21px;
    z-index: 1;
    color: #000;
}
.map-legend-data-item-bar-value {
    height: 18px;
    min-width: 4px;
    width: 4px;
    background-color: currentColor;
    transition-duration: 0.5s;
}



.leaflet-tooltip ul,
.leaflet-popup-content-wrapper ul {
    list-style-type: none;
}
.leaflet-tooltip span,
.leaflet-popup-content-wrapper span {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 1em;
    vertical-align: middle;
    border-radius: 12px;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: inherit;
}
.leaflet-popup-content-wrapper li {
    margin: 0.3em 0;
}
.leaflet-popup-tip-container {
    display: none;
}
.leaflet-popup-close-button {
    display: none;
}
.leaflet-label {
    color: #fff;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.footer-container {
/*    margin: 40px;*/
/*    background-color: #fff;*/
    border-radius: 34px;
    padding: 0 34px 54px 34px;
    text-align: center;
    font-size: 14px;
}






.playback {
    /*width: 650px;*/
    display: flex;
    flex-direction: row;
    align-items: stretch;
/*    float: right;*/
/*    margin-right: -5px;*/
    visibility: hidden;
    /*justify-content: center;*/
    /*flex-wrap: wrap;*/
/*    height: 40px;*/
    margin-top: 10px;
    width: 100%;
}
.playback-show {
    visibility: visible;
}
.pbtn {
    font-size: inherit;
    border: 0;
    outline: 0;
    background: rgb(246, 246, 249);
    cursor: pointer;
    width: 34px;
    height: 34px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-duration: 0.05s;
    margin: 0 1px;
}
.pbtn:hover {
    background-color: rgb(235, 235, 239);
}
/*.pbtn {
    width: 28px;
    border: 0;
    margin: 0 1px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    outline: 0;
}
.pbtn:hover {
    background-color: rgba(0, 0, 0, 0.15);
}*/
.pbtn > svg {
    width: 16px;
    height: 16px;
    fill: #444;
}
.btn-prev > svg {
    transform: rotate(180deg);
}
.btn-pause {
    display: none;
}

/* Style range */
.playback-range {
    /*padding-left: 5px;*/
    flex-grow: 1;
    padding-left: 10px;
}
.playback-range > label {
    display: block;
    font-size: 11px;
    font-family: sans-serif;
    line-height: 1;
    text-align: center;
    margin-top: 5px;
    margin-bottom: -0.7em;
    font-style: normal;
    font-weight: bold;
}
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    flex-grow: 1;
    background: transparent;
    vertical-align: middle;
    line-height: 1.2;
    /*margin-top: 10px;*/
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 0;
    border: none;
    width: 5px;
    height: 10px;
    margin-top: -4px;
}
input[type=range]::-moz-range-thumb {
    cursor: pointer;
    border-radius: 0;
    border: none;
    width: 5px;
    height: 10px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    cursor: pointer;
    height: 2px;
}
input[type=range]::-moz-range-track {
    width: 100%;
    cursor: pointer;
    height: 2px;
}
input[type=range]::-webkit-slider-runnable-track { background: #555; }
input[type=range]::-moz-range-track { background: #555; }
input[type=range]::-webkit-slider-thumb       { background: #000; }
input[type=range]::-moz-range-thumb           { background: #000; }