/************************************************************
PUBLIC STYLES
************************************************************/

/**********
 * FONTS
 ***********/

/* Establish the font families */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--idxs-header-font),"Source Sans Pro","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

body {
    font-family: var(--idxs-paragraph-font),"Source Sans Pro","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

/**********
 * ADMIN BAR (Frontend)
 ***********/

/* Environment-based admin bar colors */
#wpadminbar {
    background-color: var(--idxs-admin-bar-color) !important;
}

#wpadminbar #wp-admin-bar-edit {
    display: none !important;
}

@media (max-width: 768px) {
    #wpadminbar #wp-admin-bar-customize,
    .ab-sub-wrapper #wp-admin-bar-menus,
    .ab-sub-wrapper #wp-admin-bar-plugins,
    .ab-sub-wrapper #wp-admin-bar-themes,
    .ab-sub-wrapper #wp-admin-bar-widgets,
    .ab-sub-wrapper #wp-admin-bar-simple-history-view-history
     {
        display: none !important;
    }
}


/**********
 * GLOBAL STYLES
 * *********/

/* HELPER CLASSES */

.hidden {display: none !important;}
.visible {display: block !important; }
@media all and (min-width: 1024px) {.desktop-hidden {display: none !important;}}
@media all and (min-width: 468px) and (max-width: 1023px) {.tablet-hidden {display: none !important;}}
@media all and (max-width: 467px) {.mobile-hidden {display: none !important;}}
@media all and (min-width: 1024px) {.desktop-visible {display: block !important;}}
@media all and (min-width: 468px) and (max-width: 1023px) {.tablet-visible {display: block !important;}}
@media all and (max-width: 467px) {.mobile-visible {display: block !important;}}

/* BASE ELEMENTS */

.site-content {
    min-height: 90vh;
}

.edit-link {
    display: none;
}

.storefront-breadcrumb {
    display: none;
}

/* TYPOGRAPHY */

/* Headers */

h1, h2, h3, h4, h5, h6 {
    color: #000000;
    font-weight: 600;
}

.related h2 {
    font-size: 28px;
    text-align: center;
    margin-top: 40px;
}

h4, .wc-pao-addon-heading {
    font-size: 18px;
}

.home ul.products li.product .woocommerce-loop-category__title {
    font-size: 22px;
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
}

#secondary .wp-block-heading {
    font-size: 22px;
    font-weight: 600;
}

/* Desktop headers */

.entry-header h1 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.home-h1 {
    text-align: center;
    color: #fff;
    font-size: 60px;
    margin-bottom: 10px;
    }

.home-h2 {
    margin-top: 0px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 40px !important;
    text-transform: none !important;
    }

/* Tablet headers */

@media all and (min-width: 468px) and (max-width: 1024px) {

    .entry-header h1 {
        text-align: center;
        color: #fff;
        font-size: 50px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .home-h1 {
        text-align: center;
        color: #fff;
        font-size: 40px;
        margin-bottom: 10px;
    }

    .home-h2 {
        margin-top: 0px;
        color: #fff;
        margin-bottom: 20px;
        font-size: 35px !important;
        text-transform: none !important;
        }
}

/* Mobile headers */

@media all and (max-width: 467px) {

    .entry-header h1 {
        text-align: center;
        color: #fff;
        font-size: 40px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .home-h1 {
        text-align: center;
        color: #fff;
        font-size: 45px;
        margin-bottom: 10px;
    }

    .home-h2 {
        margin-top: 0px;
        color: #fff;
        margin-bottom: 20px;
        font-size: 25px !important;
        text-transform: none !important;
    }
}

/* Body */

body {
    color: #000000;
}

a {
    color: var(--idxs-primary-color);
}

a:focus, .focus a {
    outline: none !important;
}

/* BUTTONS */

.home-shop-button a {
    border-color: #fff !important;
}

.button,
a.button,
.home-shop-button a
.wp-block-button,
.wp-block-button__link {
    background-color: var(--idxs-primary-color) !important;
    color: #ffffff !important;
    border: 2px solid var(--idxs-primary-color) !important;
    border-radius: 0px;
}



#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    background-color: var(--idxs-primary-color) !important;
}

button:focus,
input[type="submit"]:focus {
    outline: none;
    box-shadow: none;
}

.woocommerce-form-login__submit, .woocommerce-form-register__submit, .gform_button {
    width: 100% !important;
}

.gform_button {
    margin-top: 15px;
}

/* Order table buttons */

.woocommerce-button--next::after {
    display: none;
}

.my_account_orders .button.view::after {
    display: none;
}

/* FORM ELEMENTS */


.label {
    margin-bottom: 5px;
}

.woocommerce label, .gfield-label, .gfield_label {
    font-weight: 600;
}

.description {
    margin-bottom: 10px;
}

input[type=text], input[type=number], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=search], textarea, .input-text {
    border-width: 1px;
    border-color: #000;
    border-style: solid;
    background-color: #fff;
}

