:root {
    /* Colors */
    --color-primary: #F8A600;
    --color-text: #747474;
    --color-border: #dedede;
    --color-background: #fff;
    --color-background-light: #f7f7f7;
    --color-background-gray: #edeeee;
    --color-error: #FF4A48;
    --color-success: #090;
    --color-info: #03a9f4;
    --color-text-dark: #000;
    --color-text-light: #fff;

    /* Border Radius */
    --border-radius-sm: 3px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 16px;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*,
body,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1,
.h1 {
    font-size: 2.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

body {
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: var(--color-text);
}

a {
    text-decoration: none;
    transition: 0.5s ease;
    display: inline-block;
}

.page-width {
    width: 100%;
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto;
}

.blockHeader {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 10px;
}

img {
    max-width: 100%;
}

.woocommerce ul.products li.product a img {
    border-top-right-radius: var(--border-radius-md);
	border-top-left-radius: var(--border-radius-md);
} 

.woocommerce ul.products li.product .button {
    margin-top: 4px;
}

.site_logo img.img-fluid {
    max-width: 320px;
}

.site_logo {
    margin: 0px 0;
}

.user-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.user-area .text-sm-center {
    width: 100%;
    text-align: center;
}

.user-area .text-sm-center a {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 3px;
}

header.main_header {
    border-bottom: solid 3px var(--color-primary);
}

ul.product_catList {
    max-width: 718px;
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

ul.product_catList li {
    list-style: none;
}

.AllItem_SearchBar {
    margin-bottom: 30px;
}

ul.product_catList li a {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: var(--border-radius-md);
}

ul.product_catList li a:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

ul.product_catList li a img {
    height: 100%;
    object-fit: cover;
    border-bottom: 10px;
    transition: all 1s ease;
}

ul.product_catList li a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

ul.product_catList li a span {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    min-height: 200px;
    flex-direction: column;
    justify-content: center;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 100%;
    border: 2px solid var(--color-border);
    background: var(--color-background-light);
    padding: 15px;
    display: inline-flex;
    text-align: center;
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
}

main {
    margin: 50px 0;
}

.ornament {
    background: var(--color-background-gray);
    padding: 15px 0;
}

.white-bg {
    background: var(--color-background);
    padding: 0 10px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
}

.white-bg img.gray-branding {
    max-width: 640px;
    width: 100%;
    object-fit: contain;
}

.mainBlock__footer ul.item_navbar-nav li.nav-item {
    display: block;
    padding: 5px 0;
    border-top: 1px solid var(--color-background-gray);
}

.mainBlock__footer ul.item_navbar-nav li.nav-item:first-child {
    border: none;
}

.mainBlock__footer ul.item_navbar-nav li.nav-item a {
    color: var(--color-text);
}

.mainBlock__footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
}

.copyright_footerBlock {
    background: var(--color-primary);
    padding: 8px 0;
}

.mainCopyRight {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 10px;
}

.copyright_Links ul.item_navbar-nav {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.copyright_Links ul.item_navbar-nav li.nav-item {
    padding: 0 10px;
}

.copyright_Links ul.item_navbar-nav li.nav-item a.nav-link {
    color: var(--color-text-light);
    font-size: 12px;
}

.mainCopyRight p {
    font-size: 12px;
    color: var(--color-text-light);
}

.mainBlock__footer ul.item_navbar-nav {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.user-area .text-sm-center a:hover {
    text-decoration: underline;
}

.user-area .text-sm-center a span {
    color: var(--color-text-light);
    font-size: 12px;
    border-radius: var(--border-radius-xl);
    padding: 2px 2px;
    background: var(--color-error);
    font-style: normal;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
}

.ysm-search-widget .search-field[type="search"] {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    z-index: 101;
    position: relative;
    background: var(--color-background);
    transition: all .4s ease;
    width: 100%;
    min-height: 40px;
}

.AllItem_SearchBar {
    display: grid;
    grid-template-columns: 176px 1fr;
    grid-gap: 30px;
    position: relative;
}

.Alle_Menus_Button ul.list-unstyled {
    margin: 1rem 0;
    list-style: none;
}

.Alle_Menus_Button ul.list-unstyled a.btn.reset {
    font-size: 16px;
    color: #747474;
    font-family: "Raleway", sans-serif;
}

.AllItem_SearchBar .absolute-container {
    position: absolute;
    background: var(--color-background);
    border-radius: var(--border-radius-md);
    z-index: 100;
    padding: 30px;
    border: 1px solid var(--color-border);
    white-space: nowrap;
    margin-top: 15px;
    width: calc(100% - 0px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    left: 0px;
}

.AllItem_SearchBar .absolute-container:before {
    content: '';
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-border);
    border-bottom-color: transparent;
    border-right-color: transparent;
    position: absolute;
    top: -3px;
    left: 50%;
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    display: block;
    background: var(--color-background);
}

.AllItem_SearchBar .absolute-container:after {
    content: '';
    height: 20px;
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
}

ul:hover .absolute-container {
    opacity: 1;
    visibility: visible;
}

.ysm-search-widget .search-submit {
    z-index: 999;
}

/* 21-03-2024 -----------------*/

nav.woocommerce-breadcrumb a:first-child::before {
    content: "\f015";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    text-rendering: auto;
    color: var(--color-primary);
    font-size: 25px;
}

.wooCustom-breadcrumbs {
    background: var(--color-background-gray);
    border-bottom: 1px solid rgba(218, 218, 218, 0.7);
}

nav.woocommerce-breadcrumb a {
    position: relative;
    margin: 0 20px 0 10px;
}

nav.woocommerce-breadcrumb a:first-child {
    font-size: 0;
}

nav.woocommerce-breadcrumb a::after {
    content: '';
    width: 1px;
    height: 28px;
    background: var(--color-border);
    position: absolute;
    right: -10px;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

nav.woocommerce-breadcrumb {
    font-size: 11.2px !important;
    display: flex;
    align-items: center;
    padding: 10px 0 !important;
    margin: 0 !important;
    flex-wrap: wrap;
    row-gap: 7px;
}

.site-main {
    margin: 0;
}

.main_collectionBlock {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 0;
}
nav.woocommerce-pagination { 
    width: 100%;
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto 50px;
}
.filterBlock_items {
    background: var(--color-background-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
}

ul.woocommerce-widget-layered-nav-list {
    list-style: none;
}

li.woocommerce-widget-layered-nav-list__item {
    border-top: 1px solid var(--color-border);
}

li.woocommerce-widget-layered-nav-list__item:first-child {
    border-top: none;
}

li.woocommerce-widget-layered-nav-list__item a {
    padding: 10px 30px 10px 35px !important;
    color: var(--color-text-dark);
    width: 100%;
}

/* Spinner Overlay */
.spinner-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    z-index: 9999;
    /* Make sure it's on top of everything else */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

/* Loading Spinner on home page */
.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    /* Light grey border */
    border-left: 8px solid #3498db;
    /* Blue border */
    border-radius: 50%;
    /* Round shape */
    width: 50px;
    /* Size */
    height: 50px;
    /* Size */
    animation: spin 1s linear infinite;
    /* Spin animation */
    position: absolute;
    left: 50%;
    top: 50%;
}

/* Spin Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Non-blocking sync indicator - content remains visible */
.sync-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.woocommerce .woocommerce-ordering,
p.woocommerce-result-count {
    float: unset;
}

.productsRight_block li.product {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    height: 100%;
    margin: 0 30px 0 0;
}

.productsRight_block li.product:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.list_ContentArea {
    padding: 0 20px 20px 20px !important;
}

.productsRight_block li.product .woocommerce-placeholder {
    border: none !important;
}

.productsRight_block a.woocommerce-LoopProduct-link:hover {
    text-decoration: underline !important;
    color: var(--color-text);
}

h2.woocommerce-loop-product__title {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 400;
    margin-bottom: 0 !important;
    line-height: 1.5;
}

li.product span.sku {
    color: var(--color-text);
    font-size: 12.8px;
}

.productsRight_block .product span.price {
    border-top: 1px solid var(--color-border);
    margin: 1.5rem 0;
    padding-top: 1.5rem;
}

.productsRight_block span.woocommerce-Price-amount {
    color: var(--color-text-dark);
    font-weight: bolder;
}

form.cart .quantity .qty {
    width: 70px;
    border-radius: var(--border-radius-md);
    text-align: center;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--color-border);
    font-size: 18px;
    color: var(--color-text);
}

form.variations_form.cart {
    display: block;
}

form.cart {
    flex-wrap: wrap;
}

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

.productsRight_block button.button.add_to_cart_icon_btn {
    /* margin: 0 !important; */
    min-height: 40px;
    /* background-color: #F8A600 !important; */
    font-size: 0;
    padding: 0 22px;
    position: relative;
}

button.button.add_to_cart_icon_btn:before {
    content: "\f07a";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

.stockMainShop_page {
    margin-top: 10px;
}

.stockMainShop_page .input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: 1px solid var(--color-success);
    color: var(--color-success);
    border-radius: var(--border-radius-md);
    align-items: center;
    min-height: 40px;
}

span.inSTockTAg {
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 100%;
    padding: 5px 10px;
}

.stockMainShop_page .input-group-addon {
    background: var(--color-success);
    padding: 7px 12px;
}

.stockMainShop_page .input-group-addon .fa-check:before {
    color: var(--color-text-light);
}

h2.widgettitle {
    padding: 0 0px;
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.filterBlock_items .woocommerce-widget-layered-nav {
    padding: 32px 16px;
    border-bottom: 1px solid var(--color-border);
}

.stockMainShop_page .outofStock_icon+.input-group-addon {
    padding: 7px 16px;
}

span.inSTockTAg.outTagStock.outofStock_icon {
    font-size: 16px;
}

select.woocommerce-widget-layered-nav-dropdown,
.productsRight_block select.orderby,
.variations td.value select {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 0 30px 0 10px;
    cursor: pointer;
    color: var(--color-text);
    height: 32px;
    font-size: 13px;
    letter-spacing: 0.2px;
}

li.woocommerce-widget-layered-nav-list__item a:hover {
    text-decoration: underline;
}

.productsRight_block form.woocommerce-ordering {
    width: 100%;
    max-width: 280px;
    margin: 0 !important;
}

.productsRight_block .wooCustom__resultCount_Ordering {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 3rem;
    padding-bottom: 10px;
    align-items: center;
}

.productsRight_block p.woocommerce-result-count {
    margin-bottom: 0 !important;
}

li.woocommerce-widget-layered-nav-list__item span.count {
    display: none;
}

.shippingInformation_modal li,
.shippingInformation_modal li:first-child a {
    color: #000;
}

/* Product Page ----------*/
h1.product_title {
    font-size: 40px;
    font-weight: 400;
    color: #F8A600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.mainProduct_Title {
    margin-top: 50px;
}

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

.ProductPage_cls .woocommerce-product-gallery {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.ProductPage_cls .flex-viewport {
    width: 75%;
    padding-left: 15px;
}

.ProductPage_cls ol.flex-control-nav {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding-right: 15px !important;
}

.ProductPage_cls ol.flex-control-nav li {
    width: 100%;
}

.ProductPage_cls .woocommerce-product-gallery__image a {
    border: 1px solid #dadada;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    width: 100%;
}

.ProductPage_cls ol.flex-control-nav li {
    border: 1px solid #dadada;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem !important;
    width: 100% !important;
}

.ProductPage_cls .product-sku {
    color: #747474;
    margin-bottom: 1rem;
}

.ProductPage_cls .product-sku span {
    font-weight: 600;
}

.ProductPage_cls p.price {
    color: #000 !important;
    font-weight: bolder;
    font-size: 26px !important;
    margin-bottom: 8px;
}

ul.shippingInformation_modal {
    list-style: none;
}

.ProductPage_cls .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ProductPage_cls form.cart .quantity {
    width: 25%;
}

.ProductPage_cls form.cart .custom-html {
    width: 66.666%;
}

.ProductPage_cls button.single_add_to_cart_button {
    width: 100%;
    margin-top: 1rem;
    /* background-color: #F8A600 !important; */
    padding: 20px 10px !important;
    font-size: 1.25rem;
    margin-bottom: .75rem;
    border-radius: 6px;
    font-weight: 500;
}

.zurEinkaufslisteBTN button.btn.shopping-list {
    border: 1px solid #dadada;
    background: #edeeee;
    font-size: 1.25rem;
    padding: 18px 10px;
    color: #F8A600;
    border-radius: 6px;
    cursor: pointer;
}

.ProductPage_cls form.cart button.single_add_to_cart_button:before {
    font-size: 1.25rem !important;
}

/* .ProductPage_cls button.single_add_to_cart_button:hover,
.ProductPage_cls button.single_add_to_cart_button.button.alt.disabled {
    background-color: #F8A600;
} */

.ProductPage_cls form.cart::before {
    content: none !important;
}

.ProductPage_cls .stockMainShop_page {
    margin-top: 0;
    width: calc(75% - 2px);
}

.ProductPage_cls form.cart .quantity .qty {
    min-width: 100px;
    width: calc(25% - 8px) !important;
    margin-bottom: 8px !important;
}

.ProductPage_cls form.cart .quantity .qty.input-text {
    width: 100% !important;
}

.woocommerce div.product form.cart div.quantity {
    min-width: 100px;
    width: calc(25% - 6px) !important;
}

.ProductPage_cls table.variations tr {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.variations td.value {
    width: 100%;
    line-height: normal !important;
}

.ProductPage_cls table.variations tr th label {
    font-weight: 500 !important;
}

.variations td.value select#pa_grose {
    font-size: 16px;
}


th.wcsfw-title {
    text-align: left !important;
    width: 180px;
    padding: 8px !important;
}
.woocommerce table.shop_attributes th {
    width: 180px;
    padding: 8px !important;
    text-align: left !important;
}

/* Variations table (all variations with stock, price, qty, add-to-cart) */
.woocommerce-variations-table-wrapper {
    margin: 1rem 0;
    overflow-x: auto;
}

.woocommerce-variations-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-variations-table th,
.woocommerce-variations-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce-variations-table thead th {
    font-weight: 600;
    border-bottom-width: 2px;
}

.product-add-to-cart-below {
    max-width: 780px;
    width: 100%;
}

span.variable-in-stock {
    color: var(--color-success) !important;
}

span.variable-out-of-stock-backorder {
    color: var(--color-info) !important;
}

div.product span.price {
    color: black !important;
}

.woocommerce-variations-table .variation-row.not-purchasable {
    opacity: 0.7;
}

/* Variations table form: block layout so bulk add-to-cart button is below the table */
form.variations_table_form.cart {
    display: block;
}

.woocommerce-variations-table th.variation-stock,
.woocommerce-variations-table td.variation-stock {
    min-width: 300px;
}

/* Quantity column: align header and quantity inputs (with +/- buttons) */
.woocommerce-variations-table th.variation-quantity,
.woocommerce-variations-table td.variation-quantity {
    vertical-align: middle;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.woocommerce-variations-table .variation-quantity .quantity {
    margin: 0;
    display: inline-flex;
    align-items: center;
}


/* Submit rows above and below table: span (selected count) left, button right */
.variations-table-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variations-table-submit-top {
    margin-bottom: 0.5rem;
}

.variations-table-submit-bottom {
    margin-top: 1rem;
}

.variations-table-selected-count {
    font-weight: 500;
}

.variations-table-submit .single_add_to_cart_button {
    white-space: nowrap;
    margin-left: auto;
}

.variations-table-submit .single_add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Quantity input with +/- buttons */
.quantity-with-buttons {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-with-buttons .quantity-minus,
.quantity-with-buttons .quantity-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
}

.quantity-with-buttons .quantity-minus:hover,
.quantity-with-buttons .quantity-plus:hover {
    background: #eee;
}

.quantity-with-buttons input.qty {
    width: 3rem;
    min-width: 3rem;
    margin: 0;
    padding: 0 0.25rem;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-with-buttons input.qty::-webkit-outer-spin-button,
.quantity-with-buttons input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a.remove-item-link {
    color: currentColor;
    text-decoration: underline;
    font-size: 12px;
}

@media (max-width: 768px) {

    /* Stack table and add-to-cart button; button full width underneath table */
    form.variations_table_form.cart {
        display: block;
    }

    form.variations_table_form.cart .woocommerce-variations-table-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }

    form.variations_table_form.cart .variations-table-submit {
        width: 100%;
        margin-top: 1rem;
    }

    form.variations_table_form.cart .variations-table-submit .single_add_to_cart_button {
        width: 100%;
        display: block;
    }

    .woocommerce-variations-table thead {
        display: none;
    }

    .woocommerce-variations-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: 1px solid #e5e5e5;
    }

    .woocommerce-variations-table td {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        padding: 0.5rem 0.75rem;
        border-bottom: 0px !important;
        border-top: 0px !important;
    }

    .woocommerce-variations-table span.variable-out-of-stock-backorder {
        width: 50% !important;
    }

    .woocommerce-variations-table td::before {
        content: attr(data-title);
        font-weight: 600;
        width: 50%;
        /* margin-right: 0.5rem; */
    }

    .woocommerce-variations-table td.variation-quantity {
        flex-wrap: wrap;
    }

    .woocommerce-variations-table td.variation-quantity::before {
        /* width: 100%; */
        margin-bottom: 0.25rem;
    }
}

p.VarianteAuswahlen {
    margin: 1rem 0;
}

.zurEinkaufslisteBTN button.btn.shopping-list,
.zurEinkaufslisteBTN {
    width: 100%;
}

.woocommerce-Tabs-panel h2 {
    display: none;
}

.woocommerce-Tabs-panel {
    border: 1px solid #dadada;
    padding: 3rem 25px !IMPORTANT;
    border-top: none;
}

li.description_tab {
    margin: 0 0 -1px !important;
}

.woocommerce-tabs ul {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #ddd;
}

ul.tabs.wc-tabs li.active {
    color: var(--color-text) !important;
    background-color: #fff !important;
    border-color: #ddd #ddd #fff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: .5em 1em !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow: visible !important;
}

ul.tabs.wc-tabs li {
    border: 1px solid transparent !important;
    border-top-right-radius: .31rem !important;
    border-top-left-radius: .31rem !important;
    padding: 0 !important;
}

.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs li.description_tab:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    content: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    position: absolute;
    content: "" !important;
    background: #fff !important;
    width: 100%;
    height: 2px;
    bottom: -2px;
    z-index: 999;
    border: none !important;
    box-shadow: none !important;
    left: 0;
}

.woocommerce-tabs ul.tabs li {
    background-color: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 500;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-primary);
}

.searchBar_header {
	align-self: center;
}

.searchBar_header .ysm-search-widget .search-field[type="search"] {
    font-style: normal !important;
}

.innerForm_item {
    display: grid;
    grid-template-columns: 1fr 1.85fr;
    grid-gap: 30px;
}


/* Address Page */

.btn-different-address {
	border-radius: 6px;
    border: 1px solid var(--color-border);
/*     min-height: 40px; */
    color: #747474;
    font-weight: 300;
    width: 100%;
    padding: .5rem .75rem;
/*     font-size: 1rem; */
    line-height: 1.25;
    color: #000;
}

.thwma-adr-box.address-box {
	border-radius: 6px !important;
}

/* End Address Page */

/* Account Page */


.account-page-inner form {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.account-page-inner form p.woocommerce-form-row {
    padding: 0;
    margin: 0 0 1rem 0;
}

.account-page-inner form p.woocommerce-form-row label {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 16px;
    line-height: normal;
}

.account-page-inner form p.woocommerce-form-row input {
    border-radius: 6px;
    border: 1px solid var(--color-border);
    min-height: 40px;
    color: #747474;
    font-weight: 300;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #000;
}

h2,
.h2 {
    font-size: 2rem;
}

.btn-yellow {
    background: #F8A600 !important;
    border-color: #F8A600 !important;
    color: #fff !important;
    white-space: nowrap;
    font-weight: normal !important;
    min-height: 40px;
}

.btn-yellow i {
    margin-left: 10px;
}

.innerLoginBlock_right h2 {
    margin: 40px 0 20px 0;
}

.innerLostPassword {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 30px;
}

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

.mainCopyRight p {
    margin: 0;
}

/*----Referenznummer & Express-Lieferung----*/
.cart_additional_fields label {
    font-weight: bold;
    display: inline-block;
    margin-bottom: .5rem;
}

.cart_additional_fields {
    margin-bottom: 2rem;
}

.cart_additional_fields input[type="text"] {
    margin-bottom: 0;
    border: 1px solid var(--color-border);
    min-height: 40px;
    color: #747474;
    font-weight: 300;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: .31rem;
}

.cart_additional_fields .input-group {
    align-items: center;
    display: flex;
    gap: 10px;
}

.cart_additional_fields input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}


.wooCart_page .cartPage_buttons {
    display: flex;
    margin-bottom: 1.5rem;
    padding-top: 50px;
    gap: 15px;
}

.wooCart_page .cartPage_buttons .btn_cart_btn {
    padding-right: 15px;
    padding-left: 15px;
}


.checkout-tooltip {
    display: none; /* Hidden by default */

/*     transform: translateX(-50%); */
    background-color: #eee;
    color: black;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
	margin-top: 10px;
    z-index: 1;
    font-size: 12px;
    opacity: 0.9;
}

#checkout-button[disabled]:hover + .checkout-tooltip {
    display: block;
}

.wooCart_page .cartPage_buttons i.fa.fa-chevron-left.left-aligned {
    margin-right: 10px !important;
}

.wooCart_page .cartPage_buttons .btn_cart_btn a.button.save-shopping-list {
    font-weight: 500;
    color: #000;
}

.wooCart_page .cartPage_buttons i.fa.fa-cart-plus,
.wooCart_page .cartPage_buttons i.fa.fa-chevron-right {
    margin-left: 10px;
}

.wooCart_page .cartPage_buttons .btn_cart_btn a.button.save-shopping-list:hover,
.wooCart_page .updateCart_button.btn_cart_btn button.updateProductCart_btn:hover {
    background: #c1c1c1 !important;
}

/* table.shop_table tbody tr td {
    padding-left: 0 !important;
    padding-right: 0 !important;
} */
.wooCart_page table.shop_table {
    border: none !important;
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
}

.wooCart_page table.shop_table th {
    padding: 12px !important;
}

.wooCart_page table.shop_table tr td h2.basket-supplier-name {
    font-size: 32px;
    margin: 40px 0 20px 0;
}

.woocommerce-cart table.cart td {
    vertical-align: top !important;
}

.wooCart_page table.shop_table td.product-price span {
    font-size: 16px;
    font-weight: bold;
    text-align: start;
}

.wooCart_page table.shop_table td input.input-text.qty.text {
    border-radius: 6px;
    border: 1px solid var(--color-border);
    min-height: 40px;
    color: #747474;
    font-weight: 300;
    padding-right: 10px;
    padding-left: 10px;
    width: 70px;
    font-size: 21px;
    text-align: start;
}

.wooCart_page table.shop_table .cartSipping_info ul {
    list-style: none;
}

.wooCart_page table.shop_table td.product-subtotal {
    text-align: end;
}

.wooCart_page table.shop_table .cartSubtotalPrice span {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.wooCart_page table.shop_table .cartSipping_info ul li {
    color: #000;
}

.wooCart_page table.shop_table td.product-thumbnail a img {
    width: 95px;
}

.wooCart_page .cartInput_propertys .form-group.item-note input,
.wooCart_page .cartInput_propertys .form-group.item-note select {
    border-radius: 6px;
    border: 1px solid var(--color-border);
    min-height: 40px;
    color: #747474;
    font-weight: 300;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
}

.wooCart_page table.shop_table .cartInput_propertys .form-group.item-note {
    padding-bottom: 1rem;
}

.wooCart_page table.shop_table .cartInput_propertys .form-group.item-note label {
    display: inline-block;
    margin-bottom: .5rem;
}

.wooCart_page table.shop_table .cartSKU {
    margin-bottom: 1rem;
}

.wooCart_page table.shop_table td.product-thumbnail {
    width: 9.1%;
    padding-left: 0 !important;
}

.wooCart_page table.shop_table td.product-name {
    width: 46%;
}

.wooCart_page table.shop_table td.product-price {
    width: 14%;
}

.wooCart_page table.shop_table td.product-quantity {
    width: 10%;
}

.wooCart_page table.shop_table td.product-subtotal {
    width: 14%;
}

.wooCart_page table.shop_table td.product-remove {
    padding-right: 0 !important;
    display: flex;
    align-items: end;
    justify-content: center;
}

.wooCart_page table.shop_table td.product-name .cartTitle a:hover {
    color: #3C3C3C;
    text-decoration: underline;
}


table.shop_table tfoot th {
    max-width: 200px;
    width: 200px;
}

table.shop_table tfoot td {
    max-width: 200px;
    width: 150px;
}

table.budget_payment_table {
    display: flex;
}

table.budget_payment_table tr.border_bottom_row {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

html {
    overflow-x: hidden;
}

.wooCart_page .updateCart_button.btn_cart_btn button.updateProductCart_btn {
    background-color: #e9e6ed !important;
    color: #000;
}

.cart-collaterals .cart_totals table {
    width: 27%;
    margin-left: auto !important;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}

.wooCart_page .cart-collaterals .cart_totals table tr th {
    font-weight: normal !important;
    border-top: 0 !important;
}

.wooCart_page .cart-collaterals .cart_totals table tr td {
    font-weight: 600;
    text-align: end !important;
}

.wooCart_page .cart_totals .zusammenfassungHeading {
    margin-top: 26px;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr td {
    border-top: 0 !important;
}

.wooCart_page .cart_totals table {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.wooCart_page table.shop_table th.product-thumbnail {
    padding-left: 0 !important;
}

.wooCart_page .homePage_button {
    padding-left: 0 !important;
}

.wooCart_page table.shop_table th {
    padding-left: 0 !important;
    font-weight: 600;
}

/* Checkout Page */

div#customer_details .col {
	float: left;
  	width: 50%;
	padding-right: 5%;
}

.empProduct_details_mobile {
	display: none;
}


.empProduct_details img {
	border-radius: 6px;
	max-width:150px;
}


/* .empManager_chechoutHeading h4 {
	font-size: 20px;
} */

.woocommerce-billing-fields input,
.woocommerce-billing-fields select,
.woocommerce-billing-fields__field-wrapper input,
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-shipping-fields input,
.woocommerce-shipping-fields select,
.woocommerce-additional-fields textarea,
.woocommerce-address-fields input,
.woocommerce-address-fields select {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    z-index: 101;
    position: relative;
    background: white;
    transition: all .4s ease;
    /*     min-height: 44px; */
    padding: 10px;
    color: #000;
}

.woocommerce-billing-fields__field-wrapper {
    margin-top: 100px !important;
}

#billing_company_field {
    margin-top: 86px !important;
}

p.form-row-hidden {
    visibility: hidden; /* Hide the element but keep it in the layout */
    position: absolute; /* Remove it from the normal flow */
    left: -9999px; /* Move it off-screen */
}

.woocommerce-additional-fields textarea {
    min-height: 160px;
}

.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading {
    font-size: 24px;
}

h3#order_review_heading {
    margin-top: 30px;
}

table.shop_table td,
table.shop_table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid var(--color-border);
}

table.shop_table th {
    vertical-align: bottom;
}

table.my_account_orders th {
    text-align: start;
}


table.shop_table td:last-child,
table.shop_table th:last-child {
    padding-right: 0;
	text-align: right;
}


table.shop_table td:first-child,
table.shop_table th:first-child {
    /* padding-left: 0; */
	text-align: left;
}


.woocommerce table.shop_table {
    border: 0px solid rgba(0, 0, 0, .1);
}

td.checkout-product-image img {
    max-width: 100px;
}

h2.basket-supplier-name.text-left {
    margin: 40px 0 20px 0;
}

div#order_review {
    overflow-x: auto;
}

td.checkout-product-image {
    max-width: 120px;
}

.product-own-name {
    color: #F8A600;
}

td.checkout-product-name {
    max-width: 370px;
}

td.checkout-product-total {
    max-width: 140px;
}

ul.cartSipping_UL {
    list-style: none;
    display: inline-block;
}

ul.cartSipping_UL li {
    display: inline-block;
    color: #000;
}

td.checkout-product-total span {
    color: #000;
    font-weight: 600;
}

td.checkout-product-total {
    text-align: right;
}

th.checkout-product-total {
    text-align: right;
}

/* span.woocommerce-Price-amount.amount {
    font-weight: 600;
	float: right;
} */

tr.basket-summary h2 {
    margin-top: 40px;
}


tfoot tr.cart-subtotal th,
tfoot tr.cart-subtotal td,
tfoot tr.fee th,
tfoot tr.fee td,
tfoot tr.order-total th,
tfoot tr.order-total td {
    border: none !important;
}

/* tfoot tr.cart-subtotal th, tfoot tr.fee th, tfoot tr.order-total th {
    width: 100%;
    text-align: right;
}
tfoot tr.cart-subtotal td, tfoot tr.fee td, tfoot tr.order-total td {
    text-align: right;
    width: 100%; 
}  */

nav.woocommerce-MyAccount-navigation ul li {
    list-style: none;
    background-color: #f8a600;
    padding: 8px 20px;
    margin: 0px 15px 15px 15px;
    text-align: center;
    border-radius: 6px;
}

nav.woocommerce-MyAccount-navigation ul li a {
    color: #fff;
    font-weight: 700;
}

.woocommerce-MyAccount-content {
    border: 1px solid #d5d5d5;
    padding: 15px;
    border-radius: 6px;
}

form.woocommerce-EditAccountForm.edit-account .input-text {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    z-index: 101;
    position: relative;
    background: white;
    transition: all .4s ease;
    min-height: 40px;
    padding: 8px;
    color: #000;
    width: 100%;
}

form.woocommerce-EditAccountForm.edit-account .input-text:disabled {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    z-index: 101;
    position: relative;
    background: #f8f8f8;
    transition: all .4s ease;
    min-height: 40px;
    padding: 8px;
    color: #000;
    width: 100%;
}



form.woocommerce-EditAccountForm.edit-account fieldset {
    border: none;
    margin-bottom: 25px;
}

form.woocommerce-EditAccountForm.edit-account fieldset legend {
    color: #f8a600;
    font-weight: 700;
}

form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide>span {
    color: #f8a600;
    font-size: 12px;
}

.required {
    color: #ff0000 !important;
}



/* Primary button 
 * TODO: Make sure we use this button everywhere
 * */
button.woocommerce-Button.button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
a.woocommerce-Button.button,
a.button.product_type_variable.add_to_cart_button {
    color: #fff;
    background-color: #f8a600;
    padding: .618em 1em;
    border-radius: 6px;
    border: 2px solid #f8a600;
	margin-top: 8px;
	margin-bottom: 8px;
    cursor: pointer;
	font-weight: 400;
	min-height: 36px;
}

button.woocommerce-Button.button:hover,
a.woocommerce-Button.button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
a.button.product_type_variable.add_to_cart_button:hover {
	color: #f8a600;
    background-color: #fff;
}

button.woocommerce-Button.button:disabled,
a.woocommerce-Button.button:disabled,
.woocommerce #payment #place_order:disabled,
.woocommerce-page #payment #place_order:disabled,
a.woocommerce-Button.button[disabled] {
    background-color: #f8a600;
    color: #fff;
    pointer-events: none;
    opacity: 0.5;
    /* cursor: not-allowed; */
}


.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: right;
    display: flex;
    grid-gap: 9px;
}


.productsRight_block a.button.product_type_variable.add_to_cart_button {
    width: 100%;
}

button.add-employee-btn {
	margin-bottom: 24px !important;
}

table.employee_manager-info-table {
    border: none !important;
}

table.employee_manager-info-table button {
	min-height: 30px;
}

table.employee_manager-info-table button.icon-btn {
	width: 36px;
	height: 36px;
	padding: 8px;
}


button.woocommerce-Button.delete-btn {
	background-color: #ff0000;
	border-color: #ff0000;
}

button.woocommerce-Button.delete-btn:hover {
	color: #ff0000;
    background-color: #fff;
	
}

.add-employee-form-label,
.add-employee-form-input {
	/* width: 160px; */
	display: flex;
    flex: 1;
}


input.add-employee-form-input:read-only {
    color: #DCDAD1 !important;
}

.add-employee-form-row {
    display: flex;
    gap: 16px;
    max-width: 400px;
}

.add-employee-form-row > p {
    flex: 1;
}


/* 
div.employee_manager-info-content button.woocommerce-Button.button {
    color: #fff;
    background-color: #f8a600;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid #f8a600;
	margin: 8px;
    cursor: pointer;
} */

div#dropdownContent {
    position: absolute;
    top: 27px;
    left: 50px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0 0 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #747474;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

div#dropdownContent.Drop_Active {
    display: block;
}

