
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*DEBUG REMOVE THIS AFTER*/

/**/
/*DEBUG REMOVE THIS AFTER*/
.container {
    background: white;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    margin: 0 auto;
}


body {
    margin: 0;
    font-family: 'Inter','Merriweather', 'Open+Sans';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    accent-color: black;
}

header {
    background: #fff;
    border-bottom: 1px solid #EDEDED;
}

.headerwrap {
    max-width: 549px;
    margin: 0 auto;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 15px 0px 10px 0px;
}

.container {
    max-width: 549px;
}

footer {
    background-color: #333333;
}

.jmagfooter {
    color: white;
    text-align: left;
    line-height: 20px;
    padding: 0px 0px 40px 0px;
    max-width: 549px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 25px;
}


.main-navigation {
    margin-bottom: 10px;
}
    .main-navigation a, .main-navigation a:visited{
        cursor: pointer;
        text-decoration: none;
        font-family: 'open sans';
        font-size: 15px;
        font-weight: 600;
        margin-right: 30px;
        color: #fff;
    }

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.ribbon {
    display: none;
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Inter', arial, sans-serif;
}
h1{
    font-weight:400;
    font-size:16px;
    line-height:20px;
}
h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}
h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 50px;
}


p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
p b, p strong {
    font-weight: 600;
}


a, a:visited{
    color: black;
    text-decoration:underline;
    cursor:pointer;
}

.vh{
    visibility:hidden;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}
h1{
    text-align:center;
    font-size:16px;
}
h2 {
    text-align: center;
    font-size:24px;
}
h3{
    margin-top: 15px;
    margin-bottom:5px;
    font-size:18px;
}

