body {
    margin: 0;
    position: relative;
}

body * {
    font-family: 'Fira Sans', sans-serif;
    box-sizing: border-box;
}

header {
    background: var(--color__grey--01);
    position: absolute;
    height: var(--mainNavHeight--01);
    right: 0;
    left: 0;
    top: 0;
    padding-inline: var(--siteSpacing--01);
    z-index: 40;
}

.header__mainLogo {
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    margin-left: -0.3rem;
}

.header__mainLogo object {
    max-width: 2.5em; 
    pointer-events: none;
}

.header__content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.header__navItems {
    display: flex;
    align-items: center;
}

.header__mainNavItem {
    height: 100%;
}

.header__mainNavItem.cart {
    position: relative;
}

.header__mainNavItem.cart .count {
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem;
    background-color: var(--color__blue--01);
    color: white;
    position: absolute;
    right: 0.25rem;
    top: 0.5em;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header__mainNavItemButton {
    color: var(--text__strong--01);
    font-size: 1.25rem;
    height: 100%;
    padding-inline: 2rem;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.header__mainNavItemButton object {
    pointer-events: none;
    width: 1.5rem;
    height: 1.5rem;
}

.header__mainNavItemButton.show {
    font-weight: bold;
}

.header__mainNavDropdown {
    overflow: hidden;
    padding-bottom: 1em;
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: var(--mainNavHeight--01);
}

.header__mainNavDropdownInner {
    background-color: white;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.header__mainNavDropdown.show {
    display:block; /* Show the dropdown menu */
}




/* Search Form that is in the Dropdown */
.searchForm {
    padding: 2.3em var(--siteSpacing--01);
    display: flex;
    gap: 0.5em;
}

.searchForm input {
    border: none;
    font-size: 1.5rem;
    outline: none;
    width: 100%;
}

.searchForm input:focus {
    border-bottom: solid 1px #ccc;
}

.searchForm input::placeholder {
    color: var(--text__default--01);
}

.searchForm object {
    height: 1.7rem;
    width: 1.7rem;
}




/* Dropdown definition lists */
.dropdownDefLists {
    display: flex;
    padding: 2em var(--siteSpacing--01);
    gap: 6em;
}

.dropdownDefLists a,
.dropdownDefLists .dropdownDefListDesktopListItem {
    color: #333;
    padding: 0.2em 0;
    text-decoration: none;
    display: block;
}

.dropdownDefLists dl,
.dropdownDefLists dd {
    margin: 0;
}

.dropdownDefLists dl ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdownDefLists a,
.dropdownDefLists .dropdownDefListDesktopListItem,
.dropdownDefLists dt {
    font-size: 1.125rem;
}

.dropdownDefLists dt {
    color: var(--text__default--02);
    margin-bottom: 0.75rem;
}

.dropdownDefListsMain a,
.dropdownDefListsMain .dropdownDefListDesktopListItem {
    font-size: 1.25rem;
    transition: opacity 0.5s;
}

.dropdownDefListsMain a:hover,
.dropdownDefListsMain .dropdownDefListDesktopListItem:hover {
    opacity: 0.5;
}




/* Main Nav Icon Links */
.header__mainNavItem.cart button,
.header__mainNavItem.account button {
    padding-inline: 1rem;
}

.header__mainNavItem.cart button {
    padding-left: 2rem;
}

.header__mainNavItem.account {
    margin-right: -1rem;
}



/* Mobile Nav */
.header__mobileMenu {
    display: none;
    position: fixed;
    inset: var(--mainNavHeight--01) 0 0;
    background-color: white;
    overflow-y: scroll;
    transform: translateY(100%);
    z-index: 100;
}

.header__mobileMenu.show {
    display: block;
    transform: translateY(0);
}

.header__mobileMenu::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
}

.header__mobileMenu::-webkit-scrollbar-track {
    background: transparent;        /* color of the tracking area */
}

.header__mobileMenu::-webkit-scrollbar-thumb {
    background-color: #999;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
}

.header__mobileMenuContainer {
    padding: 4rem 2rem;
}

.header__mobileMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header__mobileMenu .header__mobileMenuList li,
.header__mobileMenu .header__mobileMenuList li a,
.header__mobileMenu .header__mobileMenuList li button {
    font-size: 1.25rem;
    color: var(--text__strong--02);
    text-decoration: none;
    transition: opacity 0.5s;
}

.header__mobileMenu .header__mobileMenuList li a,
.header__mobileMenu .header__mobileMenuList li button {
    padding: 0.75rem 0.3rem;
    display: block;
    cursor: pointer;
}

.header__mobileMenu .header__mainNavItemButton--mobile {
    transition: opacity 0.5s;
}

.header__mobileMenu .header__mainNavItemButton--mobile:hover {
    opacity: 0.5;
}

.header__mobileMenu .header__mobileMenuList li button {
    background-color: transparent;
    border: none;
}

.header__mobileMenu ul li:not(:last-child) {
    border-bottom: solid 1px #ddd;
}

.header__mainNavItem.menu {
    margin-right: -1rem;
}

.header__mainNavItemButton.menu {
    transition: opacity 0.5s;
    padding-inline: 1rem;
}

.header__mainNavItem.menu button {
    position: relative;
    min-width: 3.5rem;
}

.header__mainNavItem.menu button object {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header__mainNavItemButton.menu:hover {
    opacity: 0.5;
}

.header__mainNavItemButton.menu object {
    transition: opacity 0.5s;
}

.header__mainNavItemButton.menu object:nth-child(2) {
    opacity: 0;
}

.header__mainNavItemButton.menu.show object:first-child {
    opacity: 0;
}

.header__mainNavItemButton.menu.show object:nth-child(2) {
    opacity: 1;
}




@media (max-width: 42em) {
    body {
        --mainNavHeight--01: 3rem;
    }

    header .header__mainLogo object {
        max-width: 2rem;
    }

    body {
        --siteSpacing--01: 1.5rem;
    }

    .header__mainNavItem.search,
    .header__mainNavItem.stock,
    .header__mainNavItem.products,
    .header__mainNavItem.account {
        display: none;
    }

    .dropdownDefListsMain.window,
    .dropdownDefListsMain.door {
        display: none;
    }

    .mobileSubMenu {
        display: none;
    }

    .mobileSubMenu.show {
        display: block;
    }

    .dropdownDefListDesktopListItem {
        display: none !important;
    }

    .header__mainNavDropdown {
        position: fixed;
        bottom: 0;
        padding-bottom: 0;
    }

    .header__mainNavDropdown .header__mainNavDropdownInner {
        height: 100%;
        overflow-y: scroll;
    }

    .header__mainNavDropdown .header__mainNavDropdownInner::-webkit-scrollbar {
        width: 8px;               /* width of the entire scrollbar */
    }

    .header__mainNavDropdown .header__mainNavDropdownInner::-webkit-scrollbar-track {
        background: transparent;        /* color of the tracking area */
    }

    .header__mainNavDropdown .header__mainNavDropdownInner::-webkit-scrollbar-thumb {
        background-color: #999;    /* color of the scroll thumb */
        border-radius: 20px;       /* roundness of the scroll thumb */
    }

    .header__mainNavDropdown .header__goBack {
        background-color: transparent;
        border: none;
        padding: 0.5rem;
        margin-left: calc(var(--siteSpacing--01) - 0.5rem);
        margin-top: 0.7rem;
        cursor: pointer;
        transition: opacity 0.5s;
    }

    .header__mainNavDropdown .header__goBack object {
        pointer-events: none;
    }

    .header__mainNavDropdown .header__goBack:hover {
        opacity: 0.5;
    }

    .header__mainNavDropdown .header__goBack object {
        width: 1.375rem;
        height: 0.5rem;
    }

    .header__closeByClickOutside {
        display: none;
    }

    .dropdownDefListsMain li:not(:first-child) {
        border-top: solid 1px #ccc;
    }

    .header__mainNavDropdown .dropdownDefListsMain dt {
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        height: 1px;
        width: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
    }

    .header__mainNavDropdown .dropdownDefLists {
        display: block;
    }

    .dropdownDefListAccordion {
        width: 100%;
        text-align: left;
        background-color: transparent;
        border: none;
        padding: 0.75rem 0.3em;
        font-size: 1.25rem;
        transition: opacity 0.5s, background-color 0.5s, color 0.5s, padding 0.5s;
        cursor: pointer;
        position: relative;
    }

    .dropdownDefListAccordion:hover {
        opacity: 0.5;
    }

    .dropdownDefListAccordion object {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: right 0.5s;
        width: 1.5rem;
        pointer-events: none;
    }

    .mobileSubMenu a,
    .mobileSubMenu button {
        transition: opacity 0.5s;
    }

    .mobileSubMenu a:hover,
    .mobileSubMenu button:hover {
        transition: opacity 0.5s;
    }

    ul .dropdownDefListAccordion .selected {
        opacity: 0;
        rotate: 180deg;
        transform: translateY(0.8rem);
    }

    ul .dropdownDefListAccordion.show .selected {
        opacity: 1;
    }

    ul .dropdownDefListAccordion.show .unselected {
        opacity: 0;
    }

    ul .dropdownDefListAccordion.show {
        background-color: #000;
        color: white;
        padding: 0.75rem 1rem;
        opacity: 1 !important;
    }

    ul .dropdownDefListAccordion.show object {
        right: 0.6rem;
    }

    .dropdownDefLists li a {
        padding: 0.75rem 0.3em;
    }

    .dropdownDefLists .mobileSubMenu {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .dropdownDefLists .mobileSubMenu li {
        border: none;
    }

    .dropdownDefLists .mobileSubMenu li a {
        font-size: 1.125rem;
        padding: 0.75rem 0 0.75rem 1.7rem;
    }

}

@media (min-width: 42em) {
    .header__mainNavItemButton.menu {
        display: none;
    }

    .dropdownDefListsMain.stock button,
    .dropdownDefListsMain.stock .mobileSubMenu {
        display: none;
    }

    .dropdownDefListsMain.products button,
    .dropdownDefListsMain.products .mobileSubMenu {
        display: none;
    }

    /*.header__mainNavDropdown:hover,*/
    /*.header__mainNavItem.products:hover ~ .header__mainNavDropdown.products,*/
    /*.header__mainNavItem.search:hover ~ .header__mainNavDropdown.search {*/
    /*    display:block; !* Show the dropdown menu *!*/
    /*}*/

    .header__goBack {
        display: none;
    }

    .header__closeByClickOutside {
        display: none;
    }

    .header__closeByClickOutside.show {
        display: block;
        position: fixed;
        inset: 0;
        background-color: transparent;
        border: none;
        top: var(--mainNavHeight--01);
    }

}

@media (min-width: 62em) {
    body {
        --siteSpacing--01: 5rem;
    }
}
/* signout button */
.header__mobileMenu .header__mobileMenuList li a.signout{
  color: var(--color__red--01);
}
.searchResults__header {
    color: var(--text__default--01);
    padding-bottom: 0.8rem;
}



.searchResults__results ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.searchResults__results ul li {
    background-color: white;
    border: solid 1px #ccc;
    display: flex;
    flex-direction: column;
}

.searchResults__update {
    display: grid;
    grid-template-columns: 2rem 2rem 2rem 6rem;
}

.searchResults__update button {
    transition: background-color 0.5s;
    cursor: pointer;
}

.searchResults__amountInStock {
    font-size: 0.75rem;
    color: var(--color__green--01);
    margin-bottom: 0.25rem;
}

.searchResults__amountInStock.outOfStock {
    color: #eb5757;
}

.searchResults__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchResults__info {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
}

.searchResults__title {
    margin-bottom: 0.25rem;
}

.searchResults__subtitle {
    color: #888;
    padding-bottom: 1rem;
}

.searchResults__price {
    font-size: 1.125rem;
}

.searchResults__update button:hover {
    background-color: #f4f4f4;
}

.searchResults__amountInStock {
    grid-column: 1 / -1;
}

.searchResults__quantityToAdd {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchResults__addToCart {
    background-color: transparent;
    border: solid 1px #ccc;
    border-left: none;
}

.searchResults__reduceQuantity,
.searchResults__increaseQuantity {
    height: 2rem;
    width: 2rem;
    position: relative;
    background-color: transparent;
    border: solid 1px #ccc;
}

.searchResults__reduceQuantity:disabled,
.searchResults__increaseQuantity:disabled {
    cursor: default;
}

.searchResults__reduceQuantity:disabled .icon--01,
.searchResults__increaseQuantity:disabled .icon--01,
.searchResults__increaseQuantity:disabled .icon--02 {
    opacity: 0.2;
}

.searchResults__reduceQuantity .icon--01 {
    position: absolute;
    height: 2px;
    width: 0.75rem;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.searchResults__increaseQuantity .icon--01,
.searchResults__increaseQuantity .icon--02 {
    content: '';
    position: absolute;
    height: 2px;
    width: 1rem;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.searchResults__increaseQuantity .icon--01 {
    height: 2px;
    width: 0.75rem;
}

.searchResults__increaseQuantity .icon--02 {
    height: 0.75rem;
    width: 2px;
}

@media (max-width: 42em) {

    .searchResults {
        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 8px);
    }

    .searchResults__results ul {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .searchResults__image {
        height: 30vw
    }

    .searchResults__image object {
        max-width: 85%;
    }

    .searchResults__results ul li {
        width: calc(50% - 0.3rem);
        padding: 0.5rem;
    }

    .searchResults__title {
        font-size: 1.125rem;
    }

    .searchResults__subtitle {
        font-size: 0.875rem;
        min-height: 2rem;
    }

    .searchResults__update {
        display: none;
    }

    .searchResults__price {
        font-size: 0.875rem;
    }

}

@media (min-width: 42em) {
    .searchResults {
        padding-bottom: 0.25rem;
        background-color: #f5f5f5;
    }

    .searchResults__header {
        padding-top: 1.5em;
        background-color: #f5f5f5;
        padding-left: var(--siteSpacing--01);
    }

    .searchResults__image .searchResults__imageContent {
        max-width: 17.5rem;
    }

    .searchResults__results {
        position: relative;
    }

    .searchResults__results ul {
        display: flex;
        overflow-x: scroll;
    }

    .searchResults__results ul li {
        width: 19.6rem;
        min-width: 19.6rem;
        margin-bottom: 1rem;
        margin-right: 1rem;
        padding: 0.8rem;
    }

    .searchResults__image {
        height: 12rem;
    }

    .searchResults__results ul li:first-child {
        margin-left: var(--siteSpacing--01);
    }

    .searchResults__results ul li:last-child {
        margin-right: var(--siteSpacing--01);
    }

    .searchResults__results ul::-webkit-scrollbar {
        height: 8px;               /* width of the entire scrollbar */
    }

    .searchResults__results ul::-webkit-scrollbar-track {
        background: transparent;        /* color of the tracking area */
    }

    .searchResults__results ul::-webkit-scrollbar-thumb {
        background-color: #999;    /* color of the scroll thumb */
        border-radius: 20px;       /* roundness of the scroll thumb */
    }

    .searchResults__title {
        font-size: 1.5625rem;
    }

    .searchResults__subtitle {
        font-size: 1rem;
        min-height: 2.4rem;
    }

}
.searchResults.hidden{
  display: none;
}

.searchResults__results ul li > a {
  display: flex;
  flex-direction: column;
  color: #333;
  text-decoration: none;
}
 /* new style for displaying PNG images instead of SVG */
.searchResults__image .img{
  max-width: 100%;
  max-height: 100%;
}
html,
body {
    height: 100%;
    /* overflow: hidden; */ /* commented out to resolve admin scrolling issue */
}

p {
    line-height: 1.5;
}

.content__inner::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
  }
  
  .content__inner::-webkit-scrollbar-track {
    background: #f5f5f5;        /* color of the tracking area */
  }
  
  .content__inner::-webkit-scrollbar-thumb {
    background-color: #999;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
  }

.content {
    height: 100%;
    position: relative;
    z-index: 1;
}

.content__inner {
    position: absolute;
    inset: var(--mainNavHeight--01) 0 0;
    overflow-y: scroll;
}

.section {
    padding-left: var(--siteSpacing--01);
    padding-right: var(--siteSpacing--01);
}

.lightGreyBackground {
    background-color: #f4f4f4;
}

.content__inner .section .glider.draggable {
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc(var(--siteSpacing--01) * -1);
}

.content__inner .section .glider.draggable li:first-child {
    margin-left: var(--siteSpacing--01);
}


@media (max-width: 82em) {

    .lightGreyBackground {
        background-color: #fdfdfd;
    }

}
/* to fix admin login */
.content {
  height: auto;
}
footer {
    min-height: 10rem;
}

.footer__heading {
    font-size: var(--largeHeaderSize);
}

footer textarea {
    resize: none;
}

footer input[type="text"],
footer input[type="email"],
footer textarea {
    border: none;
    background-color: transparent;
    font-size: 1.25rem;
    padding: 0.4rem 0;
    outline: none;
    width: 100%;
}

footer label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer__contactUsForm {
    display: grid;
    gap: 2.5rem;
}

.footer__contactUsButton {
    background-color: black;
    font-size: 1.25rem;
    padding: 0.8rem;
    transition: opacity 0.5s;
    cursor: pointer;
    border: none;
}

.footer__contactUsButton:hover {
    opacity: 0.5;
}

.footer__contactUsButton img {
    rotate: 180deg;
    margin-left: 1rem;
    margin-bottom: 0.2rem;
}

footer .message {
    grid-column: 1 / -1;
}

.footer__linkItems a {
    text-decoration: none;
}

.footer__linkItems a:hover {
    text-decoration: underline;
}

.footer__image::before {
    content: '';
    display: block;
    background: url(/assets/footer/footer-building-2fdd33feb0fb89967f0828c85ef2b7a5eefe00ca8fd0080f8317d0a51a475feb.jpg) no-repeat center center;
    background-size: cover;
}






@media (max-width: 42em) {

    .footer__contactUsForm {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 42em) {

    .footer__contactUsForm {
        grid-template-columns: repeat(2, 1fr);
    }
}




@media (max-width: 82em) {

    footer {
        padding-top: 5rem;
        background-color: #f5f5f5;
    }

    .footer__image::before {
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) - 12px) * -1);
        height: 15rem;
        margin-bottom: 7rem;

        display: none;
    }

    .footer__esLogo {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .footer__image,
    .footer__content {
        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);
    }

    .footer__content {
        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);
    }

    .footer__links {
        background-color: var(--color__darkGrey--01);
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) - 12px) * -1);

        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);

        margin-top: 5.5rem;
    }

    .footer__linkItems .privacy a {
        display: block;
    }

    .footer__linkItems a {
        color: #ddd;
        cursor: pointer;
        margin-top: 1rem;
    }

    .footer__linkItems .social {
        margin-top: 5rem;
    }

    .footer__linkItems .divider {
        height: 1rem;
        width: 1px;
        background-color: #888;
        display: inline-block;
        margin-inline: 1.5rem;
        margin-bottom: -0.2rem;
    }

    .footer__desktopHeading {
        display: none;
    }

    footer input[type="text"],
    footer input[type="email"],
    footer textarea {
        border-bottom: solid 1px #ddd;
    }

    footer input[type="text"]:focus-visible,
    footer input[type="email"]:focus-visible,
    footer textarea:focus-visible {
        border-bottom: solid 1px black;
    }

    footer input[type="text"]::placeholder,
    footer input[type="email"]::placeholder,
    footer textarea::placeholder {
        color: #ccc;
    }

    .footer__heading {
        color: var(--color__darkGrey--01);
        margin: 0 0 0.8rem;
    }

    .footer__contactUsForm {
        margin-top: 4rem;
    }

    .footer__contactUs {
        background-color: transparent;
        border: none;
        color: var(--color__blue--01);
        position: relative;
        padding: 0.5rem 2rem 0.5rem 0;
        font-size: 1.125rem;
        cursor: pointer;
        transition: opacity 0.5s;
    }

    .footer__contactUs:hover {
       opacity: 0.5;
    }

    .footer__contactUsButton {
        background-color: black;
        width: 100%;
        color: #fff;
        grid-column: 1 / -1;
    }

    .footer__contactUsButton .black {
        display: none;
    }

    .footer__contactUs object {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        pointer-events: none;
    }

    .footer__legal {
        background-color: var(--color__darkGrey--02);
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) - 12px) * -1);

        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);
        font-size: 0.875rem;
        color: #aaa;

        padding-top: 4rem;
        padding-bottom: 4rem;
        margin-top: 5rem;
    }

    .footer__legal p {
        margin: 0 0 2.5rem;
        line-height: 1.5;
    }

    .footer__contactUs.show object {
        rotate: 180deg;
        transform: translateY(50%);
    }

    .footer__contactUsForm {
        display: none;
    }

    .footer__contactUsForm {
        display: none;
    }

    .footer__contactUsForm.show {
        display: grid;
    }

}