div#dropdownContent h6,
.user-area .text-sm-center div#dropdownContent a {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    color: #747474;
    white-space: nowrap;
    border-bottom: 1px solid #edeeee;
    line-height: 1.1;
    font-size: 16px;
    font-weight: 400;
}


.user-area .text-sm-center div#dropdownContent a.meinProfil_logout {
    color: #ff0000 !important;
    background-color: #fff5f5;
    border-radius: 0 0 6px 6px;
    border-bottom: none;
}

.user-area .text-sm-center div#dropdownContent a.meinProfil_logout:hover {
    color: #ffffff !important;
    background-color: #ff0000;
    text-decoration: none;
}

div#dropdownContent h6 {
    color: #F8A600;
}

.meinProfil_divider {
    height: 1px;
    margin: 1.5rem 0;
    overflow: hidden;
    background-color: #edeeee;
    margin-top: .4rem;
    margin-bottom: .4rem;
}

.user-area .text-sm-center div#dropdownContent a span.pending-check {
    display: none;
}

.user-area .text-sm-center div#dropdownContent a:hover {
    color: #676767;
    text-decoration: none;
    background-color: #f7f7f9;
}

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

.myAccountDropdown a#mainButton {
    cursor: pointer;
}

/* 
.my_account_budget_span {
	font-size: 1rem;
	color: black;
} */

