@font-face {
    font-family: "DSEG7-Regular";
    src: url("./font/DSEG7Classic-Regular.woff") format("woff");
}

@font-face {
    font-family: "DSEG7-Bold";
    src: url("./font/DSEG7Classic-Bold.woff") format("woff");
}

.digital-font-regular {
    font-family: "DSEG7-Regular" !important;
}

.digital-font-bold {
    font-family: "DSEG7-Bold" !important;
}

.tankstellen-preise-top {
    background: #070000;
    color: #c5c5c5;
    ;
    padding: 20px;
    font-size: 20px;
    display: grid;
    grid-template-columns: 175px 1fr;
    grid-row-gap: 1rem;
}

.tankstellen-preise-top .tankstellen-preise-produktname {
    background: #333;
    padding: .75rem 0;
    padding: 5px 2rem;
    display: inline-flex;
    align-items: center;
}

.tankstellen-preise-top .tankstellen-preise-preis {
    background: #333;
    padding: 5px 2rem;
    text-align: right;
}

.tankstellen-preise-top .tankstellen-preise-preis span {
    position: relative;
}

.tankstellen-preise-top .tankstellen-preise-preis sup {
    font-size: 12px;
    position: absolute;
    top: 6px;
}

.tankstellen-preise-info {
    background-color: #070000;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}

.tankstellen-preise-hinweis {
    color: var(--e-global-color-accent);
}

.tankstellen-preise-container {
    max-width: 425px;
}

@media only screen and (max-width : 320px) {
    .tankstellen-preise-top {
        grid-template-columns: 1fr;
        grid-row-gap: 0;
    }
    .tankstellen-preise-top .tankstellen-preise-preis {
        text-align: left;
        margin-bottom: 1rem;
    }
}