* {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html { background-color: black; }

body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; z-index: 10; }

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
    position: relative;
    min-height: 240px;
    padding-left: 12px;
    padding-right: 8px;
    color: white;
    z-index: 100;
    background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
    pointer-events: none;
}

.text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2%;
}

.text h1 {
    font-size: 8em;
    font-weight: 100;
    line-height: 1;
    margin: 0;
}

.flex-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    max-width: calc( 100vw - 20px );
}

.legend-responsive {
    display: none;
}

.introduction {
    font-size: 12px;
    font-weight: 300;
    max-width: 440px;
    margin-top: 44px;
}

p {
    margin: 0;
}

.introduction p + p {
    margin-top: 8px;
}

p + p.reference {
    margin-top: 16px;
}

.reference {
    font-size: 8px;
}

.reference span {
    display: block;
}

.reference span + span {
    margin-top: 2px;
}

.title-data-source {
    font-weight: bold;
}

.legend {
    display: flex;
}

.legend, .legend-responsive {
    flex-direction: row;
    gap: 8px;
    padding-top: 16px;
}

.legend .graph, .legend-responsive .graph {
    display: block;
    width: 20px;
    height: 160px;
    background-image: url('images/legend.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: none;
    box-sizing: content-box;
}

.legend .data, .legend-responsive .data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
}

.data, .data .max, .data .min {
    font-family: ui-monospace, monospace;
}

.data .max {
    margin-top: -8px;
}

.data .min {
    margin-bottom: -8px;
}

#loadingIndicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

@keyframes ProgressLoadingIndicator_wait-indicator-animation {
    0% {
        transform:rotate(0deg)
    }

    to {
        transform:rotate(1turn)
    }
}

@keyframes ProgressLoadingIndicator_progress-indicator-animating {
    0% {
        opacity:1
    }

    12.5% {
        opacity:.9
    }

    25% {
        opacity:.7
    }

    37.5% {
        opacity:.6
    }

    50% {
        opacity:.4
    }

    62.5% {
        opacity:.3
    }

    75% {
        opacity:.2
    }

    87.5% {
        opacity:.13
    }
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper.ProgressLoadingIndicator_with-curtain {
    height: 100%;
    flex-grow: 1;
    background-color: hsla(0, 0%, 100%, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height:calc(100vh - var(--r-globalnav-height) - 80px);
    border-radius: 20px;
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg {
    width: 39px;
    height: 39px;
    opacity:1
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke {
    fill: rgba(0, 0, 0, .56);
    opacity: .2;
    animation-name: ProgressLoadingIndicator_progress-indicator-animating;
    animation-direction: normal;
    animation-timing-function: cubic-bezier(1, .1, 0, .3);
    animation-duration: .8s;
    animation-iteration-count:infinite
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(0) {
    animation-delay:-.1s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:first-child {
    animation-delay:0s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(2) {
    animation-delay:.1s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(3) {
    animation-delay:.2s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(4) {
    animation-delay:.3s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(5) {
    animation-delay:.4s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(6) {
    animation-delay:.5s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(7) {
    animation-delay:.6s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper svg .progress-indicator-spoke:nth-child(8) {
    animation-delay:.7s
}

.ProgressLoadingIndicator_progress-indicator-icon-wrapper.ProgressLoadingIndicator_dark__UlDsr svg .progress-indicator-spoke {
    fill:hsla(0, 0%, 100%, .8)
}

@keyframes Button_wait-indicator-animation {
    0% {
        transform:rotate(0deg)
    }

    to {
        transform:rotate(1turn)
    }
}

@media ( max-width: 960px ) {
    .text h1 {
        font-size: 6em;
    }
    
    .introduction {
        margin-top: 32px;
    }
}

@media ( max-width: 880px ) {
    .text {
        flex-direction: column;
    }
    
    .introduction {
        margin-top: 24px;
    }
}

@media ( max-width: 600px ) {
    .legend .data, .legend-responsive .data {
        font-size: 10px;
    }
    
    .decimal {
        display: none;
    }
}

@media ( max-width: 560px ) {
    .text h1 {
        font-size: 4.7em;
    }
    
    .decimal {
        display: none;
    }
}

@media ( max-width: 428px ) {
    .legend {
        display: none;
    }
    
    .legend-responsive {
        display: flex;
    }
    
    .text h1 {
        font-size: 6em;
    }
    
    .introduction {
        margin-top: 12px;
    }
}

@media ( max-width: 374px ) {
    .text h1 {
        font-size: 5em;
    }
    
    .introduction {
        margin-top: 14px;
        font-size: 10px;
    }
    
    .reference {
        font-size: 6px;
    }
}