.single_page.page_id_17 h2 {
    margin-top: 40px;
    font-weight: normal;
}

.single_page.page_id_17 ul.chapter {
    margin-bottom: 1rem;
    padding-left: 42px;
}

.single_page.page_id_17 ul.bullet_list {
    padding-left: 39px;
}

.single_page.page_id_17 p.stand-spril {
    padding-bottom: 30px;
}

.single_page.page_id_19 h1.pagetitle {
    margin-bottom: 50px;
}

.single_page h3 {
    font-size: 28px;
    font-weight: normal;
}

.single_page h1,
.single_page h2 {
    font-weight: normal;
}

.single_page.page_id_30 ul.list-items,
.single_page.page_id_19 ul.list-items,
.single_page.page_id_60 ul.chapter,
.single_page.page_id_60 ul.bullet_list {
    padding-left: 40px;
}

.single_page.page_id_60 ul.chapter {
    padding-bottom: 30px;
}

.single_page.page_id_34 ul.list-group li {
    list-style: none;
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-box-align: center;
    align-items: center;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);

}
.page-width .page-width {
    padding: 0;
}
.single_page.page_id_34 ul.list-group li:first-child {
    border-top-right-radius: .31rem;
    border-top-left-radius: .31rem;
}

.single_page.page_id_34 ul.list-group li:last-child {
    border-bottom-right-radius: .31rem;
    border-bottom-left-radius: .31rem;
}

