/*
	Theme Name: Gastroline May 2026
	Description: WordPress / WooCommerce theme for Gastroline (Preveda Storkjøkken AS)
	Version: 1.0.1
	Author: Rajkumar
	Author URI: https://rewathi.com
	Text Domain: html5blank
	Requires at least: 6.0
	Requires PHP: 7.4
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
/*------------------------------------*\
    DESIGN TOKENS
\*------------------------------------*/

/*
 * Canonical brand tokens. style.css is the `html5blank` handle that nearly every
 * other sheet depends on, so these resolve before any consumer runs. Values match
 * the literals already hardcoded across the theme — defining them is a no-op
 * visually and only removes silent var() fallbacks.
 */
:root {
	--color-brand-red: #b80000;
	--color-dark: #111;
	--color-navy: #0c1c2e;
	--font-base-size: 62.5%;
	/*
	 * Product Beskrivelse typography — measured on staging PDP
	 * (new.gastroline.no …/stavmikserstorm-200… #Beskrivelse / .single-item-custom):
	 * Open Sans / Lato / sans-serif, 16px, line-height 1.4, #4d4d4d.
	 * Staging CSS weight is 300 but only Open Sans 400/600/700 load → Rendered
	 * Fonts = Open Sans Regular. Use 400 so local (which also loads 300) matches.
	 * Inline TinyMCE font-family (e.g. Georgia) still wins — no !important on family.
	 */
	--gl-desc-font: 'Open Sans', Lato, sans-serif;
	--gl-desc-size: 1.6rem;
	--gl-desc-weight: 400;
	--gl-desc-line: 1.4;
	--gl-desc-color: #4d4d4d;
	/*
	 * Product Beskrivelse H2–H6 — UA sizes on 16px .single-item-custom parent.
	 */
	--gl-desc-h2-size: 1.5em;
	--gl-desc-h3-size: 1.17em;
	--gl-desc-h4-size: 1em;
	--gl-desc-h5-size: 0.83em;
	--gl-desc-h6-size: 0.67em;
	/*
	 * Category term / product-cat-desc — staging archive (literal px, not rem).
	 * Measured on new.gastroline.no/produktkategori/kjokkenmaskiner/:
	 * Staging loads Open Sans 400/600/700 only (no Light). CSS may say 300 but
	 * Rendered Fonts = Open-Sans (regular). Use 400 so local matches that face.
	 * p 15px / lh 1.6em; h2 16.5px; h3 12.87px; h4 11px; h5 9.13px; h6 7.37px.
	 */
	--gl-cat-desc-font: 'Open Sans', Lato, sans-serif;
	--gl-cat-desc-base: 11px;
	--gl-cat-desc-p-size: 15px;
	--gl-cat-desc-p-line: 1.6em;
	--gl-cat-desc-weight: 400;
	--gl-cat-desc-line: 1.4;
	--gl-cat-desc-color: #4d4d4d;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/*
 * Canonical visually-hidden helper. The theme previously had none of its own and relied
 * entirely on WooCommerce's woocommerce.css, which is enqueued on every front-end page in
 * WC 7.2.2. That is a landmine: the heaviest users of this class sit on non-WooCommerce
 * pages (the skip link and #main-content label in header.php, and an <h1> of copy on the
 * front page), so the common "dequeue WooCommerce CSS off shop pages" optimisation would
 * have turned all of them into visible text. Values match core's helper.
 * No :focus variant here on purpose — the skip link below defines its own, and nothing
 * else carrying this class is focusable.
 */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* Skip link (accessibility) */
.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: var(--gl-z-skip-link, 100100);
	padding: 10px 16px;
	background: #0c1c2e;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
/*
 * The theme has no global .screen-reader-text rule of its own — that clamp comes from
 * WooCommerce's woocommerce.css (width/height 1px, overflow:hidden, clip rect) and, on
 * Kontakt/Om oss, from gl-page-contact-about.css, which declares the same properties
 * with !important. Moving the link on focus was therefore not enough: it stayed 1x1 and
 * clipped, so the skip link was never actually visible to keyboard users. !important is
 * needed here to outrank the contact-about declarations.
 */
.skip-link.screen-reader-text:focus,
.skip-link.screen-reader-text:focus-visible {
	left: 12px;
	top: 12px;
	width: auto !important;
	height: auto !important;
	padding: 10px 16px !important;
	margin: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	white-space: normal !important;
}

/* html element 62.5% font-size for REM use */
html {
	font-size: 62.5%;
	overflow-x: clip; /* clip does not block position:sticky (unlike hidden) */
}

:focus-visible {
	outline: 2px solid #b80000;
	outline-offset: 3px;
}

body {
	font: 300 11px/1.4 "Avenir Next", "Avenir", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	color: #4d4d4d;
	overflow-x: clip;
	margin: unset;
}

/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: #444;
	text-decoration: none;
}

a:hover {
	color: #ffffff;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1280px;
	width: 95%;
	margin: 0 auto;
	position: relative;
}

/* header */
.header {}

/* logo */
.logo {}

.logo-img {
	height: 65px;
	width: auto;
}

/* nav */
.nav {}

/* sidebar */
.sidebar {}

/* footer */
.footer {
	position: relative;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {}

@media only screen and (min-width:480px) {}

@media only screen and (min-width:768px) {}

@media only screen and (min-width:1024px) {}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
		height: auto;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}




.top-header-box {}

.log-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.log-box a {
	margin: 10px;
	font-size: 12px;
}

.logo-box {
	background: #ebecec;
	padding: 25px 0px;
}

.logo-left {}

.search-extra-box {}

.cart-cust-box {
	display: flex;
	align-items: center;
}

.header-cust-butt {
	display: flex;
	background: #b80000;
	border-radius: 100px;
	height: 43px;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	transition: 0.4s
}

.cart-icon-cust {}

.basket-header {
	display: flex;
}

.basket-header-count {
	font-size: 13px;
}

.header-nav-bg {
	background: #b80000;
	min-height: 60px;
}

.logo-box-cust {
	display: flex;
	justify-content: space-between;
}

.header-cust-butt a {
	color: white;
	margin: 0px 3px;
}


.header-cust-butt a:hover {
	font-weight: 300;
}


.header-nav-bg nav {}

.header-nav-bg li {
	padding-top: 20px;
	margin-right: 30px;
	padding-bottom: 10px;
	font-size: 15px;
	font-weight: 600;
	border-bottom: 9px solid #b80000;
	padding-left: 20px;
	padding-right: 20px;
}

.header-nav-bg li.current-menu-item {
	border-bottom: 9px solid #003b6b;
}

.header-nav-bg li:hover {
	border-bottom: 9px solid #003b6b;
}

.header-nav-bg a {
	color: white;
}

.header-nav-bg ul {
	margin: 0;
	display: flex;
	text-transform: uppercase;
	list-style: none;
	padding-left: unset;
}

.header-custom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-text-custom {
	color: white;
	font-size: 18px;
}



.under-slider-box {
	background: #003b6b;
	margin-top: 0px !important;
	position: relative;
}

.footer .under-slider-box {
	background: #b80000;
}

.under-slider-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.under-slider-icon {
	margin: 0px 10px;
}

.under-slider-icon img {
	height: 33px;
}

.under-slider-text {
	color: white;
	font-size: 22px;
	font-weight: 500;
}