@media (min-width: 82em) {

    footer {
        background-color: var(--color__darkGrey--01);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        position: relative;
    }

    .footer__desktopHeading {
        color: white;
        font-size: 2.25rem;
        margin: 2rem 0 3.5rem;
        font-weight: normal;
    }

    .footer__esLogo {
        display: none;
    }

    .footer__contactUs {
        display: none;
    }

    .footer__contactUsForm label {
        color: white;
    }

    .footer__contactUsForm input[type="text"],
    .footer__contactUsForm input[type="email"],
    .footer__contactUsForm textarea {
        border-bottom: solid 1px #777;
        color: #eee;
    }

    .footer__contactUsForm input[type="text"]:focus-visible,
    .footer__contactUsForm input[type="email"]:focus-visible,
    .footer__contactUsForm textarea:focus-visible {
        border-bottom: solid 1px white;
        background-color: var(--color__darkGrey--01) !important;
    }
    
    .footer__contactUsForm input:-webkit-autofill,
    .footer__contactUsForm input:-webkit-autofill:focus {
      transition: background-color 0s 600000s, color 0s 600000s !important;
    }

    .footer__contactUsButton {
        background-color: white;
        color: black;
        width: 11rem;
    }

    .footer__contactUsButton .white {
        display: none;
    }

    .footer__linkItems {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 5rem;
    }

    .footer__linkItems a {
        color: #aaa;
        font-size: clamp(0.875rem, 1vw, 1.25rem);
    }

    .footer__linkItems .privacy,
    .footer__linkItems .social {
        display: flex;
        column-gap: 1em;
    }

    .footer__linkItems .social .divider {
        display: none;
    }

    .footer__heading {
        margin-left: var(--siteSpacing--01);
        margin-top: 6rem;
        position: relative;
        z-index: 1;
        color: white;
        line-height: 0.9;
        margin-right: 30%;
        margin-bottom: 12rem;
    }

    .footer__image {
        min-width: 100%;
        max-width: 100%;
        position: relative;
    }

    .footer__image::before {
        position: absolute;
        inset: 0;
        opacity: 0.5;
    }

    .footer__content {
        min-width: 100%;
        max-width: 100%;
        padding: 5.5rem 4rem;
    }

    .footer__legal {
        position: absolute;
        color: white;
        left: var(--siteSpacing--01);
        bottom: 3rem;
        right: 50%;
        margin-right: var(--siteSpacing--01);
        font-size: 1.25rem;
    }

    .footer__legal p,
    .footer__legal span {
        display: inline;
    }

}
.footer__contactUsButton{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer__contactUsButton object {
  margin-left: 0;
  margin-bottom: 0;
}

.loaderThin {
  display: none;
  width: 24px;
  padding: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: black;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

.loaderThin.show {
  display: block;
}

.footer__contactUsButton .black.hide {
  display: none;
}

.footer__contactUsButton .white.hide {
  display: none;
}

.footer__contactUsButton .checkmark {
  display: none;
  rotate: 0deg;
  width: 24px;
}

.footer__contactUsButton .checkmark.show {
  display: block;
}

.footer__contactUsButton .submitted {
  display: none;
}

.footer__contactUsButton .submitted {
  display: none;
}

.footer__contactUsButton.success {
  background-color: var(--color__blue--02);
  color: white;
}

.footer__contactUsForm .error{
  border-bottom: solid 1px var(--color__red--01) !important;
}

@media (max-width: 82em) {
  .loaderThin {
    background-color: white;
  }
}
.homeBanner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc(var(--siteSpacing--01) * -1);
}

.homeBanner__section--two {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.homeBanner__verticalLine.three {
    left: 50rem;
}

.homeBanner__verticalLine.four {
    left: 70rem;
}

.homeBanner__verticalLine.five {
    left: 90rem;
}

.homeBanner__text p {
    margin: 0;
    padding: 0;
    font-size: clamp(1.25rem, 1.7vw, 2rem);
    margin-left: 4.5rem;
    max-width: 25%;
}

.homeBanner__text {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.homeBanner ul.slides {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    height: calc(100vh - var(--mainNavHeight--01));
    min-height: 35vw;
}

.homeBanner ul.slides input {
    display: none;
}

.homeBanner .slide-container {
    display: block;
}

.homeBanner .slide-image {
    display: block;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
    left: 0;
    right: 0;
}

.homeBanner .slide-image img {
    min-height: calc(100vh - var(--mainNavHeight--01));
    width: 100%;
    object-fit: cover;
}

.homeBanner .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 100px;
    color: #fff;
    transform: translateY(-10vw);
    z-index: 9;
}

.homeBanner .carousel-controls label {
    display: none;
    position: absolute;
    opacity: 0.5;
    transition: opacity 0.5s;
    cursor: pointer;
    height: 20vw;
}

.homeBanner .carousel-controls label object {
    position: absolute;
    width: 3rem;
    height: 2rem;
    top: 50%;
    pointer-events: none;
}

.homeBanner .carousel-controls label::before {
    content: '';
    display: block;
    background-color: black;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.homeBanner .slide-image:hover + .carousel-controls label{
    opacity: 0.5;
}

.homeBanner .carousel-controls label:hover {
    opacity: 0.3;
}

.homeBanner .carousel-controls .prev-slide {
    width: 49%;
    text-align: left;
    left: 0;
}

.homeBanner .carousel-controls .prev-slide::before {
    left: 1rem;
}

.homeBanner .carousel-controls .prev-slide object {
    rotate: 90deg;
    left: 0.4rem;
    transform: translateX(-1.05rem);
}

.homeBanner .carousel-controls .next-slide {
    width: 49%;
    text-align: right;
    right: 0;
}

.homeBanner .carousel-controls .next-slide::before {
    right: 1rem;
}

.homeBanner .carousel-controls .next-slide object {
    rotate: 270deg;
    right: 0.4rem;
    transform: translateX(1.05rem);
}

.homeBanner .carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    padding: 1.5rem;
}

.homeBanner .carousel-dots div {
    display: flex;
    margin-left: auto;
}

.homeBanner .carousel-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background: black;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.homeBanner .carousel-dots .carousel-dot {
    display: inline-block;
    opacity: 0.6;
    position: relative;
    padding: 0.2rem;
    cursor: pointer;
    transition: opacity 0.5s;
}

.homeBanner .carousel-dots .carousel-dot:hover {
    opacity: 0.4;
}

.homeBanner .carousel-dots .carousel-dot::before {
    content: '';
    background-color: white;
    border-radius: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    display: block;
    transition: width 0.5s;
}

.homeBanner input:checked + .slide-container .slide-image {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

.homeBanner input:checked + .slide-container .carousel-controls label {
    display: block;
}

.homeBanner .carousel-dots span {
    opacity: 0;
    color: white;
    transition: opacity 0.5s;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(0.7rem, 1vw, 1.25rem);
}

.homeBanner input#img-1:checked ~ .carousel-dots div label#img-dot-1,
.homeBanner input#img-1:checked ~ .carousel-dots div label#img-dot-1 + span,
.homeBanner input#img-2:checked ~ .carousel-dots div label#img-dot-2,
.homeBanner input#img-2:checked ~ .carousel-dots div label#img-dot-2 + span,
.homeBanner input#img-3:checked ~ .carousel-dots div label#img-dot-3,
.homeBanner input#img-3:checked ~ .carousel-dots div label#img-dot-3 + span,
.homeBanner input#img-4:checked ~ .carousel-dots div label#img-dot-4,
.homeBanner input#img-4:checked ~ .carousel-dots div label#img-dot-4 + span,
.homeBanner input#img-5:checked ~ .carousel-dots div label#img-dot-5,
.homeBanner input#img-5:checked ~ .carousel-dots div label#img-dot-5 + span,
.homeBanner input#img-6:checked ~ .carousel-dots div label#img-dot-6,
.homeBanner input#img-6:checked ~ .carousel-dots div label#img-dot-6 + span {
    opacity: 1;
    display: block;
}

.homeBanner input#img-1:checked ~ .carousel-dots div label#img-dot-1::before,
.homeBanner input#img-2:checked ~ .carousel-dots div label#img-dot-2::before,
.homeBanner input#img-3:checked ~ .carousel-dots div label#img-dot-3::before,
.homeBanner input#img-4:checked ~ .carousel-dots div label#img-dot-4::before,
.homeBanner input#img-5:checked ~ .carousel-dots div label#img-dot-5::before,
.homeBanner input#img-6:checked ~ .carousel-dots div label#img-dot-6::before {
    width: 1.5rem;
}

.homeBanner input:checked + .slide-container .nav label { display: block; }

.homeBanner__section--three {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homeBanner__discover {
    padding: 1.5rem 1.5rem 0;
}

.homeBanner__discover h3 {
    margin-top: 0;
    font-size: clamp(1.25rem, 1.5vw, 2rem);
    font-weight: normal;
}

.homeBanner__discover div {
    font-size: clamp(0.8rem, 1.vw, 1.125rem);
    padding-left: calc(100% - 9.5rem);
}

.homeBanner__seeProducts {
    min-height: 17rem;
}

.homeBanner__seeProductsItem {
    display: flex;
    align-items: center;
    color: white;
    justify-content: space-between;
    position: relative;
}

.homeBanner__seeProductsContent {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    margin-right: 1rem;
    margin-bottom: 1.4rem;
    margin-left: 2.4rem;
    cursor: pointer;
    transition: opacity 0.5s;
    text-decoration: none;
    color: white;
}

.homeBanner__seeProductsContent::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
}

.homeBanner__seeProductsContent:hover {
    opacity: 0.5;
}

.homeBanner__seeProductsObject {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.homeBanner__seeProductsContent span:first-child {
    font-size: clamp(1.25rem, 1.5vw, 2rem);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.homeBanner__seeProductsFrame {
    width: 14rem;
    margin-right: 1rem;
    margin-left: 1rem;;
}

 .homeBanner__seeProductsItem:first-child {
    background-image: url(/assets/banner/mini-banner-01-71694ec8f24350fe5883517f19561f621f0cea2de08fe2af108e1447101c75ac.jpg);
    background-size: cover;
    background-position: right bottom;  /* Positions the image to crop the left side */
    padding-top: 3.5rem;
}

.homeBanner__seeProductsItem:last-child {
    background-image: url(/assets/banner/mini-banner-02-9ae41f6638030f842098800a4163268a21430b7fa81d6f65d967bd85d5d6e665.jpg);
    background-size: cover;
    background-position: right center;  /* Positions the image to crop the left side */
} 

.homeBanner__seeProductsItem:last-child .homeBanner__seeProductsFrame {
    width: 9rem;
    margin-right: 3rem;
}

.homeBanner__seeProductsContent span:nth-child(2) {
    grid-column: 1;
    font-size: clamp(0.875rem, 1vw, 1.25rem);
    padding-right: 0.75rem;
    max-width: 17rem;
}

.homeBanner__seeProductsContent object {
    grid-row: 2;
    grid-column: 2;
    rotate: 180deg;
}




@media (max-width: 70rem) {

    .homeBanner {
        grid-template-rows: 1fr 30rem;
        grid-template-columns: auto;
    }

    .homeBanner__section--two {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .homeBanner__seeProducts {
        min-height: 16rem;
    }

    .homeBanner__seeProductsFrame {
        width: 10rem;
    }

    .homeBanner .carousel-dots {
        padding: 1rem 0.75rem;
    }

    .homeBanner .carousel-dots span {
        right: 0.75rem;
    }

}

@media (max-width: 46rem) {

    .homeBanner .carousel-dots {
        padding-top: 2rem;
        justify-content: end;
        padding-bottom: 0.75rem;
    }

    .homeBanner .carousel-dots span {
        left: 0.75rem;
        top: 1rem;
    }

    .homeBanner__section--two {
        grid-template-columns: 1fr;
        grid-template-rows: 15rem 15rem;
    }

    .homeBanner__seeProducts {
        min-height: 14rem;
    }

    .homeBanner__seeProductsFrame {
        width: 8rem;
    }

    .homeBanner__discover {
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .homeBanner__text p {
        margin-left: 2rem;
        max-width: 10rem
    }

    .homeBanner__text {
        top: 2.5rem;
        align-items: flex-start;
    }

}
.horizontalItemList {
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1));

    padding-left: var(--siteSpacing--01);
    padding-right: calc(var(--siteSpacing--01));

    position: relative;
}

.horizontalItemList .wrapper {
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1));

    padding-left: var(--siteSpacing--01);
    padding-right: calc(var(--siteSpacing--01));
    overflow: hidden;
}

.pager {
    /*display: none !important;*/
}

.horizontalItemList .title {
    font-size: var(--largeHeaderSize);
    margin: 0;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
}

.horizontalItemList .controls {
    position: absolute;
    right: var(--siteSpacing--01);
    top: 8.75rem;
    display: flex;
    gap: 0.75rem;
}

.horizontalItemList .controls button {
    outline: none;
    position: relative;
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.5s;
}

.horizontalItemList .controls button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.horizontalItemList .controls button:hover {
    opacity: 0.5;
}

.horizontalItemList .controls button::after {
    outline: none;
    position: absolute;
    content: '';
    inset: 0;
    opacity: 0.4;
    border-radius: 50%;
}

.horizontalItemList .controls .previous {
    background-position: 0.9rem 0.8rem;
}

.horizontalItemList .controls .next {
    background-position: 1.05rem 0.8rem;
}

.horizontalItemList ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 4rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.horizontalItemList ul li {
    min-width: 16rem;
    max-width: 16rem;
}

.horizontalItemList ul .link {
    text-decoration: none;
}

.horizontalItemList .icon {
    text-align: center;
    pointer-events: none;
}

.horizontalItemList .itemName {
    font-size: clamp(1rem, 1.7vw, 1.5rem);
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
}

.horizontalItemList .itemCode {
    font-size: clamp(0.75rem, 1.4vw, 1.25rem);
}




/* Centered */
.horizontalItemList.centered .wrapper {
    text-align: center;
}




/* Light */
.horizontalItemList.light {
    background-color: white;
}

.horizontalItemList.light .wrapper {
    background-color: var(--color__lightGrey--01);
}

.horizontalItemList.light .title {
    color: var(--color__darkGrey--01);
}

.horizontalItemList.light .controls button::after {
    background-color: #ccc;
}

.horizontalItemList.light .controls .previous {
    background-image: url(/assets/content/chevron-left-black-34ae773f54c68f523ddb7a8d53f8332941054107ef2bb9d522f655121940d319.svg);
}

.horizontalItemList.light .controls .next {
    background-image: url(/assets/content/chevron-right-black-ba92606cecb8a22692b5248784882e6935a4d5df8c7863ea7843ccf837adbe6c.svg);
}

.horizontalItemList.light ul .link {
    color: #111;
}



/* Dark */
.horizontalItemList.dark {
    background-color: var(--color__darkBlue--01);
}

.horizontalItemList.dark .wrapper {
    background-color: var(--color__darkBlue--02);
}

.horizontalItemList.dark .title {
    color: white;
}

.horizontalItemList.dark .controls button::after {
    background-color: white;
}

.horizontalItemList.dark .controls .previous {
    background-image: url(/assets/content/chevron-left-white-70646bf1d185650e02f1a40be9f99829bc50b51abb6ecbc032b11cdbaed5e697.svg);
}

.horizontalItemList.dark .controls .next {
    background-image: url(/assets/content/chevron-right-white-9c2e3639b3f5bf68af7ac27a5ab50bebc995156d83ab9374354183e52ab0f8d8.svg);
}

.horizontalItemList.dark ul .link {
    color: white;
}

.horizontalItemList.dark .itemCode {
    opacity: 0.7;
}





@media (max-width: 80rem) {

    .horizontalItemList .controls {
        top: 7.75rem;
    }

}

@media (max-width: 60rem) {

    .horizontalItemList .controls {
        top: 6.75rem;
    }

}

@media (max-width: 50rem) {

    .horizontalItemList .controls {
        top: 6rem;
    }

    .horizontalItemList .title {
        font-size: 1.875rem;
    }

}

@media (max-width: 40rem) {

    .horizontalItemList:not(.compactInMobile) .link {
        margin-inline: 5rem;
        display: block;
    }

    .horizontalItemList:not(.compactInMobile) .controls {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .horizontalItemList:not(.compactInMobile) .controls button {
        position: absolute;
        top: 10rem;
    }

    .horizontalItemList:not(.compactInMobile) .controls .previous {
        left: 1em;
    }

    .horizontalItemList:not(.compactInMobile) .controls .next {
        right: 1.5em;
    }

    .horizontalItemList .title {
        font-size: 1.875rem;
        padding-bottom: 1.25rem;
        padding-right: 7.25rem;
    }

    .horizontalItemList ul {
        padding-top: 3rem;
        padding-bottom: 0;
    }

    .horizontalItemList ul li {
        min-width: 100%;
    }

    .horizontalItemList:not(.compactInMobile) .itemName,
    .horizontalItemList:not(.compactInMobile) .itemCode {
        margin-left: calc((var(--siteSpacing--01) * -1) - 5rem);
        margin-right: calc(((var(--siteSpacing--01) * -1) + 12px) - 5rem);

        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);

        text-align: left;
        position: relative;
        color: white;
        z-index: 10;
    }

    .horizontalItemList .itemName {
        margin-bottom: 0;
        padding-bottom: 0.3rem;
        padding-top: 0.7rem;
        margin-top: 3rem;
    }

    .horizontalItemList .itemCode {
        padding-bottom: 0.7rem;
    }

    .horizontalItemList.light:not(.compactInMobile) .itemName::before,
    .horizontalItemList.light:not(.compactInMobile) .itemCode::before {
        content: '';
        display: block;
        position: absolute;
        inset: 0;
        background-color: black;
        opacity: 0.3;
        z-index: -1;
    }





    /* Compact */
    .horizontalItemList.compactInMobile ul {
        gap: 1.5rem;
    }

    .horizontalItemList.compactInMobile ul li {
        min-width: 10rem;
        max-width: 10rem;
    }

    .horizontalItemList.compactInMobile ul li .icon,
    .horizontalItemList.compactInMobile ul li .icon * {
        max-height: 10rem;
    }

    .horizontalItemList.compactInMobile ul li .itemName {
        margin-top: 1.4rem;
    }

    .horizontalItemList.compactInMobile ul li .itemCode {
        margin-bottom: 2rem;
    }

}
/* override image style to display PNG instead of SVG */

.horizontalItemList .icon {
  min-height: 230px;
  max-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontalItemList .icon .iconImage{
  max-height: 230px;
  max-width: 100%;
}


/* invert the black image to white for horizontal list dark*/

.horizontalItemList.dark .iconImage{
  filter: brightness(0) invert(1);
}
.commonBannerHeader {
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1));
    position: relative;
    display: flex;
}