input:focus {
    outline-color: var(--idxs-primary-color);
}

input[type='radio'] {
    accent-color: #000000;
}

/* Select2 Base Styling - Match Input Fields */
.select2-container--default .select2-selection--single {
    border: 1px solid #000 !important;
    border-radius: 0px !important;
    height: 48px !important;
    background-color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 12px !important;
    color: #000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    top: 0 !important;
}

/* Select2 Focus State */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--idxs-primary-color) !important;
    outline: 1px solid var(--idxs-primary-color) !important;
}

/* Select2 Dropdown */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--idxs-primary-color) !important;
}

.select2-dropdown {
    border: 1px solid #000 !important;
    border-radius: 0px !important;
}

/* Select2 Clear Button */
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 10px !important;
    font-size: 18px !important;
}

/* Checkout Select2 Width */
.woocommerce-checkout .select2-container {
    width: 100% !important;
    min-width: 100% !important;
}

/* Registration and Account Page Select2 */
.woocommerce-form-register .select2-container,
.woocommerce-EditAccountForm .select2-container,
.idxs-select2,
.idxs-select2-registration {
    width: 100% !important;
}

/* Ensure consistent height for all select elements */
select:not(.orderby), .select2-container {
    min-height: 48px !important;
}

.storefront-sorting select {
    border-radius: 0px;
    padding: 4px;
}

.woocommerce-result-count {
    margin-top: 2px;
}

.gform_body legend {
    margin-bottom: 10px;
}

.gform_validation_errors {
    border-bottom: 2px solid #E5924F;
    margin-bottom: 20px;
}

.gform_validation_errors h2 {
    color: #E5924F;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    font-family: var(--idxs-paragraph-font),"Source Sans Pro","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

.gform_validation_errors .gform-icon {
    margin-right: 4px;
}

.woocommerce-form-login .form-row {
    width: 100%;
}

.woocommerce-form-login label, .woocommerce-form-register label {
    font-weight: 600;
}

label.woocommerce-form-login__rememberme {
    margin-bottom: 20px !important;
}

.woocommerce-form-login {
    margin-bottom: 0px;
}

.gfield_required {
    margin-left: 2px;
}

/* Adjust width of injected company address dropdown */

#idxs_company_shipping_addresses_field .select2 {
    max-width: 80% !important;
}

/* TABLES */

table th {
    font-size: 18px;
}

table td {
    font-size: 16px;
}

.shorter-table th, .shorter-table td {
    padding: 5px 10px 5px 10px;
} 

/* NOTIFICATIONS */

.woocommerce-message:focus,
.woocommerce-info:focus,
button:focus,
input[type="submit"]:focus {
    outline: none;
    box-shadow: none;
}