.under-slider-text a {
	color: white;
	font: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.under-slider-text a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-under-left a:hover {
	text-decoration: underline;
	font-weight: 600;
}

.header-nav-bg a:hover {
	font-weight: 600;
}



.under-slider-box-cust {
	display: flex;
	justify-content: space-around;
	padding: 20px 0;
	width: 65%;
}

.main-special-category {
	background: #f9f9f9;
	/*padding-top: 60px;*/
}

.main-special-left {
	display: flex;
	width: 22%;
}

.main-special-right {
	display: flex;
	flex-direction: column;
	width: 75%;
}

.simple-title {
	color: #013b6b;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.product-list-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 35px;
}

.product-list-item {
	width: 31%;
	padding: 0px 30px;
	background: white;
	margin: 0 0px;
	border-radius: 20px;
	border: 1px solid #d9d9d9;
	padding-top: 25px;
	margin-bottom: 32px;
	position: relative;
}

.new-bar-cust {
	background: #fecc00;
	display: block;
	padding: 10px;
	border-radius: 100%;
	height: 50px;
	width: 50px;
	color: white;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 30px;
}

.percent-bar-cust {
	background: #ef7e1a;
	display: block;
	padding: 10px;
	border-radius: 100%;
	height: 50px;
	width: 50px;
	color: white;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 30px;
}

.product-item-pic {
	height: 220px;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.product-content-box {
	margin-top: 30px;
}

.product-item-title {
	color: #464646;
	font-weight: 600;
	font-size: 14px;
}

.product-item-box {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.product-status {
	padding: 10px 0;
	display: contents;
}

.product-item-box .product-status p {
	margin: unset;
	background: #b80000;
	color: white;
	padding: 10px 15px;
	font-weight: 600;
	font-size: 13px;
}

.product-item-box .product-status p:hover {
	cursor: default
}

.mozaic-price-btn {
	padding: 10px 0;
}

.bar-special {
	min-width: 50px;
	width: auto;
}


.mozaic-price-btn a {
	background-color: #b9b9b9 !important;
	color: white !important;
	padding: 10px 15px !important;
	border-radius: 30px !important;
	display: block !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	height: 39px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	width: 94px;
	transition: 0.4s;
}

.mozaic-price-btn a:hover {
	background-color: #b80000 !important;
}



.product-list-item .product-price {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

.product-price del .woocommerce-Price-amount {
	color: #898989;
	font-weight: 500;
	font-size: 14px;
}

.product-price del {
	order: 1;
}

.product-price ins {
	color: #b80000;
	text-decoration: none;
	font-weight: 700;
	font-size: 21px;
}

.widget_product_categories h3 {
	margin: unset;
	background: #003b6b;
	color: white;
	padding: 15px 20px;
	font-size: 17px;
}

ul.product-categories {
	padding: unset;
	margin: unset;
	list-style: none;
	background: white;
}

.product-categories li {
	border-left: 1px solid #d2d4d4;
	border-right: 1px solid #d2d4d4;
	border-bottom: 1px solid #d2d4d4;
}

.product-categories li a {
	padding: 15px 20px;
	display: block;
	font-size: 15px;
	font-weight: 600;
	padding-left: 30px;
}

.main-special-category .wrapper {
	display: flex;
	justify-content: space-between;
}

.sidebar-widget {
	width: 100%;
}


/* Match old Gastroline: product price color/weight everywhere .woocommerce-Price-amount appears.
   Cart/checkout tables override via .shop_table .woocommerce-Price-amount.amount below. */
.woocommerce-Price-amount {
	color: #b80000;
	text-decoration: none;
	font-weight: 700;
	font-size: 21px;
}

.arrow-right {
	border: solid white;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	margin-left: 0px;
}

.sidebar-widget img {
	width: 100%;
	margin-bottom: 18px;
}

.info-bottom-box {
	display: flex;
	border: 4px solid #d9d9d9;
	margin: 50px 0px;
	padding: 45px 55px;
	justify-content: space-between;
	border-radius: 30px;
}

.info-bottom-box-left {
	width: 40%;
}

.info-bottom-box-right {
	width: 65%;
}


.special-offers-box {
	display: flex;
	justify-content: space-between;
}


.special-offers-box-left {
	width: 50%;
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	height: 10.6vw;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-right: 30px;
}

.special-offers-box-left .special-box-title {
	color: #013b6b;
	font-weight: 500;
}

.special-offers-box-right .special-box-title {
	color: white;
	font-weight: 500;
}

.special-box-title {
	font-size: 30px;
}

.special-offers-box-left .special-box-desc {
	color: #013b6b;
	font-weight: 500;
}

.special-offers-box-right .special-box-desc {
	color: white;
	font-weight: 500;
}

.special-offers-box-right .special-box-button {}

.special-box-desc {
	font-size: 17px;
	margin-top: 5px;
}

.special-box-button {
	margin-top: 32px;
}

.special-offers-box-right {
	width: 50%;
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-left: 30px;
	height: 10.6vw;
}


.special-offers-box-left .special-box-button a {
	border-radius: 30px;
	background: #b80000;
	padding: 15px 50px;
	color: white;
	font-weight: 500;
	transition: 0.4s;
}

.special-offers-box-right .special-box-button a {
	border-radius: 30px;
	background: #013b6b;
	padding: 15px 50px;
	color: white;
	font-weight: 500;
	transition: 0.4s;
}

.special-offers-box-left .special-box-button a:hover {
	background: transparent;
	color: #b80000;
	font-weight: 900;
	box-shadow: 0 0 0pt 2pt #b80000;
}

.special-offers-box-right .special-box-button a:hover {
	background: transparent;
	color: #013b6b;
	font-weight: 900;
	box-shadow: 0 0 0pt 2pt #013b6b;
}

.info-box {
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
}

.info-box-left {
	width: 25%;
}

.info-box-right {
	width: 75%;
	border-left: 3px solid #d9d9d9;
	padding-left: 50px;
}


.social-top-box {
	display: flex;
	align-items: center;
	margin: 0px auto 0px 0px;
}

.footer-under-box {
	background: #003b6b;
	color: white;
	padding: 60px 0px;
}

.footer-under-left {
	width: 70%;
	font-size: 13px;
	font-weight: 600;
}

.footer-under-right {}

.social-footer-box {}

.under-box-left {
	display: flex;
	align-items: center;
	width: 35%;
}

.under-box-right {
	display: flex;
	width: 65%;
	justify-content: space-between;
}

.under-box-left a {
	color: white;
	margin-right: 25px;
	border: 1px solid white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 35px;
	height: 49px;
	border-radius: 30px;
	font-size: 20px;
	font-weight: 500;
	transition: 0.4s;
}



.under-box-left a:hover {
	background: white;
	color: #b80000;
}

.footer-unslider-box .under-slider-box-cust {
	width: 100%;
	justify-content: space-between;
}

.footer-under-inner {
	display: flex;
	justify-content: space-between;
}


.social-footer-box a {
	margin-left: 10px;
}

.up-button {
	z-index: 9999;
	position: absolute;
	bottom: 65px;
	right: 100px;
}

.category-child {
	margin-left: 20px;
}


.search-products {
	display: flex;
	align-items: center;
	width: 60%;
	position: relative;
}

.search-inputs-box select {
	font-size: 14px;
	padding: 5px;
	margin-right: 0px;
	border-right: unset;
	border-color: #dddddd;
	overflow-y: hidden;
	width: 222px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	color: #23557f;
	font-weight: 600;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
	height: 42px;
}

.search-input {
	font-size: 16px;
	padding: 9px;
	margin-right: -4px;
	border-right: unset;
	border-left: unset;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	width: 100%;
	padding-left: 16px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}


.search-buton-box button {
	background: unset;
	border: unset;
	margin-right: -9px;
	height: 10px;
	width: 45px;
	margin-top: 1px;
}

.search-inputs-box {
	width: 100%;
	display: flex;
	position: relative;
}

.search-buton-box {
	position: absolute;
	right: 3px;
	top: 2px;
}

.search-inputs-box option {
	color: #23557f;
}

.search-inputs-box:after {
	content: "";
	position: absolute;
	height: 32px;
	background: #c4c6c6;
	width: 1px;
	left: 213px;
	top: 6px;
}


.search-input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #a1a1a1;
}

.search-input::-moz-placeholder {
	/* Firefox 19+ */
	color: #a1a1a1;
}

.search-input:-ms-input-placeholder {
	/* IE 10+ */
	color: #a1a1a1;
}

.search-input:-moz-placeholder {
	/* Firefox 18- */
	color: #a1a1a1;
}

.cart-cust-box .woocommerce-Price-amount {
	color: white;
	font-size: 12px;
	margin-left: 10px;
}

.tnp-field-email>label {
	display: none !important;
}


.newsletter-top {
	display: flex;
	width: 100%;
}

.newsletter-header {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 31px;
	font-weight: 500;
}

.newsletter-bottom label {
	display: flex !important;
	align-items: center;
	color: white !important;
	padding-left: 10px;
}

.newlsetter-check {
	margin-right: 10px;
}


.newsletter-box {
	background: #003b6b;
	padding: 50px 0;
}

.widget_newsletterwidget {
	width: 80%;
	display: flex;
	transform: translate(0px, 15px);
}


.tnp.tnp-widget form {
	display: flex;
	justify-content: space-between;
}

.tnp-field-email {
	width: 80%;
}

.tnp-field-button {
	width: 15%;
}

.tnp-submit {
	background-color: #b80000 !important;
	border: 2px solid white !important;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px !important;
}

.tnp-field-email input {
	border-radius: 30px;
	height: 48px !important;
	padding-left: 23px !important;
}

@keyframes move {
	0% {
		margin-top: -250px;
	}

	100% {
		margin-top: 0px;
	}
}



.stick-header.fixed-navbar {
	top: 0px;
	animation-name: move;
	animation-duration: 1s;
	position: fixed;
	width: 100%;
	z-index: 999;
}

.stick-header .header-custom-nav {}

.stick-header {}



.bread-bg {
	font-size: 15px;
	padding-top: 0;
	font-weight: 700;
}

.bread-bg span {}

.product-categories .cat-item {
	position: relative;
}

.product-categories .cat-item:before {
	content: "";
	position: absolute;
	border: solid #b80000;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 23px;
	left: 9px;
}

.product-categories .children .cat-item:before {
	content: "";
	border: none;
}

.product-categories .children .cat-item {
	border-bottom: unset;
	border-left: unset;
	border-right: unset;
}

.product-categories .children .cat-item a:hover,
.cat-parent .current-cat a {
	background: #898989;
	color: white;
}

.product-categories .children .cat-item a {
	border-top: 1px solid #d2d4d4;
}



.product-categories .children {
	padding-left: unset;
	list-style: none;
	display: none;
}

.product-categories .current-cat .children {
	display: block;
}


.cat-item a:hover {
	background: #b80000;
	color: white;
}

.product-categories>.current-cat.cat-item>a,
.current-cat-parent>a {
	background: #b80000;
	color: white;
}

.cat-item a:hover {
	color: white;
}


.product-categories>.cat-item:hover:before {
	display: none;
}


.product-content-box>a {
	height: 75px;
	display: block;
	overflow: hidden;
}


.product-content-box>a:hover {
	font-weight: 600;
	text-decoration: underline;
}

.single-item-custom a:hover {
	text-decoration: underline;
	font-weight: 300;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(img/arrow-down.png) 10px 10px no-repeat white;
	padding-right: 20px;
	border: unset;
	background-position: right;
}


.variations select {
	border: 1px solid #d9d9d9;
}

.woocommerce-variation-price del {
	margin-right: 10px;
}


@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
	.search-input {
		padding-left: 27px;
	}


	.search-inputs-box select {
		padding-left: 20px;
		position: relative;
	}


	.search-inputs-box:after {
		left: 227px;
	}



}


.zdjecie-z-ramka {
	border: 1px solid #d1d2d2;
	border-top-left-radius: 4%;
	border-top-right-radius: 4%;
	border-bottom-left-radius: 4%;
	border-bottom-right-radius: 4%;
	padding: 10px;
	background: white;
}

.single-header {
	font-size: 22px;
	font-weight: 600;
	color: #013b6b;
	margin-bottom: 20px;
}

article.page p {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}


.under-slider-box {
	margin-top: 5px;
}

.home .under-slider-box {
	margin-top: 0px;
}


.home .bread-bg .wrapper>span:last-child {
	color: #b80000;
}

.home .breadcrumb_last {
	color: initial;
}


.breadcrumb_last {
	color: #b80000;
}


.contact-box {
	display: flex;
	justify-content: space-between;
}

.contact-left {
	width: 20%;
}

.contact-right {
	width: 80%;
}


.contact-box-cst {
	width: 100%;
}

.contact-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.contact-btn-box {
	display: flex;
	align-items: center;
}


.contact-top div {
	width: 32%;
}

.your-message textarea {
	width: 100%;
	width: 100%;
	padding: 5px;
	border-radius: 3px;
	border: 1px solid #afafaf;
}

.contact-top input {
	width: 100%;
	padding: 5px;
	border-radius: 3px;
	border: 1px solid #afafaf;
}

.clear-btn-form {
	margin-right: 10px;
	background: #003b6b;
	padding: 8px 15px;
	color: white;
	font-weight: 700;
	transition: 0.4s;
	border-radius: 3px;
}


.clear-btn-form:hover {
	outline: 1px solid #003b6b;
	background: white;
	color: #003b6b;
}




.wpcf7-submit {
	margin-right: 20px;
	background: #b80000;
	padding: 8px 15px;
	color: white;
	border: unset;
	font-weight: 700;
	border-radius: 3px;
	transition: 0.4s;
}

.wpcf7-submit:hover {
	outline: 1px solid #b80000;
	background: white;
	color: #b80000;
}


.clear-btn-form:hover {
	cursor: pointer;
}


.shop-element-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* Home Produktkategori header + tile grid: css/home-categories-section.css */

.shop-element {
	width: 31%;
	background: white;
	border: 1px solid #cecfcf;
	border-radius: 23px;
	padding: 25px;
	margin-bottom: 30px;
	margin-right: 22px;
}

.shop-image {
	height: 245px;
	width: 100%;
	background-position: center;
	background-size: cover;
	border: 1px solid #cfd0d0;
	border-radius: 25px;
}

.shop-link-category-enter {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 17px;
	margin-bottom: -9px;
	font-size: 15px;
	font-weight: 600;
}


.woocommerce-shipping-destination {
	display: none;
}

.shop_table thead {
	background: #f1f1f1;
	font-size: 17px;
}


.shop_table .woocommerce-Price-amount.amount {
	color: #444;
	font-size: 14px;
	font-weight: 500;
}

.woocommerce table.shop_table td {
	padding: 13px 12px;
	background: #fefefe;
}

.product-name a {
	font-size: 13px;
	font-weight: 500;
}

.checkout-button {
	background-color: #003b6b !important;
	text-transform: uppercase;
	width: 245px;
	float: right;
}

.shop_table .button {
	background-color: #003b6b !important;
	text-transform: uppercase;
	color: white !important;
	padding: 10px 15px !important;
}



.woocommerce-cart-form button {
	background-color: #003b6b !important;
	text-transform: uppercase;
	color: white !important;
	font-size: 14px !important;
	width: 245px;
	height: 43px;
}

.update-cart-btn {
	display: flex;
	justify-content: flex-end;
}

.cart_totals {
	width: 100% !important;
	margin-top: 60px;
}

.cart_totals h2 {
	font-size: 22px;
	font-weight: 600;
	color: #013b6b;
}


.qty_button.minus,
.qty_button.plus {
	border: unset;
	background: #b9b9b9;
	border-radius: 30px;
	width: 42px;
	font-size: 30px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
}


.product-quantity .quantity {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.quantity input.qty {
	border: unset;
	background: #b80000;
	color: white;
	border-radius: 100%;
	width: 44px !important;
	display: flex;
	margin: 0 10px !important;
	font-size: 16px;
}


.shop_table thead tr th {
	text-align: center;
}

.cart_item .product-thumbnail img {
	border: 1px solid #cbcdcd;
	padding: 7px;
	height: auto !important;
	width: 95px !important;
	background: white;
}


.woocommerce a.remove {
	font-size: 37px;
	color: #b80000 !important;
}


.woocommerce a.remove:hover {
	background: #b80000;
}


.woocommerce table.shop_table th {
	padding: 15px 12px;
}

.woocommerce table.shop_table tbody th {
	background: white;
}

.cart_totals td {
	width: 6%;
}


.cart_totals td span {
	font-weight: 600 !important;
}

#shipping_method {
	font-weight: bold;
}

.koszyk .woocommerce-shipping-totals {
	display: none;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: none;
}

.tax-info-cust {
	position: absolute;
	right: 25px;
	bottom: 10px;
	color: #7e9cb4;
	font-weight: 700;
}

.current-cat-parent .children {
	display: block;
}

.single-product .product {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.related.products {
	width: 100%;
}

.product-category-cst-box {
	display: flex;
	justify-content: space-between;
}

.product-category-cst-sidebar {
	width: 22%;
}

.product-category-cst-content {
	width: 75%;
}

.content-area {
	background: #f9f9f9;
}

.woocommerce-breadcrumb a {
	color: #646464 !important;
}


.woocommerce-breadcrumb {
	color: #c12121 !important;
	font-weight: 500;
	margin-bottom: 42px !important;
}

.woocommerce-products-header__title {
	color: #013b6b;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 0px;
}

.single .onsale {
	display: none;
}


.single-content-custom-box {}

.single-item-custom {
	background: white;
	border: 1px solid #d9d9d9;
	margin-bottom: 30px;
	padding: 25px;
	font-size: 16px;
}

.single-box-head {
	background: white;
	color: #003b6b;
	display: inline-block;
	padding: 10px 23px;
	font-weight: 600;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-size: 17px;
	margin-top: 10px;
	cursor: pointer;
}

.single-box-head.active {
	background: #003b6b;
	color: white;
}

.single-box-cont {}


.single .cart .quantity {
	display: flex;
}

.size-shop_single {
	/* height: auto!important; */
	/* max-width: 100%!important; */
	/* margin: 0 auto; */
}


.size-shop_thumbnail {}

.single_add_to_cart_button {
	background-color: #b80000 !important;
	color: white !important;
	padding: 10px 15px !important;
	border-radius: 30px !important;
	display: block !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	height: 38px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	width: 120px;
	transition: 0.4s;
}

.single_add_to_cart_button:hover {
	background-color: #d73c3c !important;

}

.single-btn-arrow {
	margin-left: -26px;
	margin-top: 18px;
}

.product_title.entry-title {
	color: #013b6b;
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 0;
}

.product .wpgs--with-images {
	width: 27% !important;
}

.product .summary.entry-summary {
	width: 70% !important;
}

.vbox-item img {
	background: white;
	border-radius: 20px;
	border: 1px solid #d9d9d9;
	padding-top: 50px;
	padding-bottom: 55px;
}

.wpgs-for .slick-arrow {
	display: none !important;
}

.single-item-cust2 {
	border-radius: 8px;
}


.price ins {
	text-decoration: none;
}


.price del {
	margin-left: 10px;
	color: #7d7d7d;
}

.price del span {
	color: #101010;
	font-size: 13px;
}


.single-item-cust2 .price {
	display: flex;
	align-items: center;
}

.single-item-cust2 .cart {
	margin-bottom: 0px !important;
}

.ext-text {
	color: #7e9cb4;
	font-weight: 600;
	font-size: 15px;
	margin-top: -11px;
	margin-bottom: 28px;
	margin-left: 12px;
}

.single-text-item {
	font-size: 16px;
	font-weight: 600;
}

.wpgs-nav .slick-slide img {
	background: white;
	border-radius: 5px;
	border: 1px solid #d9d9d9;
	padding: 5px;
}

.related.products h2 {
	color: #013b6b;
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 32px;
}


.wpgs-nav .slick-slide {
	margin-top: 0px;
}


.wpgs-nav.slick-initialized.slick-slider {
	margin-top: 20px;
}

.venobox.vbox-item {}

.plus-image {
	position: absolute;
	top: 18px;
	z-index: 999;
	right: 20px;
}

.slick-slide {
	position: relative;
}

.plus-image img {
	padding-top: unset;
	border: unset;
	border-radius: unset;
	padding-bottom: unset;
}

.button-img {
	position: absolute;
	bottom: 25px;
	width: 100%;
	color: white;
	text-align: center;
}

.button-img a {
	background: #b80000;
	color: white;
	padding: 7px 19px;
	font-size: 12px;
}





#toggle {
	display: none;
	padding: 10px;
	text-align: right;
	font-size: 40px;
	color: blue;
	padding-right: 30px;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
	top: 3px;
}

#toggle3 {
	display: none;
	padding: 10px;
	text-align: right;
	font-size: 40px;
	color: blue;
	padding-right: 30px;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
	top: 3px;
}

.hamburger-icon {
	width: 31px;
	height: 5px;
	background-color: #b80000;
	margin: 4px 0;
	display: block;
}


.toggle3 {
	display: none;
}



@-moz-document url-prefix() {
	.search-inputs-box:after {
		/*left: 189px;*/
	}

	.search-buton-box button {
		margin-top: 4px;
	}

}



.search-input-bg:after {
	content: "";
	position: absolute;
	height: 9px;
	background: url("img/arrow-down-search.png");
	width: 13px;
	top: 18px;
	z-index: 999;
	right: 0px;
}


.search-input-bg {
	position: relative;
}



.page-title-find {
	color: #013b6b;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 15px;
}


.n2-ss-slider .n2-ss-layers-container {
	max-width: 1280px !important;
	width: 95% !important;
	position: relative;
	margin: 0 auto !important;
}

.woocommerce-tabs.wc-tabs-wrapper {
	display: none;
}


.variations .label {
	width: 80px;
}

.variations .value {
	display: flex;
}

.search-inputs-box #cat {
	background: white;
}

