html{
}

.container {
    max-width: 1000px;
}

.headerwrap {
    max-width: 1000px;
}

.jmagfooter {
    max-width: 1000px;
}

.product-container {
    max-width: 600px;
    margin-right: 15px;
    padding-top: 25px;
}

#app{
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-evenly;
}


.header-logo {
    width: 400px; /* you must control size somehow */
    height: 50px;
    background-position: left center;
}

.info-bar {
    background: rgb(250,250,250);
    border-left: 1px solid #DEDEDE;
}

.campaign-offer {
    margin: 20px 0 0 0px;
    width: 400px;
    position: sticky;
    z-index: 100;
}
    .campaign-offer hr {
        border: none; /* remove default styles */
        border-top: 1px solid #cdcdcd; /* 1px grey line */
        margin: 0.5rem 0; /* spacing (optional) */
    }

    .campaign-offer .offer {
        align-items: flex-start;
    }

        .offer img {
            width: 90px;
        }

        .campaign-offer .offer .info .skuName {
            max-width: 70%;
        }


.is-campaign .product-container > * {
    padding: 0;
}

.is-campaign .product-container > .form-section {
    padding: 0 25px 15px 25px;
}

.form-section {
    background: #fff;
    margin: 0 0 10px 0;
}

.form-row {
    grid-template-columns: 100px 1fr 1fr; /* title fixed, firstname + lastname share */
}

/* reset last name back to normal flow */
.fullrowinput {
    grid-column: auto;
}



.is-campaign  .paymentForm .form-section {
    padding: 0 25px 15px 25px;
}

.desktop-only {
    display: grid;
}

.grid-pricing {
    display: grid;
    grid-template-columns: 1fr auto; /* first col stretches, second col fits */
    gap: 0.5rem 1rem; /* row gap / col gap */
    align-items: center;
}


    .grid-pricing > *:nth-child(odd)
    {
        text-align: left; /* labels */
    }

    .grid-pricing > *:nth-child(even) {
        text-align: right; /* values */
    }

    .grid-pricing b {
        font-weight: 600;
        font-size: 1rem;
    }
