/*
 * IMMER AKTIVIEREN
 */
html, body, #cap-configurator {
	margin: 0;
	height: 100%;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url("/cap-flex/fonts/material-symbols-outlined.woff2") format("woff2");
}

/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("/fonts/roboto.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*
 * Kemper-Stadtlohn
 */

* {
    --cap-color-main: #E31E24;
    --cap-color-main-gradient-1: #ff453c;
    --cap-color-main-gradient-2: #ff6554;

    --cap-gradient-main: linear-gradient(90deg, var(--cap-color-main) 0%, var(--cap-color-main-gradient-1) 50%, var(--cap-color-main-gradient-2) 100%);
    --cap-default-border-radius: 0;

    --cap-default-font-family: "Roboto", sans-serif;
}

.cap-header-text {
	font-weight: 500;
}

.cap-option-button.cap-option-button-active.cap-option-button-image {
  border: solid 3px var(--cap-color-main);
}

.cap-base-feature-filter .cap-option-button-image {
  max-width: 300px;
}

.cap-landingpage-welcome {
    text-align: center;
}

.cap-landingpage-welcome hr {
    max-width: 10em;
    height: 5px;
    color: var(--cap-color-main);
    background-color: var(--cap-color-main);
}

.cap-landingpage-welcome p {
    margin: 2em;
}

.kemper-rebate-table {
    max-width: 100%;
    overflow: auto;

    margin-top: 1em;
    padding-bottom: 1em;
}

.kemper-rebate-table td {
    min-width: 3.25em;
    padding: 0.25em;
    text-align: center;
}

.kemper-rebate-table td.kv {
    font-weight: bold;
}

.kemper-rebate-table .vd {
    background-color: rgb(124, 185, 124);
}

.kemper-rebate-table .id {
    background-color: rgb(255,160,160);
}

.cap-kmp-summary-table-row {
    display: grid;
    grid-template-columns: 20em 1fr 3.5em;
    padding: .5em;
}

.cap-kmp-summary-table-header {
    font-weight: 700;
    background-color: var(--cap-color-table-bg-odd-row);
}

.cap-kmp-summary-table.cap-kmp-summary-table-prices .cap-kmp-summary-table-row {
    grid-template-columns: 1fr 15em 3.5em 7.5em;
}

.cap-kmp-summary-table-row div:last-child {
    text-align: end;
}

.cap-kmp-summary-table-footer {
    font-weight: 700;
    border-top: solid 1px var(--cap-color-main);
}

@container capconfigurator (max-width: 1199.99px) {

    .cap-kmp-summary-table-row,
    .cap-kmp-summary-table.cap-kmp-summary-table-prices .cap-kmp-summary-table-row {
        display: grid;
        grid-template-columns: 1fr 7.5em;
        padding: .5em;
    }

    .cap-kmp-summary-table-row div:nth-child(2) {
        grid-row: 2;
        grid-column: 1;
    }

    .cap-kmp-summary-table-row div:nth-child(3) {
        grid-row: 1;
        grid-column: 2;
        text-align: end;
    }
}