.woocommerce-products-header .term-description {
	position: relative;
	margin-bottom: 40px;
}

.woocommerce-products-header .term-description::after {
	content: "";
	width: 100%;
	position: absolute;
	height: 1px;
	background: #d9d9d9;
	bottom: -19px;
}






.product-list-box .product-category {
	width: 30%;
	background: white;
	border: 1px solid #cecfcf;
	border-radius: 23px;
	padding: 25px;
	margin-bottom: 30px;
	margin-right: 22px;
	list-style: none;
	text-align: center;
}


.product-list-box .product-category img {
	height: 245px;
	width: 100%;
	background-position: center;
	background-size: cover;
	border: 1px solid #cfd0d0;
	border-radius: 25px;
}


.product-list-box .product-category h2 {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 17px;
	margin-bottom: -9px;
	font-size: 15px;
	font-weight: 600;
}

.woocommerce-loop-category__title .count {
	display: none;
}


.product-list-item .product-price del {
	text-decoration: unset;
}

.product-list-item .product-price del .amount {
	text-decoration: line-through;
}

.log-box a:hover {
	text-shadow: 0 0.015em #000000, 0 -0.015em #000000, 0.01em 0 #000000, -0.01em 0 #000000;
	font-weight: 300;
}

.button-img a,
.button-img:hover {
	cursor: default;
	font-weight: normal;
}