.single_page.page_id_34 ul.list-group {
    margin-bottom: 40px;
}

.employee-info-tab {
    display: inline-block;
    width: 100%;
}

/* 07-05-2024    START */

.main__status_order .inner_cencelled input {
    border: 2px solid #ff6858;
    background: #ff8c82;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    padding: 5px 20px;
}

.main__status_order .inner_processing input {
    padding: 5px 20px;
    color: #000;
    border: 2px solid #b5de91;
    background: #cde9b5;
    border-radius: 6px;
    cursor: pointer;
}

.main__status_order {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.main__status_order .inner_processing input:hover {
    background: #b5de91;
}

.main__status_order .inner_cencelled input:hover {
    background: #ff6858;
}

span.outTagStock {
    font-size: 14px;
}

/* 07-05-2024    END */

.orderStatus_cancelled {
    color: #ff6858;
    /* text-align: center; */
    font-weight: 600;
}

.orderStatus_processing {
    color: #b5de91;
    /*     text-align: center; */
    font-weight: 600;
}

.select_Return_heading {
    margin-bottom: 15px;
}

.view-order_Return_Request input[type="number"] {
    width: 50px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    border: 1px solid gray;
    border-radius: 6px;
    padding: 5px;
    height: 30px;
}

.view-order_Return_Request input[type="submit"] {
    margin-top: 10px;
    background-color: #f8a600;
    border: navajowhite;
    padding: 10px 25px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
}

/* dropdown */

.mainDrop_meinCompany.company_dropdownContent.companyDrop_Active {
    display: block !important;
}

.mainDrop_meinCompany.company_dropdownContent {
    display: none;
    position: absolute;
    top: 27px;
    left: 50px;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: .5rem 0 0 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #747474;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

@media (max-width: 480px) {
    .mainDrop_meinCompany.company_dropdownContent {
        left: auto;
    }
    
}

.user-area .text-sm-center .meinCompany_dropdown a:last-child {
    border-bottom: none;
}

.user-area {
    background: #F8A600;
    max-width: 385px;
    float: right;
    width: 100%;
    border-bottom-right-radius: 0.31rem;
    border-bottom-left-radius: 0.31rem;
    justify-content: center;
	align-items: center;
}

.user-area .text-sm-center a {
    color: #fff;
}

.user-area .text-sm-center {
    padding: 10px 4px;
}

.user-area .text-sm-center a {
    gap: 4px;
}

.mainCompany_Button_cls {
    cursor: pointer;
}

.myCompany__Dropdoen {
    position: relative;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
    margin: 0;
    max-width: 800px;
}
.user-area .text-sm-center .meinCompany_dropdown a,
.user-area .text-sm-center .meinCompany_dropdown h6 {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    color: #747474;
    white-space: nowrap;
    line-height: 1.1;
    font-size: 16px;
    font-weight: 400;
    
    border-bottom: 1px solid #edeeee;
}

.user-area .text-sm-center .meinCompany_dropdown h6 {
    color: #F8A600;
}

.user-area .text-sm-center .meinCompany_dropdown a:hover {
    color: #676767;
    text-decoration: none;
    background-color: #f7f7f9;
}

.user-area.managerDropDown_user_area {
    max-width: 550px;
}

.topHeader_menu {
    padding-right: 15px;
}

.daten_loschen_form {
    width: 50%;
}

.daten_loschen_form input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    min-height: 40px;
    color: #747474;
    font-weight: 300;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.daten_loschen_form label {
    display: inline-block;
    margin-bottom: .5rem;
}

.daten_loschen_form .form-group.form_checkBox span.wpcf7-list-item {
    margin: 0;
}

.daten_loschen_form .form-group.form_checkBox span.wpcf7-list-item input {
    width: auto !important;
    height: auto !important;
    min-height: auto;
}

.daten_loschen_form span.wpcf7-not-valid-tip {
    font-size: smaller;
}

.daten_loschen_form button.form_submitBtn {
    min-height: 40px;
    box-shadow: unset !important;
    background: #F8A600;
    border: 1px solid #F8A600;
    display: inline-block;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    color: #fff;
}

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

table.employee_manager-info-table {
    border: 1px  solid #EDEEEE;
	border-radius: 6px;
    width: 100%;
}

table.employee_manager-info-table th,
table.employee_manager-info-table td {
    border: 0;
    border-bottom: 1px solid #EDEEEE;
    color: #747474;
    text-align: left;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
/*     font-weight: 400; */
    line-height: 24px;
    padding: 8px !important;
}


table.employee_manager-info-table tr:last-child td {
	border-bottom: 0px;	
}



.employee_manager-info-content h4 {
/*     border-bottom: 1px solid #EDEEEE; */
    padding-bottom: 36px;
    margin-bottom: 0;
	color: #747474;
	font-weight: 400;
}

table.employee-orders-table td.order-status {
    min-width: 150px;
}

table.employee-orders-table th:last-child,
table.employee-orders-table td:last-child {
    text-align: left !important;
}


/* Responsive styles - Employee table as cards on mobile */
@media only screen and (max-width: 768px) {
    /* Ensure DataTables wrapper doesn't constrain width */
    .employee-table-wrapper .dataTables_wrapper,
    .employee-table-wrapper .dataTables_scroll {
        width: 100% !important;
        overflow-x: visible !important;
    }

    table.employee_manager-info-table {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        border: none;
    }

    table.employee_manager-info-table thead {
        display: none;
    }

    table.employee_manager-info-table tbody tr {
        display: inline-block;
        width: 100%;
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid #EDEEEE;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }

    table.employee_manager-info-table tbody td {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        text-align: left;
        font-size: 14px;
        padding: 10px 0 !important;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        line-height: 1.4;
    }

    table.employee_manager-info-table tbody td:last-child {
        border-bottom: none;
    }

    /* Hide checkbox column (select for bulk delete) on mobile */
    table.employee_manager-info-table tbody td:first-child {
        display: none !important;
    }

    /* Labels for each data attribute - must appear before value */
    table.employee_manager-info-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        flex-shrink: 0;
        display: inline-block !important;
    }

    /* Hide delete employees button on mobile */
    .employee_manager-info-content #delete-selected {
        display: none !important;
    }

    .employee_manager-info-content #delete-employee-btn {
        display: none !important;
    }

    /* Employee orders table - card layout on mobile */
    table.employee-orders-table {
        display: block;
        width: 100%;
        border: none;
    }

    table.employee-orders-table thead {
        display: none;
    }

    table.employee-orders-table tbody tr {
        display: inline-block;
        width: 100%;
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid #EDEEEE;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }

    table.employee-orders-table tbody td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        text-align: left;
        font-size: 14px;
        padding: 10px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        line-height: 1.4;
    }

    table.employee-orders-table tbody td:last-child {
        border-bottom: none;
    }

    table.employee-orders-table tbody td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #555;
        flex-shrink: 0;
    }

    /* Employee requests table (Freigabeanfragen) - card layout on mobile */
    table.employee-requests-table {
        display: block;
        width: 100% !important;
        min-width: 100% !important;
        border: none;
    }

    table.employee-requests-table thead {
        display: none;
    }

    table.employee-requests-table tbody tr {
        display: inline-block;
        width: 100%;
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid #EDEEEE;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }

    table.employee-requests-table tbody td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        text-align: left;
        font-size: 14px;
        padding: 10px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        line-height: 1.4;
    }

    table.employee-requests-table tbody td:last-child {
        border-bottom: none;
        justify-content: space-between;
    }

    table.employee-requests-table tbody td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #555;
        flex-shrink: 0;
    }

    /* Approve/reject buttons - larger tap targets on mobile */
    table.employee-requests-table .main__status_order {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    table.employee-requests-table .main__status_order .inner_cencelled input,
    table.employee-requests-table .main__status_order .inner_processing input {
        min-height: 44px;
        padding: 10px 24px;
    }

	div#customer_details .col {
		float: left;
		width: 100%;
	}
	.empProduct_details table,
	.empProduct_details {
        display: none; /* Hide the table on small screens */
    }
	

    .empProduct_details_mobile {
        display: block;
        
    }
	
	.product_details_mobile {
		display: block;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        background-color: #f9f9f9;
	}
	
	.product_details_mobile img {
		border-radius: 6px;
	}
	

    .empProduct_detail_row {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-bottom: 1px solid #eaeaea;
    }

    .empProduct_detail_row:last-child {
        border-bottom: none;
    }

    .empProduct_detail_label {
        font-weight: bold;
        flex-basis: 40%;
        text-align: left;
    }

    .empProduct_detail_value {
        flex-basis: 60%;
        text-align: right;
    }

    .empProduct_image img {
        max-width: 80px;
        height: auto;
    }

    .cartSipping_info ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 0.8rem;
        text-align: right;
    }
		
	td.checkout-product-total {
		max-width: 100%;
	}

}


