@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    color: #fff;
    margin: 0;
    background: #2d2d2d;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
}
input[type='text'],
input[type='number'],
select,
textarea,
button {
    font-family: 'Noto Sans', sans-serif;
}
a {
    color: inherit;
    text-decoration: underline;
    word-wrap: break-word;
}
select::-ms-expand {
    display: none;
}

.assetTextArea {
    font-size: 13px;
    height: 180px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;
}
.containerWide {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;
}
.pb::before {
    content: '';
    display: block;
    padding-top: 1px;
    margin-bottom: 30px;
}
.pa::after {
    content: '';
    display: block;
    padding-bottom: 1px;
    margin-top: 30px;
}
.alignL {
    text-align: left;
}
.alignC {
    text-align: center;
}
.alignR {
    text-align: right;
}
.clear {
    display: block;
    clear: both;
}
.title_XL {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
}
.title_L {
    font-size: 41px;
    font-weight: 700;
    margin: 15px 0 0 0;
    line-height: 1.1;
}
.title_M {
    font-size: 27px;
    font-weight: 600;
    margin: 10px 0 0 0;
    line-height: 1.1;
}
.title_S {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.1;
}
.largeText {
    font-size: 1.3em;
    font-weight: 700;
}
.smallText {
    font-size: 0.9em;
}
.gearRed {
    color: #f04b22;
}
.blackBlock {
    background: #000;
    color: #fff;
}
.whiteBlock {
    background: #fff;
    color: #212121;
}
.yellowBlock {
    background: #ffc20e;
    color: #212121;
}
.greyBlock {
    background: #212121;
    color: #fff;
}
.lightGreyBlock {
    background: #2d2d2d;
    color: #fff;
}
.lighterGreyBlock {
    background: #aaa;
    color: #212121;
}
.yellow {
    color: #ffc20e;
}
@media screen and (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    .containerWide {
        padding: 0 20px;
    }
    .pb::before {
        margin-bottom: 20px;
    }
    .pa::after {
        margin-top: 20px;
    }
    .title_XL {
        font-size: 28px;
    }
    .title_L {
        font-size: 28px;
    }
    .title_M {
        font-size: 24px;
    }
    .title_S {
        font-size: 21px;
    }
    .largeText {
        font-size: 1.1em;
    }
}
header {
    position: relative;
    padding: 20px 30px;
    background: #2d2d2d;
}
header a.logo {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: url('../img/logo.svg') left no-repeat;
    background-size: contain;
}
@media screen and (max-width: 600px) {
    header {
        position: relative;
        padding: 15px 30px;
    }
    header a.logo {
        height: 40px;
    }
}