.header-cust-butt:hover {
	background: #d73c3c;
	cursor: pointer;
}


/* Legacy product-search Select2 — scoped so WC country/state selects keep full-width borders */
.search-inputs-box .select2-container {
	height: 40px;
}

.search-input-bg:after {
	background: unset;
}


.search-inputs-box .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 8px !important;
}

.search-inputs-box .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom-left-radius: 0px !important;
}



.search-inputs-box .select2-container--default .select2-selection--single {
	font-size: 14px;
	padding: 5px;
	margin-right: 0px;
	border-right: unset !important;
	border-color: #dddddd !important;
	overflow-y: hidden;
	width: 222px;
	border-top-left-radius: 30px !important;
	border-bottom-left-radius: 30px !important;
	color: #23557f;
	font-weight: 600;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
	height: 42px !important;
}

.search-inputs-box .select2-selection__rendered {
	margin-top: 2px;
	color: #23557f !important;
}

.search-inputs-box .select2-dropdown {
	border-color: #dddddd !important;
	width: 228px !important;
}



.qty_button.minus:hover,
.qty_button.plus:hover {
	background: #dad6d6;
}




.woocommerce button.button.alt {
	background: #b80000;
}

.woocommerce button.button.alt:hover {
	background: #d73c3c;
}


.woocommerce.widget_product_categories {
	position: relative;
}



