/* General CSS */
:root {
    --brand-color: #ce181e;
    --brand-blue: #07152b;
    --background-pink: #fdf3f4;
    --background-grey: #e5e5e5;
    --brand-max-width: 1240px;
    --padding: 10px 20px;
}
body {
    margin: 0;
    padding: 0;
    font-family: "industry",sans-serif;
}
.width-100 {
    width: 100%;
    height: auto;
}
.flexCont {
    display: flex;
}
.parentContainer {
    width: 100%;
    padding: 0;
    margin: 0;
}
.parentContainer * {
    box-sizing: border-box;
}
.fluidContainer {
    width: 100%;
}
/* General CSS End */

/* Header Section Start */
.headerNav {
    background-color: var(--brand-color);
}
.hdrNavInner {
    justify-content: space-between;
    align-items: center;
    max-width: var(--brand-max-width);
    margin: 0 auto;
    padding: var(--padding);
}
.logo img {
    max-width: 210px;
}
.navItems a.cart {
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.cartCount {
    position: absolute;
    top: 0;
    right: -7px;
    background-color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerCont {
border-bottom: 10px solid var(--brand-color);
}
.hdrCont h2 {
    font-weight: 400;
    text-align: center;
    font-size: 1.3em;
}
.hdrCont h2 strong {
    font-weight: black;
}
.hdrContInner {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    max-width: var(--brand-max-width);
    margin: 0 auto;
    padding: var(--padding);
}
.hdrImg {
    padding: 10px 20px 0;
    max-width: 450px;
}
.desktop {
    display: none;
}
.mobile {
    display: block;
}
nav {
    position: fixed;
    width: 100%;
    z-index: 5;
}
header {
    padding-top: 55px;
}
@media (min-width: 768px){
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
    .hdrContInner {
        flex-direction: row;
        justify-content: center;
        max-width: 1240px;
    }
    .hdrContInner .hdrCont {
        flex: 0 1 40%;
    }
    .hdrContInner .hdrImg {
        flex: 0 0 60%;
    }
    .hdrCont {
        font-size: 20px;
    }
    .hdrImg {
        max-width: 400px;
    }
}
@media (min-width: 992px){
    .hdrCont {
        font-size: 22px;
    }
    .hdrImg {
        max-width: 400px;
        padding-top: 0;
    }
    .hdrContInner .hdrCont {
        flex: 0 1 50%;
    }
    .hdrContInner .hdrImg {
        flex: 0 0 50%;
    }
}
@media (min-width: 1200px){
    .hdrCont {
        font-size: 24px;
    }
    .hdrImg {
        max-width: 480px;
    }
    .headerCont {
        border-bottom-width: 15px;
    }
}
/* Header Section End */

/* Offer Section Start */
h2.heading {
    color: var(--brand-color);
    font-weight: bold;
    font-size: 1.5em;
}
.ofrModule {
    max-width: var(--brand-max-width);
    margin: 0 auto;
    padding: var(--padding);
    text-align: center;
}
.ofrCont {
    justify-content: center;
    font-size: 20px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}
.ofrcontInner {
    display: flex;
    flex-direction: column;
    max-width: 380px;
    border: 1px solid var(--brand-blue);
    padding: 0;
    border-radius: 1.2em;
    width: 100%;
    flex: 1;
}
.ofrcontInner.selected {
    border: 1px solid var(--brand-color);
}

.ofrHdg {
    text-decoration: none;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 1.3em;
    margin-bottom: 10px;
}
.ofrhdr {
    font-weight: bold;
    font-size: 0.8em;
    color: #fff;
    background-color: var(--brand-blue);
    border-radius: 1.1em;
    padding: 15px 10px;
    border-bottom-right-radius: 0em;
    border-bottom-left-radius: 0em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ofrcontInner.selected .ofrhdr {
    background-color: var(--brand-color);
}
.ofrHdrCont {
    font-size: 1.3em;
    margin-bottom: 10px;
}
.ofrPrice {
    font-size: 1.6em;
}
.ofrPrice span {
    font-size: 1.4em;
}
.ofrLogo {
    margin-bottom: 10px;
    height: 50px;
}
.ofrLogo img {
    height: auto;
    max-width: 190px;
    width: 100%;
}
.ofrCover {
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ofrCover img {
    width: 100%;
}
.ofrList {
    text-align: left;
    /* height: 100px; */
    overflow: hidden;
	margin: 30px 0 30px 0;
}
.ofrList.expanded {
    height: auto;
    overflow: hidden;
}
.ofrList ul {
    list-style-type: none;
    padding-inline-start: 15px;
    list-style-position: outside;
}
.ofrList ul.noList {
    padding-inline-start: 3px;
}
.ofrList ul.noList li::before {
    content: none;
}
.ofrList ul li { 
    font-family: "industry",sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}
.ofrList ul li:before {
    background-color: var(--brand-color);
    border-radius: 50%;
    content: "";
    display: inline-block;
    margin-right: -6px;
    height: 9px;
    width: 9px;
    position: relative;
    left: -12px;
    top: -3px;
}
.ofrList p {
    font-size: 16px;
}
.ofrInrCont {
    padding: 20px 15px;
}

.ofrButton {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 230px;
    margin: 0 auto;
    /* background-color: var(--background-grey); */
	background-color: #07152b;
    height: 50px;
    border-radius: 0.5em;
    color: #b4b4b4;
    border: 1px solid #b4b4b4;
	cursor: pointer;
}
.ofrcontInner.selected .ofrButton {
    background-color: var(--brand-color);
    color: #fff;
    border: 1px solid var(--brand-color);
}
.showMrCont {
    position: relative;
    display: block;
}
.showMore {
    color: var(--brand-color);
    font-size: 0.8em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.showMore::after {
    content: '';
    display: block;
    height: 55px;
    position: absolute;
    top: -53px;
    width: 100%;
    z-index: -1;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.31416316526610644) 100%);
}
.showMore.expanded::after {
    content: none;
}
@media (min-width: 768px){
    .ofrHdg {
        font-weight: 900;
        font-size: 1.4em;
    }
    h2.heading {
        font-size: 1.7em;
    }
}
@media (min-width: 992px){
    .ofrCont {
        flex-direction: row;
    }
    .showMrCont {
        display: none;
    }
    .ofrList {
        height: auto;
    }
    h2.heading {
        font-size: 2em;
        margin: 10px auto 20px;
    }
    
}
@media (min-width: 1200px){
    .ofrhdr {
        font-size: 1em;
    }
    .ofrList ul li { 
        font-size: 18px;
    }
    .ofrList p {
        font-size: 18px;
    }
}
@media (min-width: 1400px){
    .ofrPrice {
        font-size: 2em;
    }
    .ofrPrice span {
        font-size: 1.5em;
    }
}
/* Offer Section End */
/* Payment Section Start */
.paymentSection {
    background-color: var(--background-pink);
    margin-top: 25px;
}
.paymentCapt {
    max-width: 720px;
    width: 100%;
    margin: 5px auto 30px;
}
.paymentSecCont {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
/* Payment Section End */

/* Billing Section Start */
.billingSection, .shippingSection {
    background-color: var(--background-pink);
}
.shippingSection {
    display: none;
}
.billingSecCont, .shippingSecCont {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.formCtrl {
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #101010;
    border-radius: 0;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.billingFields, .shippingFields {
    width: 100%;
    margin: 20px auto 30px;
}
.inputField {
    margin-bottom: 15px;
}
.inputField3 {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
.inputField3 .inputField {
    flex: 1;
}
input::placeholder, input, #cds_state, #cds_donee1_state {
    font-family: "industry",sans-serif;
    font-weight: 500 !important;
    color: #101010;
    font-size: 18px;
}
input::placeholder, #cds_state.off, #cds_donee1_state.off {
    color: grey;
}
/* Billing Section End */

/* Give a Gift section Start */
.giveaGift {
    background-color: var(--background-pink);
    text-align: center;
    padding: 20px;
}
.giveaGiftSecCont {
    justify-content: center;
    text-transform: uppercase;
    font-size: 2em;
}
/* checkmark Style */
.chkbxcont {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 4px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.chkbxcont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 1px;
    width: 1px;
    left: 10px;
    bottom: -3px;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #000;
}
.chkbxcont:hover input ~ .checkmark {
    background-color: #ccc;
}
.chkbxcont input:checked ~ .checkmark {
    background-color: var(--brand-color);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.chkbxcont input:checked ~ .checkmark:after {
    display: block;
}
.chkbxcont .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Give a Gift section End */

/* Under 18 Section Start */
.under18 {
    background-color: #fff;
    text-align: center;
    margin: 20px auto 30px;
    display: none;
}
.under18SecCont {
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
}
.under18ChkBoxes {
    display: inline-block;
    width: fit-content;
    text-align: left;
    margin: 0 auto;
}
.under18SecCont h3 {
    color: var(--brand-color);
    font-size: 1.5em;
}
@media(min-width: 768px){
    .under18SecCont h3 {
        font-size: 1.7em;
    }
}
@media(min-width: 992px){
    .under18SecCont h3 {
        font-size: 2em;
    }
    .chkbxcont {
        font-size: 22px;
    }
}
/* Under 18 Section End */

/* Review Section Start */
.review {
    text-align: center;
}
.reviewSecCont {
    background-color: var(--background-pink);
    margin: 0 auto;
    justify-content: center;
}
.rsFlex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 1.1em;
    align-items: center;
}
.cartSec {
    max-width: 820px;
    margin: 20px auto;
    padding: 0 15px;
}
.rsProduct {
    flex: 1 1 50%;
    text-align: left;
    line-height: 1.3;
}
.rsBin {
    flex: 0 1 100px;
}
.rsPrice {
    flex: 0 1 120px;
}
.rsHdr .rsProduct, .rsHdr .rsPrice {
    color: var(--brand-color);
    font-weight: bold;
    text-align: center;
}
.rsHdr .rsProduct {
    text-align: left;
}
.rsTot {
    font-weight: bold;
    border-top: 1px solid #000;
    padding-top: 25px;
}
.rsTot .rsProduct {
    text-align: right;
    padding-right: 30px;
}
.rsBin img {
    width: 25px;
}
.review h2.heading {
    margin: 20px auto;
}
/* .rssib, .rssid, .rssik {
 display: none;
} */
@media(min-width: 768px){
.rsFlex {
    font-size: 1.3em;
}
}
@media(min-width: 992px){
.rsFlex {
    font-size: 1.5em;
}
}
/* Review Section End */
/* Acknowledgement Section Start */
.ackn {
    max-width: 1200px;
    margin: 30px auto 20px;
    padding: 0 15px;
}
.subAck {
    padding: 20px;
    text-align: center;
    border: 1px solid #000;
    line-height: 1.4;
    font-size: 1.125em;
}
.bbCont {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.bbContent {
    width: 100%;
    text-align: center;
    line-height: 1.5;
}
.bbContent a, .subAck a {
    color: var(--brand-color);
    text-decoration: none;
}
/* Acknowledgement Section End */
/* Submit Section Start */
.error {
    color: #f00;
    margin-bottom: 20px;
  }
  span.helper-processing {
    left: 0;
    width: 1rem;
    height: 1rem;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    top: 2px;
  }
  .submit.fluidContainer {
    text-align: center;
    margin: 35px auto;
}
.submitSecCont {
    justify-content: center;
}
#Submit {
    background-color: var(--brand-color);
    padding: 10px 30px;
    color: #fff;
    border: none;
    border-radius: 10px;
    min-width: 250px;
    height: 55px;
    font-size: 1.2em;
}
#Submit:hover {
    box-shadow: 1px 1px 4px 1px #000;
    transform: scale(1.01);
}
/* Submit Section End */

/* Footer Section Start */
.footer {
    background-color: var(--background-pink);
}
.footerSecCont {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px 15px;
    flex-direction: column;
}
.footCont {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.footLogo {
    text-align: center;
}
span.socialIcon {
    height: 30px;
    width: 32px;
    display: inline-block;
    background: url(Social-Icons.png) no-repeat;
    background-size: auto 100%;
}
.ftIcon {
    display: inline-block;
    margin-right: 4px;
}
span.in.socialIcon {
    background-position-x: -38px;
}
span.tw.socialIcon {
    background-position-x: -82px;
}
span.yt.socialIcon {
    background-position-x: -127px;
}
span.li.socialIcon {
    background-position-x: -172px;
}

/* Footer Section End */