a.navButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 35px 40px;
    z-index: 12;
}
a.navButton b {
    position: relative;
    display: block;
    width: 40px;
    height: 23px;
}
a.navButton b i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s;
    background: #ffc20e;
}
a.navButton b i:nth-child(1) {
    top: 0;
}
a.navButton b i:nth-child(2) {
    top: 10px;
}
a.navButton b i:nth-child(3) {
    top: 10px;
}
a.navButton b i:nth-child(4) {
    bottom: 0;
}
a.navButton:hover b i {
    background: #fff;
}
a.navButton.open {
    position: fixed;
}
a.navButton.open span {
    background: black;
    outline: none;
}
a.navButton.open b i {
    background: #212121;
}
a.navButton.open b i:nth-child(1) {
    top: 50%;
    width: 0;
    left: 50%;
}
a.navButton.open b i:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
a.navButton.open b i:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
a.navButton.open b i:nth-child(4) {
    bottom: 50%;
    width: 0;
    left: 50%;
}
.nav {
    position: fixed;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s;
}
.nav > div {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
}
.nav > div > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    padding-top: 90px;
    background: #ffc20e;
    box-sizing: border-box;
}
.nav > div > div .navContainer {
    position: absolute;
    top: 0;
    bottom: 55px;
    left: 0;
    width: 100%;
    overflow: auto;
    padding-top: 90px;
}
.nav > div > div .navContainer ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav > div > div .navContainer ul li {
    position: relative;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.nav > div > div .navContainer ul li a {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 20px;
    color: #212121;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
}
.nav > div > div .navContainer ul li a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    box-sizing: border-box;
    border-style: solid;
    border-color: #212121;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    opacity: 0.5;
    transition: all 0.3s;
}
.nav > div > div .navContainer ul li a:hover {
    padding-left: 25px;
}
.nav > div > div .navContainer ul li a:hover::after {
    opacity: 1;
}
.nav > div > div .socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0 20px 0;
    text-align: center;
}
.nav > div > div .socials a {
    display: inline-block;
    position: relative;
    font-size: 22px;
    color: #fff;
    padding: 15px 0;
    line-height: 0;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    background: #222;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.2s;
}
.nav > div > div .socials a:hover {
    transform: scale(1.1);
    background: #111;
}
.nav > div > div .socials a.fa-facebook:before {
    position: absolute;
    bottom: 9px;
    right: 5px;
    font-size: 26px;
}
.nav.open > div {
    width: 300px;
}
.nav.open {
    pointer-events: all;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 600px) {
    a.navButton {
        padding: 25px 20px;
    }
    .nav > div > div .navContainer {
        padding-top: 70px;
    }
}
@media screen and (max-height: 500px) {
    .nav > div > div .navContainer ul li a {
        padding: 10px 20px;
    }
}
@media screen and (max-height: 420px) {
    .nav > div > div .navContainer ul li a {
        padding: 8px 20px;
        font-size: 18px;
    }
}
.banner-ca {
    position: relative;
    padding-bottom: 36.55%;
    background: #000;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.banner-ca > span {
    position: absolute;
    top: 45%;
}
@media screen and (max-width: 700px) {
    .bannerx {
        font-size: 1em;
    }
}
.banner {
    position: relative;
    padding-bottom: 36.55%;
    background: url(../img/fall-promo-banner-en.jpg) left no-repeat #000;
    background-size: cover;
}
.banner-fr {
    position: relative;
    padding-bottom: 36.55%;
    background: url(../img/fall-promo-banner-fr.jpg) left no-repeat #000;
    background-size: cover;
}
.formContainer {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
    color: #212121;
}
.formContainer input[type='text'],
.formContainer input[type='number'],
.formContainer select,
.formContainer textarea {
    border: 1px solid #a7a7a7;
}
.formContainer label {
    font-size: 18px;
}
.formContainer .checkboxContainer label {
    text-align: left;
    padding-right: 25px;
}
.formContainer .checkboxContainer > i {
    border: 1px solid #a7a7a7;
}
.formContainer .checkboxContainer.checked > i {
    color: #fff;
    background: #333;
    border-color: #333;
}
.formContainer .checkboxContainer .label a {
    color: inherit;
    font-weight: 700;
}
.formContainer .searchListContainer .display > div {
    border: 1px solid #a7a7a7;
}
.formContainer .searchListContainer .cover {
    background: rgba(255, 255, 255, 0.5);
}
.formContainer .searchListContainer.active .opener {
    border: 1px solid #a7a7a7;
    box-sizing: border-box;
}
.formContainer .searchListContainer .searchResult ul li i {
    position: absolute;
    right: 10px;
    top: 50%;
    line-height: 0;
}
.formContainer .searchListContainer.active .opener .searchResult.waiting:after {
    border: 5px solid rgba(0, 0, 0, 0.25);
    border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.formContainer .field.field_addressLine1 {
    margin: 10px 0;
}
.formContainer .field.field_addressLine2 {
    margin: 10px 0;
}
.formContainer .field.field_city {
    margin: 10px 0;
}
.formContainer .field.field_state {
    margin: 10px 0;
}
.formContainer .field.field_province {
    margin: 10px 0;
}
.formContainer .field.field_zip {
    margin: 10px 0;
}
.formContainer .field.field_terms {
    text-align: left;
}

.formContainer .field.field_receiptImage_F {
    float: left;
    width: 50%;
    margin-top: 0;
}
.formContainer .field.field_receiptImage_F label {
    padding: 0;
}
.formContainer .field.field_receiptImage_F .validationChecks {
    display: none;
}
.formContainer .field.field_receiptImage_F .uploaderContainer .uploaderInner {
    padding: 0;
}
.formContainer .field.field_receiptImage_F .uploaderContainer .uploaderInner .thumb {
    position: relative;
    margin: 0 auto;
    border: 1px solid #ccc;
}
.formContainer .field.field_receiptImage_F .uploaderContainer .uploaderInner > a {
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    margin-top: 10px;
}

.formContainer .field.field_receiptImage_B {
    float: left;
    width: 50%;
    margin-top: 0;
}
.formContainer .field.field_receiptImage_B label {
    padding: 0;
}
.formContainer .field.field_receiptImage_B .validationChecks {
    display: none;
}
.formContainer .field.field_receiptImage_B .uploaderContainer .uploaderInner {
    padding: 0;
}
.formContainer .field.field_receiptImage_B .uploaderContainer .uploaderInner .thumb {
    position: relative;
    margin: 0 auto;
    border: 1px solid #ccc;
}
.formContainer .field.field_receiptImage_B .uploaderContainer .uploaderInner > a {
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    margin-top: 10px;
}

.formContainer .field.field_buyingDecision select {
    font-size: 15px;
}
.formContainer .field.field_reason select {
    font-size: 15px;
}

.field_amount .inputContainer:before {
    content: '$';
    position: absolute;
    left: 0;
    bottom: -5px;
    padding: 11px;
    z-index: 1;
    pointer-events: none;
}
.field_amount .inputContainer input {
    padding-left: 28px;
}

.buttonContainer {
    position: relative;
    margin: 20px 0;
}
.buttonContainer a,
.buttonContainer button,
.purchasedProducts .button a {
    display: inline-block;
    position: relative;
    font-size: 18px;
    padding: 10px 20px;
    min-width: 160px;
    text-align: center;
    border: none;
    outline: none;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}
.buttonContainer .yellow {
    color: #333;
    background: #ffc20e;
}
.buttonContainer .yellow:hover {
    background: #d59900;
}
.buttonContainer .grey {
    color: #ffc20e;
    background: #212121;
}
.buttonContainer .grey:hover {
    background: #505050;
}
.formContainer.waiting .buttonContainer button:after {
    border: 4px solid rgba(0, 0, 0, 0.5);
    border-top: 4px solid #000;
}

.products {
    position: relative;
    margin: 20px auto;
    max-width: 550px;
}
.products .product {
    position: relative;
    display: flex;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    text-align: left;
}
.products .product.outOfStock {
    opacity: 0.5;
    pointer-events: none;
}
.products .product .detail {
    width: calc(100% - 140px);
    padding: 0 10px 0 35px;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
}
.products .product .detail > i.check {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #a7a7a7;
    border-radius: 2px;
    flex-grow: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 0;
    padding: 12px 0;
    width: 25px;
    text-align: center;
    color: transparent;
    background: #fff;
    box-sizing: border-box;
}
.products .product .detail > i.check.checked {
    color: #fff;
    background: #333;
    border-color: #333;
}
.products .product .detail .title {
    font-weight: 700;
    font-size: 15px;
}
.products .product .detail .select {
    display: none;
    font-weight: 700;
    margin-top: 10px;
}
.products .product.active .detail .select {
    display: block;
}
.products .product .detail .select > div {
    margin-top: 5px;
    position: relative;
}
.products .product .detail .select > div > i {
    position: absolute;
    top: 50%;
    right: 10px;
    line-height: 0;
    pointer-events: none;
}
.products .product a.img {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    flex-grow: 0;
    align-items: center;
    border: 1px solid #ccc;
    background: #fff;
    overflow: hidden;
    padding: 5px;
    justify-content: center;
}
.products .product a.img img {
    max-width: 100%;
    max-height: 100%;
}
.products .product a.img:hover {
    border-color: #000;
    transform: scale(1.05);
    transition: all 0.3s;
}

.productList {
    position: relative;
    margin: 20px auto;
    max-width: 550px;
}
.productList > div {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #ccc;
    padding: 6px 0;
    text-align: left;
}
.productList > div:last-child {
    border-bottom: 1px solid #ccc;
}
.productList > div > div {
    position: relative;
    width: calc(100% - 130px);
    font-size: 14px;
}
.productList > div > div > .title {
    font-weight: 700;
    font-size: 15px;
}
.productList > div a.img {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    flex-grow: 0;
    align-items: center;
    border: 1px solid #ccc;
    background: #fff;
    overflow: hidden;
    padding: 5px;
    justify-content: center;
}
.productList > div a.img img {
    max-width: 100%;
    max-height: 100%;
}
.productList > div a.img:hover {
    border-color: #000;
    transform: scale(1.05);
    transition: all 0.3s;
}

.carousel {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-align: left;
    color: rgba(0, 0, 0, 0.9);
    font-size: 32px;
    font-weight: 700;
}
.carousel > div {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.carousel > div > div {
    position: relative;
    padding-bottom: 37.6%;
}
.carousel .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000%;
    height: 100%;
    cursor: pointer;
}
.carousel .slider > div {
    position: relative;
    box-sizing: border-box;
    float: left;
    width: 10%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.carousel .slider > div.slide_1 {
    background-image: url('../img/carousel/slide_1.jpg');
}
.carousel .slider > div.slide_1:after {
    content: '';
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 100%;
    left: calc(100% + 2px);
    width: 100%;
    height: 100%;
    background: url('../img/carousel/slide_r.jpg') center no-repeat;
    background-size: cover;
}
.carousel .slider > div.slide_2 {
    background-image: url('../img/carousel/slide_2.jpg');
}
.carousel .slider > div.slide_3 {
    background-image: url('../img/carousel/slide_3.jpg');
}
.carousel .slider > div.slide_4 {
    background-image: url('../img/carousel/slide_4.jpg');
}
.carousel .slider > div.slide_4:before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 100%;
    right: calc(100% + 2px);
    width: 100%;
    height: 100%;
    background: url('../img/carousel/slide_l.jpg') center no-repeat;
    background-size: cover;
}
.carousel .slider > div .level {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 100%;
    width: 37.6%;
    text-align: center;
    transform: rotate(-90deg);
    transform-origin: top left;
    line-height: 2.5;
}
.carousel .slider > div .level img {
    width: 15%;
    opacity: 0.9;
    margin-right: 10px;
}
.carousel .slider > div .spend {
    position: absolute;
    left: 0;
    top: 5%;
    width: 100%;
    padding-left: 10%;
    box-sizing: border-box;
    line-height: 1.2;
}
.carousel .slider > div .spend span {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
}
.carousel .slider > div.active {
    opacity: 1;
}
.carousel .slider > div > a.arrow {
    position: absolute;
    z-index: 1;
    right: -20px;
    top: 37%;
    width: 40px;
    height: 40px;
    background: url('../img/arrow.svg') center no-repeat;
    background-size: contain;
}
.carousel .slider > div > b {
    position: relative;
    display: block;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    padding-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.carousel .slider > div > b br {
    display: none;
}
.carousel .buttons {
    margin: 10px auto 0 auto;
}
.carousel .buttons ul {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
}
.carousel .buttons ul li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    font-size: 10px;
    line-height: 1;
}
.carousel .buttons ul li a {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    border-radius: 50%;
}
.carousel .buttons ul li a.active {
    background: #333;
}
.carousel .buttons ul li a:hover {
    background: #333;
}
@media screen and (max-width: 800px) {
    .carousel {
        font-size: 4.5vw;
    }
}

.camera {
    background: url('../img/wood.jpg') center;
    background-size: cover;
}
.camera > div {
    height: 350px;
    background: url('../img/phone.jpg') center no-repeat;
    background-size: contain;
}

.flags {
    position: relative;
    display: flex;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}
.flags > a {
    display: block;
    width: 33.33%;
    padding: 0 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #444;
    transition: all 0.5s;
}
.flags > a > i {
    display: block;
    padding-bottom: 58.33%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.flags > a > i.usa {
    background-image: url('../img/usa.svg');
}
.flags > a > i.ca {
    background-image: url('../img/ca.svg');
}
.flags > a:hover {
    color: #000;
}
.flags > a:hover > i {
    transform: scale(1.05);
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.3);
}

.faqs {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}
.faqs .faq {
    margin: 10px 0;
}
.faqs .faq > a {
    display: block;
    position: relative;
    background: #ffc20e;
    border-radius: 3px;
    padding: 30px 20px;
    color: #212121;
    text-decoration: none;
    font-weight: 700;
}
.faqs .faq > div {
    position: relative;
    height: 0;
    overflow: hidden;
}
.faqs .faq > div > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    background: #f4f6f8;
    border-radius: 4px;
}
.faqs .faq > div > div:before {
    content: '';
    display: block;
    padding-top: 1px;
    margin-bottom: 20px;
}
.faqs .faq > div > div:after {
    content: '';
    display: block;
    padding-bottom: 1px;
    margin-top: 30px;
}
.faqs .faq.open > div {
    height: auto;
}
.faqs .faq.open > div > div {
    position: relative;
}