.up-sells {
	width: 100%;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	padding: 15px 30px;
	font-size: 16px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	outline: 0;
	line-height: normal;
	padding: 7px;
	border-radius: 3px;
	border: 1px solid #afafaf;
	color: #4d4d4d;
	font-size: 16px;
}


.video-main {
	width: 100%;
	height: auto;
	margin-bottom: -3px;
}


.gm-cooker1 {
	position: fixed;
	top: 400px;
	right: 0px;
	z-index: 100;
}

.home .gm-cooker1 {
	display: none;
}

.gm-cooker1 img {}

.term-description img {
	float: right;
	max-height: 250px;
	margin: 0px;
}

/* RWD */


@media only screen and (max-width:1482px) {
	.special-offers-box {
		flex-direction: column;
	}

	.special-offers-box-left {
		width: 100%;
		height: 27vw;
	}

	.special-offers-box-right {
		width: 100%;
		height: 27vw;
	}
}



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

	.shop-element {
		width: 30%;
	}

	.shop-image {
		height: 190px;
	}


}

@media only screen and (max-width:1300px) {
	.search-inputs-box {
		width: 95%;
	}
}







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




	.single-header {
		margin-top: 18px;
	}

	.widget_text {
		display: none;
	}

	.slick-initialized .slick-slide img:not(.bottom-info-slide__img) {
		max-height: 400px;
		width: auto !important;
		margin: 0 auto;
		margin-top: 20px;
	}


	.product .wpgs--with-images,
	.product .summary.entry-summary {
		width: 100% !important;
	}

	.product-category-cst-box {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.product-category-cst-sidebar {
		width: 100%;
	}

	.woocommerce-products-header__title {
		margin-top: 10px;
	}

	.product-category-cst-content {
		width: 100%;
	}




	ul.product-categories {
		display: none;
	}


	#toggle3 {
		display: flex;
		right: 0px;
		top: -3px;
	}

	.main-special-category {
		padding-top: 0px;
	}


	.main-special-category .wrapper {
		flex-direction: column;
	}

	.main-special-category .wrapper .main-special-left {
		width: 100%;
	}

	.main-special-category .wrapper .main-special-right {
		width: 100%;
	}

	.main-special-right .simple-title {
		margin-top: 10px
	}


}




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

	.gm-cooker1 img {
		width: 80px;
		top: 50%;
	}


	.logo-box-cust {
		flex-wrap: wrap;
	}

	.logo-box-cust .logo-left {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 26px;
	}

	.logo-box-cust .cart-cust-box {}

	.logo-box-cust .search-products {
		width: 80%;
	}

}



@media only screen and (max-width:1040px) {
	.info-bottom-box {
		flex-direction: column;
	}

	.info-bottom-box-left {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 20px;
	}

	.info-bottom-box-right {
		width: 100%;
		text-align: center;
	}

	.info-bottom-box-right span {
		display: block;
		margin-bottom: 20px;
	}

	.info-bottom-box-right p {
		font-size: 14px;
	}
}





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

	.under-box-right {
		width: 100%;
	}

	.under-box-left a {}

	.under-box-left {
		margin-bottom: 24px;
		width: 100%;
		justify-content: center;
	}

	.fly-box {
		top: -3px !important;
	}

	.under-slider-box-cust {
		flex-direction: column;
		align-items: center;
	}

}



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

	.product-list-box .product-category {
		width: 47%;
		height: 330px;
	}

}

@media only screen and (max-width: 971px) {
	.gm-cooker1 img {
		width: 80px;
		top: 40%;
	}

	.term-description img {

		max-height: 150px;
	}

	.tnp-widget input.tnp-submit {
		width: 100% !important;
		height: 50px !important;

	}

	.tnp.tnp-widget form {
		flex-direction: column;
	}

	.widget_newsletterwidget,
	.tnp-widget .tnp-field {
		width: 100%;
	}

	.newsletter-header {
		width: 100%;
	}


	.newsletter-top {
		flex-direction: column;
	}

	.header-nav-bg ul {
		flex-direction: column;
		margin-left: 80px;
		display: none;
		margin-top: 60px;
	}

	.header-nav-bg li.current-menu-item {
		border-bottom: 4px solid #b80000;
	}


	#toggle {
		display: flex;
	}


	.header-text-custom {
		position: absolute;
		right: 15px;
		top: 17px;
	}


	.under-slider-box-cust {
		width: 100%;
	}


}





@media only screen and (max-width: 910px) {
	.product-list-item {
		width: 48%;
	}


	.info-box {
		flex-direction: column;
	}

	.info-box-left {
		width: 100%;
		text-align: center;
	}

	.info-box-right {
		width: 100%;
		border-left: unset;
		text-align: center;
		margin-top: 20px;
		padding-left: unset;
	}


}









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

	.social-top-box {

		margin: 28px auto 0px;
	}

	.logo-box-cust .cart-cust-box {
		margin: 0 auto;
		margin-top: 0;
	}


	.logo-box-cust .search-products {
		width: 100%;
	}

	.search-inputs-box {
		width: 100%
	}

	.contact-box {
		flex-direction: column;
	}

	.contact-left {
		width: 100%;
		text-align: center;
	}

	.contact-right {
		width: 100%;
	}

}