.woocommerce-MyAccount-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 20-06-2024 ---------*/
table.EmpProuductSummery {
    border-collapse: collapse;
    border: none;
    width: 100%;
    border-top: 1px solid #edeeee;
    border-bottom: 1px solid #edeeee;
}

.EmpProuductSummery td {
    padding: 9px 12px;
    vertical-align: top;
}

.EmpProuductSummery th,
.EmpProuductSummery td {
    border: none;
}

table.EmpProuductSummery tr {
    border-bottom: 1px solid #edeeee;
}

.EmpProuductSummery th {
    border-bottom: 1px solid #edeeee;
    padding: 12px;
    padding-left: 0;
}

.title h5 {
    font-size: 16px;
    line-height: 24px;
}

.EmpProuductSummery th {
    color: #747474;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

td.empProduct_image {
    width: 10%;
    padding-left: 0;
}

td.empProduct_title {
    width: 46%;
}

td.empProductPrice {
    width: 14%;
    font-weight: bold;
}

td.empProductQty {
    width: 10%;
}

td.empProductTotle {
    width: 20%;
    text-align: right;
}

.EmpProuductSummery td p {
    margin: 0;
}

td.empProductTotle p {
    color: #000;
    font-weight: bold;
}

.empTotle__value,
.overall__value {
    width: 30%;
    margin-left: auto;
}

.value__Item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.strongText {
    font-weight: 600;
}

.empTotle__value {
    margin-top: 20px;
}

.empTotle__value {
    margin-top: 20px;
}
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
    padding: 8px 8px;
}
.Main_EmpBudget_payment .innerBudget_payment .not_enough_to_placeOrder {
    padding-left: 0;
    padding-right: 0;
}
.empName h4 {
    font-size: 24px;
    color:#012f52;
    margin: 30px 0 0;
    line-height: 79px;
    font-weight: 400;
    border-top: 1px solid #000;
    padding: 10px 0 0;
}
.totle_empCart_value span.value__Price {
    font-weight: bold;
}
.totle_empCart_value {
    margin: 20px 0 50px 0; 
}
.empManager_chechoutHeading h4 {
    font-size: 20px;
    margin: 0 0 50px;
}

