.price-set {
    width: fit-content;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    --font-size: calc(max(min(40pt, 7vw), 20pt));

    p {
        margin: 0 15px;
        color: var(--dark-gray);
        font-size: calc(var(--font-size) * 0.45);
        text-align: center;
        line-height: 1.5em;
        cursor: row-resize;
        user-select: none;

        &:nth-child(1) {
            border-right: 8px solid var(--green);
            padding-right: 30px;
            cursor: not-allowed;
        }

        i {
            display: block;
            color: var(--green);
            font-size: var(--font-size);
            font-style: normal;
            font-weight: bold;

            &:before {
                font-size: 75%;
                margin-right: 10px;
            }
        }
    }
}

@media screen and (max-width: 650px) {
    .price-set {
        p {
            &:nth-child(1) {
                width: 100%;
                margin-bottom: 15px;
                padding-right: 0;
                border-right: none;
                border-bottom: 8px solid var(--green);
            }
        }
    }
}