.shipping td {
	display: none !important;
}

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

	.shop-element {
		width: 48%;
		margin-right: 0px;
	}

	.shop-element-box {
		justify-content: space-between
	}

	.shop-image {
		height: 35vw;
	}


}




@media only screen and (max-width: 771px) {
	.gm-cooker1 img {
		width: 60px;
	}

	.product-list-box .product-category {
		width: 100%;
		height: auto;
	}

	.product-list-box .product-category img {
		height: 58vw;
		width: auto;
	}
}



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

	.product-quantity {
		display: flex !important;
		align-items: center;
	}

	.qty_button.minus {
		margin-left: 10px !important;
	}

	.cart_totals td {
		width: 100%;
	}


}




@media only screen and (min-width: 694px) {

	.vbox-next {
		right: 30vw;
	}

	.vbox-prev {
		left: 30vw;
	}

}



@media only screen and (max-width: 642px) {
	.under-box-left {
		margin-top: 34px
	}

	.under-box-right {
		margin-bottom: 21px;
		flex-direction: column;
		align-items: flex-start;
	}

	.under-box-right .under-slider-item {
		margin-bottom: 10px;
	}
}


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

	.n2-ss-slider .n2-ss-layer-content .n2-ss-layer {
		margin: 3px !important;
	}



	.product-list-item {
		width: 100%;
	}

	.n2-ss-layer.n2-ow {
		width: unset !important;
	}

	div#n2-ss-2 .n2-ss-slider-2 h2 {
		font-size: 14px !important;
	}



	.under-slider-box-cust {
		width: 100%;
		flex-direction: column;
		margin: 0;
		align-items: flex-start;
		margin-left: 30px;
		padding: 30px 0px;
		padding: 0;
	}

	.footer-unslider-box .under-slider-box-cust {
		margin-left: unset;
	}


	.footer-unslider-box .under-slider-box-cust .under-box-right {
		margin-left: 30px;
	}



	.under-slider-box-cust .under-slider-item {
		margin: 10px 0;
	}
}







@media only screen and (max-width: 561px) {
	.product-list-item {
		width: 100%;
	}
}


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

	.fly-box {
		display: none;
	}


	.special-offers-box-left .special-box-title {
		font-size: 12px;
	}

	.special-offers-box-right .special-box-title {
		font-size: 12px;
	}

	.special-offers-box-left .special-box-desc {
		font-size: 10px;
	}

	.special-offers-box-right .special-box-desc {
		font-size: 10px;
	}


}



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


	.under-box-left a {
		padding: 0px 25px;
		font-size: 15px;
	}


	.special-offers-box-left .special-box-button a,
	.special-offers-box-right .special-box-button a {
		padding: 10px 15px;
	}

	.special-box-button {
		margin-top: 20px;
	}


	.shop-element {
		width: 100%;
		margin-right: 0px;
	}

	.shop-image {
		height: 84vw;
	}

	.single-item-cust2 {

		padding-top: 50px;
	}
}





@media only screen and (max-width: 443px) {
	.contact-top {
		flex-direction: column;
	}

	.contact-top div {
		width: 100%;
		margin-bottom: 10px;
	}


	.search-inputs-box:after {
		left: 154px;
	}


	.search-inputs-box .select2-container--default,
	.search-inputs-box .select2-container--default .select2-selection--single {
		width: 145px !important;
	}


	.search-inputs-box .select2-container--default .select2-selection--single .select2-selection__arrow {
		right: 38px;
	}







}






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

	.up-button {
		right: 30px;
		bottom: 40px;
	}


	.footer-under-inner {
		flex-direction: column;
		text-align: center;
		padding: 0 20px;
		width: 100%;
	}



	.footer-under-inner .footer-under-left {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer-under-inner .footer-under-right {
		width: 100%;
	}

	.social-footer-box a {
		margin: 0px 10px;
	}

}





@media only screen and (max-width: 374px) {
	.search-input {
		font-size: 13px;
	}

	.search-inputs-box .select2-container {
		height: 42px;
	}



	.qty_button.minus {
		margin-left: 10px !important;
	}

	.quantity input.qty {
		margin: 0 2px !important;
	}

	.single-item-cust2 {
		padding: 10px;
	}


}



@media only screen and (min-width:400px) and (max-width:1550px) {

	.up-button {
		bottom: 13px;
		right: 36px;
	}

}



.my-field-class label>span {
	display: none
}


.copy-data {
	background: #013b6b;
	color: white;
	font-weight: 500;
	display: inline-block;
	padding: 10px;
	cursor: pointer;
	margin-top: 10px;
	transition: 0.4s;
	border-radius: 3px;
}


.woocommerce a.button {
	background-color: #003b6b !important;
	color: white;
	transition: 0.4s;
}

.woocommerce a.button:hover {
	background-color: white !important;
	color: #003b6b !important;
	border: 1px solid #003b6b !important;
}