.small-text {
    font-size: 13px;
}
.light-text{
    color:#444;
    font-size: 13px;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: black;
    text-decoration: underline;
    cursor: pointer;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



    .header .secure {
        display: flex;
        flex-direction: column;
        font-size: 8px;
        width: 30px;
    }

    .header .secure.express-spacer {
        display: none;
    }

.header-logo {
    background-image: url('https://mcgraphics.blob.core.windows.net/campaignsite/jmag/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* keeps aspect ratio */
    width: 100px;
    height: 30px;
    display: inline-block;
}

.is-campaign .header-logo {
    background-position: left center;
}

.is-express .header-logo {
    width: 200px;
    height: 60px;
}


.logo {
    width: 200px;
}

.header i {
    font-size: 20px;
}

label{cursor:pointer;}

.product-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    padding-top: 25px;
}

    .product-container > * {
        padding: 0 25px;
    }

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

    .sku-container {
        margin-top: 10px;
    }


/* Your existing styles */
/* Modal styles */
.modal {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-content {
    background-color: #fff;
    padding: 0px 20px 20px 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float:right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    align-self:end;
    line-height: 12px;
}

.overlay {
    position: fixed;
    display:flex;
    justify-content:center;
    align-content:center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    font-size: 40px;
    color: #3498db; /* Change color as needed */
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.instant-access {
    line-height: 40px;
    font-weight:400;
    font-size:13px;
}

.free-gift {
    color: rgb(230,00,00);
    display: flex;
    flex-direction: row;
    font-size: 12px;
    align-items: center;
    font-weight: 600;
}

    .free-gift .badge {
        border-radius: 100px;
        background: #E20C0B;
        color: white;
        margin-right: 10px;
        text-transform: uppercase;
        font-size: 10px;
        height: 37px;
        width: 37px;
        padding: 6px;
        line-height: 13px;
        text-align: center;
        font-weight: 600;
    }

.xmas-gift {
    color: green;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .xmas-gift .tree {
        border-radius: 100px;
        border: 1px solid green;
        color: white;
        margin-right: 10px;
        text-transform: uppercase;
        height: 37px;
        width: 37px;
        padding: 0px;
        line-height: 34px;
        text-align: center;
        font-weight: 600;
        font-size: 24px;
    }

/* Style for each box in the list */
.box-container {
    display: flex;
    flex-direction: column;
}

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

.box, .offer-box {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor:pointer;
}
.product-container > .offer-box {
    margin-bottom: 0;
}

.product-container > .offer-box {
    flex: 1;
    margin-left: 25px;
    margin-right: 25px;
}

.offer-box{
    display: flex;
    flex-direction: column;
}

.offer-box.pointer:hover {
    background: #eee;
}

.offer-price {
    font-size: 24px;
    font-weight:700;
    line-height:50px;
}
.offer-title{
    font-size: 15px;
    font-weight: 700;
}

.offer-subtitle {
    font-size: 13px;
    font-weight: 400;
}
.offer-issues{
    font-weight:600;
    font-size:14px;
}
.offer-rrp {
    font-weight: 400;
    font-size: 12px;
}
.offer-save {
    font-weight: 600;
    font-size: 12px;
    color: #FF0D00;
}
.offer-arrow, .paymentico {
    line-height: 50px;
}

.offer-details {
    display: flex;
    flex-direction: column;
}

.offer-flex {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.offer-arrow{

}

.orderType {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px 10px; /* Use gap for spacing */
}
    .orderType .option {
        flex-grow: 0;
        flex-shrink: 0;
        border: 2px solid #D5D5D5;
        border-radius: 7px;
        padding: 0px 11px;
        flex-grow: 1;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 15px;
        height: 45px;
        line-height: 45px;
    }

    .orderType label.option.icon {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .orderType .option.selected {
        border: 2px solid #00933E;
        padding: 11px;
        font-weight: 700;
        background: #dbf0e4;
    }

    .orderType .option > input, .orderType .option > span > input {
        margin-right: 5px;
        margin-bottom: 0;
    }



    /*Form styling*/
    .form-box {
        display: flex;
        flex-direction: column;
    }

        .form-box .textbox, .form-box select {
            font-size: 14px;
            box-sizing: border-box;
            border-radius: 7px;
            border: 1px solid #cdcdcd;
            padding: 9px 10px;
            line-height: 18px;
            height: 45px;
            font-family: 'Inter', arial, sans-serif;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .form-box .textbox::placeholder {
            font-size: 14px;
            font-family: 'Inter', arial, sans-serif;
            font-weight: 400;
        }

        .form-box label {
            margin-top: 10px;
            margin-bottom:3px;
        }

        .form-box .help.is-danger {
            font-size: 12px;
            color: red;
            margin-bottom: 0px;
        }

.form-row {
    display: grid;
    grid-template-columns: 100px 1fr; /* title fixed, firstname flexible */
    grid-gap: 10px; /* spacing between inputs */
}

/* last name spans full width in mobile */
.fullrowinput {
    grid-column: 1 / -1;
}

.custom-select {
    position: relative;
}

    .custom-select select {
        appearance: none;
        -webkit-appearance: none;
        width: 100%;
        font-size: 14px;
        padding: 5px 30px 5px 10px;
        background-color: #FFFFFF;
        border: 1px solid #cdcdcd;
        border-radius: 5px;
        color: #000000;
        cursor: pointer;
        outline: none;
        color:#585858;
    }

        .custom-select select:focus {
            background: #FFFFFF;
            border: 2px solid black;
            border-radius: 5px;
        }

    .custom-select::after {
        content: "";
        position: absolute;
        pointer-events: none;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
        width: 12px;
        height: 12px;
        background-color: #000000;
        clip-path: polygon(8% 17%, 0% 25%, 50% 84%, 100% 25%, 92% 17%, 50% 65%);
    }



/*payment*/
.paymentForm{
    width:100%;
}



.btn-payment-card, .btn-payment-card-wallet {
    height: 50px;
    border: 0;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 700;
    color: #fff;
    background: #00933E;
    text-transform: uppercase;
}

    .btn-payment-card:hover {
        background: #5ebb46;
    }

    .btn-payment-card-wallet{
        background: black;
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
    }


.btn-payment-card-wallet img {
    height: 22px;
}


    .showHideMore {
    }

.header-label {
    margin: 10px 0 5px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    line-height: 52px;
}

    .header-label h3 {
        margin: 0;
        line-height: 40px;
        font-size:21px;
        font-weight:900;
    }

.express{
    justify-content:center;
    margin-top:10px;
}

.express h3 {
    text-align: center;
    color: #666;
    font-weight: normal;
    font-size:15px;
}

.expressBox{
    width:100%;
}

.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #333;
}

    .line-with-text::before,
    .line-with-text::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #ccc;
        margin: 0 10px; /* Adjust spacing between line and text */
    }

    .line-with-text span {
        padding: 0 10px; /* Optional padding around the text */
        background-color: #fff; /* Background color to overlay on the line */
    }

    .pointer {
        cursor: pointer;
    }

[v-cloak] {
    display: none;
}

.fadeOut{
    opacity: 0.4;
}

.fg{
    flex-grow: 1;
}

.fasc {
    align-self: center;
}

.st {
    text-decoration: line-through
}

.mt0{
    margin-top: 0;
}

.mt2 {
    margin-top: 2px;
}

.mt3 {
    margin-top: 3px;
}

.mt5 {
    margin-top: 5px;
}

.mt8 {
    margin-top: 8px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt17 {
    margin-top: 17px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb0 {
    margin-bottom: 0px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr0 {
    margin-right: 0px;
}

.pad10 {
    padding: 10px;
}

.pad15 {
    padding: 15px;
}

.pad20 {
    padding: 20px;
}

.pad30 {
    padding: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.padlr15 {
    padding: 10px 15px;
}


.shadow8 {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
}
.rad8 {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.fw600{
    font-weight:600;
}
.fs11{    font-size:11px;    line-height:14px;}
.fs12{    font-size:12px;    line-height:15px;}
.fs13{    font-size:13px;    line-height:16px;}
.fs14{    font-size:14px;    line-height:17px;}

.w100{width:100%;}
.talc{text-align:center;}

.morelesslink {
    text-decoration: none;
    color: black;
    width: 100%;
    text-align: center;
    margin-top: -13px;
    font-weight: 500;
}
.addressadd {
    text-decoration: underline;
    color: black;
    font-weight: 600;
    font-size:14px;
    text-transform:uppercase;
}
.ddreadmore {
    text-decoration: underline;
    color: black;
    font-weight: 600;
    font-size: 12px;
}
.fa-bolt-lightning {
    color: #0394ca;
}
.fa-chevron-down{
    font-size:20px;
}

.scrollbar-custom::-webkit-scrollbar {
    background-color: white;
}

    .scrollbar-custom::-webkit-scrollbar:horizontal {
        height: 5px;
    }

.scrollbar-custom::-webkit-scrollbar-track {
    border: 0px #cdcdcd solid;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 6px #c8c8c8 inset;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background-color: #cdcdcd;
    border: 0px solid #000000;
    border-radius: 5px;
}

    .scrollbar-custom::-webkit-scrollbar-thumb:hover {
        background-color: #cdcdcd;
        border: 0px solid #333333;
    }

    .scrollbar-custom::-webkit-scrollbar-thumb:active {
        background-color: #cdcdcd;
        border: 0px solid #333333;
    }

.scrollbar-custom {
    scrollbar-width: thin;
    overflow-y: auto;
    padding-right: 10px;
}
.marketingttxt {
    font-size: 12px;
    color: #666769;
}
.marketingttxtconfirm{
    font-style:italic;
}
.poweredby {
    font-size: 12px;
    color: #585858;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
.pblogo{
    width:180px;
    text-align:center;
}

.faqholder{
    background-color:#f6f6f6;
    padding: 10px 25px;
}

.jmagfooterlink {
    color: white !important;
    text-decoration:none;
    margin-left:5px;
    margin-right:5px;
}
.ddlogo{height:22px;}


details {
    color: #202020;
    font-size: 16px;
    width: 100%;
    border:1px #585858 solid;
    text-align:left;
    border-radius:5px;
    cursor:pointer;
}

summary {
    padding: 8px 10px;
    list-style: none;
    display: flex;
    transition: height 1s ease;
    width:100%;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary:before {
        content: "\f054";
        font-family:fontawesome;
        width:30px;
    }

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

    details[open] summary:before {
        content: "\f078";
        font-family: fontawesome;
        padding-right: 5px;
    }

details[open] div {
    padding: 5px 20px 20px 20px;
    line-height:24px;
    font-size:15px;
}

.posrel{position:relative;}

.saving-overlay {
    background-color: #df0000;
    border: 2px solid #fff;
    border-radius: 30px;
    bottom: 23px;
    height: 0;
    height: 60px;
    position: absolute;
    right: calc(50% - 105px);
    width: 60px;
    z-index: 0;
}
.saving-overlay__txt1, .saving-overlay__txt2 {
    color: #fff;
    position: absolute;
    text-align: center;
    width: 60px;
    top:9px;
    right:-2px;
}
.saving-overlay__txt2 {
    font-size: 16px;
    font-weight: 700;
    top: 22px;
}

.waystopaycc{width:200px;}

.instanttxtheader {
    color: #0394ca;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


/*from layout css*/
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}


.desktop-only{
    display:none;
}

.strike{
    text-decoration:line-through;
    
}

.red-text {
    color: #ba112f;
    font-weight:700;
}


.red-bright-text {
    color: red;
    font-weight: 700;
}

.express-checkout-shimmer {
    height: 48px;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


:root {
    --vue3-loading-shimmer-bg: #e3e3e3;
    --vue3-loading-shimmer-shimmerBg: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0.1) 100%);
    --vue3-loading-shimmer-duration: 1000ms;
}


.express-checkout-shimmer > * {
    border-radius: 5px;
    flex: 1;
    height: 44px;
    width: 50%;
    margin-right: 2px;
    margin-left: 2px;
    background: linear-gradient(-45deg, #eee 40%, #fafafa 50%, #eee 60%);
    background-size: 300%;
    background-position-x: 100%;
    animation: shimmer 1s infinite linear;
}

.secure-notice{
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 00px;
}

@keyframes shimmer {
    to {
        background-position-x: 0%
    }
}