.rl-pc-hero {
    position: relative;
}

.rl-price-card[hidden] {
    display: none !important;
}

.rl-price-card {
    font-size: clamp(13px, 0.4167vw + 8px, 16px);
    --rl-pc-accent: #82be0f;

    position: absolute;
    z-index: 5;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 23em;
    padding: 1.5625em;

    background-color: rgba(8, 8, 8, 0.65);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1.5px solid var(--rl-pc-accent);
    border-radius: 0.625em;

    color: #e4e4e4;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1.4;
    text-align: left;
}

.rl-pc-title {
    margin: 0 0 0.7692em;
    font-size: 1.625em;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.rl-pc-label {
    margin: 0 0 0.8333em;
    font-size: 1.125em;
    font-weight: 500;
    color: #fff;
}

.rl-pc-list {
    margin: 0;
    padding: 0 0 0 1.25em;
    list-style: disc;
}

.rl-pc-list li {
    margin-bottom: 0.375em;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.35;
}

.rl-pc-list li:last-child {
    margin-bottom: 0;
}

.rl-pc-rule {
    margin: 1.25em 0 1.25em;
    border: 0;
    border-top: 1px solid #4a4a4a;
}

.rl-pc-price {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rl-pc-amount {
    font-size: 1.375em;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.rl-pc-dec {
    font-size: 1em;
    font-weight: 500;
    margin-right: 0.625em;
    color: #fff;
}

.rl-pc-unit {
    font-size: 0.875em;
    font-weight: 300;
}

.rl-pc-save {
    margin: 0.25em 0 0;
    font-size: 1em;
    font-weight: 400;
}

.rl-pc-save[hidden] {
    display: none;
}

.rl-pc-was {
    margin-right: 0.5em;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 0.125em;
    text-decoration-skip-ink: none;
}

.rl-pc-pct {
    font-weight: 700;
    font-style: italic;
    color: var(--rl-pc-accent);
}

.rl-pc-buy {
    display: block;
    margin-top: 1.25em;
    padding: 0.25em 0.625em;
    background-color: #282828;
    border: 1.5px solid var(--rl-pc-accent);
    color: var(--rl-pc-accent);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: background-color 0.25s, color 0.25s;
    transition: background-color 0.25s, color 0.25s;
}

.rl-pc-buy:hover,
.rl-pc-buy:focus {
    background-color: var(--rl-pc-accent);
    color: #fff;
    text-decoration: none;
}

.rl-pc-more {
    display: block;
    margin-top: 0.8333em;
    font-size: 0.75em;
    font-weight: 300;
    color: #e4e4e4;
    text-align: center;
    text-decoration: underline;
}

.rl-pc-more:hover,
.rl-pc-more:focus {
    color: #fff;
    text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
    .limit-width-with-price-card {
        max-width: 550px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
    .limit-width-with-price-card--1280 {
        max-width: 550px;
    }
}

@media screen and (max-width: 991px) {
    .rl-pc-hero {
        background-color: #282828;
    }

    .rl-price-card {
        position: static;
        -webkit-transform: none;
        transform: none;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        font-size: 14px;
        padding: 1.75em 1.5em;
        border-radius: 0;
        border: none;
        background-color: transparent;

        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-column-gap: 2em;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .rl-pc-title {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .rl-pc-label {
        grid-column: 1;
        grid-row: 2;
    }

    .rl-pc-list {
        grid-column: 1;
        grid-row: 3 / span 3;
    }

    .rl-pc-rule {
        grid-column: 2;
        grid-row: 2 / span 4;
        align-self: stretch;
        width: 1px;
        min-height: 100%;
        margin: 0;
        border: 0;
        background-color: #707070;
    }

    .rl-pc-price {
        grid-column: 3;
        grid-row: 2;
    }

    .rl-pc-save {
        grid-column: 3;
        grid-row: 3;
    }

    .rl-pc-buy {
        grid-column: 3;
        grid-row: 4;
    }

    .rl-pc-more {
        grid-column: 3;
        grid-row: 5;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .rl-pc-save {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .rl-price-card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        max-width: 300px;
        font-size: 13px;
        padding: 1.75em 1.5em;
    }

    .rl-pc-rule {
        grid-column: auto;
        grid-row: auto;
        width: auto;
        min-height: 0;
        margin: 1.5625em 0 1.25em;
        border: 0;
        border-top: 1px solid #707070;
        background-color: transparent;
    }
}
