html[data-theme="theme-light"] {
  --klima-invest-green: #afca0b;
  --button__background--green: var(--klima-invest-green);
  --primary: #2c9fd6;
  --secondary: #4c6a79;
  --bg: #fff;
  --label: #2c9fd6;
  --button-label: #fff;
  --text: #424242;
  --table-head-bg: linear-gradient(90deg, #55b7e7 0%, #70c2eb 100%);
  --table-head-text: #fff;
  --table-row-second: #f1f2f3;
  --table-text-hover: #fff;
  --text-offer-number: #b2cc16;
  --text-open: #b2cc16;
  --text-due: orange;
  --text-overdue: red;
  --request-list__active_before--answered: var(--text);
  --request-list__active_before--due-soon: orange;
  --request-list__active_before--not-answered: red;
  --request-list__active_before--due-today: var(--primary);
  --request-list__active_before--expired: var(--text);
  --request-view__active_before--answered: var(--primary);
  --request-view__active_before--due-soon: orange;
  --request-view__active_before--not-answered: red;
  --request-view__active_before--due-today: var(--primary);
  --request-view__active_before--expired: var(--primary);
  --request-view__true: red;
  --login-input: #777;
  --field-all-border: #ccc;
  --field-input-placeholder: #ddd;
  --field--disabled__bg: #eee;
  --product-tag-bg: #ddd;
  --product-tag-text: #1f1f1f;
  --product-tag-hkn-fur-osa-bg: #a37791;
  --product-tag-hkn-fur-osa-text: #fff;
  --product-tag-special-case-bg: #d22;
  --product-tag-special-case-text: #fff;
  --product-tag-kpp-bg: var(--klima-invest-green);
  --product-tag-kpp-text: #000;
  --product-tag-notify-bg: #2c2;
  --product-tag-notify-text: #fff;
  --select2-option-selected-bg: #ddd;
}
html[data-theme="theme-dark"] {
  --klima-invest-green: #afca0b;
  --button__background--green: var(--klima-invest-green);
  --primary: #000;
  --secondary: #2c9fd6;
  --bg: #424242;
  --label: #fff;
  --button-label: #fff;
  --text: #c9c9c9;
  --table-head-bg: #000;
  --table-head-text: #fff;
  --table-row-second: #212121;
  --table-text-hover: #fff;
  --text-offer-number: #b2cc16;
  --text-open: #b2cc16;
  --text-due: orange;
  --text-overdue: red;
  --request-list__active_before--answered: var(--text);
  --request-list__active_before--due-soon: orange;
  --request-list__active_before--not-answered: red;
  --request-list__active_before--due-today: var(--secondary);
  --request-list__active_before--expired: var(--text);
  --request-view__active_before--answered: var(--label);
  --request-view__active_before--due-soon: orange;
  --request-view__active_before--not-answered: red;
  --request-view__active_before--due-today: var(--secondary);
  --request-view__active_before--expired: var(--label);
  --request-view__true: red;
  --login-input: #c9c9c9;
  --field-all-border: #000;
  --field-input-placeholder: red;
  --product-tag-bg: #ddd;
  --product-tag-text: #000;
  --product-tag-hkn-fur-osa-bg: #a37791;
  --product-tag-hkn-fur-osa-text: #fff;
  --product-tag-special-case-bg: #d22;
  --product-tag-special-case-text: #fff;
  --product-tag-kpp-bg: var(--klima-invest-green);
  --product-tag-kpp-text: #000;
  --product-tag-notify-bg: #2c2;
  --product-tag-notify-text: #fff;
  --select2-option-selected-bg: #000;
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif !important;
  background-color: var(--bg);
  color: var(--text);
}
.wrapper {
  margin: 0 auto;
  width: 90%;
}
.wrapper--request_add {
  width: 80%;
  max-width: 1100px;
}
.wrapper--view {
  width: 45%;
}
a {
  color: var(--label);
  text-decoration: none;
}
h1 {
  color: var(--label);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 1.5em 0;
}
header {
  display: block;
  clear: both;
  padding: 40px 0 18px;
  margin: 0 0 25px;
  overflow: hidden;
}
header .wrapper {
  position: relative;
  display: block;
  clear: both;
}
header .logo {
  width: 300px;
  float: left;
  display: block;
}
header .logo__img {
  width: 300px;
}
header .bottom-of-header {
  position: absolute;
  right: 0;
  top: 15px;
  float: right;
  display: flex;
}
header .menu {
  font-size: 16px;
  font-weight: 300;
  margin: 29px 0 0;
  padding: 0;
}
header .menu__link {
  padding: 0;
  margin: 0 0 0 25px;
  float: left;
  display: inline-block;
}
header .menu__link_current,
header .menu__link:hover {
  text-decoration: underline;
}
.request_list {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 10px;
}
.request_list thead tr {
  background: var(--table-head-bg);
  background-attachment: fixed;
}
.request_list thead td {
  color: var(--table-head-text);
  text-transform: uppercase;
  padding: 5px;
  vertical-align: middle;
  position: relative;
}
.request_list tbody tr:nth-of-type(2n) {
  background: var(--table-row-second);
}
.request_list tbody tr:hover {
  background: var(--primary);
  color: var(--table-text-hover);
}
.request_list tbody tr:hover .button {
  border: 2px solid white;
  text-decoration: none;
}
.request_list tbody tr td {
  padding: 6px 7px;
}
.request_list tbody tr td.center {
  text-align: center;
}
.request_list tbody tr td.product_type__okostrom,
.request_list tbody tr td.product_type__okogas,
.request_list tbody tr td.product_type__klimaneutral,
.request_list tbody tr td.product_type__biomethan {
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 50px;
}
.request_list tbody tr td.product_type__okostrom {
  background-image: url("../img/icon_okostrom.2f9a64be38e3.png");
}
.request_list tbody tr td.product_type__okogas {
  background-image: url("../img/icon_okogas.4b9d94bf7c97.png");
}
.request_list tbody tr td.product_type__klimaneutral {
  background-image: url("../img/icon_klimaneutral.b4f177f7c664.png");
}
.request_list tbody tr td.product_type__biomethan {
  background-image: url("../img/icon_biomethan.5ea0b727d267.png");
}
.request {
  display: block;
}
.request__str {
  display: block;
  padding: 3px;
  font-size: 16px;
  overflow: hidden;
  margin-top: 5px;
  border-bottom: 1px dotted var(--primary);
}
.request__str--title {
  padding: 3px;
  font-weight: bold;
  color: var(--secondary) !important;
}
.request__key {
  display: inline-block;
  padding: 0;
  margin: 0;
  float: left;
}
.request__key:after {
  content: ': ';
}
.request__val {
  float: right;
  display: inline-block;
  padding: 0;
  margin: 0;
  clear: right;
  color: var(--label);
}
.request__val a {
  color: var(--label);
  text-decoration: underline;
}
.request__year {
  width: 32%;
  display: inline-block;
}
.request__gwh {
  width: 32%;
  display: inline-block;
}
.request__comment {
  border-left: 2px solid var(--primary);
  margin-left: 10px;
  padding-left: 10px;
  font-style: italic;
}
.request__comment:before {
  content: "“ ";
}
.request__comment:after {
  content: " „";
}
.request__price {
  width: 32%;
  display: inline-block;
  color: var(--label);
  text-align: right;
  float: right;
}
.request__price--title {
  color: var(--secondary);
}
.request__price input[type=number] {
  height: 1.5em !important;
  padding: 0;
  margin-top: 0;
  position: relative;
  top: -2px;
  width: 100px;
}
.request__price input[type=checkbox] {
  display: none;
}
.request__price input[type=checkbox] + label {
  padding-left: 5px;
}
.request__price input[type=checkbox] + label:after {
  padding-left: 5px;
  display: inline-block;
  font-weight: bold;
  content: '✓';
  color: green;
  cursor: pointer;
}
.request__price input[type=checkbox]:checked + label:after {
  content: '✗';
  color: red;
}
.text-open {
  color: var(--text-open);
}
.text-overdue {
  color: var(--text-overdue);
}
.text-due {
  color: var(--text-due);
}
.request-list__active_before--answered {
  color: var(--request-list__active_before--answered);
}
.request-list__active_before--due-soon {
  color: var(--request-list__active_before--due-soon);
}
.request-list__active_before--not-answered {
  color: var(--request-list__active_before--not-answered);
}
.request-list__active_before--due-today {
  color: var(--request-list__active_before--due-today);
}
.request-list__active_before--expired {
  color: var(--request-list__active_before--expired);
}
.request-view__active_before--answered {
  color: var(--request-view__active_before--answered);
}
.request-view__active_before--due-soon {
  color: var(--request-view__active_before--due-soon);
}
.request-view__active_before--not-answered {
  color: var(--request-view__active_before--not-answered);
}
.request-view__active_before--due-today {
  color: var(--request-view__active_before--due-today);
}
.request-view__active_before--expired {
  color: var(--request-view__active_before--expired);
}
.request-view__true {
  color: var(--request-view__true);
}
.right {
  float: right;
}
.pagination {
  display: block;
  width: 50%;
  clear: left;
  margin-top: 15px;
  margin-bottom: 50px;
  float: left;
}
.pagination__page {
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--primary);
  margin-right: 2px;
  border-radius: 3px;
  text-align: center;
  color: var(--label);
  background: var(--bg);
  line-height: 2;
  padding: 0 10px;
  text-decoration: none;
  font-size: 14px;
}
.pagination__page:hover {
  color: var(--bg);
  background: var(--primary);
}
.pagination__current {
  color: var(--label);
  text-transform: uppercase;
  display: inline-block;
  height: 30px;
  line-height: 2;
  margin: 0 10px;
}
.order {
  display: block;
  float: right;
  width: 15px;
  height: 40px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 1px;
}
.order-item {
  font-size: 15px;
  text-align: center;
  width: 15px;
  padding: 0 15px 0 0;
  margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}
