/* ==========================================================================
   Template styling
   ========================================================================== */

/* Dashboard
   ========================================================================== */
.dashboard {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


@media screen and (min-width:768px) {
	.dashboard-item {
		flex: 1;
	}
	.dashboard-item {
		margin-left: 10px;
		margin-right: 10px;
	}

	.dashboard-item:first-of-type {
		margin-left: 0;
	}
	.dashboard-item:last-of-type {
		margin-right: 0;
	}
}
.dashboard-item {
	position: relative;
	height: 250px;
}
.dashitem {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	text-align: center;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	-moz-box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: white;
}
a.dashitem-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
a.dashitem-link:hover {
	text-decoration: none;
}
.dashitem .fa {
	font-size: 0;
	color: #00aabc;
}
.dashitem .fa::before {
	font-size: 100px;
}
.dashitem img {
	width: 100px;
}
.dashitem .dashitem-heading {
	margin-bottom: 5px;
}
@keyframes ScaleDashitem {
	from
	{transform: scale(1)}
	to
	{transform: scale(1.01)}
}
a.dashitem-link:hover ~ .dashitem {
	animation: ScaleDashitem 0.3s;
	animation-fill-mode: forwards;
}
@media screen and (max-width:767px) {
	.dashitem-info {
		display: none;
	}
	.dashboard-item {
		height: 150px;
		width: 48%;
		margin-bottom: 20px;
		flex-grow: 1;
	}
	.dashitem-img {
		width: 60px;
	}
	.dashitem .fa::before{
		font-size: 60px;
	}
}


/* Search template
   ========================================================================== */
/* Search template */
.search-icon {
    font-family: fontawesome;
    font-size: 25px;
    cursor: pointer;
}
.search-icon img {
    width: 25px;
}

/* Search section (Add this class to container you want to toggle - needs script also) */
.search-container {
    display: none;
}

/* Social media links
   ========================================================================== */
.social-media-links {
   font-size: 35px;
}
.social-media-links a:hover,
.social-media-links .social-link-image img:hover {
    text-decoration: none;
    transform: scale(1.1);
}
.social-media-links a:active,
.social-media-links a:focus {
 	text-decoration: none; 
}

.social-media-links .social-link-image img {
    width: 35px;
}

/* Hero image with text and button
   ========================================================================== */
.hero-container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
  	background-size: cover;
    background-position: center;
}
.hero-container > h1,
.hero-container > a {
    width: 100%;
}
/* Contact info card
   ========================================================================== */
.contact-card {
    line-height: 170%;
}
.contact-card .contact-name {
    margin-top: 10px;
}
.contact-card h3 {
    margin-bottom: 5px;
}
.contact-card .contact-title {
    width: 100%;
    float: left;
}
.contact-card .contact-icons {
    margin-top: 5px;
}
.contact-card .contact-icons a {
    font-size: 20px;
}
.contact-card .contact-icons a:hover {
    text-decoration: none;
}

/* FAQ Accordion
   ========================================================================== */
.accordion-container input {
    display: none;
}
.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}
.accordion-container label {
    display: block;
    cursor: pointer;
    border-bottom: 2px solid #eee;
    padding: 10px 0px;
}
.accordion-container label:after {
    content: '\f078';
    font-family: fontawesome;
    float: right;
    transform: rotate(0deg);
    transition: all 0.3s;
}
input +  label + .accordion-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0;
    transition: all 0.2s;
}
input:checked + label + .accordion-content {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
    height: auto;
    padding: 10px 0px;
}
input:checked + label {
    border-color: #000;
    color: #000;
}
input:checked + label:after {
    transform: rotate(180deg);
    transition: all 0.3s;
}

/* Info card icon left
   ========================================================================== */
.info-card-left .info-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info-card-left img {
    max-width: 30px;
    margin-right: 10px;
}
.info-card-left h3 {
    margin-bottom: 0;
}
.info-card-left .fa {
 	font-size: 0px; 
}
.info-card-left .fa:before {
    font-size: 30px;
    margin-right: 10px;
  	display: block;
}
/* Info card centered
   ========================================================================== */