/* WooCommerce notices — inline flow (legacy fixed toast removed) */
.woocommerce-notices-wrapper {
	margin-bottom: clamp(16px, 2.5vw, 24px);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
div.woocommerce-error,
ul.woocommerce-error {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	width: 100%;
	max-width: 100%;
	margin: 0 0 12px;
	/* Right room for close button; left stays tight when no icon */
	padding: 16px 44px 16px 20px;
	border: none;
	border-left: 4px solid currentColor;
	border-radius: 0 var(--hdr-radius, 8px) var(--hdr-radius, 8px) 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	/* Never inherit — parents (e.g. white-on-navy chrome) made error text invisible */
	color: #0c1c2e;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 14px;
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.5;
	list-style: none;
	box-sizing: border-box;
}

/*
 * ATC success — legacy Gastroline green bar (#6bbd6e).
 * Slim full-width bar, white text, navy "Se handlekurv", white ×.
 */
.woocommerce-message {
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 8px 40px 8px 16px;
	border: none;
	border-left: none;
	border-radius: 0;
	background: #6bbd6e;
	box-shadow: none;
	color: #fff;
	font-size: 13px;
	line-height: 1.35;
	outline: none !important;
}

.woocommerce-message:focus,
.woocommerce-message:focus-visible {
	outline: none !important;
	box-shadow: none;
}

.woocommerce-info {
	color: #0c3a6e !important;
	background: #f0f5fb !important;
	border-left-color: #003b6b !important;
}

.woocommerce-error,
div.woocommerce-error,
ul.woocommerce-error {
	color: #7f1010 !important;
	background: #fff5f5 !important;
	border-left-color: #c62828 !important;
	flex-direction: column;
	gap: 6px;
	font-weight: 600;
}

.woocommerce-error li,
div.woocommerce-error li,
ul.woocommerce-error li,
.woocommerce-info li {
	color: inherit !important;
}

.woocommerce-error a,
div.woocommerce-error a,
ul.woocommerce-error a {
	color: #5c0a0a !important;
	text-decoration: underline;
	font-weight: 700;
}

.woocommerce-error a:hover,
div.woocommerce-error a:hover,
ul.woocommerce-error a:hover {
	color: #3d0707 !important;
}

.woocommerce-info a {
	color: #003b6b !important;
	text-decoration: underline;
	font-weight: 700;
}

/*
 * Error/info keep WooCommerce's ::before icon font.
 * Use one padding shorthand (em) so later shorthands cannot leave a 20px left
 * gutter while the absolute icon still paints over the first letter.
 * Ratio matches WC core (padding-left ~3.5em, icon at ~1.5em).
 */
.woocommerce-info,
.woocommerce-error,
div.woocommerce-error,
ul.woocommerce-error {
	padding: 1em 2.75em 1em 3.75em;
}

.woocommerce-message a {
	order: 2;
	margin-left: auto !important;
	flex-shrink: 0;
}

/* Navy filled "Se handlekurv" — clear gap before absolute close (×) */
.woocommerce-message a.button.wc-forward,
.woocommerce-message a.wc-forward {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	min-height: 0;
	padding: 5px 12px !important;
	margin-right: 32px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	text-decoration: none !important;
	text-transform: none;
	letter-spacing: 0;
	color: #fff !important;
	background: #003b6b !important;
	border: none !important;
	border-radius: 3px !important;
	box-shadow: none !important;
	transform: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.woocommerce-message a.button.wc-forward:hover,
.woocommerce-message a.wc-forward:hover {
	color: #003b6b !important;
	background: #fff !important;
	border: 1px solid #003b6b !important;
	box-shadow: none !important;
	transform: none !important;
}

/* Success notices: no icon */
.woocommerce-message::before {
	content: "";
	display: none;
}

/* Keep WC error/info icons; pin them in the left padding gutter (em = notice font-size) */
.woocommerce-error::before,
.woocommerce-info::before {
	position: absolute !important;
	top: 1.05em !important;
	left: 1.15em !important;
	display: inline-block !important;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-message .close-alert,
.woocommerce-message .gl-sp-notice__close {
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 2;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.woocommerce-message .close-alert:hover,
.woocommerce-message .gl-sp-notice__close:hover {
	color: #fff;
	background: transparent;
	opacity: 0.85;
}

.woocommerce-message .close-alert:focus,
.woocommerce-message .close-alert:focus-visible,
.woocommerce-message .gl-sp-notice__close:focus,
.woocommerce-message .gl-sp-notice__close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.woocommerce-cart .woocommerce-message {
	display: none;
}


@media only screen and (max-width: 1300px) {
	.woocommerce-message {
		max-width: 100%;
	}
}


.copy-data:hover {
	background: white;
	outline: 1px solid #013b6b;
	color: #013b6b;
}




.content-box-border {
	border: 1px solid #ced0d0;
	margin-bottom: 20px;
	background: white;
	padding: 15px;
}

.content-box-border p {
	margin: unset
}

.content-box-border-main {
	display: flex;
	justify-content: space-between;
}

.content-box-border-left {
	width: 49%;
}

.content-box-service-list {}

.content-box-top {
	padding-bottom: 10px;
}

.content-box-bottom {}

.content-box-border-right {
	width: 49%;
}

.content-box-bottom a {
	font-size: 15px;
	font-weight: 600;
	margin-left: 7px;
}

.separator-cont {
	font-size: 15px;
	margin-left: 5px;
	margin-right: -3px;
}

.content-box-title p {
	margin: 10px 0px;
}

.content-box-title a {
	margin: 4px 0;
	display: inline-block;
	margin-left: 4px;
	font-weight: 600;
}

.content-box-title img {
	margin-top: 7px;
	display: block;
	float: left;
	margin-right: 4px;
}

.content-box-title {
	margin-bottom: 45px
}

.content-box-bottom a:hover,
.content-box-title a:hover {
	font-weight: bold;
}


@media only screen and (max-width: 820px) {
	.content-box-border-main {
		flex-direction: column;
	}

	.content-box-border-left,
	.content-box-border-right {
		width: 100%;
	}

}

.footer-under-left a {
	color: white;
}


.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.prd-var {
	flex-direction: row !important;
}


.product .button-img {
	display: none;
}

.product.sale .button-img {
	display: block;
}


.fly-box {
	/* 	display:none; */
	position: absolute;
	right: 0px;
	top: -50px;
	z-index: 999;
}

.fly-box img {
	height: 200px;
	width: 200px;
}

.top-header-box h1 {
	font-size: 14px;
	margin: 5px 0;
	width: 100%;
	font-weight: 300;
}

.top-header-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.producent-logo {
	max-width: 200px !important;
	max-height: 100px;
	margin-top: 30px;
}


.dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	padding: 10px 48px 10px 16px;
	border-radius: 50px;
}

.dgwt-wcas-preloader {
	right: 44px;
}

/* Perfect circle; equal width/height so the glass sits centered in the red button */
.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
	background: #b80000;
	width: 32px;
	height: 32px;
	max-width: 32px;
	max-height: 32px;
	/* Asymmetric padding optically centers FiboSearch’s handle-heavy viewBox */
	padding: 8px 6px 6px 8px;
	box-sizing: border-box;
	border-radius: 50%;
	opacity: 1;
	top: 0;
	bottom: 0;
	right: 8px;
	left: auto;
	margin: auto 0;
}

.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier path {
	fill: #fff !important;
	stroke: none;
}


.dgwt-wcas-search-wrapp {
	display: flex;
	align-items: center;
}

.product-categories .cat-item-826 {
	display: none !important;
}

.producent-logo img {
	max-width: 200px !important;
	max-height: 100px;
	margin-top: 30px;
}

#text-6 .textwidget {
	background: white;
	padding: 15px;
	border: 1px solid #d2d4d4;
	margin-top: 20px;
}

#text-5 .textwidget {
	background: white;
	padding: 15px;
	border: 1px solid #d2d4d4;
	margin-top: 20px;
}

#text-4 .textwidget {
	background: white;
	padding: 15px;
	border: 1px solid #d2d4d4;
	margin-top: 20px;
}

/* Legacy — compact logo sizing lives in css/shop-archive-b2b.css
   (main-content .product-category-cst-content only; sidebar untouched). */
.term-produsent .product-list-box .product-category img,
.term-produsenter .product-list-box .product-category img {
	width: 100%;
	background-position: center;
	background-size: cover;
	border: 1px solid #cfd0d0;
	border-radius: 25px;
	padding: 20px;
	height: auto;
}

.woocommerce-page #primary {
}

.term-description,
.product-cat-desc,
.home-desc-con {
	background: white;
	padding: 15px;
	border: 1px solid #d2d4d4;
	margin-top: 20px;
	margin-bottom: 40px;
	/* Match staging category archives (Open Sans regular). */
	font-family: 'Open Sans', Lato, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	color: #4d4d4d;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.tax-product_cat #breadcrumbs,
.page #breadcrumbs {
	padding-left: 0px;
	padding-right: 0px;
	display: inline-block;
}


.producers-widget .textwidget {
	background: #003B6B !important;
}

.producers-widget h2 {
	color: white;
}

.producers-widget a {
	color: white;
	font-size: 15px;
	display: inline-block;
}

.producers-widget a:hover {
	font-weight: 500;
}

.producers-widget ul {
	list-style: none;
	padding: 0px !important;
}

.producers-widget li {
	padding: 8px;
	transition: .4s;
}

.producers-widget li:hover {
	background: #002f54 !important;
}


.small-search {
	display: none;
	max-width: 215px;
	transform: translateX(-24px);
}

.small-search .dgwt-wcas-search-wrapp {
	min-width: 100%;
}

@media (min-width: 1200px) {
	.stick-header .small-search {
		display: block;
	}
}


@media(max-width: 1340px) and (min-width: 1000px) {
	.header-nav-bg li {
		margin-right: 15px;
	}
}


/*
 * Staging category description body — exact computed values from
 * new.gastroline.no (old theme style.css uses 15px !important / 1.6em).
 * Scope: description containers only (not H1 / page chrome).
 */
