@charset "UTF-8";
/*--------------------------------
	Responsive font ratio
	example:
	.element {
		@include font-size(16);
	}
*/
/*--------------------------------
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*--------------------------------
	Retina images
	example:
	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}
*/
/*--------------------------------
	Hide text
	example:
	.element {
		@include hide-text;
	}
*/
/**************************** Common Mixins ************************/
/* ------------------------------------------------
   Misc
   --------------------------------------------  */
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}

.icon-overview, .icon-chart, .icon-download, .mobile-menu {
  color: #ff6c2f;
}

@font-face {
  font-family: QASIconFont;
  src: url("../fonts/iconfont.eot") format("embedded-opentype"), url("../fonts/iconfont.woff") format("woff"), url("../fonts/iconfont.ttf") format("truetype"), url("../fonts/iconfont.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"], .icon-, .year-selection-item__checkbox:checked + label:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'QASIconFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 4px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chart:before {
  content: "\ac";
  position: relative;
  top: -1px;
}

.icon-overview:before {
  content: "\a3";
  position: relative;
  top: -1px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .icon-chart:before {
    top: 0;
  }
  .icon-overview:before {
    top: 0px;
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .icon-chart:before {
    top: 1px;
  }
  .icon-overview:before {
    top: 1px;
  }
}

.icon-vision:before {
  content: "\45";
  font-size: 18px;
  position: relative;
  top: 2px;
  color: #ff6c2f;
}

.icon-vision:hover:before {
  content: "\2030";
}

.icon-vision.inactive:before {
  content: "\2030";
}

.icon-vision.inactive:hover:before {
  content: "\45";
}

.icon-download:before {
  content: "\35";
  font-size: 24px;
  position: relative;
  top: 4px;
}

.icon-info:before {
  content: "\30";
  font-size: 24px;
  position: relative;
}

.icon-reset {
  display: inline-block;
}

.icon-reset:before {
  content: "\\";
  font-size: 18px;
  position: relative;
}

.icon-reset:hover {
  -webkit-transform: rotate(-360deg);
  -webkit-transition-duration: 1s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
}

/*.icon-mobile-menu:before {
  font-family: "QASIconFont";
  content: "m";
  position: relative;
  top: 2px;
}*/
@font-face {
  font-family: 'Ubuntu';
  src: url("../fonts/Ubuntu-Regular.eot");
  src: url("../fonts/Ubuntu-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Ubuntu-Regular.woff2") format("woff2"), url("../fonts/Ubuntu-Regular.woff") format("woff"), url("../fonts/Ubuntu-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url("../fonts/Ubuntu-Medium.eot");
  src: url("../fonts/Ubuntu-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Ubuntu-Medium.woff2") format("woff2"), url("../fonts/Ubuntu-Medium.woff") format("woff"), url("../fonts/Ubuntu-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url("../fonts/Ubuntu-Bold.eot");
  src: url("../fonts/Ubuntu-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Ubuntu-Bold.woff2") format("woff2"), url("../fonts/Ubuntu-Bold.woff") format("woff"), url("../fonts/Ubuntu-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url("../fonts/Ubuntu-Light.eot");
  src: url("../fonts/Ubuntu-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Ubuntu-Light.woff2") format("woff2"), url("../fonts/Ubuntu-Light.woff") format("woff"), url("../fonts/Ubuntu-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.chart-options-menu {
  overflow: visible;
  margin: 0;
  padding: 0;
}

.chart-options-item {
  float: right;
}

.chart-options-item--switch {
  height: 48px;
}

.switch {
  margin: 16px 0;
  position: relative;
  display: inline-block;
  width: 32px;
  height: 16px;
  border-radius: 8px;
  border: 1px solid #333333;
  cursor: pointer;
  z-index: 2;
}

.switch__inner {
  position: absolute;
  left: 1px;
  top: 1px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #fff;
}

.switch--on {
  background-color: #ff6c2f;
}

.switch--on .switch__inner {
  left: 17px;
}

.switch-label {
  display: inline-block;
  margin: 16px 0 16px 8px;
  vertical-align: top;
}

.export-options {
  display: block;
  margin-top: 24px;
}

.export-options-item {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  text-align: center;
  width: 32%;
}

.export-options-item__button,
.chart-options-item--button {
  width: 48px;
  height: 48px;
  margin: 0 0 16px 16px;
  border-radius: 24px;
  font-size: 28px;
  line-height: 44px;
  font-family: "QASIconFont";
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

.export-options-item__button {
  margin: 10px auto;
  color: #ffffff;
  background-color: #ff6c2f;
}

.chart-options-item--button {
  color: #7f878c;
  background-color: transparent;
  border: 1px solid #7f878c;
}

.chart-options-button--column.column {
  color: #ffffff;
  background-color: #ff6c2f;
}

.chart-options-button--spline.spline {
  color: #ffffff;
  background-color: #ff6c2f;
}

.chart-options-button--table.table {
  color: #ffffff;
  background-color: #ff6c2f;
}

.mobile-menu {
  position: relative;
  top: 3px;
  display: inline-block;
  font-family: "QASIconFont";
  font-size: 24px;
}

.root-for-categories-menu {
  right: -320px;
  top: 0;
  width: 320px;
  height: 100vh;
  padding-top: 64.8px;
  padding-right: 24px;
  padding-left: 24px;
  background-color: #E7E7E7;
  z-index: 10;
}

.root-for-categories-menu.active {
  transform: translate(-320px, 0);
  transition: transform 500ms ease-in-out;
}

.root-for-categories-menu.inactive {
  transform: translate(0, 0);
  transition: transform 500ms ease-in-out;
}

.categories-menu__close-button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  font-family: "QASIconFont";
  font-size: 14px;
  cursor: pointer;
}

.categories-menu {
  margin: 0;
  padding-left: 0;
  background-color: #E7E7E7;
  list-style-type: none;
  font-size: 14px;
  line-height: 1.1em;
}

.categories-menu-item {
  /*order-bottom: 1px solid $categories-menu-border-color;*/
  padding: 10px;
  float: left;
  width: 100%;
  cursor: pointer;
  color: #ff6c2f;
}

.categories-menu-item.active {
  color: #fff;
  background-color: #ff6c2f;
}

.categories-menu-item-icon {
  float: left;
  display: block;
  width: 20px;
}

.categories-menu-item-icon:before {
  display: inline-block;
  width: 24px;
  text-align: left;
  font-family: "QASIconFont";
}

.categories-menu-item-icon.column:before {
  content: "¬";
}

.categories-menu-item-icon.column.icon--mixed:before {
  content: "˜";
}

.categories-menu-item-icon.spline:before {
  content: "”";
}

.categories-menu-item-icon.spline.icon--mixed:before {
  content: "˙";
}

.categories-menu-item-icon.table:before {
  content: "£";
}

.categories-menu-item-content {
  display: block;
  float: left;
  width: 224px;
}

.root-for-chart,
.category-table-wrapper,
.root-for-categories-menu {
  float: left;
}

.chart-wrapper {
  clear: both;
}

.root-for-chart {
  display: block;
  width: 100%;
}

.root-for-chart.table {
  display: none;
}

.root-for-chart div {
  height: 33vh !important;
  min-height: 150px;
}

@media screen and (min-height: 830px) {
  .root-for-chart div {
    height: 50vh !important;
  }
}

.category-table-wrapper {
  display: none;
}

.category-table-wrapper.table {
  display: block;
}

.close-menu-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .root-for-chart {
    width: 600px;
  }
}

@media screen and (min-width: 1024px) {
  .root-for-chart {
    /*width: 800px;*/
    width: 100%;
  }
}

.legend-wrapper {
  clear: both;
  width: 100%;
}

.legend {
  display: flex;
  flex-direction: column;
  font-size: 14;
  line-height: 1.3em;
}

.legend.order--reversed {
  flex-direction: column-reverse;
}

.legend-item {
  margin: 20px 0;
}

.legend-item sup {
  padding-left: 0.2em;
}

.switch-cols-and-rows {
  height: 20px;
  margin: 0;
  cursor: pointer;
  text-align: center;
}

.switch-cols-and-rows__icon {
  font-family: "QASIconFont";
}

.data-col-item,
.data-row-item {
  padding-right: 8px;
  line-height: 26px;
}

.data-row-item {
  float: left;
}

.data-col-item,
.data-row-item {
  display: block;
}

.data-col-item .button,
.data-row-item .button {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #999999;
  padding: 0;
  text-align: center;
  background-color: transparent;
  vertical-align: text-top;
}

.data-col-item .button:before,
.data-row-item .button:before {
  display: inline-block;
  width: 15px;
  height: 13px;
  position: absolute;
  top: 0px;
  left: -1px;
  margin: 0;
  padding: 0;
  line-height: 12px;
  font-family: QASIconFont;
  background-color: transparent;
}

.data-col-item.active .button:before,
.data-row-item.active .button:before {
  content: "x";
}

.data-col-item.inactive .button:before,
.data-row-item.inactive .button:before {
  content: " ";
}

.legend-item--colored {
  cursor: pointer;
}

.data-col-item .legend-item--colored .button:before,
.data-row-item .legend-item--colored .button:before {
  content: "x";
}

.legend-item--rows .inactive .button,
.legend-item--cols .inactive .button {
  background-color: #e3e3e3 !important;
}

.legend-item--rows .inactive .button:before,
.legend-item--cols .inactive .button:before {
  content: "";
}

.legend-item--rows {
  background-color: #E7E7E7;
  padding: 20px;
  border: 0px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  float: left;
}

.legend-item-rows-wrapper {
  margin: 0 auto;
  /*max-width: 640px;*/
}

.switch-cols-and-rows--inactive {
  height: 0px;
  padding: 0px;
  color: #ccc;
  font-size: 0px;
  line-height: 0px;
}

.legend-item-cols-headline {
  font-size: 14px;
  margin: 0px;
}

.legend-item-block-left,
.legend-item-block-right {
  width: 50%;
  float: left;
}

.legend-item-block-left.wide,
.legend-item-block-right.wide {
  width: 100%;
}

.legend-item-block-left.wide .data-col-item,
.legend-item-block-right.wide .data-col-item {
  float: left;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .legend-wrapper {
    width: 655px;
  }
}

@media screen and (min-width: 1024px) {
  .legend-wrapper {
    /*width: 800px;*/
    width: 100%;
  }
}

.template-root {
  position: relative;
}

.template-wrapper--active {
  /*> * {
      opacity: 1;
    }*/
}

.template-wrapper--inactive {
  /*> * {
      opacity: 0.4;
    }*/
}

.template-overlay--active {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 50;
}

.template-overlay--inactive {
  display: none;
}

.template-overlay__content {
  background-color: #fff;
}

.template-overlay__content--info-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.template-overlay__content--info-overlay.infoIsActive {
  display: block;
}

.template-overlay__content--export-overlay {
  display: none;
  position: absolute;
  top: 50vh;
  left: 50%;
  width: 308px;
  height: 200px;
  margin: -100px 0 0 -154px;
  border: 1px solid #d4d4d4;
  padding: 20px;
}

.template-overlay__content--export-overlay.exportIsActive {
  display: block;
}

.template-overlay__close-button {
  position: absolute;
  right: 0;
  top: -28px;
  width: 20px;
  height: 20px;
  font-family: "QASIconFont";
  font-size: 24px;
}

.overlay-heading {
  width: 100%;
}

.has-info-overlay {
  position: relative;
}

.has-info-overlay--absolute {
  position: absolute;
}

.has-info-overlay--fixed {
  position: fixed;
}

.info-overlay-item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  min-width: 20px;
  min-height: 20px;
  color: #aa47ba;
  z-index: 0;
}

.infoIsActive .info-overlay-item {
  display: block;
  opacity: 1;
  z-index: 100;
}

.info-overlay-item__arrow {
  font-family: "QASIconFont";
}

.info-overlay-item__text {
  color: #aa47ba;
  font-size: 18px;
  text-align: center;
  text-shadow: 0 0 8px #fff;
}

.info-overlay-item--from-top {
  top: -40px;
  left: 0px;
}

.info-overlay-item--from-top .info-overlay-item__arrow {
  display: block;
  text-align: center;
}

.info-overlay-item--from-top-top20 {
  top: 20px;
}

.info-overlay-item--from-right {
  top: 10px;
  left: 40px;
}

.info-overlay-item--from-right .info-overlay-item__arrow {
  display: inline-block;
}

.info-overlay-item__arrow--with-padding-top {
  padding-top: 4px;
}

.category-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.overview-table__cell {
  white-space: nowrap;
  text-align: right;
}

.overview-table__cell--header {
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .category-table-wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .category-table-wrapper {
    width: 100%;
    /*max-width: 1000px;*/
  }
}

.overview-table-wrapper {
  position: relative;
}

.overview-table-wrapper__inner {
  overflow-x: auto;
}

.overview-table {
  /*display: inline-block;*/
}

.spacer-cell {
  border-color: transparent;
}

.spacer-cell div.spacer {
  width: 12px;
  height: 2px;
}

.overview-table .spacer-cell {
  border-color: transparent !important;
  background-color: transparent !important;
  padding: 6px 0px 6px 6px;
}

.table-scroll-hint {
  display: block;
  position: absolute;
  top: 0;
  right: -12px;
  height: 100%;
  width: 28px;
  z-index: 100;
  cursor: pointer;
  /*&__shade-top {
    top: 0;
    height: $height_shade-top;
    background-image: url(../img/shaddow_tabelle01.png);
  }

  &__shade-middle {
    top: $height_shade-top;
    bottom: $height_shade-bottom;
    height: calc(100% - 72px);
    background-image: url(../img/shaddow_tabelle02.png);
  }

  &__shade-bottom {
    bottom: 0;
    height: $height_shade-bottom;
    background-image: url(../img/shaddow_tabelle03.png);
  }*/
}

.table-scroll-hint__icon {
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url(../img/glyph-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 38px;
  height: 43px;
}

.table-scroll-hint__shade-element {
  position: absolute;
  left: 0;
  right: 0;
}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 30px;
  line-height: 36px;
  margin-top: 20px;
  font-weight: normal;
  color: #ff6c2f;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

a:focus {
  outline: 0;
}

.hide {
  display: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

* {
  box-sizing: border-box;
}

/* ====================================================================
   Layout
   ==================================================================*/
html {
  background: #fff;
  font-size: 62.5%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  /*-webkit-tap-highlight-color: #f8f7f9;*/
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  padding: 0;
  margin: 0;
  /*width: 100vw;
  height: 100vh;*/
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.3em;
}

/*.wrapper {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
body,.wrapper {
  overflow-x: hidden;
  overflow-y: auto;
}*/
.container {
  max-width: 1280px;
  padding: 0 12px;
  margin-left: auto;
  margin-right: auto;
}

.header-navbar {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #000000;
  font-size: 0;
  padding-left: 0px;
  margin-bottom: 16px;
}

.header-navbar__item {
  display: inline-block;
  position: relative;
  vertical-align: top;
  text-decoration: none;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}

.header-nav-child__link {
  color: #222222;
  text-decoration: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 9px 10px;
  display: block;
  background-color: #e7e7e7;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
}

.header-nav-child__link--active {
  background-color: #fff;
  border: 1px solid #000000;
  border-bottom: 0;
  margin-bottom: -1px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-navbar {
    padding-left: 16px;
  }
  .header-navbar__item {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .header-nav-child__link {
    padding: 9px 30px;
  }
}

@media screen and (min-width: 1024px) {
  .header-navbar {
    padding-left: 16px;
  }
  .header-navbar__item {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .header-nav-child__link {
    padding: 9px 30px;
  }
}

.chart--header {
  display: block;
}

.chart-options {
  float: right;
  text-align: right;
  z-index: 10;
}

.chart-options__items {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  padding-left: 6px;
  padding-top: 9px;
  display: inline-block;
}

.chart-head {
  width: 100%;
  clear: right;
  display: block;
  margin: 20px 0 20px;
  padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .chart-options__items {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 16px;
    padding-top: 9px;
  }
  .chart-head {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .chart-options__items {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 16px;
    padding-top: 9px;
  }
  .chart-head {
    margin: 0;
  }
}

.overview-table-header {
  display: block;
}

.overview-table-options {
  width: 100%;
  text-align: right;
  z-index: 10;
}

.overview-table-options__items {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  padding-left: 6px;
  padding-top: 9px;
  display: inline-block;
}

.overview-table-head {
  width: 100%;
  margin: 20px 0 20px;
  padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .overview-table-options__items {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 16px;
    padding-top: 9px;
  }
  .overview-table-head {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .overview-table-options__items {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 16px;
    padding-top: 9px;
  }
  .overview-table-head {
    margin: 0;
  }
}

.overview-table-wrapper {
  margin-top: 8px;
  padding-right: 25px;
}

.overview-table {
  width: 100%;
}

.overview-table__cell {
  border-bottom: 1px dotted #000000;
  padding: 6px 0px 6px 24px;
  font-size: 12px;
  font-size: 1.2rem;
}

.overview-table__cell.level_0 {
  background-color: #f5f5f5;
}

.overview-table__cell:first-child {
  padding-left: 0;
}

.overview-table__cell:nth-child(2) {
  text-align: left;
}

.overview-table__cell:nth-child(2) .table-title {
  text-align: left;
  max-width: 44vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overview-table__cell--header {
  padding: 8px 6px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: right;
}

.overview-table__cell--header:first-child {
  padding-left: 0;
}

.overview-table__cell--header:nth-child(2) .table-title {
  text-align: left;
}

.overview-table__cell--sub_header {
  padding: 8px 0px 8px 6px;
  text-align: right;
}

.overview-table__cell--sub_header:first-child {
  padding-left: 0;
}

.overview-table__cell--sub_header:nth-child(2) .table-title {
  text-align: left;
}

.overview-table__cell--with-footnote {
  position: relative;
}

.overview-table__cell--with-footnote sup {
  position: absolute;
  right: -1px;
  top: 20%;
  width: 0;
  height: 1em;
  padding-left: 2px;
  overflow: visible;
  vertical-align: bottom;
}

.overview-table__cell--with-footnote sup a {
  vertical-align: text-bottom;
}

.overview-table__cell--with-footnote sup.table-title__sup {
  right: auto;
}

.overview-table__cell--with-footnote sup.table-title__sup a {
  vertical-align: top;
}

.overview-table .level_0 {
  font-weight: bold;
}

.overview-table .level_0,
.overview-table .level_1 {
  padding-left: 20px;
}

.overview-table .level_2 {
  padding-left: 40px;
}

.overview-table .activeRow {
  background-color: #00e765;
}

.overview-table__row.tr_level_0:nth-child(n+2) td.level_0 {
  border-top: 1px solid #000000;
}

.overview-table__row:last-child td.overview-table__cell {
  border-bottom: 1px solid #000;
}

.row--italic {
  font-style: italic;
}

.overview-info__item {
  font-size: 11px;
  padding: 4px 0;
}

.cell--inactive {
  color: #b3b3b3;
}

.button--toggle-visibility {
  cursor: pointer;
}

.button--toggle-visibility:before {
  top: 1px;
}

a.footnote {
  font-size: 11px;
  font-size: 1.1rem;
  text-decoration: none;
}

a.footnote:nth-child(n+2)::before {
  display: inline-block;
  padding-right: 0.1em;
  content: ",";
}

.unit-table {
  white-space: nowrap;
}

.wrapper-center {
  text-align: center;
}

.show-hidden-elements-button {
  display: inline-block;
  border-radius: 20px;
  line-height: 28px;
  padding: 4px 16px;
  background-color: #ff6c2f;
  color: #ffffff;
  cursor: pointer;
}

.show-hidden-elements-button:hover {
  color: #ffffff;
  background-color: #e5602a;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .overview-table__cell {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .overview-table__cell:nth-child(2) .table-title {
    max-width: 400px;
  }
  .overview-table .level_0,
  .overview-table .level_1 {
    padding-left: 24px;
  }
  a.footnote {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1024px) {
  .overview-table__cell {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .overview-table__cell:nth-child(2) .table-title {
    max-width: 400px;
  }
  .overview-table .level_0,
  .overview-table .level_1 {
    padding-left: 28px;
  }
  a.footnote {
    font-size: 10px;
    font-size: 1rem;
  }
}

.table-reset-link {
  color: #333;
  cursor: pointer;
}

.overview-table-year {
  margin: 24px 0;
}

.year-selection {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.year-selection__item {
  display: inline-block;
  padding: 0 12px;
}

.year-selection-item__label {
  position: relative;
  padding-left: 20px;
}

.year-selection-item__label:before {
  content: '';
  border: 1px solid #999;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
}

.year-selection-item__checkbox {
  display: none;
}

.year-selection-item__checkbox:checked + label:after {
  content: '\78';
  position: absolute;
  left: -1px;
  top: 1px;
}

#table_charts_overlay {
  position: absolute;
  border: #000 1px solid;
  box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 3px;
  z-index: 1;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  #table_charts_overlay {
    width: 90%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #table_charts_overlay {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  #table_charts_overlay {
    width: 50%;
    max-width: 500px;
  }
}

.highcharts-tooltip-box {
  background-color: #fff;
  opacity: 1 !important;
}

.highcharts-tooltip {
  background-color: #fff;
  opacity: 1 !important;
}

.highcharts-tooltip > span {
  padding: 8px;
  border: 1px solid black;
  background-color: #fff;
}

/*# sourceMappingURL=custom.css.map */