.info-card-centered {
    text-align: center;
}
.info-card-centered .fa {
 	font-size: 0px; 
}
.info-card-centered img {
    max-width: 60px;
    margin-bottom: 10px;
}
.info-card-centered .fa:before {
    font-size: 60px;
    margin-bottom: 15px;
  	display: block;
}

/* Video
   ========================================================================== */
.video-embed-container { 
  	position: relative; 
  	padding-bottom: 56.25%; 
  	height: 0; 
  	overflow: hidden;
  	max-width: 100%; 
} 
.video-embed-container iframe, .video-embed-container object,
.video-embed-container embed { 
  	position: absolute; 
  	top: 0; 
  	left: 0; 
  	width: 100%; 
  	height: 100%; 
}
/* Image card with text on top
   ========================================================================== */
.image-card-text-top {
    background-size: cover;
    background-repeat: none;
    background-position: center;
    position: relative;
    padding: 20px;
}
.image-card-text-top.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.image-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.image-card-text {
    position: relative;
    z-index: 555;
}@font-face {
  font-family: "Roboto";
  font-style: normal;
  src: url("/customfonts/roboto/Roboto.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  src: url("/customfonts/montserrat/Montserrat.ttf") format("truetype");
}


/* ==========================================================================
   S V E G R O S S
   ========================================================================== */


/*
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}


body {
    
    
    color: #333;
    background-color: #fff
}*/





/*
@media (min-width: 1400px) {
    .container {
        width:1370px
    }
}
*/

html, body {
	line-height: 1.5;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6, .text-bold,.toggle-lvl-two a, .toggle-lvl-three a, .toggle-lvl-four a, .mobile-lvl-one a {

font-family: "Montserrat", Helvetica, sans-serif;

}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    line-height: 1.2;
    color: inherit;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6, .text-bold {
    font-weight: 500;
}


/* Top bar link icons */
.top-bar-link.user-profile-page-link a:before, .top-bar-link.user-log-in-link a:before {
    content: "\f007";
    font-family: FontAwesome;
}
.top-bar-link.user-log-out-link a:before, .top-bar-link.user-log-out-link a:before {
    content: "\f08b";
    font-family: FontAwesome;
}


/*=============================================
VAT Toggle switch
============================================= */
.togglesection-toggle {line-height: 1;}
.section_Toggle .switch-field label {border-color: #333; font-size: 0; padding: 8px 10px;}
.header .toggle-visible-label {
  Background: transparent;
  color: #333;
  font-size: 10px;
}
.switch-field label {
  font-size: 0;
}
.section_Toggle .switch-field input:checked+label {
  background-color: #333;
    box-shadow: none;
    border-color: #333;
    color: #333;  
}


/*============================================= */


.breadcrumb-wrapper {background: none !important; box-shadow: none !important;}
.header {
Background: none !important;
Background-color: #fff !important;

}

.header > .container >.col-xs-12, .header > .container >.col-sm-12, .header > .container >.col-md-12, .header > .container >.col-lg-12, .header > .container >.col-xs-11, .header > .container >.col-sm-11, .header > .container >.col-md-11, .col-lg-11, .header > .container >.col-xs-10, .header > .container >.col-sm-10, .header > .container >.col-md-10, .header > .container >.col-lg-10, .header > .container >.col-xs-9, .header > .container >.col-sm-9, .header > .container >.col-md-9, .header > .container >.col-lg-9, .header > .container >.col-xs-8, .header > .container >.col-sm-8, .header > .container >.col-md-8, .header > .container >.col-lg-8, .header > .container >.col-xs-7, .header > .container >.col-sm-7, .header > .container >.col-md-7, .header > .container >.col-lg-7, .header > .container >.col-xs-6, .header > .container >.col-sm-6, .header > .container >.col-md-6, .header > .container >.col-lg-6, .header > .container >.col-xs-5, .header > .container >.col-sm-5, .header > .container >.col-md-5, .header > .container >.col-lg-5, .header > .container >.col-xs-4, .header > .container >.col-sm-4, .header > .container >.col-md-4, .header > .container >.col-lg-4, .header > .container >.col-xs-3, .header > .container >.col-sm-3, .header > .container >.col-md-3, .header > .container >.col-lg-3, .header > .container >.col-xs-2, .header > .container >.col-sm-2, .header > .container >.col-md-2, .header > .container >.col-lg-2, .header > .container >.col-xs-1, .header > .container >.col-sm-1, .header > .container >.col-md-1, .header > .container >.col-lg-1 {
padding: 0px;
}




.header a {
  Background: transparent;
  color: #333;
}

 div.header {
 position: sticky;
    top: 0;
    z-index: 999;
	}

.cd-main-header.nav-is-visible {overflow: inherit;}


.cd-header-buttons {
	top: 8px;
}


.cd-nav-trigger span, .cd-nav-trigger span:before, .cd-nav-trigger span:after {background: #fff;}

.field-stockcode {display: none;}
 
.header .sg-logo{height: auto; }

.section_OrderDetail, .section_OrderSearch, .section_InvoiceSearch, .section_InvoiceDetail {
	font-size: 14px;
}

/*=============== 
SG menu
=============== */

.cd-primary-nav li {
	list-style: none;
  a:hover, a:active {text-decoration: none;}
}

/*=============== 
SG modal menu
=============== */

.sg-menu-xs .fa:before {font-size: 25px; }

.sg-menu-xs a.fa {
        height: 30px;
        line-height: 60px /*30px*/;
        color: #333;
  text-decoration: none;
    }


.sg-catalog-modal {
	.sidebar-nav-items { display: Contents;}
    .sidebar-nav-toggle {display: none;}
}


/*=============== 
Searchbox
=============== */
.header.search-container, #searchboxform, button.btn.btn-primary.btn-lg.catalogsearchboxbutton.btn-ptBlue.pt-btn-search {color: #999;}

div.header.search-container {
    top: 55px;
	}

 .header.search-container, #searchboxform {
  background: #fff !important;
}



div.header.search-container {box-shadow: 0 10px 10px -7px rgba(50,50,50,.5)}

input.catalogsearchbox {font-size: 1.2em; }



.header.search-container #searchboxform {margin-top: 0px;}
.header #searchboxform, .sg-catalog-modal #searchboxform {margin-top: 10px;}
.header.search-container .header-input, .header #searchboxform .header-input {margin-top: 0px;}



.sg-catalog-modal {
  .btn-primary.catalogsearchboxbutton:hover, .btn-primary.catalogsearchboxbutton:focus, .btn-primary.catalogsearchboxbutton:active, .catalogsearchboxbutton span {color: #333;}	
  .catalogsearchboxbutton:active {background-color: #fff; border: 0px;}	
  .catalogsearchboxbutton:focus, .catalogsearchboxbutton, input.catalogsearchbox {font-size: 1.2em; margin-bottom: 10px;}
}

.catalogsearchboxbutton:focus, .catalogsearchboxbutton, #searchboxform .btn:hover, input.catalogsearchbox {background-color: #fff; border: 0px;}	
.btn-primary.catalogsearchboxbutton:active, .sg-catalog-modal .form-control, .sg-catalog-modal .form-control:focus, .header .form-control, .header .form-control:focus {box-shadow: none;}
.sg-catalog-modal span.fa:before {font-size: 1.2em;}


/*------- Autocomplete ----------------*/

.ui-autocomplete {font-size: 1.2em; }
.ui-autocomplete li.ui-menu-item { border-bottom: 1px solid #c5c5c5; padding: 5px;}
.ui-autocomplete li.ui-menu-item:last-child { border-bottom: 0px solid; }
.ui-state-active, .ui-menu-item-wrapper.ui-state-active {border: 1px solid #f90;}


.pt-page-index .breadcrumb-wrapper {display: none;}




/*-------------------------------------------------------------------
 Start buttons logged in user
-------------------------------------------------------------------*/

.page-header {
  display: flex;
  justify-content: space-between; /* or space-around / space-evenly */
  width: 100%;
}

.page-header .btn {
  flex: 1;              /* Each button takes equal space */
  text-align: center;   /* Center text inside button */
  margin: 0 5px;        /* Optional spacing between buttons */
}





/*-------------------------------------------------------------------
 Teaser Start
-------------------------------------------------------------------*/
  .teaser-image {position:absolute; top:0; left:0; height:100%; object-fit: cover; width:100%; }
  .start-teaser {position:relative; display:-webkit-flex; display:-ms-flexbox; display:flex; -ms-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; overflow:hidden; margin-bottom:20px;}
  .start-teaser .teaser-wrapper {
	display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-direction:column;
    -webkit-flex-direction:column;
    flex-direction:column;
    -ms-flex:1 1 auto;
    -webkit-flex:1 1 auto;
    flex:1 1 auto;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
  }
.start-teaser .teaser-content {
  position:relative;
  box-sizing:border-box;
  width: 30%/*50%*/;
  padding:1em;
  margin:2em;
  background: linear-gradient( rgba(250, 250, 250, 250), rgba(254, 254, 0, 0) );  
  }
  .start-teaser .teaser-content.white-text {background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)); color:#fff;}
  .start-teaser .teaser-content.white-text h1, .start-teaser .teaser-content.white-text h2, .start-teaser .teaser-content.white-text h3, .start-teaser .teaser-content.white-text h4, .start-teaser .teaser-content.white-text p {
   color: #fff;
  }
  .start-teaser .teaser-content.content-right {-ms-flex-item-align:end; -webkit-align-self:flex-end; align-self:flex-end;}
  .start-teaser .teaser-content.content-center {-ms-flex-item-align:center; -webkit-align-self:center; align-self:center;}
  .start-teaser .teaser-content.text-align-center {text-align:center;}
  .teaser-content {margin-left: 15px; margin-right:15px;}
  
  @media screen and (max-width:740px) {
  .start-teaser .teaser-content {width: 100%; margin: 0px;}
  .teaser-image {display:block; position:relative; width:100%; height:auto;}
 }
  @media screen and (min-width:740px) {
   .start-teaser .teaser-wrapper {
    min-height:380px;
   }
  }

/*=============== PDP =============== */

@media (max-width: 767px) {
.slider-nav-section .slick-list.draggable .slick-track {display: none;}
}

.pt-page-productdetail hr {display: none;}

/*---------- Pricecol---------*/

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

.sg-pricecol {
	.clearfix {display: none;}
	section.PDP-NOTIS, .section_ProductDetail_DeliveryDetailInfo, .addToBasketContainer {
    float: right;
	margin-bottom: 1.5em;
	}
	.dl-horizontal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 1rem;
	}
	.dl-horizontal dt,
	.dl-horizontal dd {
    margin: 0;
    white-space: nowrap; /* förhindrar radbrytning */
	}
	.section+.section {padding: 0 0 0px;}
	.table {margin-bottom: 0px;}
	.addToBasketContainer {margin-top: 20px;}
	.js-price-wrapper {margin-top: 30px; float: right;}	
	.js-price-wrapper p.product-grossprice, .js-price-wrapper .product-netprice {font-weight: 500; line-height: 1.2; font-size: 24px; }
	.product-discount span, .js-price-wrapper .product-netprice {color: #ff9900;}
    .js-price-wrapper .product-netprice span {color: #333;}
	.priceladder {display: ;}
}

/* VAT span */
.product-campaignprice span > span, p.product-grossprice span > span, .product-netprice span > span {font-size: 0.5em; display:block; text-align: right;}
.product-campaignprice {color: red; i, span {color: #333;}}



/*------- PDP VP Selector -------------*/

.pdp-vp-selector-2025 {
 h3.product-header, .hover-product-image-wrapper, .hover-product-title, .hover-product-price
  {display: none;}

 /*section.products #productlist {border-bottom: 1px solid #eee}*/
  cursor: pointer;
}

/* Varumärke, Header */
#section_930.att-brand {
	dd {font-size: 1.2em;}
    dt {display: none;}
    dl {margin-bottom: 0px;}
}

.content .att-brand {padding-bottom: 0;}


section.PDP-NOTIS {
	/*margin: 10px 0px 0 0;	*/
	
	dt {display: none;}
	dl.dl-horizontal {display: inline;}
    div.attribute-image-hor , dd {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
	/*border-style: solid;
    border-width: 1px 0 1px 0;*/
	text-decoration: underline;
	}
	dd::before {
    content: "\f0ad";
	color: red;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    margin-right: 8px;
    speak: none;
	text-decoration: none;
	display: inline-block;

	}
}

/* PDP Monteringsanvisning länk */

div.row.sg-monteringsanv span {display: none;}
div.row.sg-monteringsanv h3 {cursor: pointer;}

div.row.sg-monteringsanv h3::before {
    content: "\f1c1"; /* Unicode för fa-file-pdf-o */
    font-family: "FontAwesome";
    margin-right: 8px;
    color: #d32f2f; /* typisk PDF-röd färg */
    font-size: 1.2em;
}


/* Basket button, fav, list */
input.product-quantity-input {text-align: center;}

.product-grid, .pt-page-productdetail {

.input-group-change-qty-buttons > span {display: inline;}
.favoriteToggler, .favoriteToggler.js-addToShoppingList {margin: 0.5em; width: 2.5em;}
.fa-star:before, .fa-star-o:before, .fa-list-ul:before {font-size: 1.8em;}
}   
@media (max-width: 767px) {
	.pt-page-productdetail{
	.page-header {font-size: 1.2em;}
	}
}


/* Key attributes */


.sg-key-attribute.section_ProductAttributes {
  display: flex;
  flex-direction: row; /* Gör att barnen ligger på en rad */
  flex-wrap: wrap;     /* Tillåter radbrytning om det behövs */
  gap: 10px;           /* Mellanrum mellan kolumnerna */
}

.sg-key-attribute .attribute-image-hor.pull-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}




/* ----------- SG Info Rows Accordion ----------- */

 .Sg-Accordion-row {display: none; }

.Sg-Accordion-header > h2:after {
    content: '\f107';
	float: right;
    font-size: 1em;
    font-family: fontawesome;
	}
.Sg-Accordion-header > h2.active {color: #f90;font-weight: 600;}
.Sg-Accordion-header > h2.active:after {transform: rotate(180deg);}

.Sg-Accordion-header > h2 {margin: 0 0 0px;}
.Sg-Accordion .section {padding: 15px;}

.Sg-Accordion-row.Installation section.products h2, .Sg-Accordion-row h2.subcategoryheader {font-size: 1.2em; font-weight: 600;}

@media (max-width: 767px) {
.Sg-Accordion-header h2 {font-size: 1em;}
}

.Sg-Accordion-header {
	border-top: 1px solid #333;
	cursor: pointer;
	}

.Sg-Accordion-row.Installation .product-grid {font-size:0.8em;}

/* Svart Accordion Header

.Sg-Accordion-header {
	background-color: #333;
	color: #fff;
	border-top: 1px solid #fff;
	cursor: pointer;
	}
*/


/* Info Row Installation */

.Sg-Accordion-row.Installation {
	/*h2.relateditemsheader {display: none;}*/
	.ribbon{display: none;}
}
/*=============== Breadcrumb =============== */
.breadcrumb-wrapper > .hidden-xs {
  display: block;
  }

@media (max-width: 767px) {
	ol.breadcrumb > li:last-child {display: none;}
	
}

/*=============== Cart =============== */

.section_QuickShop {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 20px 20px 10px 20px !important;
  margin-bottom: 20px;
}

.cart-view-content {
	font-size: 14px; 
 .js-delivery-date {font-size: 0.9; }
 button.js-updateQuantity {display: none;}
}

/*=============== 
PRoduct list
=============== */

.product-grid {
	.attr-description, label {font-size:12px;}
}


h3.hover-product-title {font-size: 14px; }
h3.product-header {font-size: 1em;}

.activeFilters span.label {margin: 4px;}
.iconFilter {margin-right: 5px;}

.pt-page-productsubnode, .pt-page-index, .sg-catalog-modal {
    .hidden-xs {display: block;}
    .visible-xs {display: none;}
	@media screen and (max-width:740px) {
    	.large-block-grid-2 > li, .large-block-grid-6 > li, .large-block-grid-5 > li {width:50%;}
	}
}

.field-stockcode.hidden-xs {display: none !important;}

/* Lager DT DL samma rad */
.p-productavailability + .js-avail-wrapper {
  display: inline-block;
}

.p-productavailability {
  display: inline-block;
  margin-right: 8px;
}

/*=====================================================================
	Product Grid - .pt-page-index, dölj köpknapp nyheter
======================================================================= */
.pt-page-index {
    .hover-product > *:not(.hover-product-image-wrapper):not(.hover-product-title) {
		display: none;
	}
}
/*=====================================================================
	Product Grid Hover
	-Lägg till sidor som skall använda funktion-
======================================================================= */

.sg-cat-popular .product-nav {display: none;}

.pt-page-productparentnode .product-grid , .pt-page-productsubnode .product-grid {
.hover-product-image-second {cursor: pointer; }	
	/* Grundlayout */
	.product {
		position: relative; /* Behövs för att kunna absolut-positionera innehållet */
	}

	/* Visa alltid bild och titel */
	.hover-product-image-wrapper,
	.hover-product-title {
		display: block;
	}

	/* Dölj övriga element initialt */
	.hover-product > *:not(.hover-product-image-wrapper):not(.hover-product-title) {
		display: none;
	}

	/* När man hovrar: gör produkten flytande ovanpå */
	.product:hover {
		z-index: 999; /* Lägg ovanpå andra */
	}

	/* När man hovrar: visa alla element */
	.product:hover .hover-product > * {
		display: inline-block;
		padding: 5px;
    }
    
    .product:hover .hover-product > .clearfix {display: block;}
    
    
	.product:hover .hover-product > .hover-product-title {display: block !important;}
	.hover-product-image-wrapper {width: 100%}

	/* Gör att hela produkten expanderar ovanpå andra */
	.product:hover .hover-product {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: #fff; /* Valfritt för tydlighet */
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
		border: 1px solid #ccc;
	}
	.fa-circle:before {font-size: 0.8em; line-height:1;}
	h3.hover-product-title {font-size: 14px;}
	.hover-product-price > p > span {font-size: 0.5em; display:block; text-align: right;}
	.product-discount span, .hover-product-price.product-netprice {color: #ff9900;}
	
}
/*======================= Grid Hover E N D ============================= */





/*=============== 
Toggle sections
=============== */

.search-container {display: none;}




/*=============== 
T E S T I N G
=============== */


.LargeSingleSelectImage .js-IconSinglefilter {
	width: 50%;
}

@media screen and (max-width:767px) { 
 .product-grid {
  /*.small-block-grid-2 > li {width: 100%;}*/
  .small-block-grid-2>li:nth-child(2n), .small-block-grid-2>li:nth-child(2n+1) { padding-left: 0; padding-right: 0;}
  .product-grid h3.hover-product-title {font-size: 0.8em;}
  .fa-circle:before {font-size: 0.8em !important;}
 }
}

.label, .label-sale {font-weight: normal;}



.hover-product-image {box-shadow: none; padding: 10px;}
.hover-product-additional {display: none !important;}


/* ---- Catalog Node ---- */
.section_ProductParentNode_SubNodeMenu {
	
  .hover-product-image-wrapper {
    position: relative;
  }

  h3.hover-product-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 1px;
    font-size: 14px;
    text-align: center;
    z-index: 2;
	height: auto;
  }

}


/* Language picker */
#languagepicker {Background-color: #CCC; box-shadow: 0 10px 10px -7px rgba(50,50,50,.5);}
.top-bar-link .flag {display: none;}

/*=============== 
Index - User Links - Logged in user
=============== */

/* Configure a reusable gap variable for this component */
.page-header.quick-links {
  --h-gap: 12px;                 /* horizontal gap between items on desktop */
  --v-gap: 12px;                 /* vertical gap between rows on desktop */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;       /* center rows; change to space-between if preferred */
  gap: var(--v-gap) var(--h-gap);/* vertical and horizontal gaps */
  margin-bottom: 1rem;
}

/* Turn off BS3 floats inside this component so flex widths take effect */
.page-header.quick-links > .col-xs-6,
.page-header.quick-links > .col-md-2 {
  float: none;
}

/* Base button/link styling */
.page-header.quick-links > .quick-link {
  box-sizing: border-box;        /* keep border/padding inside width */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.25;
  padding: 16px 14px;            /* inner padding for visual breathing room */
  margin: 0;                     /* do NOT use external margins with flex gap */
  text-align: center;            /* default; overridden on xs */
}

/* Icon spacing baseline: on desktop we show icon above text (see media query below) */
.page-header.quick-links > .quick-link .fa {
  margin-right: 0;
}

/* ===== XS (Bootstrap 3: <768px) ===== */
@media (max-width: 767px) {
  /* You can tighten gaps on mobile if needed */
  .page-header.quick-links {
    --h-gap: 8px;
    --v-gap: 8px;
    justify-content: flex-start;   /* left-align rows on xs */
  }

  .page-header.quick-links > .quick-link {
    /* Two per row: (100% - 1*gap) / 2 */
    flex: 0 0 calc((100% - var(--h-gap)) / 2);
    max-width: calc((100% - var(--h-gap)) / 2);

    /* Icon + text on one line, left-aligned */
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;

    /* Readable sizing on mobile */
    padding: 10px 12px;
    font-size: 12px;
    white-space: normal;           /* allow wrapping if words are long */
  }

  .page-header.quick-links > .quick-link .fa {
    font-size: 1rem;               /* small icon on xs */
    margin-right: 8px;
    line-height: 1;
    vertical-align: middle;
  }

  /* Neutralize large FA size classes from HTML on xs */
  .page-header.quick-links > .quick-link .fa.fa-4x,
  .page-header.quick-links > .quick-link .fa.fa-3x,
  .page-header.quick-links > .quick-link .fa.fa-2x {
    font-size: 0.9rem !important;
  }
}

/* ===== ≥ md (≥768px) ===== */
@media (min-width: 768px) {
  .page-header.quick-links {
    justify-content: center;       /* keep centered on tablet/desktop */
  }

  .page-header.quick-links > .quick-link {
    /* Desktop layout: icon above text */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 16px;
  }

  .page-header.quick-links > .quick-link .fa {
    margin: 0 0 6px 0;             /* spacing under icon */
  }
}

/* ===== Force exactly 5 per row on desktop (md & lg) =====
   Width per item = (100% - 4 gaps) / 5
   Apply for md (≥992px) and lg (≥1200px) in Bootstrap 3 */
@media (min-width: 992px) {
  .page-header.quick-links > .quick-link {
    flex: 0 0 calc((100% - (4 * var(--h-gap))) / 5);
       max-width: calc((100% - (4 * var(--h-gap))) / 5);
  }


/* Mobile Font size */
@media (max-width: 1200px) { html, body {font-size: 0.9em; } }