.pricing-container {
    display: flex;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
    width: 80%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 6rem;
    padding-top: 28px;
    margin-bottom: 5rem;
}

#pricingInfo {
    padding: 2rem;
}

.pricing-box,
.rates-box {
    padding: 30px;
}

.pricing-box {
    width: 60%;
    background: #eff7fd;
    text-align: center;
    border-radius: 25px;
    box-shadow: 2px 34px 30px 0 rgba(23, 30, 37, .14);
    align-self: center;
    z-index: 1;
}

.rates-box {
    width: 40%;
    border-radius: 0 25px 25px 0;
    background: #fff;
    box-shadow: 0 3px 35px 0 rgba(0, 0, 0, .09);
    margin: 30px 0;
        align-self: center;
            padding-top: 5rem;
            padding-bottom: 5rem;
    /* border-left: 1px solid #e0e0e0; */
}

h2,
h3 {
    margin: 0 0 20px;
    color: #333;
}

input[type="number"] {
    padding: 10px;
    width: 200px;
    font-size: 1.5em;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    background-color: #fff;
}

.min-purchase-text {
    color: #888;
    margin-bottom: 30px;
}

.slider-container {
    margin-bottom: 30px;
}

input[type="range"] {
    width: 80%;
}

.price-per-credit {
    display: inline-block;
    background: #0071c5;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.total-price-box h3,
.total-price-box p {
    margin: 0;
}

#total-price {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.currency-text,
.signup-note {
    color: #888;
}

.currency-link {
    color: #0071c5;
    text-decoration: none;
}

.cta-button {
    background: #ffcf00;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.rates-box h3 {
    margin-bottom: 5px;
}

.rates-list {
    list-style: none;
    padding: 0;
}

.rates-list li {
    font-size: 1.2em;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.demo-button {
    background: #0071c5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-container {
        /* flex-wrap: nowrap; */
        flex-direction: column;
        width: 100vw;
        margin-bottom: 0px;
    }

    .pricing-box,
    .rates-box {
        flex: 1 1 50%;
        width: 80vw;
    }

    .pricing-box {
        padding-left: 14px;
        padding-right: 14px;
    }

    .rates-box {
        text-align: center;
        align-self: center;
        border-radius: 25px 25px 25px 25px;
    }
}