h3#order_review_heading {
    font-size: 36px;
    margin: 30px 0;
}

.totle_empCart_Heading h4 {
    font-size: 31px;
}

.EmpProuductSummery ul.cartSipping_UL li {
    display: block;
}

.innerBudget_payment,
.not_enough_to_placeOrder {
    background: #E9E6ED;
    padding: 20px 25px;
    border-radius: 6px;
}

.innerBudget_payment .heading h4 {
    font-size: 27px;
    line-height: 30px;
    margin: 0 0 20px;
}

.innerBudget_payment .Budget_radio label {
    color: #515151;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 6px;
}

.innerBudget_payment .Budget_radio label input[type='radio'] {
    accent-color: #2D3648;
    width: 20px;
    height: 20px;
}

.innerBudget_payment .Budget_radio {
    padding-bottom: 20px;
    border-bottom: 1px solid #CFC8D8;
}

.innerBudget_payment p.budgetText {
    margin: 20px 0;
}

/* 
.EmpBudget_payment__Button button,
.empNew_budget button {
    background: #F8A600;
    border-radius: 6px;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 10px;
	cursor: pointer;
} */

.EmpBudget_payment__Button {
    text-align: right;
}

.innerBudget_payment .Budget__checkBox label {
    position: relative;
    margin: 0 0 18px;
    padding-left: 42px;
    display: inline-block;
}

.innerBudget_payment .Budget__checkBox input {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.innerBudget_payment .Budget__checkBox .custom-check:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 3px;
    border: 2px solid #CBD2E0;
}

.innerBudget_payment .Budget__checkBox input:checked~.custom-check::before {
    background: #CBD2E0;
}

.not_enough_to_placeOrder .empNew_budget label {
    color: #2D3648;
    font-weight: 500;
}

.not_enough_to_placeOrder .empNew_budget input {
    color: #2D3648;
    font-weight: 500;
}

.not_enough_to_placeOrder .empNew_budget input {
    border: 2px solid #CBD2E0;
    border-radius: 6px;
    min-height: 40px;
    padding: 5px;
}

.not_enough_to_placeOrder .empNew_budget button {
    border-radius: 6px;
    padding: 6px 15px;
	min-height: 40px;
/*     font-size: 15px; */
}

.innerPlaceOrder_budget {
    width: 100%;
    max-width: 95%;
}

.not_enough_to_placeOrder .innerPlaceOrder_budget .red_icon {
    color: #FF0000;
    font-weight: 700;
    font-size: 23px;
    margin-right: 10px;
    line-height: normal;
}

.employee_page {
    text-align: center;
/*     font-size: 20px; */
}

.WooCommerceProducts .term-description {
    display: none;
}

.no_ProductFound {
    margin-top: 2em;
}

.woocommerce-info {
    border-top-color: var(--color-primary);
}

.woocommerce-info::before {
    color: var(--color-primary);
}

.ProductPage_cls .price .price {
    color: var(--color-primary) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    -webkit-line-clamp: 3;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
	min-height: 112px;
    line-height: 2em;
}

tr.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_pa_grose {
    display: none;
}

.check_disable {
    cursor: not-allowed !important;
    opacity: 0.5;
}

.page-id-1034 section.woocommerce-order-details,
.woocommerce-variation-availability .out-of-stock-backorder {
    display: none;
}

/* select {
    border: 0;
    border-right: 16px solid #26323800;
    outline: 1px solid;
    border-radius: 4px;
} */



/* 20-06-2024---- End */
@media screen and (max-width:767px) {
    .daten_loschen_form {
        width: 100%;
    }

    
	.user-area {
		background: #F8A600;
		width: 100%;
		border-bottom-right-radius: 0.31rem;
		border-bottom-left-radius: 0.31rem;
		justify-content: center;
		align-items: center;
	}
    .user-area .text-sm-center a {
        gap: 5px !important;
    }

    .user-area .text-sm-center {
        padding: 0px !important;
    }

    .user-area .text-sm-center a {
        justify-content: start !important;
    }
	
	    /*Checkout Page Summary Table for Employees */
	
	.woocommerce table.shop_table_responsive tr td:first-child:before {
		display: none;
	}
	
    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        text-align: left !important;
    }
	
	.woocommerce table.shop_table_responsive td.blank-cols {
		display: none;
	}
}

/* Media Query --------*/
@media(max-width:1200px) {

    .wooCart_page button.updateProductCart_btn.button,
    .checkOutPage_button.btn_cart_btn a {
        width: 100%;
    }


    .wooCart_page .saveShipping_list {
        padding-left: 0 !important;
    }
}

@media (max-width: 991px) {
	.ProductPage_cls .summary.entry-summary {
    margin-left: 2%;
}
.woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
}
    .woocommerce-MyAccount-content {
        overflow-x: scroll;
    }
.filterLeft_block {
    width: 100%;
    margin-bottom: 10px;
}
.filterBlock_items .woocommerce-widget-layered-nav {
    padding: 20px 15px;
}
    .main__status_order {
        flex-direction: column;
        gap: 10px;
    }

 

    .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
        height: 3px;
        bottom: -3px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 10px 5px !important;
        font-size: 14px;
    }

}

@media (max-width: 749px) {
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    min-height: initial;
}
.AllItem_SearchBar {
    margin-bottom: 20px;
}
.filterLeft_block {
    margin-bottom: 0;
} 
.productsRight_block form.woocommerce-ordering {
    max-width: 100%;
    margin: 0 0 10px 0 !important;
}
p.woocommerce-result-count {
    font-size: 14px;
}
nav.woocommerce-pagination {
    margin: 0 auto 20px;
}
    .innerForm_item,
    .innerLostPassword {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    li.product {
        width: 100% !important;
        margin: 0 0 1.5rem !important;
    }

    li.product a,
    li.product a .list_ProductGrid {
        width: 100% !important;
    }

    .filterLeft_block {
        width: 100%;
    }

    .main_collectionBlock {
        margin: 20px 0 0;
    }

    .productsRight_block .wooCustom__resultCount_Ordering {
        flex-direction: column;
        align-items: start;
        margin: 20px 0;
    }

    .filterBlock_items .woocommerce-widget-layered-nav {
        padding: 15px;
    }
h2.widgettitle {
    font-size: 16px;
}
    li.woocommerce-widget-layered-nav-list__item a {
        padding: 10px 15px !important;
    }



    /* .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: unset;
} */
    /* 20-06-2024 -------*/
    .empTotle__value,
    .overall__value {
        width: 100%;
        margin-left: 0;
    }

    .empProduct_details {
        overflow-x: auto;
    }

    h3#order_review_heading {
        font-size: 26px;
        margin: 20px 0;
    }

    .empManager_chechoutHeading h4 {
        font-size: 22px;
        margin: 0 0 20px;
    }

    .empName h4 {
        font-size: 22px;
        margin: 20px 0 10px;
        line-height: normal;
    }

    .title h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .EmpProuductSummery th {
        padding: 8px;
    }

    .value__Item {
        padding: 5px 0;
    }

    .totle_empCart_Heading h4 {
        font-size: 26px;
        margin: 10px 0 0;
    }

    .innerBudget_payment .heading h4 {
        font-size: 23px;
        line-height: 26px;
        margin: 0 0 10px;
    }

    .innerBudget_payment .Budget_radio label {
        padding: 0;
    }

    .innerBudget_payment .Budget_radio {
        padding-bottom: 10px;
    }

    .innerBudget_payment .Budget__checkBox label {
        margin: 0 0 10px;
        padding-left: 26px;
        line-height: normal;
    }

    .innerBudget_payment .Budget__checkBox .custom-check:before {
        top: 2px;
        width: 13px;
        height: 13px;
    }

    .innerBudget_payment p.budgetText {
        margin: 15px 0;
    }

    .EmpBudget_payment__Button button {
        font-size: 14px;
        padding: 8px 15px;
    }


}

