.price-cards {
    display: grid;
    grid-template-columns: repeat(var(--pc-cols-xs, 1), minmax(0, 1fr));
    gap: 30px;
    margin: 0;
}

.price-cards::before,
.price-cards::after {
    content: none;
}

.frame-type-price_cards .price-cards__intro {
    margin-top: 30px;
    margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
    .frame-type-price_cards .price-cards__intro {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .price-cards {
        gap: 20px;
    }
}

.price-cards > .col {
    display: contents;
}

@media screen and (min-width: 768px) {
    .price-cards {
        grid-template-columns: repeat(var(--pc-cols-sm, 2), minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .price-cards {
        grid-template-columns: repeat(var(--pc-cols-md, 3), minmax(0, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .price-cards {
        grid-template-columns: repeat(var(--pc-cols-xl, 3), minmax(0, 1fr));
    }
}

.price-cards .pricecard {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 0;
    padding: 40px 40px 20px 40px;
    border-radius: var(--border-radius);
    background: #fff;
    overflow: hidden;
}

.pricecard__body {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.price-cards .pricecard::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #1D2242 0%, #434F99 40%, #66488E 70%, #E3051A 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.pricecard__head {
    grid-row: 1;
    align-self: start;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    row-gap: 12px;
    padding: 0 0 20px;
}

@media screen and (max-width: 992px) {
    .pricecard__head {
        column-gap: 20px;
    }
}

.pricecard__head .h5 {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.pricecard__icon {
    flex: 0 0 auto;
    margin: 0;
}

.pricecard__icon .icon {
    max-height: 48px;
    height: 100%;
    width: fit-content;
    margin: 0;
}

.pricecard__icon .ce-icon {
    max-height: 48px;
    width: auto;
}

.pricecard__text {
    flex: 0 0 100%;
    margin: 0;
}

.pricecard__divider {
    height: 2px;
    border: 0;
    background: linear-gradient(90deg, #1D2242 0%, #434F99 40%, #66488E 70%, #E3051A 100%);
    margin: 0 -40px;
}

.pricecard__list {
    flex: 1 1 auto;
    padding: 27px 0 10px;
}

.pricecard__list.ce-bodytext ul,
.pricecard__list.ce-bodytext ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricecard__list.ce-bodytext li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    margin: 0;
}

.pricecard__list.ce-bodytext li > * {
    margin: 0;
}

.pricecard__list.ce-bodytext li:first-child {
    padding-top: 0;
}

.pricecard__list.ce-bodytext li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #000;
}

.pricecard__list.ce-bodytext li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    line-height: 1;
    color: #fff;
    background: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    position: static;
    top: auto;
    left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pricecard__price {
    margin: auto -40px -20px;
    padding: 24px 40px;
    color: #fff;
    background: linear-gradient(90deg, #1D2242 0%, #434F99 40%, #66488E 70%, #E3051A 100%);
}

.pricecard__price-old {
    color: #c9c9c9;
    font-weight: 700;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricecard__price-new {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 700;
    line-height: 1.1;
}

.pricecard__amount {
    font-size: 46px;
}

@media screen and (max-width: 767px) {
    .pricecard__amount {
        font-size: 40px;
    }
}

.pricecard__price-new--text .pricecard__amount {
    font-size: 22px;
}

.pricecard__cur {
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    top: 2px;
}

.price-cards .pricecard:has(a.layer) {
    cursor: pointer;
}

.price-cards .pricecard a.layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    font-size: 0;
}

.price-cards .pricecard a:not(.layer),
.price-cards .pricecard button {
    position: relative;
    z-index: 3;
}