.assets {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.assets > div {
    margin: 20px 0;
}
.assets a {
    display: block;
    text-decoration: none;
}
.assets a img {
    display: block;
    max-width: 100% !important;
    display: block;
    width: auto;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    border: none;
}
.assets a span {
    display: block;
    margin: 5px 0;
}
.assets a span span {
    display: inline-block;
    padding: 5px 20px;
    background: #ffc20e;
    font-weight: 700;
    color: #212121;
    margin-right: 10px;
    text-align: center;
}
.assets a span span:hover {
    background: #d59900;
}

.assets > div .floats {
    display: block;
    position: relative;
    margin: 0 -10px;
}
.assets > div .float {
    padding: 10px;
    box-sizing: border-box;
    float: left;
}
.assets > div .float a span span:nth-child(2) {
    display: block;
}
.assets > div .floats1 .float:nth-child(1) {
    width: 46.8%;
}
.assets > div .floats1 .float:nth-child(2) {
    width: 27.4%;
}
.assets > div .floats1 .float:nth-child(3) {
    width: 14.6%;
}
.assets > div .floats1 .float:nth-child(4) {
    width: 10.9%;
}
.assets > div .floats2 .float:nth-child(1) {
    width: 37.9%;
}
.assets > div .floats2 .float:nth-child(2) {
    width: 33.8%;
}
.assets > div .floats2 .float:nth-child(3) {
    width: 28.2%;
}

.assets .flyers {
    display: block;
    position: relative;
    margin: 0 -10px;
}
.assets .flyers > div {
    float: left;
    width: 33.3%;
    padding: 0 10px;
    box-sizing: border-box;
}

.clear {
    clear: both;
}
@media screen and (max-width: 1000px) {
    .assets > div .floats1 .float:nth-child(1) {
        width: 37.6%;
    }
    .assets > div .floats1 .float:nth-child(2) {
        width: 32.2%;
    }
    .assets > div .floats1 .float:nth-child(3) {
        width: 17.2%;
    }
    .assets > div .floats1 .float:nth-child(4) {
        width: 12.9%;
    }
}
@media screen and (max-width: 750px) {
    .assets > div .floats {
        margin: 0;
    }
    .assets > div .float {
        padding: 0;
        margin: 20px 0;
        float: none;
        width: 100% !important;
    }
    .assets a span span br {
        display: none;
    }
}
@media screen and (max-width: 550px) {
    .assets .flyers {
        margin: 20px 0;
    }
    .assets .flyers > div {
        float: none;
        width: auto;
        padding: 0;
    }
}

footer {
    position: relative;
    padding: 0 100px;
    background: #2d2d2d;
}
footer .smallTerms {
    margin: 20px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.1;
}
footer .strap {
    margin: 20px 0;
}
footer .strap b {
    font-family: 'Noto Sans', sans-serif;
}
footer .links {
    margin: 20px 0;
}
footer .links a {
    display: inline-block;
    text-decoration: none;
    padding: 0 10px;
    color: #a7a7a7;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
footer .links a:first-child {
    padding-left: 0;
    border: none;
}
footer .socials {
    margin: 20px 0;
}
footer .socials a {
    position: relative;
    display: inline-block;
    background: #ccc;
    background: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    padding: 15px 0;
    width: 30px;
    border-radius: 3px;
    line-height: 0;
    margin-right: 10px;
    color: #2d2d2d;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}
footer .socials a:hover {
    background: #fff;
    transform: scale(1.1);
}
footer .socials a.fa-facebook:before {
    position: absolute;
    bottom: 9px;
    right: 5px;
    font-size: 26px;
}
footer .copyright {
    margin-top: 60px;
    font-size: 12px;
    color: #a7a7a7;
    font-family: 'Noto Sans', sans-serif;
}
@media screen and (max-width: 750px) {
    footer {
        padding: 0 40px;
    }
    footer .smallTerms {
        max-width: 1000px;
    }
    footer .links {
        margin: 20px 0;
    }
    footer .links a {
        display: block;
        border-left: none;
        padding: 0;
    }
}
@media screen and (max-width: 500px) {
    footer {
        padding: 0 20px;
    }
    footer .buttonContainer a {
        width: 100%;
        box-sizing: border-box;
    }
    footer .socials {
        display: flex;
        justify-content: space-between;
    }
}

#modal .inner #content {
    border-radius: 4px;
    color: #212121;
}
#modal .inner .closeButton {
    background: #ffc20e;
}
#modal .inner .closeButton:before {
    background: #212121;
}
#modal .inner .closeButton:after {
    background: #212121;
}
#modal .inner img {
    max-width: 100%;
}

