.custom-priceblocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}


@media (min-width: 992px) {
    .custom-priceblocks {
        gap: 35px;
    }

    .custom-priceblocks > div {
        flex-basis: calc(50% - (35px * 0.75));
    }
}

.custom-priceblocks {
    gap: 15px;
}

.custom-priceblocks > div:focus-visible {
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
    transform: translate(5px);
}

.custom-priceblocks > div:hover {
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
    transform: translate(5px);
}

.custom-priceblocks > div {
    background-color: white;
    flex: 0 0 100%;
    border-radius: 15px;
    width: 100%;
    height: auto;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: box-shadow .2s ease, transform .5s ease;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 992px) {
    .custom-priceblocks > div {
        flex-basis: calc(50% - (35px * 0.75));
    }
}

.custom-priceblocks > div > i.fa {
    color: var(--primary);
    font-size: 3rem;
}

.custom-priceblocks > div > h3 {
    color: rgb(108, 117, 125);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.custom-priceblocks > div > p {
    color: rgb(108, 117, 125);
    margin-bottom: 1rem;
}

.custom-priceblocks > div > table {
    margin-bottom: 1rem;
    width: 100%;
}

    .custom-priceblocks > div > table tr th,
    .custom-priceblocks > div > table tr td {
        border-bottom: 1px solid #F6F6FA;
        border-top: 1px solid #F6F6FA;
        padding: 0.5rem;
    }

        .custom-priceblocks > div > table tr td > i.fa.fa-times {
            color: red;
        }

        .custom-priceblocks > div > table tr td > i.fa.fa-check {
            color: green;
        }

        .custom-priceblocks > div > table tr th,
        .custom-priceblocks > div > table tr td{
            text-align: left;
        }

    .custom-priceblocks > div > table tr th:last-child,
    .custom-priceblocks > div > table tr td:last-child {
        text-align: right;
    }


/* Damit ERP auf voller Breite ist */
.erp-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: box-shadow .2s ease, transform .5s ease;
    margin-top: 1rem;
    gap: 1rem;
}

    /* Icon Größe anpassen */
    .erp-card > i.fa {
        font-size: 3rem;
        color: var(--primary);
    }

    .erp-card table {
        text-align: center;
    }

/* Tabelle rechts auf Desktop */
@media (min-width: 992px) {
    .erp-card {
        align-items: center;
        justify-content: space-between;
    }

    .erp-card table {
        text-align: end;
    }
}