.woocommerce-info,
.woocommerce-message,.wc-block-components-notice-banner, .wc-block-components-notice-banner a {
    background-color: var(--idxs-primary-color) !important;
    border-radius: 0px !important;
    color: #fff !important;
    border-color: var(--idxs-primary-color) !important;
}

.wc-block-components-notice-banner .button {
    border-radius: 0px !important;
    color: #fff !important;
    border-color: #fff !important;
}

body:not(.single-product, .woocommerce-cart, .woocommerce-checkout) .woocommerce-message, body:not(.single-product, .woocommerce-cart, .woocommerce-checkout) .woocommerce-error {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 85% !important;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
    margin-bottom: 20px;
    margin-top: 0px;
}

.woocommerce-active a.button.wc-forward {
    color: #ffffff !important;
    opacity: 1;
}

#moove_gdpr_cookie_info_bar {border-radius: 0px !important;}
.moove-gdpr-company-logo-holder, .woocommerce-wc-smart-coupons #moove_gdpr_cookie_info_bar {display: none !important;}

/**********
 * LAYOUT COMPONENTS
**********/

/* HEADER & NAVIGATION */

/* Manage Communications menu item spacing*/

#menu-item-80 {
    line-height: 1.5;
}

/* Admin bar on frontend */

.woocommerce-site-status-badge-live {
    display: none;
}

/* Primary navigation */

.site-header .col-full {
    max-width: 85%;
}

@media all and (min-width: 768px) {
   .storefront-primary-navigation {
      display: none !important;
   }
}

.secondary-navigation .menu ul a {
    background: #ffffff;
}

.site-header .site-branding img {
    max-height: 44px;
    margin-top: 2px;
    width: auto;
    max-width: auto;
}

.site-header-cart .widget_shopping_cart {
    background-color: #fff;
}

.site-header-cart .widget_shopping_cart .buttons, .site-header-cart .widget_shopping_cart .total {
    background-color: #fff;
}

.site-header {
    padding-top: 20px;
}

.storefront-primary-navigation {
    margin-top: -20px;
}

@media all and (min-width:767px) {
    .site-content {
        padding-top: 30px;
    }
}

/* Sub menu */

@media all and (min-width: 768px) {
    .sub-menu .menu-item {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media all and (min-width: 768px) {
    .sub-menu {
        border-style: solid;
        border-width: 2px;
        border-color: #f7f7f7;
        border-top-width: 0px !important;
    }
}

.sub-menu {
    margin-top: 20px;
    }

.main-navigation.toggled .handheld-navigation {
    padding-top: 30px;
}

.storefront-handheld-footer-bar ul li.shop > a:before {
    content: "\f54f";
}

.secondary-navigation .menu {
    font-size: 16px;
}

.secondary-navigation .menu a {
    padding-bottom: 10px !important;
}

@media all and (min-width: 981px) {
    .handheld-menu-item-only {
        display: none !important;
    }
}

.storefront-secondary-navigation.woocommerce-active .site-header .site-branding {
    width: auto;
    margin-right: 20px;
}

.storefront-secondary-navigation.woocommerce-active .site-header .secondary-navigation {
    width: auto;
    float: right;
    margin-right: 0px;
}

#site-navigation {
    width: auto;
}

.site-search {
    margin-top: 0px;
    margin-right: 25px !important;
    float: left !important;
}

#woocommerce-product-search-field-0 {
    border-color: #d3d3d3;
}

#site-header-cart {
    margin-right: 30px;
    float: left;
}

.site-header-cart .cart-contents {
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart-contents::after {
    float: left !important;
    margin-right: 15px;
}

/* Mobile toggle menu */

#site-navigation-menu-toggle > span  {
    color: var(--idxs-primary-color);
}

button.menu-toggle, button.menu-toggle:hover {
    border: 2px solid var(--idxs-primary-color);
}

button.menu-toggle:after, button.menu-toggle:before, button.menu-toggle span:before {
    background-color: var(--idxs-primary-color);
}