.tableWrapper {
    overflow: auto;
    text-align: center;
}
.tableContainer {
    overflow: auto;
    text-align: center;
}
table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 20px 0;
}
table td,
table th {
    padding: 5px 10px;
    border: 1px solid #ccc;
}
table th {
    font-weight: 700;
}

.toolsImage {
    background: url('../img/tools.jpg') center no-repeat;
    background-size: auto 85%;
    margin-bottom: -40px;
    padding-top: 300px;
    margin: 20px auto;
}
.toolsImage h1 {
    margin: 0;
}
@media screen and (max-width: 500px) {
    .toolsImage {
        padding-top: 200px;
    }
}

.fullHeight {
    display: flex;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
}
.fullHeight > div {
    display: block;
    position: relative;
    width: 100%;
}

.receiptUploadText {
    font-size: 15px;
}
.receiptUploadText p {
    margin: 6px 0;
}
.receiptUploadText ol {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    counter-reset: my-awesome-counter;
}
.receiptUploadText ol li {
    margin: 0;
    padding: 0;
    counter-increment: my-awesome-counter;
    font-weight: 700;
}
.receiptUploadText ol li::before {
    content: counter(my-awesome-counter) ' : ';
}

.cookie {
    display: none;
}
.cookie.active {
    position: fixed;
    z-index: 10;
    display: block;
    overflow: hidden;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
}
.cookie.active .cookieInner {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    max-width: 500px;
    padding: 0 30px;
    background: #0076bf;
    pointer-events: all;
    font-size: 16px;
    border-top-left-radius: 4px;
    box-sizing: border-box;
}
.cookie.active .cookieInner:before {
    content: '';
    padding-top: 1px;
    margin-bottom: 30px;
    display: block;
}
.cookie.active .cookieInner:after {
    content: '';
    padding-bottom: 1px;
    margin-top: 30px;
    display: block;
}
.cookie.active .buttonContainer {
    margin: 20px 0;
}
.cookie.active .buttonContainer a {
    display: inline-block;
    position: relative;
    font-weight: 700;
    fxxont-size: 24px;
    color: #fff;
    background: #e61b77;
    border-radius: 4px;
    padding: 10px 30px;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

@media screen and (max-width: 450px) {
    .cookie.active .cookieInner {
        padding: 0 20px;
        border-radius: 0;
    }
    .cookie.active .cookieInner:before {
        margin-bottom: 20px;
    }
    .cookie.active .cookieInner:after {
        margin-top: 20px;
    }
}

.videoModal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 100;
}
.videoModal .inner {
    position: absolute;
    width: auto;
    background: #000;
    border: 2px solid #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.videoModal .inner iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: none;
}
.videoModal .inner video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: none;
}
.videoModal .inner a.closeButton {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 4;
    background: none;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.2s;
}
.videoModal .inner a.closeButton:hover {
    transform: scale(1.15);
}
.videoModal .inner a.closeButton:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: 24px;
    margin-top: -2px;
    margin-left: -12px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}
