<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    --blue: rgb(126, 197, 255);
    --unemp: #af8979;
    --imm: orange;
    --font-serif: 'Arvo', serif;
    --font-sans: 'Raleway', sans-serif;
}

body {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: var(--font-sans);
}

header {
    position: relative;
    height: 50px;
    background-color: black;
    color: white;
    font-size: 20px;
    /* text-transform: uppercase; */
    font-weight: 100;
    padding: 13px 13px 13px;
    box-sizing: border-box;
    font-family: var(--font-serif);
}

/*
Styles for custom Select Box adapted from https://www.w3schools.com/howto/howto_custom_select.asp
*/

/*the container must be positioned relative:*/
.custom-select {
    display: inline-block;
    position: relative;
    color: white;
    width: auto;
    font-size: 1em;
    font-family: var(--font-serif);
    vertical-align: top;
    margin-right: -4px;
    margin-left: 4px;
    margin-top: -3px;
}

.custom-select select {
    display: none; /*hide original SELECT element:*/
}

.select-selected {
    background-color: transparent;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: '';
    top: 13px;
    right: 0;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fcbfa7 transparent transparent transparent;
    display: none;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fcbfa7 transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    color: #fcbfa7;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    padding: 0 0 1.5em 0.5em;
    height: 1.3em;
    line-height: 31px;
}

.select-selected {
    padding-right: 10px;
    position: relative;
}

.select-selected:hover {
    background-color: #442727;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: black;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 11.3em;
    width: 13.2em;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: #442727;
}

/* Style buttons */
.btn {
    vertical-align: top;
    height: 31px;
    width: 31px;
    background-color: black;
    color: #fcbfa7;
    border: none;
    box-sizing: border-box;
    padding: 1px 2px 0 0;
    font-size: 12px;
    cursor: pointer;
    outline: none !important;
}

/* Darker background on mouse-over */
.btn:hover {
    color: #fcbfa7;
    background-color: #442727;
}

#showarcs {
    width: auto;
    padding: 0 10px;
    margin-top: -3px;
    position: absolute;
    right: 7px;
}
#showarcs #activetext {
    display: none;
}
#showarcs.active #disabledtext {
    display: none;
}
#showarcs.active #activetext {
    display: inline;
}

header select {
    position: relative;
    top: -3px;
    left: 10px;
}

#next,
#prev {
    margin-top: -3px;
}

#next {
    padding: 1px 0px 0 0;
    margin-left: -5px;
}

#mapwrapper {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
}

#map {
    width: 100%;
    min-width: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--blue);
    padding: 0 !important;
}

#zoomwrapper {
    --button-size: 36px;
    position: absolute;
    z-index: 100;
    bottom: calc(var(--button-size) * 0.9);
    right: calc(var(--button-size) / 1.5);
    background-color: transparent;
    width: calc(var(--button-size) * 2 + 15);
    height: var(--button-size);
    padding-left: calc(var(--button-size) / 4);
}

#zoomin,
#zoomout {
    display: inline-block;
    width: var(--button-size);
    height: var(--button-size);
    margin: 0px calc(var(--button-size) / 4) 0px 0px;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    font-size: calc(var(--button-size) * 0.5);
    line-height: calc(var(--button-size) + 1px);
    text-align: center;
    font-weight: bold;
    border-radius: calc(var(--button-size) * 2);
    cursor: pointer;
    user-select: none;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
}
#zoomin:active,
#zoomin:hover,
#zoomout:active,
#zoomout:hover {
    background-color: black;
    color: #fcbfa7;
}

#zoomin i,
#zoomout i {
    position: absolute;
    top: 0.6em;
    left: 0.6em;
}

#legend,
#countryinfo,
#countryranking {
    background-color: black;
    color: white;
    position: absolute;
    z-index: 1;
    padding: 9px 10px 9px 13px;
    font-size: 0.8em;
    top: 10px;
}

#legend,
#countryinfo,
#countryranking,
#zoomin,
#zoomout {
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
}

#countryinfo {
    padding: 20px 17px 8px 20px;
}

#countryranking {
    top: 150px;
    left: 10px;
    width: 300px;
    padding: 10px 20px;
    height: calc(100% - 181px);
}

#countryranking-chart-wrapper {
    width: 100%;
    height: calc(100% - 80px);
    overflow: auto;
}

#countryranking-chart-wrapper .bar {
    fill: var(--imm);
    cursor: pointer;
}
#countryranking-chart-wrapper .axis {
    font-size: 0.75em;
    cursor: pointer;
}
#countryranking-chart-wrapper .axis path,
#countryranking-chart-wrapper .axis line {
    fill: none;
    display: none;
}
#countryranking-chart-wrapper .label {
    font-size: 0.75em;
    fill: white;
    cursor: pointer;
}

#legend {
    left: 10px;
    height: 128px;
    width: 200px;
    box-sizing: border-box;
}

#legend-color-many,
#legend-color-few {
    width: 0.8em;
    height: 0.8em;
    background-color: #a50617;
    display: inline-block;
    margin-right: 2px;
}
#legend-color-few {
    background-color: #fff4ef;
}

#legend-line-info {
    font-style: italic;
    margin-top: 4px;
    font-size: 0.9em;
}

.legend-row {
    padding: 1px;
}

.legend-text {
    display: inline-block;
}

.hidden {
    display: none;
}

#countryinfo {
    right: 10px;
    width: 250px;
}

.countryinfo-header {
    font-size: 1.4em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.countryinfo-title {
    padding-right: 5px;
}

#countryinfo-chart-wrapper {
    width: 100%;
    height: 100px;
    background-color: black;
    margin: 3px 0 5px;
    user-select: none;
}

.countryinfo-number {
    width: 100%;
    background-color: black;
    color: var(--imm);
    font-size: 1.6em;
    text-align: center;
    padding: 0.1em 0.4em 0.4em;
    box-sizing: border-box;
}

.countryinfo-number.unemp {
    color: var(--unemp) !important;
}

.countryinfo-chart-title {
    margin-top: 5px;
    text-align: center;
}

/* Style the lines by removing the fill and applying a stroke */
.line {
    fill: none;
    stroke: var(--imm);
    stroke-width: 2;
}

.unemployement {
    fill: var(--unemp);
}

.overlay {
    fill: none;
    pointer-events: all;
}

/* Style the dots by assigning a fill and stroke */
.dot {
    fill: var(--imm);
    stroke: transparent;
    stroke-width: 1px;
}

.focus circle {
    fill: none;
    stroke: steelblue;
}

.axis {
    color: white;
    stroke: white;
    stroke-width: 0;
    font-weight: normal;
    font-family: var(--font-sans);
}
</pre></body></html>