/* BETTER FOOTER (v2) */

/* Footer styles */

.site-footer .widget-title, .site-footer .wp-block-heading  {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.site-footer .widget-title {
    margin-bottom: 0px;
}

.site-footer .widget_block {
    margin-bottom: 10px;
}

.site-footer {
    color: #ffffff !important;
    text-align: center;
}

.site-footer a, .site-footer p {
    font-size: 14px;
}

.site-footer .menu-item {
    margin-bottom: 0px !important;
}

/* FOOTER */

.site-footer {
    background-color: var(--idxs-primary-color) !important;
}

.site-footer .widget .widget-title, .site-footer .wp-block-heading, .site-footer a:not(.button):not(.components-button) {
    color: #ffffff;
}

.site-footer .col-full {
    max-width: 85%;
}

@media all and (max-width: 1024px) {
    .site-footer .col-full {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    }
}

.site-footer .footer-widgets {
    padding-top: 25px;
}

.site-footer .wp-block-heading {
    margin-bottom: 0px;
    font-size: 1.41575em;
    font-weight: inherit;
}

.site-footer .widget-title {
    margin-bottom: 15px;
    padding-bottom: 0px;
    font-weight: inherit;
}

.site-footer .widget_nav_menu ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.wc-block-mini-cart__button {
    padding: 0 !important;
}

.site-footer .menu-item::before {
    display: none;
}

.site-footer .wc-block-grid__product, .site-footer .wc-block-grid__product li, .site-footer .product_list_widget li {
    margin-bottom: 10px;
    text-align: left !important;
    border-bottom: 0px;
    border-left: 0px solid transparent;
}

/* Footer widget borders */

.widget .widget-title, .widget .widgettitle, .footer-widgets {
    border-bottom: 0px;
}

/* Remove Footer Site Info */

.site-info {
    display: none;
}

/* WIDGETS */

.widget-area .widget {
    font-size: 16px;
}

.widget-area .widget a {
    text-decoration: none;
    padding-bottom: 8px;
}

.widget {
    margin-bottom: 20px;
}

.widget_recently_viewed_products .woocommerce-Price-amount, .widget_recently_viewed_products .attachment-woocommerce_thumbnail, .widget_nav_menu ul li::before  {
    display: none;
}

.widget_recently_viewed_products .product_list_widget li {
    padding-top: 0px;
    padding-bottom: 12px;
}

.widget_recent_entries ul li, .widget_pages ul li, .widget_categories ul li, .widget_archive ul li, .widget_recent_comments ul li, .widget_nav_menu ul li, .widget_links ul li, .widget_product_categories ul li, .widget_layered_nav ul li, .widget_layered_nav_filters ul li {
    padding-left: 0px !important;
}

/**********
 * TEMPLATE PAGE STYLES
**********/

/* FULLWIDTH (ALL) */

.page-template-template-fullwidth:not(.home) {

    .site-content .wp-post-image:not(.size-woocommerce_thumbnail) {
        display: none;
    }

    .site-content .col-full {
        min-width: 100%;
        padding: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .site-content {
        padding-top: 0px;
    }

    .entry-header {
        min-width: 100%;
        padding-top: 30px;
        padding-bottom: 75px;
        background-blend-mode: overlay;
        background-repeat: none;
        background-position: center;
        background-size: cover;
    }

    .entry-content {
        box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.01), 5px 5px 10px 10px rgba(0,0,0,0.05);
        padding: 50px;
        margin-top: -75px;
        margin-left: auto;
        margin-right: auto;
        max-width: 85%;
        background-color: #fff;
    }

    .entry-content:has(.vgca-iframe-wrapper) {
        padding: 20px;
    }
}

@media all and (min-width: 468px) and (max-width: 1024px) {

    .page-template-template-fullwidth:not(.home) {

        .entry-header {
            min-width: 100%;
            display: relative;
            padding-top: 30px;
            padding-bottom: 75px;
        }

        .entry-content {
            box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.01), 5px 5px 10px 10px rgba(0,0,0,0.05);
            padding: 30px;
            margin-top: -75px;
            margin-left: auto;
            margin-right: auto;
            max-width: 90%;
            background-color: #fff;
        }

        .entry-content:has(.vgca-iframe-wrapper) {
                  padding: 20px;
        }
    }
}