.videoModal .inner a.closeButton:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: 24px;
    margin-top: -2px;
    margin-left: -12px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}

.tierNumber {
    width: 100px;
}

.purchasedProducts {
}
.purchasedProducts .button {
    margin: 7px 0;
}
.purchasedProducts .productList {
    margin: 7px 0;
    text-align: left;
}
.purchasedProducts .productList:has(div) {
    border: 1px solid #a7a7a7;
}

.purchasedProducts .productList > div {
    position: relative;
    font-size: 14px;
    padding: 10px 40px 10px 10px;
    border-top: 1px solid #ddd;
    display: block;
}
.purchasedProducts .productList > div:first-child {
    border: none;
}
.purchasedProducts .productList > div:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}
.purchasedProducts .productList > div a.remove {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.purchasedProducts .productList > div a.remove:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 18px;
    margin-top: -1px;
    margin-left: -9px;
    transform: rotate(45deg);
    background: red;
}
.purchasedProducts .productList > div a.remove:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 18px;
    margin-top: -1px;
    margin-left: -9px;
    transform: rotate(-45deg);
    background: red;
}
.purchasedProducts .productList > div > div {
    margin: 0px 0;
}
.purchasedProducts .productList > div .sku {
    font-weight: 700;
    font-size: 15px;
}

