
.prisliste-frontend {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 100%;
    box-sizing: border-box;
}
.prisliste-category {
    width: calc(50% - 20px);
    box-sizing: border-box;
}
.prisliste-category h6 {
    color: #000000;
    margin-bottom: 0.25em;
}
.prisliste-category h6 + p {
    margin-top: -1.5em;
    margin-bottom: 1em;
}
@media (max-width: 768px) {
    .prisliste-category {
        width: 100%;
    }
}
.prisliste-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    width: 100%;
    font-family: inherit;
}
.item-left {
    flex: 0 0 auto;
    padding-right: 10px;
    word-break: break-word;
}
.dots {
    flex-grow: 1;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    position: relative;
}
.dots::before {
    content: "..................................................................................................................................................................";
    display: block;
    overflow: hidden;
}
.item-right {
    flex: 0 0 auto;
    text-align: right;
    padding-left: 10px;
    word-break: break-word;
}