@media all and (max-width: 467px) {

    .page-template-template-fullwidth:not(.home) {

        .entry-header {
            min-width: 100%;
            display: relative;
            padding-top: 30px;
            padding-bottom: 75px;
        }

        .entry-content {
            box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.01), 5px 5px 10px 10px rgba(0,0,0,0.05);
            padding: 25px;
            margin-top: -75px;
            margin-left: auto;
            margin-right: auto;
            max-width: 90%;
            background-color: #fff;
        }

        .entry-content:has(.vgca-iframe-wrapper) {
                  padding: 10px;
        }
    }
}

/* SHOP */

.woocommerce-shop .col-full {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-shop .site-main {
padding-top: 5px;
}

.woocommerce-shop .woocommerce-products-header {
    display: none;
}

/* Shop sorting */

.storefront-sorting {
    float: right;
}

.woocommerce-pagination {
    margin-left: 10px;
}

@media all and (max-width: 767px) {

    .storefront-sorting, .storefront-sorting select {
        width: 100%;
    }

    .woocommerce-ordering {
        margin-bottom: 10px;
    }
}

/* Shop filters */

.facet-search {
    display: none;
}

.wp-block-elasticpress-facet .searchable .inner {
    max-height: none;
    overflow: auto !important;
}

.ep-checkbox {
    background-color: #fff;
    border: 1px solid rgba(25, 23, 17, .48);
    border-radius: 0px;
    box-sizing: border-box;
    font-size: 1em;
    height: 1.5em;
    margin: 0 1em 0 0;
    min-height: 1.5em;
    min-width: 1.5em;
    overflow: hidden;
    position: static;
    vertical-align: middle;
    width: 1.5em;
}

.ep-checkbox .checked {
    color: #000;
}

.wc-block-components-checkbox input[type=checkbox] {
    border-radius: 0px !important;
}

.woocommerce-shop .terms a {
    font-size: .875em;
    color: #000;
}

.woocommerce-shop .term, .woocommerce-shop .wc-block-components-checkbox {
    margin-top: .5em;
}

/* Mobile item filters */

@media all and (min-width:768px) {
    .item-filters-link {
            display: none;
    }
}

.item-filters-link p {
    margin-bottom: 15px;
}

.item-filters-link a::before {
    content: "∇";
    margin-right: 10px;
}

.item-filters-link {
    a {
    display: block;
    font-size: 14px;
    padding: 8px 4px 8px 4px;
    border: 2px solid var(--idxs-primary-color);
    border-radius: 2px;
    text-decoration: none;
    color: var(--idxs-primary-color);
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
    }
}

/* Hidden filter categories */

.term[data-term-slug="exports"],
.term[data-term-slug="custom"],
.term[data-term-slug="uncategorized"] {
    display: none;
}

/* Hide color, size, and tag filters */

#secondary {
    /* #block-10,  Tags */
    /* #block-11, */
    #block-12, /* Colors */
    #block-13,
    #block-14, /* Sizes */
    #block-15,
    #block-16, /* Price */
    #block-17 {
        display: none;
    }
}

/* 404 & SEARCH PAGES */

.error-404 section[aria-label="Search"],
.error-404 .fourohfour-columns-2,
.error-404 section[aria-label="Popular Products"],
.error-404 p {
    display: none;
}

.not-found .search-form,
.not-found .fourohfour-columns-2,
.not-found section[aria-label="Popular Products"] {
    display: none;
}

/* SINGLE PRODUCT PAGES */