.choosePurchasedProducts {
}
.choosePurchasedProducts .search {
    position: relative;
    margin: 10px 0;
}
.choosePurchasedProducts .search input {
    padding: 10px;
    border: 1px solid #a7a7a7;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.choosePurchasedProducts .search button {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    outline: none;
    padding: 10px;
}
.choosePurchasedProducts .searchResults {
    position: relative;
    height: 50vh;
    border: 1px solid #a7a7a7;
    overflow: auto;
}
.choosePurchasedProducts .searchResults .empty {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    text-align: center;
}
.choosePurchasedProducts .searchResults .empty div {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
}
.choosePurchasedProducts .searchResults.waiting:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    border: 4px solid #0f3a6e;
    border-top-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: spin 2s linear infinite;
}
.choosePurchasedProducts .searchResults a {
    position: relative;
    display: block;
    padding: 10px 40px 10px 10px;
    text-align: left;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    border-top: 1px solid #ddd;
}
.choosePurchasedProducts .searchResults a:first-child {
    border-top: none;
}
.choosePurchasedProducts .searchResults a:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
.choosePurchasedProducts .searchResults a .sku {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0;
    display: block;
}
.choosePurchasedProducts .searchResults a .title {
    margin: 0px 0;
    display: block;
}
.choosePurchasedProducts .searchResults a .add {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffc20e;
}
.choosePurchasedProducts .searchResults a .add:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 12px;
    margin-top: -1px;
    margin-left: -6px;
    transform: rotate(90deg);
    background: #333;
}
.choosePurchasedProducts .searchResults a .add:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 12px;
    margin-top: -1px;
    margin-left: -6px;
    transform: rotate(0deg);
    background: #333;
}
@media screen and (max-height: 800px) {
    .choosePurchasedProducts .searchResults {
        height: 35vh;
    }
}