.stockMainShop_page .input-group.out-of-stock {
    border: 1px solid var(--color-info);
    color: var(--color-info);
}

.stockMainShop_page .input-group.out-of-stock .input-group-addon {
    background: var(--color-info);
}

span.outofStock_icon {
    color: var(--color-info);
}
td.checkout-product-image img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    width: 100%;
}
table.employee_manager-info-table input {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    z-index: 101;
    position: relative;
    background: white;
    transition: all .4s ease;
    min-height: 36px;
	max-width: 100px;
}
.thmaf-acnt-cus-addr .th-head h3 {
    padding-bottom: 8px;
}
.u-column2.col-2.woocommerce-Address {
    margin-top: 15px;
}
p a {
    word-break: break-all;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
}
/** Max Media Query */
@media only screen and (max-width: 1399.98px) {}

@media only screen and (max-width: 1199.98px) {}

@media only screen and (max-width: 991.98px) {
    .mainBlock__footer {
        grid-template-columns: 1fr 1fr;
    }

    .mainCopyRight .copyright_Text {
        order: 3;
    }

    .mainCopyRight .centerText {
        order: 2;
    }

    .copyright_Links {
        order: 1;
        width: 100%;
    }

    .copyright_Links ul.item_navbar-nav {
        justify-content: start;
    }

    .copyright_Links ul.item_navbar-nav li.nav-item:first-child {
        padding-left: 0;
    }

    ul.product_catList {
        max-width: 100%;
    }
	.user-area.managerDropDown_user_area {
		width: 100%;
		margin: 0 auto;
	}

}

@media only screen and (max-width: 767.98px) {
	.ysm-search-widget .search-field[type="search"] {
    min-height: 40px;
}
	.single_page.page_id_19 h1.pagetitle {
    margin-bottom: 20px;
}
	table.shop_table td, table.shop_table th {
    font-size: 14px;
}
.thmaf-my-acnt.th-custom {
    margin-top: 20px;
}

	/* Employee manager table - card layout override (exclude from generic table rules) */
	.employee-table-wrapper table.employee_manager-info-table tbody td {
		display: flex !important;
		padding: 10px 0 !important;
		line-height: 1.4;
	}
	.employee-table-wrapper table.employee_manager-info-table tbody td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #555;
		flex-shrink: 0;
		display: inline-block !important;
	}
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
    margin-right: 8px;
}
.woocommerce table.shop_table_responsive tfoot tr td::before, .woocommerce-page table.shop_table_responsive tfoot tr td::before {
    margin-right: 8px;
	display:none;
}
	.woocommerce table.shop_table_responsive tfoot tr th {
		margin-right: 8px;
/* 		text-align: right; */
	/* 	display:none; */
		border: none;
		background-color: white !important;
	}
	.woocommerce table.shop_table_responsive tfoot tr td {
		background-color: white !important;
/* 		text-align: right; */
		border: none;
		font-weight: 400;
	}
	.totle_empCart_value .totle_empCart_Heading {
    margin-bottom: 10px;
}
	.EmpProuductSummery th {
    font-size: 14px;
}
div#customer_details .col-2 {
    margin-top: 20px;
}
div#customer_details .col-2 .woocommerce-additional-fields {
    margin-top: 0;
}

/* 
div.col h3, 
div.col h2 {
	font-size: 2rem;
} */
td.product-thumbnail::before{
	display: none !important;
}
h2, .h2 {
    font-size: 1.5rem;
}
.single_page h3 {
    font-size: 22px;
    font-weight: normal;
}
.wooCart_page table.shop_table td.product-thumbnail {
    padding-left: 9px !important;
}
	h1, .h1 {
    font-size: 2rem;
}
	.ProductPage_cls p.price {
    font-size: 20px !important; 
}
.wooCart_page .cartPage_buttons {
    padding-top: 20px;
    justify-content: space-between;
}.cartTitle { 
    margin-bottom: 10px;
}
.wooCart_page .cartPage_buttons .btn_cart_btn {
    padding-right: 0;
    padding-left: 0;
}
	.mainProduct_Title {
    margin-top: 20px;
}
	   .ProductPage_cls .woocommerce-product-gallery {
        order: 1;
    }
	.woocommerce div.product form.cart {
    margin-bottom: 0;
}
h1.product_title {
    font-size: 24px
}
.woocommerce-Tabs-panel {
    border: 1px solid #dadada;
    padding: 15px 15px !IMPORTANT;
    border-top: none;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    width: 100%;
}
.ProductPage_cls .summary.entry-summary {
    margin-left: 0;
}
.woocommerce div.product div.images { 
    margin-bottom: 0px;
}
    .ProductPage_cls .summary.entry-summary {
        order: 2;
    }

    .ProductPage_cls .woocommerce-tabs {
        order: 3;
        width: 100%;
    }
.user-area.managerDropDown_user_area {
    max-width: 100%;
    margin: 0 auto;
}
	.mainCopyRight .centerText {
    width: 100%;
    text-align: center;
}
.topHeader_menu {
    padding-right: 0;
}
	.user-area {
    justify-content: space-around; 
}
    .woocommerce-additional-fields {
        margin-top: 15px;
    }
.user-area .text-sm-center {
    width: auto;
}
    .AllItem_SearchBar {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0;
        position: relative;
    }

    .Alle_Menus_Button ul.list-unstyled {
        display: none;
    }

    .blockHeader {
        grid-template-columns: 1fr;
        grid-gap: 5px;
    }

    .site_logo {
    margin: 0px 0 18px;
    order: 2;
    text-align: center;
}

.user-area .text-sm-center a {
    font-size: 12px;
    padding: 10px;
/*     color: #F8A600; */
    line-height: 14px;
}

    .user-area .text-sm-center span {
        color: #fff;
        font-size: 12px;
        border-radius: 16px;
        padding: 3px 7px;
        background: #FF4A48;
        margin-top: 0;
        font-style: normal;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul.product_catList {
        margin: 0;
        grid-template-columns: 1fr 1fr;
    }

    main {
        margin: 25px 0;
    }

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

    .copyright_Links ul.item_navbar-nav {
        justify-content: center;
    }

    .copyright_Links ul.item_navbar-nav li.nav-item a.nav-link {
        font-size: 14px;
        line-height: 26px;
    }

    .mainCopyRight p {
        font-size: 14px;
    }
 .wooCart_page .coupon,
    .wooCart_page .cart_referenceCode {
        max-width: 100%;
    }

    .wooCart_page .cartPage_buttons .btn_cart_btn {
        padding-left: 0;
    }

    .wooCart_page table.shop_table tr td h2.basket-supplier-name {
        text-align: start;
    }

    table.shop_table td {
        width: 100% !important;
        max-width: 100% !important;
		
    }

    .wooCart_page table.shop_table .cartInput_propertys .form-group.item-note label {
        text-align: start;
        width: 100%;
    }

    .wooCart_page .cart-collaterals .cart_totals table {
        width: 100%;
    }

    .woocommerce-page table.cart .product-thumbnail {
        display: block;
    }

    .wooCart_page table.shop_table td.product-remove {
        justify-content: start;
    }

    .wooCart_page .cart-collaterals .cart_totals table {
        width: 100% !important;
        /* margin-left: auto !important; */
    }

    .wooCart_page table.shop_table td.product-name .cartTitle a,
    .wooCart_page table.shop_table .cartSKU {
        text-align: left;
    }
}

/* --- Statistics Dashboard --- */

/* Container for the stats cards */
.budget-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Each individual stat card */
.budget-stat-card {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(237,237,237,0.3) 100%);
    border: 1px solid rgb(229 231 235);
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Make cards a little larger on hover */
.budget-stat-card:hover {
    transform: translateY(-5px);
}