/* Main product image - fills container 
.woocommerce-product-gallery__image img {
    min-width: 100%;
    min-height: 100%;
} */

/* Gallery thumbnails - natural size (100x100) 
.woocommerce-product-gallery__wrapper .flex-control-thumbs img {
    min-width: auto;
    min-height: auto;
} */

.single-product .site-content {
    padding-top: 0px;
}

.single-product .col-full {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.single-product .storefront-breadcrumb {
    display: block;
    padding-top: 20px;
    padding-bottom: 0px;
    margin-bottom: 5px;
}

.single-product .entry-summary h1 {
    margin: 0px 0px 10px 0px;
}

@media all and (max-width: 467px) {
    .woocommerce-product-gallery,
    .single-product div.product .images {
        margin-bottom: 20px;
    }
}

.single-product div.product p.price {
    margin-top: 0px;
    margin-bottom: 20px;
}

.stock {
    margin-bottom: 5px;
}

/* Variation selections */

.rtwpvs.rtwpvs-squared .rtwpvs-terms-wrapper .rtwpvs-term {
    border-radius: 0px !important;
}

.rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term span.rtwpvs-term-span {
    padding: 4px 8px;
}

.rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).selected {
    box-shadow: 0 0 0 3px var(--idxs-primary-color) !important;
}

.single-product div.product .variations_button {
    padding-top: 5px;
}

.single-product .product-addon-totals {
    display: none;
}

.select-variation-label {
    margin-bottom: 0px;
    margin-top: 20px;
}

.single-product .variations label {
    display: none;
}

.woocommerce-variation-price {
    font-size: 22px;
}

.single-product #primary {
    width: 100% !important;
}

/* Add-ons styling */

.wc-pao-addon .wc-pao-addon-wrap select {
    border-color: #000;
    border-radius: 0px;
    padding: 8px;
    min-width: 100%;
}

.wc-pao-addons-container {
    margin-bottom: 30px;
    max-width: 500px;
}

.wc-pao-addon {
    margin-bottom: 10px;
}

.wc-pao-addon-wrap .input-text {
    height: 40px;
}

.wc-pao-addon-description p {
    margin-bottom: 5px;
}

.woocommerce .wc-pao-addon .wc-pao-addon-wrap label, .wc-pao-addon label.wc-pao-addon-name {
    font-weight: 600;
}

/* Hiding single product page categories */

.single-product div.product .product_meta a[href$="exports/"],
.single-product div.product .product_meta a[href$="custom/"],
.single-product div.product .product_meta a[href$="uncategorized/"],
.single-product div.product .product_meta a[href$="personalization/"] {
    display: none;
}

/* DIVI BUILDER PAGES */

.et-tb-has-body #masthead {
    margin-bottom: 0px;
}

.et-tb-has-body #content {
    padding-top: 0px;
}

.et-tb-has-body .site-content .col-full {
    max-width: 100%;
    width: 100%;
    padding: 0px;
}

.et-tb-has-body #primary {
    margin-bottom: -70px;
}

.et-tb-has-body .entry-title {
    display: none;
}

/**********
 * PAGE SPECIFIC STYLES
**********/

/* HOME PAGE */

.home {

    .rtwpvs-archive-variation-wrapper {
        display: none;
    }

    .site-header {
        margin-bottom: 0px !important;
    }

    .site-content {
        padding-top: 0px;
    }

    .site-content .col-full {
        max-width: 100%;
    }

    .entry-header {
        min-width: 100%;
        display: relative;
        padding-top: 150px;
        padding-bottom: 200px;
        background-blend-mode: overlay;
        background-repeat: none;
        background-position: center;
        background-size: cover;
    }

    .entry-header .wp-block-heading {
        max-width: 80%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-category .count {
        display: none;
    }

    .home-content {
        box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.05), 5px 5px 10px 10px rgba(0,0,0,0.05);
        padding: 50px;
        margin-top: -75px;
        margin-left: auto;
        margin-right: auto;
        max-width: 85%;
        background-color: #fff;
    }
}