.qualifyTable .products {
    margin: 0px auto;
}
.qualifyTable .products .product {
    border-top: 0px;
}
.qualifyTable .products .product a.img {
    border: 0px;
}
.qualifyTable .products .product .detail {
    margin: 0 auto;
    width: auto;
    padding: 0;
}
.qualifyTable .products .productName {
    text-align: center;
    font-weight: 900;
}

.qualifyTable .tierNumber {
    margin: 10px auto;
}
.osx {
    overflow-x: scroll;
    margin: 0 auto;
    width: 75%;
}

.formContainer label {
    padding-right: 0;
}

.formContainer .field.field_productOption .validationChecks {
    display: none;
}

.formContainer .radioContainerProducts {
    display: flex;
    justify-content: center;
}
.formContainer .radioContainerProducts .radioWrapper {
    display: flex;
    flex-direction: column;
    width: 33%;
    margin: 10px;
}
.formContainer .radioContainerProducts .radioWrapper:first-of-type {
    margin-left: 0;
}
.formContainer .radioContainerProducts .radioWrapper:last-child {
    margin-left: 50px;
    margin-right: 0;
}
.formContainer .radioContainerProducts .radio {
    background: white;
    height: 95px;
    padding: 0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: all 0.3s;
}
.formContainer .radioContainerProducts .radio:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.3);
}
/*.formContainer .radioContainerProducts .radio > a {display: none;}*/
.formContainer .radioContainer .radio > i {
    top: inherit;
    left: inherit;
    border-radius: 0%;
    width: 100%;
}
.formContainer .radioContainerProducts .radio > i {
    display: block;
    padding-bottom: 58.33%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.formContainer .radioContainerProducts .radio > i.V {
    background-image: url('../img/products-selection.jpg');
    background-size: contain;
}
.formContainer .radioContainerProducts .radio > i.C {
    background-image: url('../img/CAL-Rebate-Icon.png');
    background-size: contain;
}
.formContainer .radioContainerProducts .radio > i.O {
    background-image: url('../img/Anything-Else.png');
}
/*.formContainer .radioContainerProducts .radio i {display: block; padding-bottom: 100%; margin: 10px auto; width: 100px; display: none;}*/
.formContainer .radioContainerProducts .radioWrapper label {
    font-size: 15px;
    margin-top: 10px;
}

@media screen and (max-width: 500px) {
    .formContainer .radioContainerProducts {
        flex-direction: column;
    }
    .formContainer .radioContainerProducts .radioWrapper {
        margin: 0 auto;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 35%;
        max-width: 150px;
    }
    .formContainer .radioContainerProducts .radio > i {
        margin-bottom: 0px;
    }
}

.formContainer .multiUploaderContainer .thumbs {
    border: 1px solid #ccc;
}
.formContainer .multiUploaderContainer a.uploadLink {
    color: #333;
    background: #ffc20e;
    font-weight: 700;
}
.formContainer .multiUploaderContainer a.uploadLink:hover {
    background: #d59900;
}

.deliveryInfoDisplay > p {
    margin: 6px 0;
}
.deliveryInfoDisplay > p:last-of-type {
    margin-bottom: 15px;
}

.FFF2CC {
    background-color: #fff2cc;
}
.DEEAF6 {
    background-color: #deeaf6;
}
.FBE4D5 {
    background-color: #fbe4d5;
}

.fa-x-twitter:before {
    content: '𝕏';
}

.yellowUnderline {
    /*    border-bottom: 15px solid #FFC20E;*/
    padding-bottom: 20px;
    text-decoration: underline solid 15px #ffc20e;
    text-underline-offset: 20px;
    font-style: italic;
}

.doMoreLogo {
    height: 150px;
    background: url('../img/doMoreLogo.svg') left no-repeat;
    background-size: contain;
}

.banner-pick {
    background: url(/img/banner.jpg) no-repeat center, black;
    background-size: cover;
    position: relative;
    height: 44vw;
    max-height: 550px;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow-x: clip;
}
.banner-pick .container {
    width: 65%;
    margin: 0;
    max-width: 800px;
    min-width: 630px;
}
.banner-pick .wrapper {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.banner-pick .banner-products {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 400px;
    top: -10%;
    right: -20%;
}
.banner-pick .banner-products i {
    display: block;
    padding-bottom: 120%;
    background: url(/img/banner-products.png) no-repeat center;
    background-size: contain;
}

.banner-pick .wrapper p.largeText {
    margin: 0;
    font-size: clamp(30px, 3vw, 45px);
}

.banner-pick .wrapper p.mediumText {
    font-size: clamp(20px, 2.5vw, 35px);
}

@media screen and (max-width: 650px) {
    .banner-pick .container {
        max-width: unset;
        min-width: unset;
        width: 100%;
    }
    .banner-pick .banner-products {
        display: none;
    }
    .banner-pick .wrapper {
        max-width: unset;
    }
}
.yellow-block {
    background: #ffc20e;
    color: black;
    font-size: 1.4em;
    line-height: 1;
}
.yellow-block .container {
    display: flex;
}
.yellow-block .container img {
    width: 200px;
    object-fit: contain;
    margin-right: 20px;
}
span.or {
    font-weight: 700;
    background: #ffc20e;
    padding: 0 5px 3px 6px;
    border-radius: 50%;
    display: inline-block;
    margin-left: -4px;
}

.banner-pick .yellowUnderline {
    border-bottom: none;
    padding-bottom: 0;
    text-decoration: underline solid 3px #ffc20e;
    text-underline-offset: 4px;
    font-style: normal;
}

@media screen and (max-width: 600px) {
    .yellow-block .container {
        flex-direction: column-reverse;
    }
    .yellow-block .container img {
        margin: 0 auto;
    }
}
@media screen and (max-width: 550px) {
    .banner-pick {
        background-size: cover;
        height: 200px;
        background-position: left;
    }
}

.choosePurchasedProducts .pickYourPromoType-networks,
.purchasedProducts .productList .product:has(span.pickYourPromoType-networks) {
    background-color: #0d3b6e !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-networks:nth-child(odd),
.purchasedProducts .productList .product:has(span.pickYourPromoType-networks):nth-child(odd) {
    background-color: #0f427c !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-imaging,
.purchasedProducts .productList .product:has(span.pickYourPromoType-imaging) {
    background-color: #ffc20d !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-imaging:nth-child(odd),
.purchasedProducts .productList .product:has(span.pickYourPromoType-imaging):nth-child(odd) {
    background-color: rgb(241, 189, 30) !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-electrical,
.purchasedProducts .productList .product:has(span.pickYourPromoType-electrical) {
    background-color: #68bd49 !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-electrical:nth-child(odd),
.purchasedProducts .productList .product:has(span.pickYourPromoType-electrical):nth-child(odd) {
    background-color: #72c254 !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-solar,
.purchasedProducts .productList .product:has(span.pickYourPromoType-solar) {
    background-color: #60b8cb !important;
    color: white !important;
}
.choosePurchasedProducts .pickYourPromoType-solar:nth-child(odd),
.purchasedProducts .productList .product:has(span.pickYourPromoType-solar):nth-child(odd) {
    background-color: #67b3c4 !important;
    color: white !important;
}

ul.bonusProducts {
    text-align: left;
}
ul.bonusProducts li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
}
span.plusYellow {
    position: absolute;
    left: -30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffc20e;
}
span.plusYellow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 12px;
    margin-top: -1px;
    margin-left: -6px;
    transform: rotate(90deg);
    background: #333;
}
span.plusYellow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 12px;
    margin-top: -1px;
    margin-left: -6px;
    transform: rotate(0deg);
    background: #333;
}

.field_android-cam,
.field_ios-cam,
input#cameras-max,
.field_cameras-max,
input#cameras-max-temp {
    display: none;
    pointer-events: none;
    visibility: hidden;
}

input#android {
    margin-bottom: 20px;
}

/* Striping colours aligned to #2d2d2d / #ffc20e on white */
.gift-row.stripe-0 td.gift-cell {
    background-color: #f5f5f5;
} /* light gray */
.gift-row.stripe-1 td.gift-cell {
    background-color: #fff7d1;
} /* pale yellow */
.gift-row.stripe-2 td.gift-cell {
    background-color: #e9e9e9;
} /* mid gray */
.gift-row.stripe-3 td.gift-cell {
    background-color: #ffefb3;
} /* deeper pale yellow */

/* Keep tier columns neutral */
td.tiercol {
    background: #ffffff;
}

/* OR rows stay clean */
.or-row td {
    text-align: center;
    font-weight: 600;
    color: #2d2d2d;
    background: #ffffff;
}

/* Optional: hover only on gift cells */
.gift-row td.gift-cell:hover {
    filter: brightness(0.98);
}

/* Spacer between tiers */
.tier-sep td {
    padding: 12px 0;
    border: none !important; /* hides all cell borders */
    background: transparent;
}

.margin-small {
    margin: 5px auto;
}