/* Style the heading inside each card */
.budget-stat-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

/* Style the paragraph inside each card */
.budget-stat-card p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
    .budget-stats-container {
        grid-template-columns: repeat(2, 1fr); /* Always two items per row */
    }
}

@media (max-width: 480px) {
    .budget-stats-container {
        grid-template-columns: repeat(1, 1fr); /* One item per row on smaller screens */
    }
}


/* Most bought items table */

.analytics-dashboard {
	margin-bottom: 16px;
}

.most-bought-items-table {
    width: 100%;
    border-collapse: collapse;
}

.most-bought-items-table th, .most-bought-items-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.most-bought-items-table img {
    border-radius: 5px;
	min-width: 50px;
}

.most-bought-items-table tr:hover {
    background-color: #f9f9f9;
    cursor: pointer;
}


/* Truncate name after 2 lines */
.most-bought-items-table td:nth-child(2) {
/*     display: -webkit-box; */
/*     -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    text-overflow: ellipsis;
/*     white-space: normal; */
/*     word-wrap: break-word; */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    /* Adjust table layout for mobile */
    .most-bought-items-table th, .most-bought-items-table td {
        padding: 6px;
        font-size: 14px;
    }

    .most-bought-items-table td:nth-child(2),
	.most-bought-items-table th:nth-child(2){
        
		max-width:120px; /* Further reduce width of the name column on small screens */
    }
}


@media only screen and (max-width: 575.98px) {
    .topHeader_menu .text-left.text-sm-center:first-child a {
        justify-content: flex-start;
        padding: 10px 0;
    }

    .user-area .text-sm-center a {
        justify-content: flex-end;
        padding: 10px 0;
    }

    div#dropdownContent {
        left: 0;
    }

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

    ul.product_catList {
        margin: 0;
        grid-template-columns: 1fr;
    }
}




/** Min Media Query */
@media (min-width: 48em) {
    .Alle_Menus_Button ul.category-list li .mega-sub {
        background: #f2f2f2;
        padding: 0 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        z-index: 1;
        border: 1px solid #dadada;
        border-top: 0;
        border-radius: .31rem;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        width: 100%;
        left: 0;
        top: 100%;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    li.has-sub.sub_Open a.alle_menusOrafol::before {
        position: absolute;
        content: "";
        border: 10px solid #f2f2f2;
        border-top-color: transparent;
        border-left-color: transparent;
        border-right-color: transparent;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -23px;
        display: block;
    }

    .Alle_Menus_Button ul.category-list li.has-sub.sub_Open .mega-sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .Alle_Menus_Button ul.category-list li a:hover {
        color: #000;
        text-decoration: underline;
    }

    .Alle_Menus_Button ul.category-list li.has-sub .mega-sub a {
        font-weight: 600;
        margin-right: 40px;
    }

    .Alle_Menus_Button ul.list-unstyled a.btn.reset i.fa.fa-chevron-down.small-icon {
        font-size: 0.75rem;
        margin-left: 10px;
    }

    .Alle_Menus_Button ul.category-list li.open>a {
        position: relative;
    }

    .Alle_Menus_Button ul.category-list li {
        padding: 20px 12.5px;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .Alle_Menus_Button ul.list-unstyled ul.category-list.list-unstyled {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
    }

    .AllItem_SearchBar .absolute-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .AllItem_SearchBar .absolute-container:before {
        top: -11px;
        left: 25px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (min-width: 75em) {
    .mainBlock__footer ul.item_navbar-nav li.nav-item {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
	.woocommerce nav.woocommerce-pagination {
    padding-left: 330px;
}
    .filterLeft_block {
        width: 25%;
    }

    .productsRight_block {
        width: 75%;
    }

    .productsRight_block,
    .filterLeft_block,
    .ProductPage_cls .summary.entry-summary,
    .ProductPage_cls .woocommerce-product-gallery {
        padding-right: 15px;
        padding-left: 15px;
    }

    .ProductPage_cls .woocommerce-product-gallery,
    .ProductPage_cls .woocommerce-tabs {
        width: 50% !important;
    }

    .ProductPage_cls .summary.entry-summary {
        margin-left: 8.33333%;
        width: 41.667% !important;
    }

}

@media only screen and (min-width: 768px) {
    .employee-info-tab .woocommerce-MyAccount-navigation {
        float: left;
        width: 30%;
    }

    .employee-info-tab .woocommerce-MyAccount-content {
        float: right;
        width: 68%;
    }
	
	/*Checkout page on mobile devices */
	
    /* Hide the table header on mobile */
    .empProduct_details thead {
        display: none;
    }

}


/* Datatables */



.dataTables_filter input, 
.filter-controls input {
    min-height: 36px;
    width: auto; /* Adjust width as needed */
    padding: 10px; /* Match padding with other input elements */
    border: 1px solid #ccc; /* Match border style */
    border-radius: 6px !important; /* Match border radius */
    font-size: 14px; /* Match font size */
    /* margin-bottom: 24px; */
}

#DataTables_Table_0_filter,
#DataTables_Table_0_length {
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    #DataTables_Table_0_filter,
    #DataTables_Table_0_length {
        margin-right: 16px;
        float: left;
    }

    
}


#DataTables_Table_0_filter label, 
#DataTables_Table_0_length label {
    color: #747474;
}

#DataTables_Table_0_filter input[type="search"] {
    margin-left: 20px;
    margin-right: 8px;
}


.dataTables_wrapper .dt-buttons {
    float: right; /* Align buttons to the right */
    margin-bottom: 10px; /* Add some space below the buttons */
}

/* Style for the DataTables length dropdown */
.dataTables_length select, 
.filter-controls select {
    padding: 10px; /* Match padding with other select elements */
    border: 1px solid #ccc; /* Match border style */
    border-radius: 6px !important; /* Match border radius */
    font-size: 14px; /* Match font size */
    min-height: 36px;
}
table.dataTable td.user-name {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

table.dataTable td.user-name:hover {
    overflow: visible;
    white-space: normal;
}


/* Optional: Style the DataTables pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 10px 15px; /* Adjust padding */
    border: 1px solid #ccc; /* Match border style */
    border-radius: 6px !important; /* Match border radius */
    margin: 0 2px; /* Space between pagination buttons */
    background: #f7f7f7; /* Background color */
    color: #333; /* Text color */
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #e7e7e7; /* Background color on hover */
}

#employee-filter {
    width: 200px; /* Adjust width as needed */
    height: auto; /* Allow height to adjust based on selections */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

#dropdown-button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 300px;
    border: 1px solid #ccc;
    z-index: 1;
    max-height: 500px; /* Limit height */
    overflow-y: auto; /* Enable scrolling */
    border-radius: 6px;
}

.dropdown-content div {
    display: flex;
    padding: 8px;
    height: 40px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: #f1f1f1; /* Highlight on hover */
}

.filter-controls input {
    min-height: 16px !important;
}

.filter-controls label {
    width: 60px; 
}

#employee-checkboxes label {
    width: 200px;
}

.filter-controls {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Stack pairs vertically */
    gap: 8px; /* Add space between pairs */
    flex-wrap: wrap;
}

.filter-pair {
    display: flex; /* Use flexbox for each label-input pair */
    align-items: center; /* Center items vertically */
    gap: 8px; /* Space between label and input */
    flex-wrap: wrap;
}

#filter-button {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}


@media (max-width: 640px) {
    #DataTables_Table_0_filter {
        float: left;
    }
    .dataTables_wrapper .dt-buttons {
        float: left; /* Align buttons to the right */
        margin-right: 8px; /* Add some space below the buttons */
    }
    
}

/* Overrides of the WPCPQ Pricing Table */



.wpcpq-row.wpcpq-item {
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

/* More specific selector for active state */
.wpcpq-row.wpcpq-item.wpcpq-item-active,
.wpcpq-row.wpcpq-item .wpcpq-item-active {
    border: 1px solid #f8a600;
}
.wpcpq-wrap {
    width: 100% !important;
    margin-bottom: 4px;
}

.wpcpq-wrap .wpcpq-row.wpcpq-item {
    border-radius: 6px;
    border: 1px solid var(--color-border);
    margin: 4px;
    min-width: 100px;
    width: calc(25% - 8px);
    padding: 8px;
}

/* More specific selector for active state with !important */
.wpcpq-wrap .wpcpq-row.wpcpq-item.wpcpq-item-active,
.wpcpq-wrap .wpcpq-row.wpcpq-item .wpcpq-item-active {
    border: 1px solid #f8a600 !important;
}


/* Order Details Page */
#refresh-order-details-container {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}

#refresh-order-details {
    width: 300px;
}


.dashicons {
    font-size: 16px;
}

/* Checkout page terms and conditions */

.woocommerce-terms-and-conditions-wrapper h2 {
    font-size: 28px;
}

.woocommerce-terms-and-conditions-wrapper h3 {
    font-size: 20px;
    margin-top: 1rem;
}