@media all and (min-width: 468px) and (max-width: 1024px) {

    .home {

        .entry-header {
            min-width: 100%;
            display: relative;
            padding-top: 100px;
            padding-bottom: 150px;
        }

        .home-content {
            box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.05), 5px 5px 10px 10px rgba(0,0,0,0.05);
            padding: 30px;
            margin-top: -75px;
            margin-left: auto;
            margin-right: auto;
            max-width: 90%;
            background-color: #fff;
        }
    }
}

@media all and (max-width: 467px) {

    .home {

        .home-content {
            box-shadow: -5px -5px 10px 10px rgba(0,0,0,0.05), 5px 5px 10px 10px rgba(0,0,0,0.05);
            padding: 25px;
            margin-top: -75px;
            margin-left: auto;
            margin-right: auto;
            max-width: 95%;
            background-color: #fff;
        }

        .entry-header {
            min-width: 100%;
            display: relative;
            padding-top: 100px;
            padding-bottom: 150px;
        }
    }
}

/* DASHBOARD PAGES - CUSTOM STYLES FOR /DASHBOARD/ AND CHILDREN */

/* Desktop and Tablet only (min-width: 468px) */
@media all and (min-width: 468px) {
    .idxs-frontend-dashboard .entry-header {
        padding-top: 30px !important;
        padding-bottom: 75px !important;
    } 

    .idxs-frontend-dashboard .entry-content {
       /* box-shadow: none !important; */
        max-width: 95% !important;
        margin-top: -75px !important;
    }
}

/* ACCOUNT PAGE */

.page-id-14 .entry-content:has(#customer_login) {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

.page-id-14 .entry-content:has(#customer_login) .col-1 {
    width: 100%
}

.page-id-14 .entry-content:has(#customer_login) .col-2 {
    display: none;
}

.page-id-14 .entry-content:has(.woocommerce-ResetPassword) {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

.page-id-14 .entry-content:has(.woocommerce-ResetPassword) .form-row-first, .page-id-14 .entry-content:has(.woocommerce-ResetPassword) .form-row-last {
    width: 100%;
}

/* Adjust Width of Edit Account */

.woocommerce-edit-account .entry-content {
    width: 600px !important;
    margin-left: auto;
    margin-right: auto;
}

/* Hide Login H3 Header */

.woocommerce-account #customer_login h2 {
    display: none;
}

/* Hide Account Navigation */

.woocommerce-MyAccount-navigation {
    display: none;
}

/* Full-width on Content */

.woocommerce-MyAccount-content {
    width: 100% !important;
}

/* Hide Save Cart Icon on Share Cart Popup on Saved Carts */

a[data-wcss-save-cart] {
    display: none !important;
}

/* Hide Register Content on WooCommerce Account Page */

.woocommerce-account .woocommerce-form-register {
    display: none;
}

.woocommerce-account #customer_login > div.u-column2.col-2 > h2 {
    display: none;
}

/* Adjustments to Smart Coupons Offers Account Endpoint and General */

.wc_sc_coupon_actions_wrapper h2 {
    display:none;
}

.woocommerce-wc-smart-coupons h2, .woocommerce-wc-smart-coupons p {
    display: none !important;
}

.wc_sc_total_available_store_credit {
    float: left;
}

.wc_sc_total_available_store_credit .amount {
    font-size: 16px !important;
}

/* Change Saved Cart Search Width */

#wcss-saved-cart-search {
    max-width: 355px;
}

/* Edit Account Form */

.woocommerce-EditAccountForm {
    max-width: 600px;
}

.woocommerce-EditAccountForm fieldset {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-bottom: 0px;
    background-color: rgba(0,0,0,0);
}

.woocommerce-EditAccountForm fieldset legend {
    background-color: rgba(0,0,0,0);
    font-size: 20px;
    font-weight: 600;
    text-transform: Capitalize;
}