.commonBannerHeader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.4;
}

.commonBannerHeader img {
    width: 100%;
}

.commonBannerHeader h1 {
    color: white;
    position: absolute;
    z-index: 1;
    bottom: 4rem;
    left: var(--siteSpacing--01);
    font-size: var(--largeHeaderSize);
    margin: 0;
}

.commonBannerHeader .goBack {
    color: white;
    position: absolute;
    left: var(--siteSpacing--01);
    top: 1.5rem;
    text-decoration: none;
}

.commonBannerHeader .goBack:hover {
    text-decoration: underline;
}





@media (max-width: 70rem) {

    .commonBannerHeader .desktopBanner {
        display: none;
    }

    .commonBannerHeader h1 {
        bottom: 1.5rem;
    }

}

@media (min-width: 70rem) {

    .commonBannerHeader .mobileBanner {
        display: none;
    }

    .commonBannerHeader .goBack {
        display: none;
    }

}
.ourHistory {
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1) + 12px);

    padding-left: var(--siteSpacing--01);
    padding-right: calc(var(--siteSpacing--01) - 12px);
}

.ourHistoryWrapper .containerInfo {
    color: white;
}

.ourHistoryWrapper h1 {
    font-size: var(--largeHeaderSize);
}

.ourHistoryWrapper .containerInfo h1 {
    margin: 0 0 1rem;
}

.ourHistoryWrapper .info {
    margin: 0;
}

.ourHistoryWrapper .infoItem dt {
    font-size: 1.25rem;
    margin-bottom: 1em;
}

.ourHistoryWrapper .infoItem dd {
    margin: 0;
}

.ourProjects h1 {
    font-size: var(--largeHeaderSize);
}

.ourProjects .controls button {
    outline: none;
    position: relative;
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.5s;
    background-color: transparent;

}

.ourProjects .controls button::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;

}

.ourProjects .controls button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.ourProjects .controls button:hover {
    opacity: 0.5;
}

.ourProjects .controls button::before {
    position: absolute;
    content: '';
    inset: 0;
    opacity: 0.4;
    border-radius: 50%;
}

.ourProjects .controls .previous::after {
    background-position: 0.9rem 0.8rem;
}

.ourProjects .controls .next::after {
    background-position: 1.05rem 0.8rem;
}

.ourProjectsWrapper {
    position: relative;
}

.ourProjectsExamples {
    overflow: hidden;
}

.ourProjectsWrapper ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.ourProjectsWrapper ul li {
    position: relative;
    display: flex;
}

.ourProjectsWrapper ul li span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3em;
    z-index: 5;
    color: white;
    text-align: right;
    padding: 1em;
}

.ourProjectsWrapper ul li span::before {
    position: absolute;
    content: '';
    background-color: black;
    opacity: 0.3;
    inset: 0;
    z-index: -1;
}





/* Mobile to Desktop Image change */
@media (max-width: 54rem) {

    .ourHistory .desktopContentBanner {
        display: none;
    }

}

@media (min-width: 54rem) {

    .ourHistory .mobileContentBanner {
        display: none;
    }

}




/* Media Queries */
@media (max-width: 54rem) {

    .ourHistory {
        padding-inline: 0;
    }

    .ourHistory .container {
        display: flex;
        flex-direction: column;
    }

    .ourHistory .containerInfo {
        background-color: var(--color__darkBlue--01);
        padding: 4rem var(--siteSpacing--01)
    }

    .ourHistory .containerInfo h1 {
        font-size: 1.5rem;
    }

    .ourHistory .container img {
        order: 2;
    }

    .ourHistory .infoItem {
        padding: 2rem var(--siteSpacing--01);
    }

    .ourHistory .infoItem:nth-child(2),
    .ourHistory .infoItem:nth-child(4) {
        background-color: #f5f5f5;
    }

    .ourProjectsExamples ul {
        display: flex;
    }

    .ourProjectsExamples li {
        min-width: 100%;
    }

    .ourProjectsExamples li img {
        min-width: 100%;
    }

    .ourProjectsHeading {
        margin-bottom: 3rem;
    }

    .ourProjectsHeading h1 {
        margin: 0 0 2rem;
    }

    .ourProjects {
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) * -1) + 12px);

        padding-left: var(--siteSpacing--01);
        padding-right: var(--siteSpacing--01);

        background-color: var(--color__darkBlue--01);
        color: white;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .ourProjects .controls {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .ourProjects .controls button::before {
        background-color: #000;
        z-index: -1;
    }

    .ourProjects .controls .previous,
    .ourProjects .controls .next {
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
    }

    .ourProjects .controls .previous {
        left: 1em;
    }

    .ourProjects .controls .previous::after {
        background-image: url(/assets/content/chevron-left-white-70646bf1d185650e02f1a40be9f99829bc50b51abb6ecbc032b11cdbaed5e697.svg);
    }

    .ourProjects .controls .next {
        right: 1em;
    }

    .ourProjects .controls .next::after {
        background-image: url(/assets/content/chevron-right-white-9c2e3639b3f5bf68af7ac27a5ab50bebc995156d83ab9374354183e52ab0f8d8.svg);
    }

    .ourProjectsWrapper ul li span {
        text-align: center;
    }

}

@media (min-width: 54rem) {

    .ourHistory {
        padding-bottom: 3rem;
        padding-top: 3rem;
        padding-left: 3rem;
        padding-right: 3rem;
        background-color: var(--color__darkBlue--01);
    }

    .ourHistoryWrapper {
        border: solid 1px #4757a5;
    }

    .ourHistoryWrapper .container {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .ourHistoryWrapper .containerInfo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 3rem;
        padding-right: 4rem;
    }

    .ourHistoryWrapper .info {
        color: white;
        display: grid;
    }

    .ourProjectsHeading {
        display: grid;
        grid-template-columns: auto 1fr;
        position: relative;
        align-items: center;
        column-gap: 10rem;
        padding-right: 8rem;
        padding-bottom: 2rem;
        padding-top: 2rem;
    }

    .ourProjectsHeading h1 {
        margin: 3rem 0 2rem;
    }

    .ourProjectsHeading p {
        max-width: 40rem;
    }

    .ourProjects .controls {
        position: absolute;
        right: var(--siteSpacing--01);
        top: -6rem;
    }

    .ourProjects .controls button::before {
        background-color: #ccc;
    }

    .ourProjects .controls .previous::after {
        background-image: url(/assets/content/chevron-left-black-34ae773f54c68f523ddb7a8d53f8332941054107ef2bb9d522f655121940d319.svg);
    }

    .ourProjects .controls .next::after {
        background-image: url(/assets/content/chevron-right-black-ba92606cecb8a22692b5248784882e6935a4d5df8c7863ea7843ccf837adbe6c.svg);
    }

    .ourProjectsWrapper {
        margin-right: calc((var(--siteSpacing--01) * -1) + 12px);
    }

    .ourProjectsWrapper ul {
        display: flex;
        column-gap: 2.5rem;
    }

}

@media (min-width: 54rem) and (max-width: 80rem) {

    .ourHistoryWrapper .container {
        grid-template-columns: repeat(2, 50%);
    }

    .ourHistoryWrapper .desktopContentBanner {
        width: 100%;
    }

    .ourProjectsHeading {
        display: block;
    }

    .ourProjectsHeading h1 {
        margin-bottom: 1rem;
    }

}

@media (min-width: 54rem) and (max-width: 112rem) {

    .ourHistoryWrapper .info {
        border-top: solid 1px #4757a5;
        grid-template-columns: repeat(2, 50%);
    }

    .ourHistory .infoItem {
        padding: 3rem 4rem;
    }

    .ourHistory .infoItem:nth-child(3),
    .ourHistory .infoItem:nth-child(4) {
        border-top: solid 1px #4757a5;
    }

    .ourHistory .infoItem:nth-child(2),
    .ourHistory .infoItem:nth-child(4) {
        border-left: solid 1px #4757a5;
    }

}

@media (min-width: 112rem) {

    .ourHistoryWrapper {
        display: grid;
        grid-template-columns: 1fr 32rem;
    }

    .ourHistoryWrapper .info {
        border-left: solid 1px #4757a5;
        grid-template-rows: repeat(4, 25%);
    }

    .ourHistoryWrapper .infoItem:not(:last-child) {
        border-bottom: solid 1px #4757a5;
    }



    .ourHistoryWrapper .containerInfo p {
        line-height: 1.5;
    }

    .ourHistoryWrapper .infoItem {
        padding-inline: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }



}
/* create space between projects carousel and footer */
.ourProjects {
  margin-bottom: 4rem;
}
@media (max-width: 54rem) {

  /* adjust excessive carousel image width for mobile view */
  .ourProjectsExamples li {
      min-width: auto;
  }

}
.productsFilter {
    background-color: #fdfdfd;

    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1) + 12px);

    padding-left: var(--siteSpacing--01);
    padding-right: calc(var(--siteSpacing--01) - 12px);
}

.productsFilterPanel .panel {
    border: solid 1px #eee;
    background-color: white;
    padding: 0.5em;
    color: #333;
}

.productsFilterPanel .panel > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.productsFilterPanel .panel > ul > li:not(:first-child) {
    border-top: solid 1px #eee;
}

.productsFilterPanel .panel * {
    color: #333;
}

.productsFilterPanel .panel > li:not(:first-child) {
    border-top: solid 1px #eee;
}

.productsFilterHeading {
    position: relative;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.125rem;
    transition: opacity 0.5s, background 0.5s, color 0.5s;
}

.productsFilterHeading:hover {
    opacity: 0.5;
}

.productsFilterHeading.seeAll {
    background: none;
    padding-left: 0;
    padding-right: 0;
}

.productsFilterHeading object {
    position: absolute;
    right: 0.5em;
    top: 0.6em;
    width: 1.5rem;
    pointer-events: none;
}

.productsFilterHeading.show object {
    rotate: 180deg;
}

.productsFilterSearch {
    position: relative;
    margin-bottom: 1em;
}

.productsFilterSearch object {
    height: 1.3rem;
    width: 1.3rem;
    position: absolute;
    left: 0;
    top: 0.6em;
    z-index: 1;
}

.productsFilterSearch input {
    padding-left: 1.5em;
    width: 100%;
    border: none;
    border-bottom: solid 1px #ccc;
    transition: border-color 0.5s;
    outline: none;
    font-size: 1.25rem;
    height: 2.5rem;
}

.productsFilterSearch input:focus {
    border-bottom: solid 1px #aaa;
}

.productsFilterItems {
    margin: 0 0 0 1rem;
    padding: 0;
    list-style-type: none;
    display: none;
}

.productsFilterItems.show {
    display: block;
}

.productsFilterHeading {
    position: relative;
    width: 100%;
    background: url(/assets/header/icon-chevron-down-0104f0e12d5685bfe638769bb30d57be1144901b5feda30d982074a2952802dd.svg) no-repeat right 0.5em center;
}

.productsFilterHeading.show {
    background-image: url(/assets/header/icon-chevron-up-f04b59029df1f1682e5a2986933923515bd8544a86549ab97cfa1645f093730f.svg);
}

.productsFilterHeading.show {
    color: black;
}

.productsFilterItems li {
    margin-bottom: 0.75rem;
}

.productsFilterItems label {
    cursor: pointer;
    display: block;
}

.productsFilterItems label * {
    cursor: pointer;
}

.productsFilterList ul {
    margin: 0;
    padding: 0 0 16em;
    list-style-type: none;
    display: grid;
    gap: 1em;
}

.productsFilterList ul li > a {
    border: solid 1px #eee;
    background-color: white;
    padding: 1.5rem 0.875rem 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;
    height: 100%;
}

.productsFilterList ul li > a .filterImage {
    transition: filter 0.5s;
    max-width: 100%;
}

.productsFilterList ul li > a:hover {
    background-color: var(--color__blue--01);
    color: white;
}

.productsFilterList ul li > a:hover .filterImage {
    filter: brightness(0) invert(1);
}

.productsFilterList ul li .image {
    max-width: 80%;
    pointer-events: none;
    flex: 1;
    display: flex;
    align-items: center;
}

.productsFilterListContent {
    width: 100%;
    position: relative;
    min-height: 4.5rem;
    padding-top: clamp(1.5rem, 5vw, 2rem);
    margin-top: 2rem;
}

.productsFilterListContent span {
    display: block;
}

.productsFilterListContent span:first-child {
    font-size: clamp(1rem, 3vw, 1.5rem);
    padding-bottom: 0.5rem;
}

