/*
* Copyright (c) 2020-20XX The Swiss Confederation,
represented by the Federal Office of Information Technology,
Systems and Telecommunication FOITT 
*/

@font-face {
    font-family: Frutiger;
    src: url(fonts/FrutigerNeueW02-Regular.woff);
  }

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}

#title {
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 0 0 10px;
}

#year {
    position: absolute;
    margin: 0;
    color: gray;
    font-size: 20px;
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
}

#diagram {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#svgContainer {
    max-height: 82%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #svgContainer {
        height: 82%;
    }
 }

#dataBox {
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    position: absolute;
    left: 100px;
    top: 0px;
    z-index: 1;
    width: 100px;
    border-radius: 5px;
    padding: 10px 0;
    pointer-events: none;
}

#dataBoxText {
    margin: 0;
    text-align: center;
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
}

.svg {
    display: block;
    margin: auto;
    height: 100%;
}

.kanton {
    fill: lightgrey;
    opacity: 1;
    transition: opacity 1s;
}

.legendeText
{
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
    font-size: 36px;
    fill: black;
    opacity: 1;
}

.legendeTitel 
{
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
    font-size: 36px;
    fill: black;
    opacity: 1;
}

.text
{
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
    font-size: 36px;
    fill: black;
    opacity: 1;
    text-align: end;
}

.sliderContainer {
    padding: 10px;
    justify-content: center;
    display: flex;
}

.sliderLable {
    margin: 0 15px;
    font-family: "Frutiger",Helvetica,Arial,sans-serif;
}

#slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;  
    background: #dddddd;
    outline: none;
    padding: 0;
}

#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #6A537F;
    border-radius: 50%; 
    cursor: pointer;
}
 

#slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #6A537F;
    cursor: pointer;
}