/* WooCommerce Logout Edit */

.woocommerce-customer-logout p {
    display: none;
}

/* Hide My Account Sidebar Menu on Account Page */

.page-template-template-fullwidth-php .woocommerce-MyAccount-navigation {
    float: left;
    padding-right: 50px;
}

/* Storefront Remove My Account Icons */

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a::before {
    display: none;
}

/* DASHBOARD PAGE */

.entry-content:has(#loginform) {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

@media all and (max-width:467px) {
    .entry-content:has(.vgca-iframe-wrapper) {
        max-width: 100% !important;
        margin-top: -65px !important;
    }
}

/* RESTRICTED PAGE */

.page-id-69 .entry-content {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

.page-id-69 h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

/* CONTACT PAGE  */

.page-id-53 .entry-content {
    width: 650px !important;
    margin-left: auto;
    margin-right: auto;
}

/* REGISTER PAGE */

.page-id-55 .entry-content {
    width: 600px !important;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-privacy-policy-text {
    font-size: 12px;
}

/* LOGIN PAGE */

.page-id-67 .entry-content {
    width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

/* WELCOME PAGE */

.page-id-71 .woocommerce {
    display: none !important;
}

/* OFFERS PAGE */

.woocommerce-wc-smart-coupons .entry-content {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CUSTOM PRODUCT QUOTE PAGE */

.postid-75 .product_title {
    margin-bottom: 30px;
}

.postid-75 .price,
.postid-75 .related,
.postid-75 .product_meta, .postid-75 .inventory-notice {
    display: none;
}

#main .postid-75 {
    max-width: 1000px !important;
    margin-left: auto;
    margin-right: auto;
}

/* CART PAGE */

#coupons_list {
    border-radius: 0px !important;
}

.wcss-popup, .wcss-popup__header-close {
    border-radius: 0px;
}

@media all and (max-width: 467px) {
    .woocommerce-cart .coupon .button, .woocommerce-cart .button:disabled {
        width: 100%;
        margin-bottom: 10px;
    }
}

button[data-wcss-popup-open] {
    display: none !important;
}

.woocommerce-cart li #shipping_method_0_flat_rate5, .woocommerce-cart #shipping_method_0_flat_rate5 + label {
    display: none !important;
}

.woocommerce-cart li #shipping_method_0_flat_rate4, .woocommerce-cart #shipping_method_0_flat_rate4 + label {
    display: none !important;
} 

/* CHECKOUT PAGE */

/* Hide billing label */

.woocommerce-billing-fields h3:nth-child(1) {
        display: none;
    }

/* Hide custom field label */

.thwcfe-input-field-wrapper [id^="cf_"] label {
    display: none;
}

.woocommerce-checkout .custom-field label {
    display: none;
}

/* Always display field descriptions */

.woocommerce-checkout .custom-field .description {
    display: block !important;
}

/* Hide Label Headers for Custom Fields : TBD */

.woocommerce-checkout .custom-field label {
    display: none;
}

/* Hide multiple success message for Smart Coupons */

.woocommerce-checkout .wc-block-components-notice-banner:nth-child(3) .is-success, .woocommerce-checkout .wc-block-components-notice-banner:nth-child(4) .is-success, .woocommerce-checkout .wc-block-components-notice-banner:nth-child(2) .is-success, .woocommerce-checkout .wc-block-components-notice-banner:nth-child(5) .is-success {
    display: none;
}

/* CHECKOUT ORDER RECIEVED */

.woocommerce-thankyou-order-details {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

ul.order_details::before, ul.order_details::after {
    display: none;
}

h2.woocommerce-order-details__title {
    display: none;
}

.order-received section.woocommerce-customer-details {
    display: none !important;
}

#order_review_heading {
    padding-bottom: 0px;
    margin-bottom: 18px;
}