.productsFilterListContent span:nth-child(2) {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.filterToggle {
    background: url(/assets/product/filter-7ac498ffc907ac20493e24d49daeb330a7bd24f95a1658c3db7b38aac49076f3.svg) no-repeat right 0.5em center white;
    border: solid 1px #eee;
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: opacity 0.5s;
}

.filterToggle:hover {
    opacity: 0.5;
}

.productFilterPanelSettings {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}

.productFilterPanelSettings select {
    border: solid 1px #eee;
    transition: border-color 0.5s;
    outline: none;
    font-size: 1.25rem;
    height: 2.5rem;
    background: white;
    width: 4rem;
    padding-inline: 0.5em;
}

.productFilterPanelSettings select:focus {
    border-color: #ccc;
}

.productsFilterHeading.show ~ ul li {
    opacity: 1 !important;
}

.productFilterPanelActions {
    display: flex;
    column-gap: 0.875rem;
    margin-top: 1.5em;
}

.productFilterPanelActions button {
    font-size: 1.125rem;
    transition: opacity 0.5s;
    flex: 1;
    cursor: pointer;
    padding: 0.6em;
}

.productFilterPanelActions button:hover {
    opacity: 0.5;
}

.productFilterPanelActions .clear {
    border: solid 1px #ddd;
    background-color: transparent;
}

.productFilterPanelActions .clear:focus {
    border: solid 1px #ccc;
}

.productFilterPanelActions .apply {
    background-color: black;
    color: white;
}





@media (max-width: 45em) {

    .productsFilter .panel {
        display: none;
        margin-bottom: 1.5em;
    }

    .productsFilter .panel.show {
        display: block;
    }

    .productsFilter {
        padding-top: 2rem;
    }

    .productsFilterItems {
        margin-top: 0.875rem;
    }

    .productsFilterHeading.show {
        background-color: black;
        color: white;
        background-image: url(/assets/header/icon-chevron-up-white-b59e9ad01da9cb696fbab4c6538c907fa8a8608904a4c235540fc10d7b8be339.svg);
    }

    .productsFilterList ul {
        padding-bottom: 6rem;
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 45em) {

    .productsFilterWrapper {
        display: grid;
        grid-template-columns: 14rem 1fr;
        column-gap: 6rem;
    }

    .productsFilter {
        padding-top: 5rem;
    }

    .filterToggle {
        display: none;
    }

    .productFilterPanelSettings {
        display: none;
    }

    .productFilterPanelActions .clear {
        text-align: left;
    }

    .productFilterPanelActions .apply {
        display: none;
    }

}




@media (min-width: 45em) and (max-width: 62em) {

    .productsFilterWrapper {
        column-gap: 2rem;
    }

    .productsFilterList ul {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (min-width: 62em) and (max-width: 82em) {

    .productsFilterWrapper {
        column-gap: 2rem;
    }

    .productsFilterList ul {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 82em) and (max-width: 110em) {

    .productsFilterList ul {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 110em) and (max-width: 140em) {

    .productsFilterList ul {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (min-width: 140em) {

    .productsFilterList ul {
        grid-template-columns: repeat(5, 1fr);
    }

}
/* prevent varying product list sizes due to different SVG dimensions */

.productsFilterList ul li > a .filterImage {
  max-height: 15rem;
}

.productsFilterListContent span:nth-child(3) {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.tab {
    overflow: hidden;
    background-color: #f1f1f1;
    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1));

    padding-left: calc(var(--siteSpacing--01) + 4rem);
    padding-right: calc(var(--siteSpacing--01) + 4rem);
    display: flex;
}

/* Style the buttons that are used to open the tab content */
.tab .tablinks {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 1rem 0;
    transition: 0.5s;
    width: 50%;
    border-bottom: solid 0.25rem #ddd;
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.tab .tablinks:first-child {
    text-align: left;
}

.tab .tablinks:last-child {
    text-align: right;
}

/* Change background color of buttons on hover */
.tab .tablinks:not(.active):hover {
    opacity: 0.5;
}

/* Create an active/current tablink class */
.tab .tablinks.active {
    border-bottom: solid 0.25rem var(--color__blue--01);
    cursor: default;
}

/* Style the tab content */
.tabcontent {
    display: none;

    margin-left: calc(var(--siteSpacing--01) * -1);
    margin-right: calc((var(--siteSpacing--01) * -1));
}






@media (max-width: 80em) {

    .tab {
        padding: 0;
    }

    .tab > .tablinks,
    .tabcontent {
        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01));
    }

}

@media (min-width: 80em) and (max-width: 120em) {

    .tab,
    .tabcontent {
        padding-left: calc(var(--siteSpacing--01) + 2rem);
        padding-right: calc(var(--siteSpacing--01) + 2rem);
    }

}

@media (min-width: 120em) {

    .tab,
    .tabcontent {
        padding-left: calc(var(--siteSpacing--01) + 4rem);
        padding-right: calc(var(--siteSpacing--01) + 4rem);
    }

}
/* in account page, turbo frame is used to switch tabs, js usage is minimized */
.tabcontent {
  display: block;
}

.tab .tablinks {
  display: block; /* fix tablinks width issue in desktop view */
  text-decoration: none; /* remove default a-tag underline */
  color: #707070 /* remove default a-tag blue color */
}

.tab .tablinks.active {
  color: inherit /* style selected tab link font as black */
}
/* styles.css */
.autocomplete-results {
    display: none; /* Ensure it starts hidden */
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.autocomplete-results.show-results {
    display: block; /* Show only when there are results */
}

.autocomplete-results li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1; /* Adds a subtle line between items */
}

.autocomplete-results li:last-child {
    border-bottom: none; /* Removes border from the last item */
}

.autocomplete-results li.active, .autocomplete-results li:hover {
    background-color: #f9f9f9; /* Light grey background for active/hover state */
}
.productDetailImage {
    background-color: var(--color__darkBlue--01);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.productDetailImage .productDetailImageContent {
    filter: brightness(0) invert(1);
}

.productDetail h1 {
    font-size: var(--largeHeaderSize);
    margin-top: 1rem;
    margin-bottom: 5rem;
}

.productDetailCode {
    color: #999;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
}

.productDetailNote {
    font-weight: bold;
    display: flex;
    column-gap: 0.5em;
}

.productDetailNote .worksWith {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.75rem;
    flex: 1;
}

.productDetailNote,
.productDetailInfo,
.productDetail p {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.productDetail p {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.productDetail p:last-child {
    margin-bottom: 0;
}

.productDetailInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: solid 1px #ddd;
    border-top: solid 1px #ddd;
    padding-bottom: 1.75rem;
    padding-top: 1.75rem;
    gap: 1.5rem;
}

.productDetailInfo div {
    display: flex;
    column-gap: 2rem;
}

.productDetailInfo dd {
    font-weight: bold;
    margin: 0;
}

.inlineLink {
    color: var(--color__blue--02);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.5s;
}

.inlineLink:hover {
    opacity: 0.5;
}

.inlineLink:hover {
    text-decoration: underline;
}

.installationGuideLink {
    padding-right: 2.7rem;
    position: relative;
}

.installationGuideLink::before {
    background: url(/assets/product/download-icon-1f20aaa30f4a77519c2a5ded5ec800801ada8efbec13166dd1c76323f59389df.svg) no-repeat;
    background-size: contain;
    height: 1.8rem;
    width: 1.8rem;
    position: absolute;
    right: 0;
    top: -0.2em;
    content: '';
}

.youtubeLink {
    position: relative;
    padding-right: 2.7rem;
}

.youtubeLink::before {
    background: url(/assets/product/youtube-icon-2ec48c609b990881263a75f73703d5c624a0ffee1403f5cc708a829588ed1c4c.svg) no-repeat;
    background-size: contain;
    height: 2rem;
    width: 2rem;
    position: absolute;
    right: 0;
    top: -0.2em;
    content: '';
}

.productDetailListHeading .search {
    position: relative;
    margin-bottom: 1em;
    width: 15rem;
}

.productDetailListHeading .search object {
    height: 1.3rem;
    width: 1.3rem;
    position: absolute;
    left: 0;
    top: 0.6em;
    z-index: 1;
}

.productDetailListHeading .search input {
    padding-left: 1.5em;
    width: 100%;
    border: none;
    border-bottom: solid 1px #ccc;
    transition: border-color 0.5s;
    outline: none;
    font-size: 1.25rem;
    height: 2.5rem;
    background-color: transparent;
}

.productDetailListHeading .search input:focus {
    border-bottom: solid 1px #aaa;
}

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

.productDetailListHeading .info {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    width: 15rem;
}

.productDetailListHeading .info select {
    border: solid 1px #eee;
    transition: border-color 0.5s;
    outline: none;
    font-size: 1.25rem;
    height: 2.5rem;
    background: white;
    width: 4rem;
    padding-inline: 0.5em;
}

.productDetailListHeading .info select:focus {
    border-color: #ccc;
}

.productDetailContent {
    margin-bottom: 3rem;
}

.productDetailImage {
    container-type: inline-size;
}

.productDetailImageContent {
    width: 80cqw !important;
    max-height: 80cqw !important;
}





@media (max-width: 52em) {

    .productDetailContent {
        margin-bottom: 1rem;
    }

    .productDetail {
        display: flex;
        flex-direction: column;
        margin-bottom: 3.5rem;
    }

    .productDetailContent {
        display: contents;
    }

    .productDetail .productDetailCode {
        order: -1;
        margin-bottom: 0.875rem;
    }

    .productDetail h1 {
        order: -2;
        font-size: 1.25rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .productDetail p {
        margin: 1rem 0 0;
    }

    .productDetailImage {
        padding: 3rem;
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc(var(--siteSpacing--01) * -1);
        margin-bottom: 2.5rem;
    }

    .productDetailInfo {
        display: flex;
        flex-direction: column;
        gap: 1em;
        padding: 1.25rem 0;
        margin-bottom: 0;
    }

    .productDetailInfo div:first-child {
        order: -4;
    }

    .productDetailInfo div:nth-child(2) {
        order: -2;
    }

    .productDetailInfo div:nth-child(3) {
        order: -1;
    }

    .productDetailInfo div:nth-child(4) {
        order: -3;
    }

    .installationGuideLink,
    .youtubeLink {
        padding-right: 2.2rem;
    }

    .installationGuideLink::before {
        width: 1.4rem;
        height: 1.4rem;
    }

    .youtubeLink::before {
        width: 1.6rem;
        height: 1.6rem;
    }

}

@media (min-width: 52em) and (max-width: 72em) {

    .productDetail {
        display: grid;
        grid-template-columns: 20rem 1fr;
        column-gap: 2.5rem;
    }

    .productDetailImage {
        aspect-ratio: 1 / 1;
    }

}

@media (min-width: 72em) and (max-width: 102em) {

    .productDetail {
        display: grid;
        grid-template-columns: 35rem 1fr;
        column-gap: 2.5rem;
    }

    .productDetailImage {
        aspect-ratio: 1 / 1;
    }

}

@media (min-width: 102em) {

    .productDetail {
        display: grid;
        grid-template-columns: 50rem 1fr;
        column-gap: 2.5rem;
    }

    .productDetailImage {
        aspect-ratio: 1 / 1;
    }

}
/* override image style to display PNG instead of SVG */
.productDetailImage .productDetailImageContent {
  object-fit: contain;
}

/* Part pages show uploaded photos: don't run them through the white line-art
   filter. The filter stays on the default placeholder (black line art), which
   gets .placeholderImage added by the image's onerror fallback. */
.productPartDetail .productDetailImage .productDetailImageContent {
  filter: none;
  background-color: #fff;
}

.productPartDetail .productDetailImage .productDetailImageContent.placeholderImage {
  filter: brightness(0) invert(1);
  background-color: transparent;
}

/* Long-form part description under the "Works with" note */
.productDetailDescription {
  margin-top: 1.5rem;
}

/* Replace "margin-top" with "padding-top" to fix the white gap on top of the parts list on the product page. */
.productDetailListHeading {
  margin-top: 0;
  padding-top: 1.75em;
}

/* new style for inventory dimension dropdown*/

.productDimension {
  margin: 1rem 0 0;
  align-items: center;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.productDimension select {
  border: solid 1px #ccc;
  background-color: #f5f5f5;
  padding: 0.25rem;
}

/* align product meta data vertically */
.productDetailInfoVertical {
  grid-template-columns: initial;
}

.productDetailInfo div {
  column-gap: 0.6rem;
}

.productDetailInfo dd {
  white-space: nowrap;
}

.tabcontent,
.partsList,
.suppliesList {
    background-color: #fdfdfd;
    padding-top: 1.75em;
}

.productDetailList ul {
    margin: 0;
    padding: 0 0 16rem;
    list-style-type: none;
    display: grid;
    gap: 1em;
}

.productDetailList ul li {
    border: solid 1px #eee;
    background-color: white;
    padding: 1.5rem 0.875rem 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;
}

.productDetailList ul li .image {
    max-width: 80%;
    pointer-events: none;
}

.productDetailList ul li .image .thumbnailImage {
    max-width: 100%;
}

.productDetailListContent {
    width: 100%;
    position: relative;
    min-height: 4.5rem;
    padding-top: clamp(1.5rem, 5vw, 2rem);
    margin-top: 2rem;
    padding-bottom: 1.25rem;
}

.productDetailListContent span {
    display: block;
}

.productDetailListContent span:first-child {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.productDetailListContent span:nth-child(2) {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.productDetailList {
    margin-top: 0.5em;
}

.genericOrderTools__outOfStock {
    display: grid;
    grid-template-columns: 2rem 7rem;
}


.genericOrderTools__update {
    display: grid;
    grid-template-columns: 2rem 2rem 2rem 6rem;
}

.genericOrderTools__outOfStock button,
.genericOrderTools__update button {
    transition: background-color 0.5s;
    cursor: pointer;
}

.genericOrderTools__amountInStock {
    font-size: 0.75rem;
    color: var(--color__green--01);
    margin-bottom: 0.25rem;
}

.genericOrderTools__amountInStock.outOfStock {
    color: #eb5757;
}

.genericOrderTools__info {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
    width: 100%;
}

.genericOrderTools__price {
    font-size: 1.125rem;
}

.genericOrderTools__update button:hover {
    background-color: #f4f4f4;
}

.genericOrderTools__amountInStock {
    grid-column: 1 / -1;
}

.genericOrderTools__quantityToAdd {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.genericOrderTools__addToCart {
    background-color: transparent;
    border: solid 1px #ccc;
    border-left: none;
}

.genericOrderTools__reduceQuantity,
.genericOrderTools__increaseQuantity {
    height: 2rem;
    width: 2rem;
    position: relative;
    background-color: transparent;
    border: solid 1px #ccc;
}

.genericOrderTools__reduceQuantity:disabled,
.genericOrderTools__increaseQuantity:disabled {
    cursor: default;
}

.genericOrderTools__reduceQuantity:disabled .icon--01,
.genericOrderTools__increaseQuantity:disabled .icon--01,
.genericOrderTools__increaseQuantity:disabled .icon--02 {
    opacity: 0.2;
}

.genericOrderTools__reduceQuantity .icon--01 {
    position: absolute;
    height: 2px;
    width: 0.75rem;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.genericOrderTools__increaseQuantity .icon--01,
.genericOrderTools__increaseQuantity .icon--02 {
    content: '';
    position: absolute;
    height: 2px;
    width: 1rem;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.genericOrderTools__increaseQuantity .icon--01 {
    height: 2px;
    width: 0.75rem;
}

.genericOrderTools__increaseQuantity .icon--02 {
    height: 0.75rem;
    width: 2px;
}

.genericOrderTools__notifyMe {
    grid-column: 1 / -1;
    background-color: transparent;
    border: solid 1px #ccc;
    height: 2rem;
    width: 9rem;
}

.getNotifiedMsg {
    font-size: 0.75rem;
    margin-top: 0.3rem;
    display: flex;
    gap: 0.1rem;
    display: none;
    color: #3d3d3d;
}

.genericOrderTools__notifyMe.notificationEnabled {
    background-color: whitesmoke;
    border: none;
    color: #717172;
}

.genericOrderTools__outOfStockString {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: #eb5757;
    margin-bottom: 0.25rem;
}

.productPartDetail.productDetail .getNotifiedMsg {
    display: flex !important;
}

.productPartDetail.productDetail .genericOrderTools__outOfStockString {
    font-size: 0.85rem;
}



@media (max-width: 45em) {

    .genericOrderTools__price {
        font-size: 0.875rem;
    }

    .productDetailListHeading {
        display: flex;
        flex-direction: column;
    }

    .productDetailListHeading .info,
    .productDetailListHeading .search {
        width: 100%;
    }

    .productDetailListHeading .search {
        order: -1;
    }

    .productDetailList ul {
        padding-bottom: 6rem;
    }

}







@media (max-width: 82em) {

    .productDetailList ul {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (min-width: 82em) and (max-width: 110em) {

    .productDetailList ul {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 110em) and (max-width: 140em) {

    .productDetailList ul {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (min-width: 140em) {

    .productDetailList ul {
        grid-template-columns: repeat(5, 1fr);
    }

}
.productDetailList ul li .image .thumbnailImage {
  max-height: 100%;
}

.productDetailList ul li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  text-decoration: none;
  width: 100%;
}

/* override image style to display PNG instead of SVG */

.productDetailList ul li .image {
  max-width: 100%;
  min-height: 230px;
  max-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productDetailList ul li .image object{
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
}

/* fix white bg color in customer account page */
.tabcontent {
  background-color: initial; /* Reset to initial background color */
}

.genericOrderTools__info {
  flex-wrap: wrap;
  gap: 0.2rem;
}

.genericOrderTools__quantityToAdd {
  border-left: none;
  border-right: none;
  text-align: center;
}
@media (max-width: 600px) {

  .genericOrderTools__reduceQuantity,
  .genericOrderTools__increaseQuantity {
      height: 1.5rem;
      width: 1.5rem;
  }

  .genericOrderTools__quantityToAdd {
    height: 1.5rem;
  }

  .genericOrderTools__update {
    grid-template-columns: 1.5rem 1.5rem 1.5rem 3.5rem;
  }

  .productDetailListContent {
    margin-top: 0.4rem;
    padding-bottom: 1rem;
  }

  .genericOrderTools__notifyMe {
    height: 1.5rem;
    width: 8rem;
  }
}

@media (max-width: 400px) {

  .productDetailList ul {
    gap: 0.3em;
  }

}
.breadcrumbs {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.breadcrumbs ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.breadcrumbs ol::marker {
    display: none;
}

.breadcrumbs ol li {
    color: #707070;
}

.breadcrumbs ol li a {
    color: #707070;
    text-decoration: none;
}

.breadcrumbs ol li a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li:not(:first-child) {
    position: relative;
    padding-left: 2.4rem;
}

.breadcrumbs ol li:not(:first-child)::before {
    position: absolute;
    content: '/';
    left: 0.4em;
    top: 0;
    display: block;
}

.breadcrumbs ol li:last-child {
    color: black;
}




@media (max-width: 52em) {

    .breadcrumbs {
        margin-top: 0.75rem;
    }

    /* Hide back icon in mobile */
    /* .breadcrumbs ol li:first-child {
        background: url(/assets/core/chevron-left-gray-d8887e1f5dbfcf147cb916b7c1652cf0c06add74181dab201c0375a64c3031e5.svg) no-repeat left -0.5em center;
        padding-left: 1.2rem;
    } */

    .breadcrumbs ol li:last-child {
        display: none;
    }

}
.productPartDetail.productDetail h1 {
    margin-bottom: 1.5rem;
}

.productPartDetail.productDetail .productDetailContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partDetailPrice {
    font-size: 2rem;
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.productPartDetail.productDetail .genericOrderTools__info {
    display: block !important;
}

.productPartDetail.productDetail .productDetailInfo {
    border-bottom: none;
}



@media (max-width: 52em) {

    .productPartDetail.productDetail .productDetailContent,
    .productPartDetail.productDetail .topSection {
        display: contents;
    }

}
.partDetailPrice {
  margin-top: clamp(1.5rem, 3vw, 1rem); /* prevent add btn overlap when 'works with' list is long */
  margin-bottom: 1rem; /* add gap between price and add btn */
}
.content__inner--grey {
    background-color: #eee;
}

.cart h1 {
    font-size: var(--largeHeaderSize);
    color: var(--color__darkGrey--01);
    margin: 4rem 0 1rem;
}

.cartListItem .genericOrderTools__quantityToAdd {
    height: 2rem;
}

.cart .genericOrderTools__update {
    grid-template-columns: 2rem 2rem 2rem 3rem;
}

.genericOrderTools__trash {
    height: 2rem;
    width: 2rem;
    margin-left: 1rem;
    border: solid 1px #ccc;
    display: flex;
    align-items: center;
    transition: background-color 0.5s;
    background-color: transparent;
    cursor: pointer;
}

.genericOrderTools__trash:hover {
    background-color: #f4f4f4;
}

.genericOrderTools__trashIcon {
    height: 1.3rem;
    width: 1.3rem;
    pointer-events: none;
}

.cart .cartContent {
    display: grid;
    grid-template-columns: 1fr 40rem;
    gap: 1em;
    margin-bottom: 4rem;
}

.cartList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cartListItem .info {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    align-content: start;
    grid-template-rows: auto auto 1fr;
}

.cartListItem {
    background-color: white;
    border: solid 1px #ccc;
    display: grid;
    grid-template-columns: 14rem 1fr;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    gap: 2.5em;
}

.cartListItem:not(:first-child) {
    margin-top: 0.25rem;
}

.cart .thumbnail {
    background-color: var(--color__darkBlue--02);
    width: 14rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .thumbnail .image {
    max-width: 11rem;
    max-height: 7rem;
}

.cart .controls {
    display: flex;
    justify-content: end;
    align-items: end;
}

.cart .price {
    display: flex;
    align-items: end;
    font-size: 1.5rem;
}

.cart .infoTitle {
    font-size: 1.1rem;
    margin: 0.35rem 0 0.5rem;
    grid-column: 1 / -1;
    font-weight: normal;
}

.cartListItem dl {
    display: flex;
    color: #707070;
    grid-column: 1 / -1;
    margin: 0;
}

.cartListItem dl dt {
    text-transform: uppercase;
}

.payments img {
    border-radius: 0.375rem;
}

.payments .logo.border {
    position: relative;
}

.payments .logo.border::after {
    position: absolute;
    inset: 0;
    content: '';
    box-shadow:inset 0px 0px 0px 1px #ccc;
    border-radius: 0.375rem;
}

.cart .additionalSteps {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 1rem;
}

.cart .additionalSteps li {
    background-color: #f2f2f2;
    border: solid 1px #ccc;
    padding: 1rem 1.5rem;
    color: #888;
}

.cart .additionalSteps li:not(:first-child) {
    margin-top: 0.25rem;
}



.orderSummary {
    background-color: white;
    border: solid 1px #ccc;
    padding: 2rem 3rem;
    position: relative;
}

.orderSummary .title {
    font-size: 1.875rem;
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.orderSummary .items {
    margin: 0;
}

.orderSummary .item {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    color: #6e6e6e;
    margin-top: 0.5rem;
}

.orderSummary .item:last-child {
    font-size: 2.125rem;
    color: black;
    margin-top: 2.75rem;
    font-weight: 600;
}

.orderSummary .subMessage {
    color: #6e6e6e;
    margin: 0.25rem 0 0.5rem;
}

.orderSummary .checkout {
    background-color: black;
    color: white;
    transition: opacity 0.5s;
    padding: 1rem;
    text-align: center;
    width: 100%;
    font-size: 1.25rem;
    margin: 1rem 0 1.5rem;
    cursor: pointer;
    border: none;
}

.orderSummary .checkout:hover {
    opacity: 0.6;
}

.orderSummary .payments {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.75rem;
    margin-bottom: 1rem;
}

.orderSummary .paymentsTitle {
    min-width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.orderSummary .logo {
    width: 4rem;
    display: flex;
}

.orderSummary .logo img {
    width: 100%;
}

.cart .genericOrderTools__closeIcon,
.clearCart,
.priceMobileBreakdown {
    display: none;
}

.cart .genericOrderTools__closeIcon,
.cart .genericOrderTools__trashIcon {
    pointer-events: none;
}

.cart .genericOrderTools__trash {
    display: flex;
    padding: 0;
    align-content: center;
    justify-content: center;
}






@media (max-width: 100em) {

    .cart .cartContent {
        grid-template-columns: 1fr 32rem;
    }

    .cart .orderSummary {
        padding-left: 2rem;
        padding-right: 2rem;
    }

}





@media (max-width: 75em) {
    
    .cart {
        position: relative;
    }

    .clearCart {
        display: block;
        position: absolute;
        right: -0.5rem;
        top: -0.2em;
        color: #334dcd;
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .clearCart:hover {
        text-decoration: underline;
    }

    .content__inner--grey {
        background-color: white;
    }

    .cart .cartContent {
        display: block;
        margin-bottom: 0;
    }

    .cart h1 {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

    .cartListItem {
        border: none;
        border-top: solid 1px #ccc;
        padding-left: 0;
        padding-right: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        margin-top: 0 !important;
        grid-template-columns: 6.6rem 1fr;
        gap: 0.75rem;
        align-items: start;
        position: relative;
    }

    .cartListItem .price,
    .cartListItem .controls {
        grid-row: 4;
    }

    .cartListItem .price {
        order: 5;
        text-align: right;
        position: relative;
        display: block;
        font-size: 1.25rem;
        margin-top: 0.4rem;
        padding-left: 4rem;
    }

    .cartListItem .priceMobileBreakdown {
        display: block;
        position: absolute;
        left: 0;
        top: 0.3rem;
        font-size: 0.875rem;
        color: #707070;
    }

    .cartListItem .priceMobileBreakdown em {
        font-size: 80%;
        font-style: normal;
    }

    .cartListItem .genericOrderTools__update {
        grid-template-columns: 2.2rem 2.2rem 2.2rem;
    }

    .cart .genericOrderTools__trashIcon {
        display: none;
    }

    .cart .genericOrderTools__closeIcon {
        display: block;
    }

    .cartListItem .genericOrderTools__trash {
        position: absolute;
        margin: 0;
        right: 0;
        top: 0.25rem;
        border: none;
        opacity: 0.2;
        transition: opacity 0.5s;
        cursor: pointer;
    }

    .cartListItem .genericOrderTools__trash:hover {
        opacity: 0.1;
        background-color: transparent;
    }

    .cartListItem .genericOrderTools__reduceQuantity,
    .cartListItem .genericOrderTools__quantityToAdd,
    .cartListItem .genericOrderTools__increaseQuantity {
        width: 2.2rem;
        height: 2.2rem;
    }

    .cartListItem .thumbnail {
        width: 6.6rem;
        height: 6.6rem;
        grid-row: 1 / 4;
    }

    .cartListItem dl {
        order: -1;
        grid-column: 2;
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    .cartListItem dl dd {
        margin-left: 0.75rem;
    }

    .cartListItem .thumbnail .image {
        max-width: 5rem;
        max-height: 5rem;
    }

    .cartListItem .info {
        display: contents;
    }

    .cartListItem .infoTitle {
        grid-column: 2;
        font-size: 0.875rem;
        margin-top: -0.35rem;
    }

    .additionalSteps {
        display: none;
    }

    .cart .orderSummary {
        border: none;
        border-top: solid 1px #ccc;
        padding-left: 0;
        padding-right: 0;
    }

    .cart .orderSummary .title {
        font-size: 1.25rem;
    }

    .cart .orderSummary .item {
        font-size: 1rem;
    }

    .cart .orderSummary .item:last-child {
        font-size: 1.25rem;
    }

    .cart .orderSummary .payments .logo {
        width: 14.5vw;
        max-width: 4rem;
    }

    .cart .orderSummary .paymentsTitle {
        font-size: 0.875rem;
    }

}
/* invert the black image to white */
.cart .thumbnail .image {
  filter: brightness(0) invert(1);
}

/* checkout button is now replaced with anchor tag  */
.orderSummary .checkout {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

/* make line items in cart clickable*/
.cartListItem .info a {
  text-decoration: none;
  color: black;
}

.orderSummary .checkout:disabled {
  opacity: 0.3;
}

.genericOrderTools__quantityToAdd.invalidQuantity{
  background-color: #f3949420;
  color: #d83333;
}

.cartError {
  color: #ed5757;
  margin-top: -1rem;
  font-size: 1rem;
  padding: 10px 16px;
  background-color: #ed575720;
  grid-column: 1 / -1;
}

.cartError p {
  font-size: 0.9rem;
  margin: 0.35rem 0 0.5rem;
  grid-column: 1 / -1;
  font-weight: normal;
}

@media (max-width: 75em) {
  .cartError {
    grid-row: 6;
  } 
}
.clearCartOverlay {
    display: none;
    z-index: 10;
}

.clearCartOverlay.show {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--mainNavHeight--01);
    background-color: white;
}

.closeClearCart {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    transition: opacity 0.5s;
    opacity: 0.4;
    cursor: pointer;
}

.closeClearCart:hover {
    opacity: 0.2;
}

.closeClearCartIcon {
    width: 1.5em;
    height: 1.5em;
    pointer-events: none;
}

.clearCartControls {
    position: absolute;
    bottom: 2rem;
    left: var(--siteSpacing--01);
    right: var(--siteSpacing--01);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}

.clearCartControls button {
    font-size: 1rem;
    padding: 1em 0;
    cursor: pointer;

}

.clearCartControls .cancel {
    border: solid 1px #ccc;
    background-color: transparent;
    transition: background-color 0.5s;
}

.clearCartControls .cancel:hover {
    background-color: #f1f1f1;
}

.clearCartControls .clear {
    background-color: black;
    transition: opacity 0.5s;
    color: white;
}

.clearCartControls .clear:hover {
    opacity: 0.6;
}

.clearCartOverlay .message {
    font-size: 1.25rem;
    color: black;
    margin-inline: var(--siteSpacing--01);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.clearCartOverlay .subMessage {
    color: #707070;
    margin-inline: var(--siteSpacing--01);
}

.noCartItemsMessage {
    margin-top: 5rem;
    text-align: center;
    grid-column: 1 / -1;
    min-height: 20rem;
}

.noCartItemsMessage .message {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2.5vw, 2rem);
}

.noCartItemsMessage .subMessage {
    color: var(--color__blue--01);
    text-decoration: none;
    transition: opacity 0.5s;
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.noCartItemsMessage .subMessage:hover {
    opacity: 0.5;
}
.itemsFooter {
    position: relative;
}

.itemsFooter .amountPerPage {
    position: absolute;
    left: 0;
    top: -10rem;
    color: #696969;
}

.itemsFooter .amountPerPage select {
    border: solid 1px #ccc;
    background-color: #f5f5f5;
    padding: 0.25rem;
    margin-left: 0.5rem;
}

.itemsFooter .pager {
    position: absolute;
    right: 0;
    top: -12rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itemsFooter .pager .next object {
    rotate: 180deg;
}

.itemsFooter .pager object {
    pointer-events: none;
    max-width: 2.5rem;
}

.itemsFooter .pager button {
    height: 1.5rem;
    width: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.5s;
    font-size: 1rem;
}

.itemsFooter .pager button:hover {
    opacity: 0.5;
}

.itemsFooter .pager .number {
    border: none;
    background-color: transparent;
}

.itemsFooter .pager .next,
.itemsFooter .pager .previous {
    background-color: transparent;
    border: none;
}

.itemsFooter .pager button.selected {
    background-color: var(--color__blue--01);
    color: white;
    opacity: 1;
    cursor: default;
}




@media (max-width: 62em) {

    .itemsFooter .amountPerPage {
        display: none;
    }

}

@media (max-width: 45em) {

    .itemsFooter .amountPerPage,
    .itemsFooter .pager {
        top: -4rem;
    }

    .itemsFooter .pager {
        right: 0;
        justify-content: center;
    }

    .itemsFooter .info {
        display: none;
    }

}
/* change pagination buttons to a tags */
.itemsFooter .pager a {
  height: 1.5rem;
  width: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.5s;
  font-size: 1rem;
  text-decoration: none;
  color: black;
}

.itemsFooter .pager a:hover {
  opacity: 0.5;
}

.itemsFooter .pager a.selected {
  background-color: var(--color__blue--01);
  color: white;
  opacity: 1;
  cursor: default;
}

.orders .itemsFooter .pager {
  top: 1rem;
  padding-top: 1rem;
}

.orders .itemsFooter {
  height: 1rem;
}

.orders .itemsFooter .amountPerPage {
  top: 1rem
}
.cart .sidebar .edit {
    color: #6e6e6e;
    position: absolute;
    right: 3rem;
    top: 2.7rem;
    text-decoration: none;
}

.cart .sidebar .edit:hover {
    text-decoration: underline;
}

.checkoutItems {
    position: relative;
    padding-top: 1.25rem;
}

.checkoutItems::before {
    content: '';
    display: block;
    left: -3rem;
    right: -3rem;
    top: 0;
    height: 1px;
    border-top: solid 1px #eee;
    position: absolute;
}

.checkoutItems .item.subtotal {
    position: relative;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.checkoutItems .item.subtotal::before {
    content: '';
    display: block;
    left: -3rem;
    right: -3rem;
    top: 0;
    height: 1px;
    border-top: solid 1px #eee;
    position: absolute;
}

.checkoutItems .item:last-child {
    margin-top: 0.25rem;
}



.main .deliveryAddress {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.deliveryAddress .signIn {
    background-color: #f5f5f7;
    border: solid 1px #d9d9d9;
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.deliveryAddress .signIn button {
    background-color: white;
    border: solid 1px #dedede;
    width: 13vw;
    font-size: 1.25rem;
    height: 3rem;
    cursor: pointer;
    transition: background-color 0.5s;
}

.deliveryAddress .signIn button:hover {
    background-color: #f9f9f9;
}

.deliveryAddress .signIn .subtitle {
    grid-column: 1;
}

.deliveryAddress .checkoutAsGuest,
.deliveryAddress .addressForm {
    background: white;
    border: solid 1px #d9d9d9;
    padding: 2rem 3rem;
}

.deliveryAddress .title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.deliveryAddress .checkoutAsGuest input[type="text"] {
    width: 100%;
    max-width: 40rem;
}

.deliveryAddress .checkoutAsGuest .signUp {
    margin-top: 1.25rem;
    font-size: 0.875rem;
}

.deliveryAddress .checkoutAsGuest .signUp,
.deliveryAddress .checkoutAsGuest .signUp a {
    color: #6e6e6e;
}

.deliveryAddress .addressForm .addressFormContent {
    max-width: 40rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.deliveryAddress .addressForm input {
    display: block;
    width: 100%;
}

.deliveryAddress .addressForm .title,
.deliveryAddress .addressForm .state,
.deliveryAddress .addressForm .city,
.deliveryAddress .addressForm .postalCode,
.deliveryAddress .addressForm .street {
    grid-column: 1 / -1;
}

.deliveryAddress .addressForm .street .street2 {
    margin-top: 0.25rem;
}

.deliveryAddress .addressForm select {
    width: 100%;
}

.deliveryAddress .addressForm button {
    background-color: black;
    color: white;
    font-size: 1.25rem;
    width: 100%;
    padding: 0.7rem;
    transition: opacity 0.5s;
    grid-column: 1 / -1;
    cursor: pointer;
    border: none;
    outline: none;
}

.deliveryAddress .addressForm button:hover {
    opacity: 0.5;
}

.deliveryAddress .signIn .mobileText {
    display: none;
}

/* Steps */
.checkoutSteps {
    display: none;
    margin-bottom: 1em;
}

.checkoutSteps .label {
    display: block;
    text-align: right;
    grid-column: 1 / -1;
    color: #707070;
}

.checkoutSteps .steps {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.5em;
}

.checkoutSteps .steps div {
    height: 0.35rem;
    background-color: #d9d9d9;
    flex: 1;
}

.checkoutSteps .steps .current {
    background-color: var(--color__blue--01);
}

.checkoutSteps .steps .done {
    background-color: var(--color__blue--01);
    opacity: 0.6;
}





@media (max-width: 100em) {

    .checkoutItems::before,
    .checkoutItems .item.subtotal::before {
        left: -2rem;
        right: -2rem;
    }

    .cart .sidebar .edit {
        right: 2rem;
    }

}




@media (max-width: 75em) {

    .deliveryAddress .signIn {
        display: block;
        padding-block: 1.5rem;
    }

    .deliveryAddress .signIn .mobileText {
        display: block;
    }

    .deliveryAddress .signIn .subtitle,
    .deliveryAddress .signIn .desktopText {
        display: none;
    }

    .deliveryAddress .signIn button {
        background-color: transparent;
        border: none;
        outline: none;
        color: var(--color__blue--01);
        width: auto;
        height: auto;
        padding: 0.5rem;
        margin-left: -0.5rem;
        margin-bottom: -1rem;
        margin-top: -0.5rem;
        font-size: 0.875rem;
    }

    .sidebar.checkout {
        display: none;
    }

    .checkoutSteps {
        display: block;
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) - 12px) * -1);

        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);
    }

    .main .deliveryAddress {
        gap: 0;
    }

    .deliveryAddress .signIn,
    .deliveryAddress .addressForm,
    .deliveryAddress .checkoutAsGuest {
        margin-left: calc(var(--siteSpacing--01) * -1);
        margin-right: calc((var(--siteSpacing--01) - 12px) * -1);

        padding-left: var(--siteSpacing--01);
        padding-right: calc(var(--siteSpacing--01) - 12px);
        border: none;
    }

    .deliveryAddress .addressForm,
    .deliveryAddress .checkoutAsGuest {
        background-color: #fdfdfd;
    }

    .checkoutAsGuest .signUp {
        padding-left: 1.7em;
    }

    .checkoutAsGuest .signUp label {
        margin-left: -1.7em;
    }

    .deliveryAddress .addressForm button {
        font-size: 0.875rem;
    }

}
/* Address submit button changed to form input */
.deliveryAddress .addressForm .inputSubmit {
  background-color: black;
  color: white;
  font-size: 1.25rem;
  width: 100%;
  padding: 0.7rem;
  transition: opacity 0.5s;
  grid-column: 1 / -1;
  cursor: pointer;
  border: none;
  outline: none;
}

.deliveryAddress .addressForm .inputSubmit:hover {
  opacity: 0.5;
}

.deliveryAddress .addressForm .fullName {
  grid-column: 1 / -1;
}

/*----to fix the save address checkbox style----*/

  .deliveryAddress .addressForm input {
    display: inline;
    /* width: auto; */
  }

  .deliveryAddress .addressForm input[type="text"] {
    display: block;
    width: 100%;
  }

/*---------------------------------------------*/


@media (max-width: 75em) {
  /* Address submit button changed to form input */
  .deliveryAddress .addressForm .inputSubmit {
    font-size: 0.875rem;
  }
}
.formLabel {
    display: block;
    margin-bottom: 0.5rem;
}

.formTextInput {
    height: 2.8125rem;
    padding-inline: 0.8rem;
    font-size: 1rem;
    border: solid 1px #ddd;
    outline: none;
}

.formTextInput.error {
    border: solid 1px var(--color__red--01);
}

.formTextInput:focus {
    border-color: #aaa;
}

.formValidation {
    color: var(--color__red--01);
    margin: 0.5em 0 1em;
    font-size: 0.875rem;
}

.fullWidthFormField {
    width: 100%;
}





@media (max-width: 75em) {

    .formLabel {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .formTextInput {
        height: 2.5rem;
        font-size: 0.875rem;
    }

}
/* style error fields in form by targeting the .field_with_errors class added by rails when errors occur. */

.field_with_errors input{
  border: solid 1px var(--color__red--01);
}

/* remove unnecessary bottom margin from form error msg */
.formValidation {
  margin: 0.5em 0 -1em;
}

.formNotice {
  color: #13a4e7;
  margin-top: -1rem;
  font-size: 1rem;
  padding: 10px 16px;
  background-color: #039bdc20;
}

.deliveryAddress .addressForm .street {
  position: relative;
}
.popupOverlay {
    inset: 0;
    position: absolute;
    z-index: 20;
}

.popupOverlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.4;
}

.popupOverlay .popupContent {
    background: #f8f8f8;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 32em;
    padding: 3rem;
}

.popupOverlay .popupContent.wideLayout {
    width: min(90vw, 50rem);
}

.popupOverlay .popupTitle {
    margin: 0;
    text-align: center;
    font-size: 1.875rem;
    font-weight: normal;
}

.popupOverlay .popupTitle.leftAligned {
    text-align: left;
}

.popupOverlay .popupSubTitle {
    font-size: 1rem;
    font-weight: normal;
    color: #707070;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.popupOverlay .popupFormField {
    margin: 1em 0;
}

.popupOverlay .popupFormField input {
    width: 100%;
}

.popupOverlay .popupClose {
    position: absolute;
    right: 1em;
    top: 1em;
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 0.5s;
    opacity: 0.6;
}

.popupOverlay .popupClose:hover {
    opacity: 0.3;
}

.popupOverlay .popupFormCheckbox {
    color: #6e6e6e;
    font-size: 0.875rem;
}

.popupOverlay .popupFormCheckbox input {
    translate: 0 0.1em;
}

.popupSignUp {
    position: relative;
}

.popupSignUp::before {
    position: absolute;
    content: '';
    left: -3rem;
    right: -3rem;
    height: 1px;
    border-top: solid 1px #ccc;
}

.popupFormField--password {
    position: relative;
}

.popupFormField--password .showPassword {
    position: absolute;
    right: 0.5em;
    top: 2.9em;
    background-color: transparent;
    padding: 0 0.5em;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 0.5s;
}

.popupFormField--password .showPassword:hover {
    opacity: 0.5;
}

.popupFormField--password .showPassword object {
    width: 1.8em;
    pointer-events: none;
}

.popupCloseIcon {
    width: 1.5em;
    height: 1.5em;
    pointer-events: none;
}

.popupSignIn {
    background: black;
    color: white;
    padding: 1em;
    text-align: center;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    transition: opacity 0.5s;
    cursor: pointer;
    margin: 1.5em 0 2em;
}

.popupFooter {
    display: flex;
    gap: 0.75rem;
}

.popupCancel,
.popupSubmit {
    border: solid 1px black;
    flex: 1;
    padding-block: 1rem;
    font-family: var(--fontMont);
    font-size: clamp(1rem, 2vw, 1.25rem);
    cursor: pointer;
}

.popupCancel {
    background-color: transparent;
    color: black;
    transition: background-color 0.5s;
}

.popupCancel:hover {
    background-color: #eee;
}

.popupSubmit {
    background-color: black;
    transition: opacity 0.5s;
    color: white;
}

.popupSubmit:hover {
    opacity: 0.5;
}

.popupSignIn:hover {
    opacity: 0.5;
}

.popupOverlay .popupTitle--signIn {
    padding-top: 2rem;
}

.popupSubTitle--centered {
    text-align: center;
}

.popupCreate {
    font-size: 1rem;
    background: white;
    border: solid 1px #ccc;
    transition: background-color 0.5s;
    color: #333;
    padding: 1em;
    width: 100%;
    cursor: pointer;
}

.popupCreate:hover {
    background: #f1f1f1;
}

.popupFormField--password .forgotPassword {
    position: absolute;
    right: 0;
    top: -0.5em;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #6e6e6e;
    padding: 0.5em 0;
    transition: opacity 0.5s;
    cursor: pointer;
}

.popupFormField--password .forgotPassword:hover {
    opacity: 0.5;
}

.mainBanner {
    background-color: var(--color__darkBlue--01);
    color: white;
    display: grid;
    grid-template-columns: 3fr 2fr;
    padding: 1rem;
    padding-inline: var(--siteSpacing--01);
}

.mainBanner p {
    text-align: center;
    padding-right: 2rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.mainBanner .button {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainBanner button {
    color: #272627;
    font-size: 0.875rem;
    min-width: 18rem;
    background-color: white;
    padding: 0.75rem 1rem;
}

.popupBackIcon {
    display: none;
}

.popupOverlay.popupNotAttachedInMobile {
    z-index: 200;
}

.popupHeaderIcon {
    width: 3.5rem;
    height: 3.5rem;
    position: relative;
    margin: -1rem auto 1rem;
}

.popupHeaderIcon::before {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    content: '';
    opacity: 0.1;
}

.popupHeaderIcon.success::before {
    background-color: #039BDC;
}

.popupHeaderIcon.failed::before {
    background-color: #ed5757;
}

.popupHeaderIcon .popupHeaderIconContent {
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    position: absolute;
}

.popupPaymentInfo {
    position: relative;
    margin-top: 1.25rem;
    padding-top: 1.2rem;
}

.popupPaymentInfo::before {
    content: '';
    height: 1px;
    position: absolute;
    left: -3rem;
    right: -3rem;
    top: 0;
    border-top: solid 1px #ccc;
}

.popupPaymentInfoItem {
    display: flex;
    justify-content: space-between;
    font-size: clamp(1rem, 3vw, 1.125rem);
    margin-top: 0.75rem;
    position: relative;
}

.popupPaymentInfoItem dt {
    color: #707070;
}

.popupPaymentInfoItem.borderAbove {
    padding-top: 0.75rem;
}

.popupPaymentInfoItem.borderAbove::before {
    content: '';
    position: absolute;
    left: -3rem;
    right: -3rem;
    height: 1px;
    border-top: dotted 1px #ccc;
    top: 0;
}

.popupPaymentInfoItem:last-child {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
}

.popupPaymentInfoItem:last-child dd {
    font-weight: bold;
}

.popupPaymentActions {
    /* display: grid; */ /* TO HIDE PDF INVOICE BUTTON FOR NOW */
    /* grid-template-columns: 1fr 1fr; */ /* TO HIDE PDF INVOICE BUTTON FOR NOW */
    /* gap: 1em; */ /* TO HIDE PDF INVOICE BUTTON FOR NOW */
    margin-top: 2rem; /* TO HIDE PDF INVOICE BUTTON FOR NOW */
}

.popupPaymentActions button {
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    background-color: white;
    transition: background-color 0.5s;
    border: solid 1px #ccc;
    cursor: pointer;
    outline: none;
}

.popupPaymentActions button:hover {
    background-color: #f1f1f1;
}

.getPdfReceipt {
    position: relative;
    padding-left: 2rem;
}

.getPdfReceipt object {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    translate: 0 -50%;
}

.popupPaymentActions .popupActionButton {
    background-color: black;
    color: white;
    transition: opacity 0.5s;
    border: none;
}

.popupPaymentActions .popupActionButton:hover {
    background-color: black;
    opacity: 0.7;
}

.popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .anchoredButtonsScrollContainer {
    padding-bottom: 2rem;
}

@media (max-width: 75em) {

  .popupFormField--password .showPassword {
    top: 2.15em;
  }

}

@media (max-width: 42em) {

    .popupPaymentInfo::before,
    .popupPaymentInfoItem.borderAbove::before {
        left: 0;
        right: 0;
    }

    .mainBanner {
        display: flex;
        flex-wrap: wrap;
    }

    .mainBanner p {
        text-align: left;
        padding: 0;
        margin-top: 0.5rem;
    }

    .mainBanner p,
    .mainBanner .button {
        min-width: 100%;
    }

    .mainBanner button {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .popupOverlay:not(.popupNotAttachedInMobile) {
        inset: var(--mainNavHeight--01) 0 0;
    }

    .popupOverlay:not(.popupNotAttachedInMobile)::before {
        display: none;
    }

    .popupOverlay:not(.popupNotAttachedInMobile) .popupContent {
        translate: 0 0;
        inset: 0;
        width: auto;
        padding: 4rem 1.25rem 0 1.6rem;
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom {
        background-color: #f8f8f8;
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .popupContent {
        overflow: visible;
        padding: 0;
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .popupContent .popupFooter {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding-left: 1.6rem;
        padding-right: 1.5rem;
        padding-block: 1.25rem;
        height: 6rem;
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .anchoredButtonsScrollContainer {
        overflow-y: scroll;
        position: absolute;
        padding: 4rem 1.25rem 2rem 1.6rem;
        inset: 0 0 6em 0;
        overflow-y: scroll;
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .anchoredButtonsScrollContainer::-webkit-scrollbar,
    .popupOverlay:not(.popupNotAttachedInMobile) .popupContent::-webkit-scrollbar {
        width: 8px;               /* width of the entire scrollbar */
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .anchoredButtonsScrollContainer::-webkit-scrollbar-track,
    .popupOverlay:not(.popupNotAttachedInMobile) .popupContent::-webkit-scrollbar-track {
        background: transparent;        /* color of the tracking area */
    }

    .popupOverlay:not(.popupNotAttachedInMobile).actionButtonsAnchoredBottom .anchoredButtonsScrollContainer::-webkit-scrollbar-thumb,
    .popupOverlay:not(.popupNotAttachedInMobile) .popupContent::-webkit-scrollbar-thumb {
        background-color: #999;    /* color of the scroll thumb */
        border-radius: 20px;       /* roundness of the scroll thumb */
    }

    .popupOverlay:not(.popupNotAttachedInMobile) .popupTitle:not(.centered) {
        font-size: 1.25rem;
        text-align: left;
    }

    .popupOverlay:not(.popupNotAttachedInMobile) .popupSubTitle:not(.centered) {
        text-align: left !important;
    }

    .popupSignUp::before {
        left: 0;
        right: 0;
    }

    .popupOverlay .popupClose {
        opacity: 1;
        right: auto;
        left: 1em;
    }

    .popupOverlay .popupClose:hover {
        opacity: 0.5;
    }

    .popupCloseIcon {
        display: none;
    }

    .popupBackIcon {
        display: block;
        pointer-events: none;
        width: 2.5em;
    }

}




@media (min-width: 42em) {

    .popupOverlay {
        z-index: 200;
    }

    .popupOverlay .desktopScroll {
        max-height: calc(95vh - 24rem);
        overflow-y: scroll;
        margin-right: -2.5rem;
        padding-right: 2.5rem;
        position: relative;
    }

    .popupOverlay .desktopScroll::-webkit-scrollbar,
    .popupOverlay .desktopScroll::-webkit-scrollbar {
        width: 8px;               /* width of the entire scrollbar */
    }

    .popupOverlay .desktopScroll::-webkit-scrollbar-track,
    .popupOverlay .desktopScroll::-webkit-scrollbar-track {
        background: transparent;        /* color of the tracking area */
    }

    .popupOverlay .desktopScroll::-webkit-scrollbar-thumb,
    .popupOverlay .desktopScroll::-webkit-scrollbar-thumb {
        background-color: #999;    /* color of the scroll thumb */
        border-radius: 20px;       /* roundness of the scroll thumb */
    }

}
/* style to add a new bigger subtitle for modal*/

.popupOverlay .popupSubTitleBig {
  font-size: 1.5rem;
  font-weight: normal;
  color: #707070;
  margin-top: 1.75rem;
  line-height: 1.5;
}

.popupOverlay .popupHeader {
  display: flex;
  justify-content: space-between;
}
.checkoutPayment,
.readOnlyAddress,
.deliveryOptions {
    background-color: white;
    border: solid 1px #d9d9d9;
    padding: 2rem 3rem;
    position: relative;
}

.deliveryOptions {
    margin-top: 1rem;
}

.addressDisplay span {
    display: block;
}

.addressDisplay span:first-child {
    margin-top: 1.5rem;
}

.addressDisplay span:not(:last-child) {
    margin-bottom: 0.7rem;
}

.checkoutChange {
    position: absolute;
    right: 3rem;
    top: 2rem;
    color: #6e6e6e;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    transition: opacity 0.5s;
    cursor: pointer;
}

.checkoutChange:hover {
    opacity: 0.5;
}

.deliveryOption:not(:first-child) {
    margin-top: 1rem;
}

.deliveryOptions {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
}

.deliveryOptions .title {
    grid-column: 1 / -1;
    font-size: 1.25rem;
    margin: 0 0 1.75rem;
}

.deliveryOptions {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.4rem 1.5rem;
    align-items: baseline;
}

.deliveryOptions label {
    display: contents;
}

.deliveryOptions label .deliveryOptionHeading {
    color: #666;
    font-weight: bold;
}

.deliveryOptions label .deliveryOptionSubHeading {
    grid-column: 3;
    color: #666;
    margin-bottom: 0.75rem;
    font-size: clamp(0.875rem, 3vw, 1rem);
}

.deliveryOptions label .deliveryOptionPrice {
    font-size: clamp(1rem, 3vw, 1.125rem);
    font-weight: bold;
    color: black;
}

.checkoutPayment {
    margin-top: 1rem;
}

.checkoutPayment .title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

/** Remove billing address from choose payment type
.paymentType {
    position: relative;
    margin-top: 3rem;
}

.paymentType .title::before {
    position: absolute;
    left: -3rem;
    right: -3rem;
    height: 1px;
    border-top: solid 1px #d9d9d9;
    content: '';
    top: -1.5rem;
}
*/

.paymentType .checkout:hover {
    opacity: 0.6;
}

.paymentType .payments {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.75rem;
    margin-bottom: 1rem;
}

.paymentType .paymentsTitle {
    min-width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.paymentType .logo {
    width: 4rem;
    display: flex;
}

.paymentType .logo img {
    width: 100%;
}

.paymentTypeDetails .or {
    text-align: center;
    margin-block: 0.5rem;
}

.paymentTypeDetails {
    max-width: 30rem;
}

.paymentTypeDetails a.addCard,
.paymentTypeDetails .paypal {
    display: block;
    text-align: center;
    border: solid 1px #333;
    transition: background-color 0.5s;
    background-color: white;
    cursor: pointer;
    width: 100%;
    position: relative;
    padding: 0.75rem 1rem;
    font-family: var(--fontMont);
    font-size: 1rem;
    text-decoration: none; /* This is to remove the default underline of anchor tags */
    color: var(--color__darkGrey--01);
}

.paymentTypeDetails a.addCard:hover,
.paymentTypeDetails .paypal:hover {
    background-color: #f5f5f5;
}

.paymentTypeDetails .paypal img {
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 3rem;
    border-radius: 0.5rem;
    border: solid 1px #ccc;
    translate: 0 -50%;
    pointer-events: none;
}

.paymentTypeDetails .buyNow {
    background-color: black;
    color: white;
    font-size: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: opacity 0.5s;
}

.paymentTypeDetails .buyNow:hover {
    opacity: 0.5;
}

.paymentTypeDetails .buyNow:disabled{
    opacity: 0.5;
}

.addressDisplay .boldTitle {
    font-weight: bold;
    color: #333;
}




.popupProcessing {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

.popupProcessing__dot {
    animation: dot ease-in-out 1s infinite;
    background-color: lightblue;
    display: inline-block;
    height: 1rem;
    margin: 0.4rem;
    width: 1rem;
    border-radius: 50%;
}

.popupProcessing__dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.popupProcessing__dot:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes dot {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.popupSubTitle.centered {
    text-align: center !important;
    margin-bottom: 0;
}

.popupCloseAlways {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.5em;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 0.5s;
    opacity: 0.6;
}

.popupCloseAlways:hover {
    opacity: 0.3;
}

.popupCloseAlwaysIcon {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}



@media (max-width: 42rem) {

    .popupCloseAlways {
        right: 0.5rem;
    }

}




@media (max-width: 75rem) {

    .deliveryAddress .readOnlyAddress {
        border: none;
        border-top: solid 1px #d9d9d9;
        margin-top: 1rem;
        padding-inline: 0;
    }

    .deliveryOptions {
        border: none;
        border-top: solid 1px #d9d9d9;
        padding-inline: 0;
    }

    .checkoutPayment {
        padding-inline: 0;
        border: none;
        border-top: solid 1px #d9d9d9;
    }

}

@media (max-width: 500px) {
  .checkoutChange {
    right: 1rem;
  }

  .checkoutPayment .title {
    padding-right: 4rem;
  }
}
.accountHeading {
    font-size: var(--largeHeaderSize);
    margin-top: 4rem;
    margin-bottom: 2rem
}

.tab.account {
    padding: 1em 1.5em;
}

.tab.account .tablinks {
    font-size: 14px;
    padding: 0.5rem;
    text-align: center;
}

.accountInfoEdit .mobile,
.tab.account .tablinks.viewportTextChange .mobile {
    display: none;
}

.section .tabcontent.account {
    min-height: 20rem;
    margin: 0;
    padding: 0;
}

.accountDetailHeading {
    font-size: 2.25rem;
    margin: 0 0 1.35rem;
}

.accountInfoSection {
    position: relative;
    margin-bottom: 4rem;
}

.accountInfoEdit {
    position: absolute;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    right: 0;
    top: 0.6rem;
    cursor: pointer;
    transition: opacity 0.5s;
    font-size: 1.25rem;
    color: #6e6e6e;
    padding: 0.4rem 0;
    text-decoration: none;
}

.accountInfoEdit:hover {
    opacity: 0.5;
}

.accountInfoSection dl {
    padding: 0;
    margin: 0;
    font-size: 1.25rem;
}

.accountInfoSection dl .notSpecified {
    color: #6e6e6e
}

.accountInfoSection dl dd {
    margin-left: 1.25rem;
}

.accountInfoSection dl > div {
    display: flex;
    margin-block: 0.9rem;
}

.noAccountItemsMessage {
    font-size: 1.25rem;
    color: #aaa;
    margin-top: 2rem;
    background-color: white;
    border: solid 1px #ccc;
    padding: 1em;
    text-align: center;
    min-height: 26rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.noAccountItemsMessage * {
    text-align: center;
}

.noAccountItemsMessage .header {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #707070;
}

.noAccountItemsMessage .subHeader {
    margin: 1.5rem 0 3rem;
}

.noAccountItemsMessage .subHeader,
.noAccountItemsMessage .showAll {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.noAccountItemsMessage .showAll {
    background-color: transparent;
    border: none;
    color: var(--color__blue--01);
    cursor: pointer;
    transition: opacity 0.5s;
}

.noAccountItemsMessage .showAll:hover {
    opacity: 0.5;
}

.newAddressLine2 {
    margin-top: 0.25rem;
}

.accountInfoSection .addressList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.accountInfoSection .accountPayments,
.accountInfoSection .addressList {
    border-top: solid 1px #ccc;
    margin-top: -1.25rem;
}

.accountInfoSection .accountPayments {
    padding-top: 1rem;
}

.accountInfoSection .addressList li {
    border: solid 1px #ccc;
    min-height: 1rem;
    margin-top: 1rem;
    background-color: white;
    position: relative;
    padding: 1.6rem 2.5rem;
}

.addressList .accountInfoEdit {
    right: 1.5rem;
    top: 1.25rem;
}

.accountInfoSubtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 1.25rem;
}

.addressList li div {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.addressList li div:not(:last-child) {
    margin-bottom: 0.75rem;
}

.accountPayments {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
}

.accountPayments li {
    background-color: var(--color__darkBlue--01);
    padding: 1.5rem 2em;
    border-radius: 1rem;
    color: white;
    position: relative;
}

.accountPayments li label {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 1.25rem;
    display: block;
}

.accountPayments li .name {
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.accountPayments li .number {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.accountPayments li .number object {
    width: clamp(3rem, 2.5vw, 4rem);
    margin-right: 1rem;
}

.accountPayments li dl {
    display: flex;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.accountPayments li dl dt {
    opacity: 0.7;
}

.accountPayments li .updateCard {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 0.5s;
    opacity: 0.7;
    color: white;
}

.accountPayments li .updateCard:hover {
    opacity: 0.5;
}

.accountPayments li .logo {
    width: 4rem;
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
}

.accountPayments li .logo,
.accountPayments li .logo object {
    width: clamp(3rem, 2.5vw, 4rem);
}





@media (max-width: 100em) {
    .accountPayments {
        grid-template-columns: 1fr 1fr;
    }
}




@media (max-width: 40em) {

    .tab.account {
        padding-inline: 0.75rem;
    }

    .tab.account .tablinks {
        font-size: 0.75rem;
        padding-inline: 0.25rem;
    }

    body .accountInfoSection .accountPayments,
    body .accountInfoSection .addressList {
        margin-top: 0;
        border: none;
    }

    body .accountInfoSection .accountPayments {
        display: block;
    }

    body .accountInfoSection .accountPayments li:not(:first-child) {
        margin-top: 1rem;
    }

}




@media (max-width: 52em) {

    .noAccountItemsMessage {
        background-color: transparent;
        border: none;
    }

}




@media (max-width: 82em) {

    .accountInfoSection .accountPayments {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .accountInfoSection .accountPayments li {
        width: auto;
    }

    .accountInfoSection .addressList li {
        border: none;
        background-color: #f1f1f1;
    }

    .accountInfoSection .accountPayments,
    .accountInfoSection .addressList {
        margin-top: 0.3rem;
    }

    .noAccountItemsMessage {
        font-size: 0.875rem;
    }

    .accountHeading {
        display: none;
    }

    .accountInfoEdit .mobile,
    .tab.account .tablinks.viewportTextChange .mobile {
        display: block;
    }

    .accountInfoEdit .desktop,
    .tab.account .tablinks.viewportTextChange .desktop {
        display: none;
    }

    .accountDetailHeading {
        font-size: 1.25rem;
        margin: 0;
    }

    .accountInfoSection dl {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }

    .accountInfoSection .accountInfoEdit {
        font-size: 1rem;
        top: 0;
    }

    .accountInfoSection .addressList .accountInfoEdit {
        top: 0.7rem;
    }

    .accountInfoSection {
        margin-bottom: 1.5rem;
        border-bottom: solid 1px #ddd;
        padding-bottom: 1rem;
        margin-top: 2.5rem;
    }

    .accountInfoSection:last-child {
        border: none;
        margin-bottom: 7rem;
    }

}




@media (min-width: 82em) {

    .accountTabLayout {
        display: grid;
        grid-template-columns: 20rem 1fr;
    }

    .tab.account {
        margin: 0;
        display: block;
        background-color: transparent;
        padding: 0;
    }

    .tab.account .tablinks {
        text-align: left;
        border: none;
        font-size: 1.5rem;
        padding: 0.35em 0;
        color: #707070;
        transition: color 0.5s, opacity 0.5s;
        opacity: 0.5;
    }

    .tab.account .tablinks:hover {
        opacity: 0.3;
    }

    .tab.account .tablinks.active {
        color: #000;
        opacity: 1;
    }

}
/* signout button */
.tab.account .tablinks:last-child {
  display: none;
}

.addressList .accountInfoEdit.edit {
  right: 6.5rem; /* for placing address remove button */
}

@media (min-width: 82em) {
  /* signout button */
  .tab.account .tablinks:last-child {
    display: block;
    margin-top: 10%;
    color: var(--color__red--01);
    opacity: 1;
  }
}
.newCardExpiration {
    border: none;
    margin: 0;
    padding: 0;
}

.newCardNumber__input {
    position: relative;
}

.newCardNumber__icon {
    position: absolute;
    right: 0.5em;
    top: 50%;
    translate: 0 -55%;
    width: 1.8rem;
}

.newCardExpiration {
    display: grid;
    grid-template-columns: repeat(3,5em);
    gap: 0.625rem;
}

.newCardExpiration select {
    width: 100%;
}




@media (max-width: 40em) {

    .newCardExpiration {
        grid-template-columns: 1fr 1fr;
    }

}
.accountOrdersSearch {
    position: absolute;
    right: 0;
    top: 0.9rem;
}

.reducedOpacity {
    opacity: 0.5;
}

.popupMessage {
    color: #707070;
    margin-bottom: 2rem;
}

.accountOrdersSearch input {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1.25rem;
    min-width: 13rem;
    text-align: right;
    width: 100%;
    padding-right: 2rem;
}

.accountOrdersSearch object {
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5rem;
}

.accountOrdersFilterWrapper {
    border-top: solid 1px #ccc;
    margin-top: -1rem;
    padding-top: 1rem;
}

.showHideAccountOrdersFilter:hover {
    opacity: 0.5;
}

.accountOrdersFilterList {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accountOrdersFilterItem {
    padding-inline: 1rem;
    background-color: transparent;
    border: none;
    color: #bbb;
    padding-block: 0.3rem;
    transition: opacity 0.5s;
    cursor: pointer;
}

.accountOrdersFilterItem.selected {
    opacity: 1 !important;
    cursor: default;
}

.accountOrdersFilterItem:hover {
    opacity: 0.5;
}

.accountOrdersItems {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accountOrdersItems > .item {
    background-color: white;
    border: solid 1px #ccc;
    margin-top: 1rem;
}



.accountPurchaseDetails,
.accountDeliveryDetails {
    display: grid;
    grid-template-rows: 0 0fr;
    transition: grid-template-rows 0.5s;
    overflow: hidden;
}

.accountPurchaseDetails.show,
.accountDeliveryDetails.show {
    grid-template-rows: 0 1fr;
}

.accountPurchaseDetailsInner,
.accountDeliveryDetailsInner {
    grid-row: 1 / 3;
}

.accountOrderProductList .productImage {
    background: var(--color__darkBlue--01);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.accountOrdersItems > .item {
    padding-inline: 2rem;
}

.accountOrdersItems .heading {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.mainBanner .orderCancelled {
    display: flex;
    color: white;
    align-items: center;
    gap: 1.5rem;
}

.mainBanner .orderCancelled .heading {
    font-size: clamp(1.25rem, 5vw, 1.875rem);
    white-space: nowrap;
}

.mainBanner .orderCancelled .subHeading {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5;
}

.accountOrdersItems .heading .title {
    margin: 0;
    background-size: 1.25em;
    padding: 0.5em 0;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    padding-left: clamp(2rem, 4vw, 2.4rem);
}

.accountOrdersItems .heading .title.parcelPickedUp {
    background: url(/assets/order/mailbox-icon-blue-e781c459717189a7d53dfce60f0595b4dd8bb094b669a9d4c15862cd597de22f.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.processing {
    background: url(/assets/order/save-icon-blue-29399fb6dd3d0cd1d9940c9a9bc51e95bdf79e863d3d589e0bf55868fb95c587.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.inTransit {
    background: url(/assets/order/truck-icon-blue-fa421b298f8bb262a87b60fb091221ea222d3572dab733651ba4bb5e194bbf07.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.readyForPickup {
    background: url(/assets/order/ellipse-blue-6f13f35e7652256a867fc119199f963a326f39e5c80b566ee1ac1d37f2b52184.svg) no-repeat left 0.5rem center;
}

.accountOrdersItems .heading .title.delivered {
    background: url(/assets/order/delivered-icon-blue-0bfa9f50aa869dbd5c530b1fc46d810ef4806052588a5ae71827e521d7fc2dc9.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.returned {
    background: url(/assets/order/returned-icon-blue-a861c10fa15e332c07774b3bdc9c5d1a4a59216367c36fa0b3f76fb36680e98a.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.cancelled {
    background: url(/assets/order/close-icon-blue-a6bc6adede99fc2dff561b328b6b48709440b887b8cd0ba01fdb7437497f1a48.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.readyToShip {
  background: url(/assets/order/save-icon-blue-29399fb6dd3d0cd1d9940c9a9bc51e95bdf79e863d3d589e0bf55868fb95c587.svg) no-repeat left center;
}

.accountOrdersItems .headerLinks {
    position: absolute;
    right: -0.75rem;
    top: 0.25rem;
    display: flex;
    align-items: center;
}

.accountOrdersItems .headerLinks  .cancelled,
.accountOrdersItems .headerLinks  .noUniqueId {
    color: #9f9ea5;
    padding: 0.75rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.accountOrdersItems .headerLinks .return {
    color: #eb5757;
}

.accountOrdersItems .headerLinks .cancel,
.accountOrdersItems .headerLinks .uniqueId {
    color: var(--color__blue--01);
}

.accountOrdersItems .headerLinks .cancel,
.accountOrdersItems .headerLinks .return,
.accountOrdersItems .headerLinks .uniqueId {
    border: none;
    background-color: transparent;
    transition: opacity 0.5s;
    cursor: pointer;
    padding: 0.75rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    text-decoration: none;
}

.accountOrdersItems .headerLinks .cancel:hover,
.accountOrdersItems .headerLinks .return:hover,
.accountOrdersItems .headerLinks .uniqueId:hover {
    opacity: 0.5;
}

.accountOrdersItems .headerLinks .divider {
    width: 1px;
    border-left: solid 1px #ccc;
    height: 1.5rem;
}

.accountOrdersItems .heading .dateAndTime {
    color: #707070;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

.accountOrderProductList {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    padding-bottom: 1rem;
}

.accountOrdersItems .purchaseDetails .details01,
.accountOrdersItems .deliveryDetails .details01 {
    grid-column: 1;
}

.accountOrdersItems .purchaseDetails .details02,
.accountOrdersItems .deliveryDetails .details02 {
    grid-column: 2;
}

.accountOrdersItems .purchaseDetails .details03,
.accountOrdersItems .deliveryDetails .details03 {
    grid-column: 3;
}

.accountOrdersItems .purchaseDetails dl,
.accountOrdersItems .deliveryDetails dl {
    display: grid;
    grid-template-columns: auto auto;
    font-size: clamp(0.875rem, 0.8vw, 1rem);
    gap: 1rem 0.5rem;
    align-items: start;
}

.accountOrdersItems .purchaseDetails dl dt,
.accountOrdersItems .deliveryDetails dl dt {
    color: #707070
}

.accountOrdersItems .purchaseDetails dl dd,
.accountOrdersItems .deliveryDetails dl dd {
    margin: 0;
    text-align: right;
}

.accountOrdersItems .deliveryDetails,
.accountOrdersItems .purchaseDetails {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    padding-bottom: 1.2rem;
    gap: clamp(4rem, 6vw, 8rem);
    padding-top: 1rem;
}

.accountOrdersItems .purchaseDetails::before,
.accountOrderProductList::before,
.deliveryCost::before {
    content: '';
    display: block;
    position: absolute;
    left: -2rem;
    right: -2rem;
    border-bottom: solid 1px #ddd;
    bottom: 0;
}

.accountOrdersItems .deliveryCost {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.accountOrdersItems .deliveryCost dd {
    font-weight: bold;
}

.accountOrderProductList > .item {
    display: grid;
    grid-template-columns: 8rem 1fr 8rem 8rem;
    gap: 0.5rem;
    padding: 1rem 0 0;
}

.accountOrderProductList .iconImage {
    max-width: 6rem;
    max-height: 5rem;
}

.accountOrderProductList .info {
    margin-left: 1.5rem;
}

.accountOrderProductList .info .title {
    font-size: clamp(1rem, 1.75vw, 1.25rem);
}

.accountOrderProductList .info dl {
    display: flex;
    gap: 1.5rem;
    color: #808080;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    align-items: baseline;
    margin-top: 0.6rem;
}

.accountOrderProductList .info dl dt {
    text-transform: uppercase;
    font-size: 80%;
}

.accountOrderProductList .info dl dd {
    margin: 0;
}

.accountOrderProductList .quantity,
.accountOrderProductList .price {
    text-align: right;
    font-size: clamp(1rem, 1.75vw, 1.25rem);
}

.openDeliveryDetails,
.openPurchaseDetails {
    width: 100%;
    background-color: transparent;
    border: none;
    color: var(--color__blue--01);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    transition: opacity 0.5s;
    padding: 1rem 0;
}

.openDeliveryDetails:hover,
.openPurchaseDetails:hover {
    opacity: 0.5;
}

.openDeliveryDetails .icon,
.openPurchaseDetails .icon {
    width: 1.5rem;
    rotate: 180deg;
    margin-left: 0.5rem;
    transition: rotate 0.5s;
    pointer-events: none;
}

.openDeliveryDetails.show .icon,
.openPurchaseDetails.show .icon {
    rotate: 0deg;
}

.deliverySteps {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.deliverySteps h6 {
    margin: 0 0 0.35rem;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: normal;
}

.deliverySteps span {
    margin: 0;
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #707070;
}

.deliverySteps span.noDateYet {
    opacity: 0;
}

.deliverySteps > .item {
    position: relative;
    opacity: 0.4;
}

.deliverySteps > .item:last-child::before {
    display: none;
}

.deliverySteps > .item::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #334dcd;
    opacity: 0.2;
}

.deliverySteps > .item.currentStep::before {
    opacity: 0.08;
}

.deliverySteps > .item.currentStep h6 {
    font-weight: bold;
}

.deliverySteps > .item.currentStep,
.deliverySteps > .item.completed {
    opacity: 1;
}

.deliverySteps > .item::after {
    content: '';
    display: block;
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    background-repeat: no-repeat;
    background-image: url(/assets/order/ellipse-blue-6f13f35e7652256a867fc119199f963a326f39e5c80b566ee1ac1d37f2b52184.svg);
    background-position: center center;
}

.deliverySteps > .item.confirmed.currentStep::after {
    background-image: url(/assets/order/receipt-icon-blue-c9d218cfdcdd3852d45fedf712c609d0e740f131ebd53c56889612f79d19b1a7.svg);
    background-size: contain;
}

.deliverySteps > .item.processing.currentStep::after {
    background-image: url(/assets/order/save-icon-blue-29399fb6dd3d0cd1d9940c9a9bc51e95bdf79e863d3d589e0bf55868fb95c587.svg);
    background-size: contain;
}

.deliverySteps > .item.inTransit.currentStep::after {
    background-image: url(/assets/order/truck-icon-blue-fa421b298f8bb262a87b60fb091221ea222d3572dab733651ba4bb5e194bbf07.svg);
    background-size: contain;
}

.deliverySteps > .item.delivered.currentStep::after {
    background-image: url(/assets/order/delivered-icon-blue-0bfa9f50aa869dbd5c530b1fc46d810ef4806052588a5ae71827e521d7fc2dc9.svg);
    background-size: contain;
}

.deliverySteps > .item.pickedUp.currentStep::after {
    background-image: url(/assets/order/mailbox-icon-blue-e781c459717189a7d53dfce60f0595b4dd8bb094b669a9d4c15862cd597de22f.svg);
    background-size: contain;
}

.deliverySteps > .item.cancelled.currentStep::after,
.deliverySteps > .item.notPickedUp.currentStep::after,
.deliverySteps > .item.notDelivered.currentStep::after {
    background-image: url(/assets/order/close-icon-blue-a6bc6adede99fc2dff561b328b6b48709440b887b8cd0ba01fdb7437497f1a48.svg);
    background-size: contain;
}

.deliverySteps > .item.returned.currentStep::after {
    background-image: url(/assets/order/returned-icon-blue-a861c10fa15e332c07774b3bdc9c5d1a4a59216367c36fa0b3f76fb36680e98a.svg);
    background-size: contain;
}







@media (max-width: 52em) {

    body .accountOrdersFilterWrapper {
        border-top: none;
        margin-top: 0;
    }

    .accountOrdersItems > .item {
        border: none;
        padding: 0;
    }

    .accountOrderProductList {
        margin-top: 0.5rem;
    }

    .accountOrderProductList > .item {
        grid-template-columns: 6rem 1fr 1fr;
        column-gap: 1rem;
    }

    .accountOrderProductList .productImage {
        grid-row: 1 / 3;
    }

    .accountOrderProductList .info {
        grid-column: 2 / 4;
        display: flex;
        flex-direction: column;
        margin-left: 0;
    }

    .accountOrderProductList .info dl {
        order: -1;
        margin: 0 0 0.4rem;
    }

    .accountOrderProductList .quantity {
        grid-column: 2;
        text-align: left;
        display: flex;
        align-items: end;
        padding-bottom: 0.5rem;
    }

    .accountOrderProductList .price {
        grid-column: 3;
        display: flex;
        align-items: end;
        padding-bottom: 0.5rem;
    }

    .accountOrdersItems .purchaseDetails::before,
    .accountOrdersItems .deliveryCost::before,
    .accountOrderProductList::before {
        display: none;
    }

    .openPurchaseDetails,
    .openDeliveryDetails {
        border: solid 1px #ddd;
    }

    body .mainBanner .orderCancelled {
        margin-right: 0;
    }

    body .mainBanner .orderCancelled .subHeading {
        margin-bottom: 1.5rem;;
    }

}

@media (min-width: 82em) {

    .accountPurchaseDetails .tracking {
        display: none;
    }

}

@media (max-width: 82em) {

    .mainBanner .orderCancelled {
        display: block;
        gap: 1rem;
        margin-right: 1.5rem;
    }

    .mainBanner .orderCancelled .heading {
        margin: 0.5rem 0 1rem;
    }

    .mainBanner .orderCancelled .subHeading {
        margin-bottom: 0.75rem;
    }

    .accountOrdersItems .headerLinks .noUniqueId,
    .accountOrdersItems .headerLinks .divider,
    .accountOrdersItems .headerLinks .uniqueId {
        display: none;
    }

    .accountOrdersFilterWrapper {
        margin-top: 0.3em;
    }

    .accountOrdersSearch {
        top: 0.3rem;
    }

    .accountOrdersSearch input {
        font-size: 0.875rem;
        padding-right: 1.5rem;
    }

    .accountOrdersSearch object {
        width: 1.2rem;
    }

}

@media (max-width: 60em) {

    .deliverySteps {
        max-width: 26rem;
        margin-inline: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .deliverySteps > .item {
        padding-left: 1.85rem;
        padding-bottom: 2rem;
    }

    .deliverySteps > .item::after {
        top: -0.15rem;
        left: 0;
    }

    .deliverySteps > .item::before {
        top: 1.7rem;
        left: 0.75rem;
        bottom: 0.5rem;
        width: 1px;
    }

    .accountOrdersItems .purchaseDetails,
    .accountOrdersItems .deliveryDetails {
        display: block;
    }

    .accountOrdersItems .purchaseDetails .details02,
    .accountOrdersItems .deliveryDetails .details02,
    .accountOrdersItems .purchaseDetails .details03,
    .accountOrdersItems .deliveryDetails .details03 {
        border-top: solid 1px #ddd;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .accountOrdersItems .purchaseDetails dl,
    .accountOrdersItems .deliveryDetails dl {
        max-width: 26rem;
        margin-inline: auto;
    }

    .showHideAccountOrdersFilter {
        background: url(/assets/product/filter-7ac498ffc907ac20493e24d49daeb330a7bd24f95a1658c3db7b38aac49076f3.svg) no-repeat right 0.5em center #f9f9f9;
        border: solid 1px #e7e7e7;
        width: 100%;
        text-align: left;
        font-size: 1.25rem;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
        cursor: pointer;
        transition: opacity 0.5s;
    }

    .showHideAccountOrdersFilter span {
        color: #999;
        font-size: 1rem;
    }

    .accountOrdersFilter {
        display: grid;
        grid-template-rows: 0 0fr;
        transition: grid-template-rows 0.5s, border-color 0.5s, background-color 0.5s;
        overflow: hidden;
        border: solid 1px transparent;
    }

    .accountOrdersFilter.show {
        border-color: #e7e7e7;
        background-color: #f9f9f9;
    }

    .accountOrdersFilter.show {
        grid-template-rows: 0 1fr;
    }

    .accountOrdersFilterList {
        grid-row: 1 / 3;
    }

    .accountOrdersItemsFound {
      font-size: 0.875rem;
      margin-block: 1rem;
      color: #707070;
      align-items: center;
      display: flex;
      justify-content: space-between;
      margin-bottom: 1em;
    }
      
    .accountOrdersItemsFound select {
      border: solid 1px #eee;
      transition: border-color 0.5s;
      outline: none;
      font-size: 1rem;
      height: 2rem;
      background: white;
      padding-inline: 0.3em;
      color: #707070;
    }
    
    .accountOrdersItemsFound select:focus {
      border-color: #ccc;
    }

    .accountOrdersFilterList > .item:not(:first-child) {
        position: relative;
    }

    .accountOrdersFilterList > .item:not(:first-child)::before {
        border-top: solid 1px #e7e7e7;
        content: '';
        display: block;
        position: absolute;
        left: 0.5rem;
        right: 0.5rem;
        top: 0;
    }

    .accountOrdersFilterItem {
        width: 100%;
        cursor: pointer;
        text-align: left;
        color: #333;
        padding-block: 0.8rem;
        font-size: 1.25rem;
        padding-inline: 0.5rem;
        margin-inline: 0.5rem;
        transition: opacity 0.5s;
    }

    .accountOrdersFilterItem:hover {
        opacity: 0.5;
    }

    .accountOrdersFilterItem.selected {
        font-weight: bold;
        opacity: 1 !important;
        cursor: default;
    }

}

@media (min-width: 60em) {

    .accountOrdersItemsFound {
        display: none;
    }

    .showHideAccountOrdersFilter {
        display: none;
    }

    .accountOrdersFilterList {
        display: flex;
        border-bottom: solid 2px #ccc;
        justify-content: space-between;
    }

    .accountOrdersFilterItem {
        font-size: 1.125rem;
    }

    .accountOrdersFilterItem.selected {
        border-bottom: solid 2px var(--color__blue--01);
        margin-bottom: -2px;
        color: #000;
    }

    .deliverySteps {
        display: grid;
        grid-template-columns: repeat(5, 20%);
        padding-top: 2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: dotted 1px #ccc;
    }

    .deliverySteps h6 {
        margin-top: 1.3rem;
    }

    .deliverySteps > .item::before {
        left: 1.7rem;
        right: 0.3rem;
        top: 0;
        height: 1px;
    }

    .deliverySteps > .item::after {
        left: 0;
        top: -0.65rem;
    }

}
/* add title icon for confirmed order */

.accountOrdersItems .heading .title.confirmed {
  background: url(/assets/order/receipt-icon-blue-c9d218cfdcdd3852d45fedf712c609d0e740f131ebd53c56889612f79d19b1a7.svg) no-repeat left center;
}

.accountOrdersItems .heading .title.refunded {
  background: url(/assets/order/refund-icon-blue-9c78ed2ca1db7f131da5ac4667a156f9810b218b2b1a1c8540c40f748bafa178.svg) no-repeat left center;
}

/* add delivery step icon for ready for pickup */

.deliverySteps > .item.readyForPickup.currentStep::after {
  background-image: url(/assets/order/mailbox-icon-blue-e781c459717189a7d53dfce60f0595b4dd8bb094b669a9d4c15862cd597de22f.svg);
  background-size: contain;
}

/* order filter buttons are now a-tags */
.accountOrdersFilterItem {
  text-decoration: none; /* remove a-tag underline */
  display: inline-block;  /* remove a-tag underline whitespace */
}

/* invert the black image to white for order list */
.accountOrderProductList .iconImage {
  filter: brightness(0) invert(1);
}
.returnSteps {
    display: flex;
    margin: 1.5rem 0;
    padding: 0;
    list-style-type: none;
    gap: 0.5rem;
}

.returnStep {
    flex: 1;
    border-bottom: solid 0.3125rem #d9d9d9;
    padding-bottom: 0.4rem;
    color: #707070;
}

.returnStep.completed {
    border-bottom-color: var(--color__blue--01);
    color: var(--color__blue--01);
    opacity: 0.4;
}

.returnStep.currentStep {
    border-bottom-color: var(--color__blue--01);
    color: var(--color__blue--01);
}

.returnStep span {
    display: block;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
}

.returnStep.completed span,
.returnStep.currentStep span {
    opacity: 1;
}

.selectReturnItemsMessage {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 2rem;
    color: #707070; 
}

.selectReturnItems {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.selectReturnItemLabel {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.3rem;
}

.selectReturnItem:not(:first-child) {
    border-top: dotted 1px #ddd;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.selectReturnItem .selectReturnItemContent {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    pointer-events: none;
    align-items: start;
    opacity: 0.7;
    transition: opacity 0.5s;
}

.selectReturnItemCheckbox:checked ~ .selectReturnItemContent {
    opacity: 1 !important;
}

.selectReturnItem .selectReturnItemContent .image {
    background-color: var(--color__darkBlue--01);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.selectReturnItem .selectReturnItemContent .iconImage {
    max-width: 6rem;
    max-height: 5rem;
}

.selectReturnItem .itemContent {
    display: grid;
    grid-template-columns: auto auto;
}

.selectReturnItem .itemContent .title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 0.5rem;
    font-weight: normal;
    color: #000;
}

.selectReturnItem .itemContent .title,
.selectReturnItem .itemContent .part {
    grid-column: 1 / -1;
}

.selectReturnItem .itemContent .part {
    display: flex;
    margin: 0 0 0.75rem;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #808080;
}

.selectReturnItem .itemContent .price {
    text-align: right;
    font-weight: bold;;
}

.selectReturnItem .itemContent .quantity,
.selectReturnItem .itemContent .price {
    color: #707070;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

.returnProgress {
    position: relative;
}

.returnStepCounter {
    position: absolute;
    right: 0;
    top: 0;
    color: #707070;
}

.returnItemsRadioList {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0.75rem 0.5em;
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
}

.returnDefectSection {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: dotted 1px #ddd !important;
}

.returnItemsRadioList legend {
    margin-bottom: 1rem;
    color: #707070;
    font-size: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.returnItemsRadioList label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    opacity: 0.7;
    transition: opacity 0.5s;
}

.returnItemsRadioList input[type="radio"]:checked + label {
    opacity: 1;
}

body .popupOverlay .returnReasonDescription {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: dotted 1px #ddd !important;
}

.returnItemsAddress {
    margin-top: -0.75rem;
    margin-bottom: 1.5rem;
}

.returnItemsEndActions {
    border-top: dotted 1px #ddd;
    padding-top: 1.5em;
    font-size: 1rem;
}

.returnItemsEndActions .downloadReturnInfo,
.returnItemsEndActions .returnItemsMapLocation {
    color: var(--color__blue--01);
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    transition: opacity 0.5s;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 1.6rem;
    background-size: contain;
}

.returnItemsEndActions .downloadReturnInfo:hover,
.returnItemsEndActions .returnItemsMapLocation:hover {
    opacity: 0.7;
}

.returnItemsEndActions .downloadReturnInfo {
    background-image: url(/assets/order/download-icon-95eb1de45e5bfe1509179ab931258be90b2d49f78e4d5fba73733ef88b4535c8.svg);
}

.returnItemsEndActions .returnItemsMapLocation {
    background-image: url(/assets/order/map-pin-icon-4b4bc6368b712847d2a68045f7bfca82b7614a3cdc89cbde56a86d2f368223b7.svg);
}

.returnItemsEndActions .download {
    margin-bottom: 1rem;;
}






@media (max-width: 42em) {

    .selectReturnItem .itemContent .part {
        order: -1;
        margin-bottom: 0.3rem;
    }

    .selectReturnItem:not(:first-child) {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .selectReturnItem .selectReturnItemContent {
        grid-template-columns: 6rem 1fr;
    }

    .selectReturnItem .selectReturnItemContent .image {
        padding: 0.75rem;
    }
    
    .selectReturnItem .selectReturnItemContent .iconImage {
        max-width: 5rem;
        max-height: 4rem;
    }

    .returnSteps .returnStep.step3.currentStep span {
        opacity: 0;
    }

}
.predictionsContainer{
  display: none;
}

.predictionsContainer.show{
  display: block;
}

.placePredictions{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  position: absolute;
  background-color: white;
  width: 100%;
  border: 1px solid #ddd;
  margin-top: 5px;
}

.placePredictions p{
  padding: 0.3rem 0.8rem;
  line-height: normal;
  margin: 0;
}

.placePredictions p:hover{
  background-color: var(--color__blue--01);
}

.placePredictions .matched {
  color: #464646;
}

.placePredictions .non-matched {
  font-weight: 600;
}
.loadingSpinner {
  display: none;
  position: absolute;
  z-index: 300;
  top: 50%;
  left: 50%;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: black;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

.loadingSpinner.show {
  display: block;
}
.productDetail.inventoryDetail .genericOrderTools__info {
  display: block !important; /* Keep quantity, add to cart, and price always visible */
}

@media (min-width: 52em) and (max-width: 72em) {
  .inventoryDetail h1 {
    margin-bottom: 0;
  }
}
.privacyHeading {
  font-size: var(--largeHeaderSize);
  margin-top: 4rem;
  margin-bottom: 2rem
}

.privacyContainer {
  margin-top: 3em;
  margin-bottom: 8rem;
}

.privacyItem {
  margin-top: 2em;
}

.privacySubItem li{
  line-height: 1.5;
}

.privacyItem ol.custom-list {
  list-style-type: none;
  counter-reset: list-counter;
}
.privacyItem ol.custom-list > li {
  counter-increment: list-counter;
  margin-bottom: 10px;
  margin-top: 21px;
}
.privacyItem ol.custom-list > li::before {
  content: "(" counter(list-counter, lower-alpha) ") ";
  font-weight: bold;
}

.privacyListItem {
  margin-bottom: 3.5em;
}

.privacySubHeading{
  font-size: 1.2rem;
}

.privacyBold {
  font-weight: bold;
}

.privacyLink {
  font-weight: bold;
  color: var(--color__blue--01);
}

.privacySubItemList{
  margin-left: 2rem;
}

.privacySubItem{
  margin-left: 1rem;
}

.privacySubHeadingSmall{
  font-size: 1.5rem;
}
/* style popup form to add new card with billing address */
.groupPopupFormField{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  margin: -.5em 0;
}

.groupFieldCardNumberExpiry{
  display: grid;
  grid-template-columns: 30em 20em;
  column-gap: 2rem;
  margin: -.5em 0;
}

.groupNameCVVPopupForm{
  display: grid;
  grid-template-columns: 30em 12em;
  column-gap: 2rem;
  margin: -.5em 0;
}

.groupPopupFormFieldThree{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  margin: -.5em 0;
}

.anchoredButtonsScrollContainer .street2{
  margin-top: -0.75rem;
}

/* modal for choosing card*/

.chooseCard {
  display: grid;
  grid-template-columns: auto auto 1fr 1fr;
  margin: 2em 0 1em 0;
  row-gap: 2rem;
  column-gap: 1rem;
}

.chooseCard label {
  display: contents;
}

.chooseCard .logo.border {
  position: relative;
}

.chooseCard .logo.border::after {
  position: absolute;
  inset: 0;
  content: '';
  box-shadow:inset 0px 0px 0px 1px #ccc;
  border-radius: 0.375rem;
}

.chooseCard .logo {
  width: 4rem;
  display: flex;
}

.chooseCard .logo img {
  width: 100%;
  border-radius: 0.375rem;
}

.chooseCard .logo object {
  width: 100%;
}

.chooseCard .newCard {
  grid-column: 2 / -1;
  font-size: 1.25rem;

  display: flex;
  align-items: center;
  gap: 1rem;

  color: #6e6e6e;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.3rem;
  transition: opacity 0.5s;
  cursor: pointer;

  margin-left: -.4rem;
  text-decoration: none;
}

.chooseCard .newCardLogo {
  width: 4.4rem;
  display: flex;
}

.chooseCard .newCardLogo img {
  width: 100%;
}

.chooseCard .number, .name {
  display: flex;
  align-items: center;
}

.chooseCard .number object {
  width: clamp(3rem, 2.5vw, 4rem);
  margin-right: 1rem;
  filter: invert(1)
}

.chooseCard .newCard:hover {
  opacity: 0.5;
}

/* style after payment details is populated*/

.checkoutPayment .buyNow {
  background-color: black;
  color: white;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: opacity 0.5s;
  margin-top: 1rem;
}

.checkoutPayment .buyNow:hover {
  opacity: 0.5;
}

.popupOverlay.popupNotAttachedInMobile.paymentProcessing {
  display: none;
}

.popupOverlay.popupNotAttachedInMobile.paymentProcessing.show {
  display: block;
  position: fixed;
}


@media (max-width: 82em) {
  .newCardButton .mobile {
    display: block;
  }

  .newCardButton .desktop{
    display: none;
  }
}

@media (max-width: 850px) {
  .groupFieldCardNumberExpiry {
    display: block;
  }

  .groupNameCVVPopupForm {
    display: block;
  }

  .popupFormField.newCardCVV{
    width: 10em;
  }

  .groupPopupFormFieldThree {
    display: flex;
    flex-wrap: wrap;
  }

  .groupPopupFormFieldThree .popupFormField {
    margin: 0.5em 0;
  }
}



.loader3 {
  height: 45px;
  --c:no-repeat linear-gradient(#008ECB 0 0);
  background: 
    var(--c) left,
    var(--c) center,
    var(--c) right;
  background-size: 16px 100%;
  animation: 
    l33-1 1.5s infinite,
    l33-2 1.5s infinite;
}
@keyframes l33-1 {
  0%,100% {width:45px}
  35%,65% {width:65px}
}
@keyframes l33-2 {
  0%,40%  {transform: rotate(0) }
  60%,100%{transform: rotate(90deg) }
}

/* HTML: <div class="loader"></div> */
.loader2 {
  width: 45px;
  aspect-ratio: .75;
  --c: no-repeat linear-gradient(#008ECB 0 0);
  background: 
    var(--c) 50% 0%,
    var(--c) 50% 50%,
    var(--c) 50% 100%;
  background-size: 50% 20%;
  animation: l6 1s infinite linear;
}
@keyframes l6 {
  20% {background-position: 0% 0%  ,50% 50% ,100% 50% }
  40% {background-position: 100% 0%,50% 0%  ,100% 50% }
  60% {background-position: 50% 0% ,50% 100%,0% 0%  }
  80% {background-position: 50% 100% ,50% 50% ,100% 100%}
}


.loader {
  width: 4.8px;
  height: 4.8px;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  /* border-radius: 4px; */
  color: #008ECB;
  background: currentColor;
  box-sizing: border-box;
  animation: animloader 0.5s 0.3s linear infinite alternate;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 4.8px;
  height: 4.8px;
  /* border-radius: 4px; */
  background: currentColor;
  position: absolute;
  left: 0;
  top: 15px;
  animation: animloader 0.5s 0.5s linear infinite alternate;
}
.loader::after {
  top: -15px;
  /* animation-delay: 0s; */
}

@keyframes animloader {
  0% {
    width: 4.8px;
  }
  100% {
    width: 48px;
  }
}
.chooseAddressSection {
  position: relative;
}

.chooseAddressSection .addressList {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-y: scroll;
  max-height: 35rem;
}

.chooseAddressSection .addressList li {
  border: solid 1px #ccc;
  min-height: 1rem;
  margin-top: 1rem;
  background-color: white;
  position: relative;
  padding: 1.6rem 2.5rem;
}

.chooseAddressSection ul::-webkit-scrollbar {
  width: 8px;               /* width of the entire scrollbar */
}

.chooseAddressSection ul::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}

.chooseAddressSection ul::-webkit-scrollbar-thumb {
  background-color: #999;    /* color of the scroll thumb */
  border-radius: 10px;       /* roundness of the scroll thumb */
}

.chooseAddress {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem
}

.saveAddressCheckbox {
  color: #6e6e6e;
  font-size: 0.875rem;
}

.saveAddressCheckbox label {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
  white-space: nowrap;
}

@media (max-width: 82em) {

  .chooseAddressSection .accountInfoEdit {
    font-size: 1rem;
    top: 0;
  }

}
.error-messages {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid transparent;
  position: relative;
}

.error-messages.payment-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-left: -3rem;
  margin-right: -3rem;
  display: none;
  padding-left: 2rem;
}

.error-messages.payment-form.hidden {
  display: none;
}

.error-messages ul {
  margin: 10px 0;
  padding-left: 20px;
}

.close-button {
  position: absolute;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  color: #6e6e6e;
  right: 3.9rem;
  top: 1rem;
}

.close-button:hover {
  color: #495057;
}

@media (max-width: 500px) {

  .close-button {
    right: 1rem;
  }

  .error-messages{
    padding-right: 65px;
  }

}
@import "variables.css";
@import "01-header.css";
@import "02-search-results.css";
@import "03-content.css";
@import "04-footer.css";
@import "05-home-page-banner.css";
@import "06-horizontal-item-list.css";
@import "07-common-banner-header.css";
@import "08-about-page.css";
@import "09-products-filter.css";
@import "10-tabset.css";
@import "11-product-detail.css";
@import "12-product-detail-list.css";
@import "13-breadcrumbs.css";
@import "14-product-part.css";
@import "15-cart.css";
@import "16-clear-cart.css";
@import "17-pager.css";
@import "18-checkout.css";
@import "19-forms.css";
@import "20-sign-in-modal.css";
@import "21-checkout-payment.css";
@import "22-account.css";
@import "23-add-new-card.css";
@import "24-account-order-history.css";
@import "25-account-return-items.css";
@import "26-errors.css";
:root {
    --siteMaxWidth: 5000px;
    /*--siteWidth--01: 1000px;*/
    --siteSpacing--01: 3rem;

    --color__lightGrey--01: #f1f1f1;
    --color__grey--01: #e8e8e8;
    --color__darkGrey--01: #1c1c1c;
    --color__darkGrey--02: #151515;

    /* Old color theme */
    /* --color__blue--01: #334dcd; */
    /* --color__blue--02: #1231c8; */
    /* --color__darkBlue--01: #233176; */
    /* --color__darkBlue--02: #202c6a; */

    /* New color theme */
    --color__blue--01: #008ECB;
    --color__blue--02: #039BDC;
    --color__darkBlue--01: #039BDC;
    --color__darkBlue--02: #008ECB;

    --color__green--01: #219653;

    --color__red--01: #ed5757;

    --mainNavHeight--01: 3.75rem;

    --text__strong--01: #272627;
    --text__strong--02: #222222;
    --text__default--01: #707070;
    --text__default--02: #6e6e73;

    --largeHeaderSize: clamp(2.625rem, 6vw, 6.375rem);

    --fontMont: 'Montserrat', sans-serif;
}

.visuallyHidden {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}
/*@import "customer/variables.css";
@import "customer/01-header.css";
@import "customer/01-headeroverride.css";
@import "customer/02-search-results.css";
@import "customer/02-search-resultsoverride.css";
@import "customer/03-content.css";
@import "customer/04-footer.css";
@import "customer/05-home-page-banner.css";
@import "customer/05-home-page-banneroverride.css";
@import "customer/06-horizontal-item-list.css";
@import "customer/06-horizontal-item-listoverride.css";
@import "customer/07-common-banner-header.css";
@import "customer/08-about-page.css";
@import "customer/08-about-pageoverride.css";
@import "customer/09-products-filter.css";
@import "customer/09-products-filteroverride.css";
@import "customer/10-tabset.css";
@import "customer/10-tabsetoverride.css";
@import "customer/11-product-detail.css";
@import "customer/11-product-detailoverride.css";
@import "customer/12-product-detail-list.css";
@import "customer/12-product-detail-listoverride.css";
@import "customer/13-breadcrumbs.css";
@import "customer/14-product-part.css";
@import "customer/15-cart.css";
@import "customer/15-cartoverride.css";
@import "customer/16-clear-cart.css";
@import "customer/17-pager.css";
@import "customer/17-pageroverride.css";
@import "customer/18-checkout.css";
@import "customer/18-checkoutoverride.css";
@import "customer/19-forms.css";
@import "customer/19-formsoverride.css";
@import "customer/20-sign-in-modal.css";
@import "customer/21-checkout-payment.css";
@import "customer/22-account.css";
@import "customer/22-accountoverride.css";
@import "customer/23-add-new-card.css";
@import "customer/24-account-order-history.css";
@import "customer/24-account-order-historyoverride.css";
@import "customer/99-checkout-address-list-modal.css";
@import "customer/100-places_automplete.css";*/

/*

 */