.term-description p,
.term-description li,
.term-description span,
.product-cat-desc p,
.product-cat-desc li,
.product-cat-desc span,
.tax-product_cat .term-description p,
.tax-product_cat .term-description span {
	font-family: 'Open Sans', Lato, sans-serif !important;
	font-size: 15px !important;
	/* 400 = Open-Sans regular (staging Rendered Fonts); 300 would load Open-Sans-Light. */
	font-weight: 400 !important;
	line-height: 1.6em !important;
	color: #4d4d4d !important;
	letter-spacing: normal;
}
.term-description strong,
.term-description b,
.product-cat-desc strong,
.product-cat-desc b {
	font-family: inherit;
	font-weight: 700;
	color: #4d4d4d;
}
.term-description a,
.product-cat-desc a {
	color: #444;
	font-size: inherit;
	line-height: inherit;
}

/* Category description H2–H6 — staging computed px (UA of 11px parent). */
.term-description h2,
.term-description h3,
.term-description h4,
.term-description h5,
.term-description h6,
.product-cat-desc h2,
.product-cat-desc h3,
.product-cat-desc h4,
.product-cat-desc h5,
.product-cat-desc h6 {
	font-family: 'Open Sans', Lato, sans-serif !important;
	font-weight: 700;
	line-height: 1.4;
	color: #4d4d4d !important;
	letter-spacing: normal;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.term-description h2,
.product-cat-desc h2 {
	font-size: 16.5px !important;
	margin: 13.695px 0;
}
.term-description h3,
.product-cat-desc h3 {
	font-size: 12.87px !important;
	margin: 12.87px 0;
}
.term-description h4,
.product-cat-desc h4 {
	font-size: 11px !important;
	margin: 14.63px 0;
}
.term-description h5,
.product-cat-desc h5 {
	font-size: 9.13px !important;
	margin: 15.25px 0;
}
.term-description h6,
.product-cat-desc h6 {
	font-size: 7.37px !important;
	margin: 17.17px 0;
}


.product-list-item:hover {
	box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.22);
}

.new-bar-cust-best {
	background: transparent !important;
	top: -1px;
	right: 5px;
	max-width: 90px;
}


.black-week-sep {
	border-top: 3px dashed #000;
}

.black-week-con h2 {
	font-size: 41px;
	font-weight: 800;
	text-align: center;
	margin: 0 auto;
	margin-top: 0px;
	margin-bottom: 0px;
	background: url(img/black-week-header.svg);
	background-position-x: 0%;
	background-position-y: 0%;
	background-repeat: repeat;
	background-size: auto;
	width: 311px;
	height: 110px;
	background-size: contain;
	background-position: center;
	display: flex;
	justify-content: center;
	padding-top: 19px;
	color: #fff;
	text-transform: uppercase;
	margin-top: -56px;
	margin-bottom: 70px;
	background-repeat: no-repeat;
	text-indent: -99999px;
}

.black-week-btn {
	display: table;
	margin: 0 auto;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	background: #000;
	padding: 15px 50px;
	border-radius: 50px;
	margin-top: -26px !important;
	margin-bottom: 80px;
	color: #fff !important;
}

.special-black-week-img {
	position: absolute;
	left: 20px;
	top: -9px;
	max-width: 120px;
}


.bestseller-sep {
	border-top: 3px dashed #ef7f1a;
}

.bestseller-con h2 {
	font-size: 41px;
	font-weight: 800;
	text-align: center;
	margin: 0 auto;
	background: url(img/BANER_BESTSELLERS.svg);
	width: 311px;
	height: 110px;
	background-size: contain;
	background-position: center;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	padding-top: 19px;
	color: white;
	text-transform: uppercase;
	margin-top: -19px;
	margin-bottom: 70px;
}

.best-btn {
	display: inline-block;
	margin: 0 auto;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 800;
	color: white;
	background: #ef7f1a;
	padding: 15px 50px;
	border-radius: 50px;
	margin-top: -26px !important;
	margin-bottom: 80px;
}

.woocommerce div.product form.cart .button {
	padding: 21px 0 !important;
}

@media (max-width: 700px) {
	.bestseller-sep {
		margin-top: 50px;
	}

	.bestseller-con h2 {
		font-size: 30px;
	}
}

.download {
	color: white;
	background: #003b6b;
}

.upsells h2 {
	color: #013b6b;
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 32px;
}

@media (min-width: 980px) {
	.product-list-box {
		justify-content: flex-start;
	}

	.product-list-item {
		margin-right: 3%;
	}

	.product-list-item:nth-child(3n + 3) {
		margin-right: 0;
	}
}

.download-box p {
	position: relative;
}

.download-box p::after {
	content: '';
	width: 64px;
	height: 64px;
	background: url(../../uploads/2021/09/3325114_download_icon.png);
	background-position: center !important;
	background-size: cover !important;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.download-box a {
	padding-left: 80px
}

.special-img {
	position: absolute;
	left: 20px;
	top: -4px;
	max-width: 120px;
}

.single-item-cust2 {
	position: relative;
}

.single-item-cust2 .special-img {
	right: 120px;
	left: auto;
}


.woocommerce-print-products {
	position: absolute;
	right: 15px;
	bottom: 15px;

}

.woocommerce-print-products-pdf-link {
	color: #d73c3c;
}

.woocommerce-print-products-pdf-link:hover {
	color: #003b6b;
}

.woocommerce-print-products-print-link {
	color: #003b6b;
}

.woocommerce-print-products-print-link:hover {

	color: #d73c3c;
}


.gm-baner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;

	width: 100%;
	margin: 30px 0px;
}

.gm-baner div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

.gm-baner div img:hover {
	transform: scale(1.05);
}

.gm-baner div {
	overflow: hidden;
}



.gm-baner1 {
	grid-area: 1 / 1 / 3 / 3;
}

.gm-baner2 {
	grid-area: 1 / 3 / 2 / 4;
}

.gm-baner3 {
	grid-area: 1 / 4 / 2 / 5;
}

.gm-baner4 {
	grid-area: 2 / 3 / 3 / 5;
}


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

	.gm-baner {

		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 1fr);

	}

	.gm-baner1 {
		grid-area: 1 / 1 / 3 / 3;
	}

	.gm-baner2 {
		grid-area: 3 / 1 / 4 / 2;
	}

	.gm-baner3 {
		grid-area: 3 / 2 / 4 / 3;
	}

	.gm-baner4 {
		grid-area: 4 / 1 / 5 / 3;
	}

}

.woocommerce-pagination li .page-numbers.current {
	background: #b80000 !important;

}

.woocommerce-pagination li .page-numbers {
	font-size: 16px !important;
	background: #003b6b !important;
	color: #fff !important;
	border: 0px solid !important;
	padding: 10px !important;

}

.woocommerce-pagination li .page-numbers:hover {

	background: #b80000 !important;
}

.woocommerce nav.woocommerce-pagination ul li {
	border-right: 0px solid #d3ced2;

	margin: 0px 1px;
}

.woocommerce nav.woocommerce-pagination ul {

	border: 0px solid #d3ced2 !important;
}

.gm-extra-info-dostawa {
	color: #b80000;
	font-weight: bold;
	margin: 0;
}

a.no-price {
	display: block;
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    background: #b80000;
    border-radius: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
	font-weight: 600 !important;
}

a.no-price:hover{
	font-weight: 600 !important;
}

/* Hide Google reCAPTCHA floating badge (badge is still active — see privacy policy).
   Required disclosure when badge is hidden: document reCAPTCHA usage in privacy policy.
   Keys / enable toggle: WP Admin → Appearance → Gastroline */
.grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}