.order-item:first-of-type {
  margin-top: 5px;
}
.order-item:last-of-type {
  top: -3px;
  position: relative;
}
.order-item--active {
  color: white;
}
.product {
  border-radius: 3px;
  background: var(--product-tag-bg);
  padding: 3px 4px;
  color: var(--product-tag-text) !important;
}
.product__hkn-fur-osa {
  background: var(--product-tag-hkn-fur-osa-bg);
  border-radius: 3px;
  color: var(--product-tag-hkn-fur-osa-text);
}
.usage {
  font-weight: bold;
}
.special_case {
  background: var(--product-tag-special-case-bg);
  padding: 3px 4px;
  border-radius: 3px;
  color: var(--product-tag-special-case-text);
  margin-left: 10px;
}
.kpp {
  background: var(--product-tag-kpp-bg);
  padding: 3px 4px;
  border-radius: 3px;
  color: var(--product-tag-kpp-text);
  margin-left: 10px;
}
.notify {
  display: inline-block;
  width: auto;
  background: var(--product-tag-notify-bg);
  padding: 3px 4px;
  border-radius: 3px;
  color: var(--product-tag-notify-text);
  margin: 0 0 5px 0;
}
div.dark-mode {
  display: flex;
  justify-content: flex-end;
}
a.power-bi-button {
  color: black;
  cursor: pointer;
  border-radius: 3px;
  border-color: #FFD132;
  background-color: #FFD132;
  padding: 5px 8px 5px 8px;
  text-decoration: none;
  position: relative;
  top: -1px;
  /* Long client names causes the button and the client name itself to break onto a new line.
	Resize the button to prevent that button overlaps vertically with the label, in cases of long client names. */
  height: 10px;
  line-height: 9px;
  display: inline-block;
  font-size: 12px;
}
a.power-bi-button__space {
  margin-right: 15px;
}
a.power-bi-button:hover {
  background-color: #FFDF70;
}
.form {
  margin: 0 auto;
  width: 30%;
  display: block;
  background: var(--bg);
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}
.form__title {
  color: var(--label);
}
.form__text {
  color: var(--text);
}
.form .button {
  float: right;
  margin-left: 15px;
  width: 135px;
}
.form--invoice {
  padding: 0;
  margin: 0;
}
.form--invoice .field__label {
  float: left;
  padding: 4px 0;
  margin: 5px 0;
  width: 300px;
}
.form--invoice .field__field {
  float: left;
  width: 200px;
}
.form--invoice .button {
  padding: 4px 10px;
  margin: 5px 10px;
  border-radius: 5px;
}
@keyframes flash_border {
  0% {
    border-color: red;
  }
  10% {
    border-color: var(--secondary);
  }
  20% {
    border-color: red;
  }
  30% {
    border-color: var(--secondary);
  }
  40% {
    border-color: red;
  }
  50% {
    border-color: var(--secondary);
  }
  60% {
    border-color: red;
  }
  70% {
    border-color: var(--secondary);
  }
  80% {
    border-color: red;
  }
  90% {
    border-color: var(--secondary);
  }
  100% {
    border-color: red;
  }
}
.field--error .select2-selection,
.field--error input {
  border: solid 1px red !important;
  -webkit-animation: flash_border 5s;
  animation: flash_border 5s;
  -moz-animation: flash_border 5s;
  -o-animation: flash_border 5s;
}
.field--required .field__label:after {
  content: 'erforderlich';
  padding-right: 3px;
  padding-top: 7px;
  text-align: right;
  float: right;
  font-size: 13px;
  color: var(--text);
}
.field--nolabel {
  width: auto;
  float: left;
  margin-right: 15px;
}
.field--nolabel .field__label {
  display: none;
}
.field--nolabel .field__field,
.field--nolabel .field input,
.field--nolabel .field select {
  display: inline-block;
  max-width: 150px !important;
  min-width: 110px !important;
}
.field--uplabel {
  width: auto;
  float: left;
  margin-right: 12px;
  margin-top: 10px;
  margin-bottom: -10px;
}
.field--uplabel .field__label {
  font-size: 14px;
}
.field--uplabel .field__field,
.field--uplabel .field input,
.field--uplabel .field select {
  display: inline-block;
  max-width: 160px !important;
  min-width: 100px !important;
}
.field--small {
  width: auto;
  float: left;
  margin-right: 20px;
}
.field--small .field__label {
  display: inline-block;
  margin-right: 10px;
}
.field--small .field__field,
.field--small .field input,
.field--small .field select {
  display: inline-block;
  width: 185px !important;
}
.field--part {
  overflow: hidden;
}
.field--part .field__label {
  display: inline-block;
  padding-top: 10px;
}
.field--part .field__field,
.field--part .field input {
  float: right;
  display: inline-block;
  width: 30px !important;
}
.field--discount__EK {
  border-bottom: 1px dotted var(--primary);
  margin-bottom: 10px;
}
.field--discount__EK label {
  display: block;
  padding-top: 10px;
  color: var(--label);
  font-weight: lighter;
}
.field--discount__EK input[type=checkbox] {
  display: none;
}
.field--discount__EK input[type=checkbox] + label:after {
  float: right;
  padding-left: 5px;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  content: '✗';
  color: red;
}
.field--discount__EK input[type=checkbox]:checked + label:after {
  content: '✓';
  color: green;
}
.field--date_from,
.field--date_to {
  width: 100px;
}
.field--date_from input,
.field--date_to input {
  position: relative;
  top: -3px;
}
.field--date_from {
  margin-right: 5px;
}
.field--date_to {
  margin-right: 15px;
}
.field__label {
  color: var(--label);
  font-size: 16px;
  font-weight: lighter;
  display: block;
}
.field__field textarea {
  height: 140px;
}
#webpush-subscribe-button,
.button {
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  background: var(--primary);
  padding: 10px 20px;
  color: var(--button-label);
  font-size: 18px;
  outline: 0;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  float: right;
  margin-top: 15px;
}
#webpush-subscribe-button--disabled,
.button--disabled,
#webpush-subscribe-button:disabled,
.button:disabled {
  opacity: 0.5 !important;
}
#webpush-subscribe-button:hover,
.button:hover {
  text-decoration: underline;
}
#webpush-subscribe-button--center,
.button--center {
  float: none !important;
  margin: 0 auto !important;
  display: block;
}
#webpush-subscribe-button--archive,
.button--archive {
  background: var(--secondary);
  border: 2px solid var(--secondary);
}
#webpush-subscribe-button--notify,
.button--notify {
  position: relative;
}
#webpush-subscribe-button--notify:after,
.button--notify:after {
  content: 'Preismonitor';
  position: absolute;
  bottom: -25px;
  left: 0;
  color: var(--text);
  font-style: italic;
  font-weight: bold;
  text-transform: none;
  font-size: 16px;
}
#import-clients-button,
#start-import-button {
  background: var(--button__background--green);
  border-color: var(--button__background--green);
}
#import-clients-button {
  margin-right: 25px;
}
#start-import-button {
  float: none;
  width: calc(100% - 2 * (15px + 2px));
}
.request_add_form {
  display: flex;
}
@media (max-width: 1350px) {
  .request_add_form {
    flex-flow: column;
  }
}
.request_add_form > div {
  display: flex;
  flex-flow: column;
  width: 50%;
}
.request_add_form .svk-portfolio-fields {
  display: flex;
}
.request_add_form .svk-portfolio-fields > div {
  width: 50%;
}
fieldset {
  box-sizing: border-box;
  border: 1px solid;
  border-color: var(--primary);
  display: inline-block;
  width: calc(100% - 12px);
  padding: 30px;
  margin-right: 20px;
}
fieldset:last-of-type {
  margin-right: 0;
}
legend {
  color: var(--label);
  font-size: 24px;
  font-weight: normal;
  line-height: 36px;
  text-align: left;
}
input,
select,
textarea,
div.input_lookalike {
  margin-top: 3px;
  box-sizing: border-box;
  line-height: 1.4;
  height: 2em;
  width: 100%;
  font-size: 14px;
  border: 1px solid var(--field-all-border);
  padding: 5px 10px;
  outline: 0;
  color: var(--text);
  background: var(--bg);
  box-shadow: inset 0 0 25px 0 var(--bg);
}
input[type=checkbox] {
  width: auto;
  box-shadow: none !important;
}
.add_more {
  font-size: 15px;
  padding: 5px;
}
.filter {
  width: 100%;
  min-height: 65px;
  display: block;
  clear: both;
  overflow: hidden;
}
.filter .button {
  padding: 2px 5px 2px 25px;
  margin: 30px 0 0 1px;
  font-size: 15px;
  float: none;
  background: var(--primary) url("../img/icon_filter.c17f4e6f1c9f.svg") no-repeat 5px center !important;
  background-size: 16px 16px !important;
  color: var(--button-label);
}
.filter .button--clear {
  margin-left: 35px;
  margin-right: 35px;
}
.filter .button--green {
  background-color: var(--button__background--green) !important;
  border: 2px solid var(--button__background--green);
}
.select2-dropdown,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid var(--field-all-border) !important;
  background-color: var(--bg) !important;
  outline: none;
  border-radius: 0 !important;
  font-size: 14px !important;
}
.select2-container--disabled .select2-selection--single {
  background-color: var(--field--disabled__bg) !important;
}
.select2-container--default .select2-selection--multiple {
  padding: 0 !important;
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin: 0;
  background-color: var(--bg);
}
.select2-results__options {
  background-color: var(--bg);
}
.select2-results__option[aria-selected="true"] {
  background-color: var(--select2-option-selected-bg) !important;
}
.request_data_form .select2-container {
  width: 100px !important;
}
.select2-selection--single,
.select2-selection__rendered,
.select2-selection__placeholder {
  color: var(--text) !important;
}
span.icon--declined {
  padding-left: 5px;
  font-weight: bold;
  color: red;
}
#logout-form {
  display: inline;
}
#logout-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 25px;
  float: left;
  display: inline-block;
  color: var(--label);
  font-size: 16px;
  font-weight: 300;
  font-family: 'Lato', sans-serif !important;
}
.toggle__label {
  font-size: 14px;
}
@font-face {
  font-family: 'Ion';
  font-weight: normal;
  font-style: normal;
}
.icon,
.icon--additional:before,
.icon--price-range:before,
.icon--dining-style:before,
.icon--cuisines:before,
.icon--hours-of-operation:before,
.icon--phone-number:before,
.icon--payment-options:before,
.icon--dress-code:before,
.icon--executive-chef:before,
.icon--website:before,
.icon--neighborhood:before,
.icon--address:before {
  display: inline-block;
  font-family: 'Ion';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 1ex;
  color: var(--primary);
}
.icon--additional:before {
  content: "\f2c7";
}
.icon--price-range:before {
  content: "\f316";
}
.icon--dining-style:before {
  content: "\f272";
}
.icon--cuisines:before {
  content: "\f3aa";
}
.icon--hours-of-operation:before {
  content: "\f3b3";
}
.icon--phone-number:before {
  content: "\f2d2";
}
.icon--payment-options:before {
  content: "\f119";
}
.icon--dress-code:before {
  content: "\f4f7";
}
.icon--executive-chef:before {
  content: "\f3a0";
}
.icon--website:before {
  content: "\f1fe";
}
.icon--neighborhood:before {
  content: "\f398";
}
.icon--address:before {
  content: "\f38f";
}
.product_type_icon {
  float: right;
  width: 50px;
  height: 50px;
}
.template--login .login__error {
  font-weight: normal;
  color: red;
}
.template--login .forgot {
  margin-top: 20px;
  text-align: center;
  display: block;
  font-weight: normal;
  color: var(--login-input);
  text-decoration: underline;
  font-size: 14px;
}
.template--login .form {
  margin: 0 auto;
  width: 500px;
  display: block;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.template--login .form__title {
  color: var(--label);
}
.template--login .form__text {
  color: var(--text);
}
.template--login .field {
  display: block !important;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.template--login .field input {
  font-size: 18px;
  border: none;
  color: var(--login-input);
  margin: 0;
  height: 40px;
}
.template--login .field input::placeholder {
  color: var(--field-input-placeholder);
}
.template--login .field--username {
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
  height: 40px;
  padding-left: 42px !important;
  background: url("../img/icon_username.a83833b3476f.svg") var(--primary) no-repeat 6px center !important;
  background-size: 30px 30px !important;
}
.template--login .field--username input:-webkit-autofill,
.template--login .field--username input:-webkit-autofill:hover,
.template--login .field--username input:-webkit-autofill:focus,
.template--login .field--username input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset !important;
}
.template--login .field--password {
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
  padding-left: 42px !important;
  background: url("../img/icon_password.118c94bc9614.svg") var(--primary) no-repeat 6px center !important;
  background-size: 30px 30px !important;
}
.template--login .field--password input:-webkit-autofill,
.template--login .field--password input:-webkit-autofill:hover,
.template--login .field--password input:-webkit-autofill:focus,
.template--login .field--password input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset !important;
}
.template--login .button {
  font-size: 16px;
  width: 100%;
}
.template--login input,
.template--login select,
.template--login textarea {
  box-sizing: border-box;
  margin-top: 3px;
  line-height: 1.4;
  height: 2em;
  width: 87%;
  width: 100%;
  font-size: 14px;
  border: 0;
  border: 1px solid var(--field-all-border);
  padding: 5px 10px;
  outline: 0;
  color: var(--text);
  background: var(--bg);
  box-shadow: inset 0px 0px 25px 0px var(--bg);
}
* {
  --switch-height: 22px;
  --switch-padding: 8px;
  --switch-width: calc((var(--switch-height) * 2) - var(--switch-padding));
  --slider-height: calc(var(--switch-height) - var(--switch-padding));
  --slider-on: calc(var(--switch-height) - var(--switch-padding));
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: var(--switch-width);
  height: var(--switch-height);
  /* Hide default HTML checkbox */
  margin-left: 25px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* Rounded sliders */
}
.slider:before {
  position: absolute;
  content: "";
  height: var(--slider-height);
  width: var(--slider-height);
  left: calc(var(--switch-padding) / 2);
  bottom: calc(var(--switch-padding) / 2);
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: var(--slider-height);
}
.slider.round:before {
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--primary);
}
input:checked + .slider:before {
  -webkit-transform: translateX(var(--slider-on));
  -ms-transform: translateX(var(--slider-on));
  transform: translateX(var(--slider-on));
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--primary);
}
.volume-aggregation-bar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.volume-aggregation-bar .label {
  margin-right: 20px;
  text-align: left;
  color: var(--label);
  font-weight: lighter;
}
.volume-aggregation-bar .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.volume-aggregation-bar .item .item-label {
  text-align: center;
  padding: 5px 10px;
}
.volume-aggregation-bar .item .item-value {
  padding: 5px 10px;
  min-width: 70px;
  text-align: center;
  color: white;
}
.volume-aggregation-bar .item .item-value.today {
  background-color: var(--primary);
}
.volume-aggregation-bar .item .item-value.next-business-day {
  background-color: var(--primary);
}
.volume-aggregation-bar .item .item-value.year {
  background-color: var(--klima-invest-green);
}
.volume-aggregation-bar .item .item-value.seven-days {
  background-color: var(--primary);
}
.volume-aggregation-bar .group {
  display: flex;
  border: 1px solid var(--field-all-border);
  padding: 10px;
  margin-right: 20px;
  margin-left: 20px;
  gap: 20px;
}
.volume-aggregation-bar .group .years {
  display: flex;
  gap: 20px;
}
/*# sourceMappingURL=all.css.ae52ab8db0da.map */