.container:has(> .stripe) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #242d60;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

section.stripe {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    width: min(400px, calc(100vw - 20px));
    height: 112px;
    border-radius: 6px;
    justify-content: space-between;
    margin: 10px;
}

.stripe {

    .product {
        display: flex;
    }

    .description {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    p {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.154px;
        color: #242d60;
        height: 100%;
        width: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    svg {
        border-radius: 6px;
        margin: 10px;
        width: 54px;
        height: 57px;
    }

    h3,
    h5 {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.154px;
        margin: 0;
        color: #242d60;
    }


    h5 {
        opacity: 0.5;
    }

    a {
        text-decoration: none;
        color: white;
    }

    #checkout-and-portal-button {
        height: 36px;
        background: #556cd6;
        color: white;
        width: 100%;
        font-size: 14px;
        border: 0;
        font-weight: 500;
        cursor: pointer;
        letter-spacing: 0.6;
        border-radius: 0 0 6px 6px;
        transition: all 0.2s ease;
        box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    }

        #checkout-and-portal-button:hover {
            opacity: 0.8;
        }
}

h4 {
    color: white;
    font-weight: 5000;
    padding: 0 20px;
}