/* **************************************** */

/* **************************************** */

@font-face {
	font-family: "TT Norms Pro";
	src: url("./fonts/TT Norms Pro Regular.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "TT Norms Pro";
	src: url("./fonts/TT Norms Pro Medium.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "TT Norms Pro";
	src: url("./fonts/TT Norms Pro Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "TT Norms Pro";
	src: url("./fonts/TT Norms Pro ExtraBold.otf") format("opentype");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: "TT Norms Pro";
	src: url("./fonts/TT Norms Pro Light.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}

/* General styles */

:root {
	--black: #231f20;
	--white: #fff;
	--boneWhite: #fffdf8;
	--lightGray: #f3f3f3;
	--mediumGray: rgb(211, 207, 207);
	--lightBeige: #f7f4ed;
	--blue: #143b65;
	--purple: #4a3548;
	/*143b65*/
	--lightBlue: #94c4f8;
	--yellow: #ffd046;
	--red: #ff676a;
	--green: #66CC66;
	/*ffd046  #F4C848*/
	--colorSeashell: #fff8f0;
}

.bg-color-seashell {
	background-color: var(--colorSeashell) !important;
}

* {
	/* font-family: "Poppins", sans-serif; */
	font-family: "TT Norms Pro", sans-serif;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	word-break: break-word;
	-webkit-text-size-adjust: 100%;
	line-height: 135%;
}

html {
	font-size: 62.5%;
}

body {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	font-size: 1.8rem;
}

main {
	/* margin-top: 10rem; */
	/* margin-top: 17rem; */
}

h1 {
	font-size: 7.2rem;
	line-height: 125%;
	font-weight: bold;
	padding-bottom: 1rem;
	font-weight: 600;
}

h2 {
	font-size: 4.5rem;
	line-height: 125%;
	font-weight: bold;
	padding-bottom: 1rem;
	font-weight: 600;
}

h3 {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 125%;
	padding-bottom: 1rem;
	font-weight: 600;
}

h4 {
	font-size: 1.8rem;
	line-height: 125%;
	padding-bottom: 1rem;
	font-weight: 600;
}

.big-p {
	font-size: 2.4rem;
	line-height: 125%;
}

h5 {
	font-size: 2.4rem;
	line-height: 125%;
	padding-bottom: 0.75rem;
}

h6 {
	font-size: 2rem;
	line-height: 125%;
	padding-bottom: 0.5rem;
}

p,
a,
.box-content {
	font-size: 1.8rem;
}

a,
a:visited {
	text-decoration: none;
	/* text-decoration: none; */
	color: var(--blue);
}

a:visited {
	color: unset;
}

em,
strong,
label,
input,
::placeholder,
textarea,
select,
option,
ul,
ol,
li,
th,
tr,
td {
	font-size: inherit;
	font-size: 1.8rem;
}

strong {
	font-weight: 600;
}

hr {
	color: var(--mediumGray);
}

blockquote,
blockquote p,
blockquote a {
	font-weight: 300;
	font-size: 1.8rem;
}

span,
strong,
em {
	font-size: inherit;
	line-height: inherit;
}

main ul:not(.splide__list),
main ol {
	margin-left: 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

main li:not(.splide__slide)::marker {
	font-size: 1.4rem;
	color: #666;
}

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

input {
	width: 100%;
	padding: 1.1rem 1.5rem;
	border-radius: 1px;
	border: 1px solid var(--mediumGray);
}

input[type="submit"],
input[type="button"] {
	padding: 0.5rem 1.5rem 1rem;
}

input:autofill {
	background: #fff;
	/* or any other */
}

input[type="submit"],
button {
	display: block;
	background-color: transparent;
	padding: 1rem 3rem;
	text-decoration: none;
	width: fit-content;
	width: -moz-fit-content;
	/* color: var(--white) !important; */
	background-color: var(--red);
	font-weight: normal;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-align: center;
	border: 2px solid var(--red);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 1;
	border-radius: 1px;
	font-size: 1.8rem;
}

input[type="submit"]:hover,
form button:hover {
	color: var(--white);
	background-color: var(--black);
}

textarea {
	resize: none;
	width: 100%;
	border-radius: 0.5rem;
	border: 1px solid var(--mediumGray);
	padding: 1rem;
	margin-bottom: 1rem;
}

#application-form input {
	margin-bottom: 1rem;
}

iframe {
	border: none !important;
	max-width: 100%;
}

fieldset {
	padding: 2rem;
	margin-bottom: 2rem;
}

a:focus {
	border: none;
}

body.using-keyboard a:focus,
body.using-keyboard input:focus,
body.using-keyboard textarea:focus,
body.using-keyboard select:focus,
body.using-keyboard button:focus,
body.using-keyboard *:focus {
	border: 4px solid var(--black) !important;
	outline: var(--black);
}

main.modal-open {
	position: relative;
}

main.modal-open::after {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	content: "";
	background: rgba(0, 0, 0, 0.7);
}

.menu-open {
	overflow: hidden;
}

.bold {
	font-weight: bold;
}

.center {
	text-align: center;
}

.gray-text {
	color: var(--mediumGray);
}

#main-menu-inner-wrapper {
	display: flex;
	align-items: center;
}

#menu-huvudmeny .sub-menu-wrapper {
	max-width: 1400px;
	padding: 3rem 0;
}

#webone-show-cart img {
	width: 20px;
	height: auto;
}

.webone-show-cart img {
	width: 24px;
	height: auto;
	position: absolute;
	max-width: unset;
	height: 20px;
	right: 24px;
	top: 3px;
}

.cart-customlocation.webone-show-cart {
	position: relative;
}

/***********************************/
/* Application form styling */

.error-message {
	color: #f35252;
}

.application-form-new-account-wrapper {
	width: 100%;
	height: 100%;
	max-width: 768px;
	padding: 10rem 0;
}

.application-form-new-account-wrapper label {
	font-size: 1.5rem;
	font-weight: bold;
}

.application-actionbuttons-wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
}

.btn-padding-1 {
	padding: 0.6rem 4rem;
	width: 100%;
	max-width: 20rem;
}

#applicationFormAcceptTerms {}

#application-button:disabled {
	background: #dddddd;
	cursor: not-allowed;
}

/* application-form-accept-terms-wrapper */
.application-form-accept-terms-wrapper {
	display: flex;
	width: fit-content;
	padding: 1rem 0;
}

.application-form-accept-terms-wrapper #application-form-accept-terms {
	max-height: 32px;
	margin: 6px 20px 0 0;
	max-width: 32px;
}

#application-confirmation-loader {
	display: none;
}

#application-confirmation {
	text-align: center;
	padding: 5rem;
}

/* end  */
/******************/

.credit-test {
	border: 1px solid #ffd046;
	padding: 10px;
	/* text-align: center; */
	background-color: rgba(255, 208, 70, 0.2);
}

.trp-language-switcher {
	width: unset;
}

.trp-ls-shortcode-language {
	width: 100% !important;
}

.trp-ls-shortcode-language {
	background-color: white !important;
}




@media all and (min-width: 1200px) {
	.cart-customlocation.webone-show-cart {
		position: relative;
		align-items: center;
		display: flex;
		flex-direction: row;
	}

	.webone-show-cart img {
		width: 24px;
		height: auto;
		position: relative;
		max-width: unset;
		height: 20px;
		right: unset;
		top: unset;
	}

	/* #main-menu-inner-wrapper ul li {
    position: relative;
  } */

	/* #main-menu-inner-wrapper li .sub-menu {
    width: 100%;
    list-style: none;
    background: var(--white);
    z-index: 10;
    padding: 0;
    display: flex;
    margin: 0 auto;
    justify-content: space-evenly;
    padding: 0 2rem;
  } */


	/* #main-menu-inner-wrapper li .sub-menu li {
    padding: 0.6rem 0;
    margin-left: 0;
  } */

	/* #main-menu-inner-wrapper li .sub-menu a {
    color: var(--black);
  } */

	/* #main-menu-inner-wrapper li .sub-menu a:hover {
    color: var(--mediumGray);
  } */

	/* #main-menu-inner-wrapper li .sub-menu a:hover {

  } */
	#main-menu-inner-wrapper li.menu-item-has-children:hover>.sub-menu {
		display: block;
	}

	.menu-item-has-children .sub-menu>.menu-item-has-children:hover .sub-menu {
		display: block;
	}

	/* #main-menu-inner-wrapper li.menu-item-has-children:hover>.sub-menu-wrapper {
        display: block;
    }
    .menu-item-has-children .sub-menu>.menu-item-has-children:hover .sub-menu-wrapper {
        display: block;
    } */

	#main-menu-inner-wrapper>ul>li.menu-item-has-children>.sub-menu-wrapper {
		width: 100%;
		/* padding: 5rem; */
		padding: 5rem 0 5rem 0;
		/* transition: all 0.2s ease; */
		height: 0;
		left: 0;
		position: absolute;
		/* top: -500px; */
		max-height: 500px;
		background-color: var(--white);
		z-index: 9;
		opacity: 0;
		/* jm */
		visibility: hidden;
		box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
			0 5px 5px rgba(171, 171, 171, 0.15);
		/* border-top: 2px solid #b0b0b0; */
		border-top: 1px solid var(--mediumGray);
	}

	#main-menu-inner-wrapper li.menu-item-has-children>.sub-menu-wrapper .sub-menu-wrapper {
		position: relative;
	}

	#main-menu-inner-wrapper .sub-menu-wrapper {
		max-width: unset;
		width: 100%;
	}

	.sub-menu-wrapper .sub-menu-inner {
		width: 100%;
	}

	.sub-menu-wrapper .sub-menu-inner .sub-menu {
		width: 100%;
		display: flex;
		/* justify-content: center; */
		flex-direction: row;
		margin: 0 auto;
		align-items: flex-start;
	}

	.menu-holder ul.sub-menu li.menu-item-has-children {
		max-width: 250px;
		display: flex;
		flex-direction: column;
	}

	.menu-holder ul.sub-menu li.menu-item-has-children>a {
		width: 100%;
		font-weight: bold !important;
	}

	#main-menu-inner-wrapper>ul>li>.sub-menu-wrapper>.sub-menu-inner>.menu-holder>ul.sub-menu>li.menu-item>a {
		font-weight: bold !important;
	}

	.menu-holder ul.sub-menu li.menu-item-has-children ul {
		position: relative;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.menu-holder>ul.sub-menu>li>a {
		font-weight: bold;
		margin-bottom: 1rem;
	}

	#main-menu-inner-wrapper>ul>li.menu-item-has-children:hover>.sub-menu-wrapper {
		top: 16rem;
		/* left: 0; */
		height: auto;
		opacity: 1;
		/* jm */
		visibility: visible;
	}

	header.sticky #main-menu-inner-wrapper>ul>li.menu-item-has-children:hover>.sub-menu-wrapper {
		/* top: 10rem; */
		top: 14rem;
		/* left: 0; */
		height: auto;
		opacity: 1;
		/* jm */
		visibility: visible;
	}

	#main-menu-inner-wrapper li.menu-item-has-children>.sub-menu-wrapper>.sub-menu-inner>.menu-holder {
		/* padding: 0 2rem; */
	}



	body.sticky-body #header-equalizer {
		height: 12rem;
	}

	#main-menu-inner-wrapper li.menu-item-has-children:hover>.sub-menu-wrapper .sub-menu-wrapper header.sticky #main-menu-inner-wrapper li.menu-item-has-children:hover>.sub-menu-wrapper {
		top: 10rem;
	}

	/* #main-menu-inner-wrapper li .sub-menu li {
    position: relative;
  } */

	#main-menu-inner-wrapper li .sub-menu li .sub-menu {
		width: 100%;
		padding: 0 0rem;
	}

	/*
  #main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
    display: none;
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translate(-50%, -70%);
  } */


	/* #main-menu-inner-wrapper .mainmenu li .sub-menu a.toggle-icon-holder {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(90deg) translate(-50%, 5px);
  } */



	header.sticky #main-menu-inner-wrapper li .sub-menu {
		top: 96%;
	}

	/* from energy evel.. */

	#main-menu-inner-wrapper {
		display: flex;
	}

	#main-menu-inner-wrapper ul li {
		position: relative;
		text-align: center;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	#main-menu-inner-wrapper li .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, 0px);
		width: max-content;
		list-style: none;
		background: var(--boneWhite);
		z-index: 10;
		margin: 0;
		padding: 0;
		box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
			0 5px 5px rgba(171, 171, 171, 0.15);
	}

	#main-menu-inner-wrapper li .sub-menu li {
		padding: 0;
		width: 100%;
		margin-left: 0;
	}

	#main-menu-inner-wrapper li .sub-menu a {
		color: var(--black);
		margin-right: 2rem;
		padding: 1rem 1.5rem;
		width: 100%;
		display: flex;
	}

	#main-menu-inner-wrapper li .sub-menu a:hover {
		color: var(--red);
	}

	#main-menu-inner-wrapper li.menu-item-has-children:hover>.sub-menu {
		display: block;
	}

	.menu-item-has-children .sub-menu>.menu-item-has-children:hover .sub-menu {
		display: block;
	}

	#main-menu-inner-wrapper li .sub-menu li {
		position: relative;
	}

	#main-menu-inner-wrapper li .sub-menu li .sub-menu {
		position: absolute;
		top: 0;
		left: 100%;
		width: max-content;
		transform: translate(0%, 0px);

	}


	/*  #main-menu-inner-wrapper >  */
	.mainmenu>li>.toggle-icon-holder i {
		display: none;
	}


	#main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, -70%);
	}

	#main-menu-inner-wrapper .mainmenu li .sub-menu a.toggle-icon-holder {
		position: absolute;
		top: 50%;
		left: unset;
		right: -1.5rem;
		transform: rotate(-90deg) translate(50%, 0px);
		width: 1rem;
	}

	/*  */

}



.sub-menu-wrapper .menu-holder {
	max-width: 1400px;
	/* padding: 0 4rem; */
	margin: 0 auto;
}

.sub-menu-wrapper .menu-holder>ul {
	display: flex;
	/* justify-content: space-between; */
	flex-direction: column;
}

.menu-holder>.sub-menu>li.menu-item-has-children>a {
	font-weight: bold;
}

.heading-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-bottom: 4rem;
}

.text-blue {
	color: var(--blue);
}

/* End of general styles */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* Keep footer at bottom */

html,
body {
	width: 100%;
	height: 100%;
}

.content-wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

main {
	width: 100%;
	flex-grow: 1;
}

header,
main,
footer {
	flex-shrink: 0;
}

/* End of keep footer at bottom */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* Header */

header {
	width: 100%;
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
	background-color: var(--lightBeige);
	z-index: 10;
}

header .header-container {

	height: auto;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0;
	z-index: 10;
	/* position: relative; */
	max-width: 1400px;
	padding: 0 4rem;
	padding-top: 4rem;
}

header form button {
	border-radius: 0 5px 5px 0;
	background-color: var(--red);
}

.search-result {
	margin-bottom: 2rem;
	border: 1px solid var(--red);
}

.woocommerce-product-search.webone.flex-form input {
	font-style: italic;
	padding-left: 3.5rem;
	max-width: 38rem;
	color: gray;
}

#main-menu-top-mobile {
	display: none;
}

header.header-no-trans {
	background-color: var(--white);
}

header.sticky {
	z-index: 997;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: fixed;
	box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
	top: 0;
	width: 100%;
	background-color: var(--lightBeige);
	/* height: unset; */
	height: auto;
}

header.sticky form {
	/* display: none !important; */
}

header.sticky .header-container {
	height: 0;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
	animation-delay: 0.2s;
	align-items: center;

	padding: 8rem 4rem 6rem;

}

header.sticky .logo-container,
header.sticky .menu-and-icons-wrapper {
	opacity: 0;
	-moz-animation: fadeIn 0.2s ease-in forwards;
	-webkit-animation: fadeIn 0.2s ease-in forwards;
	-o-animation: fadeIn 0.2s ease-in forwards;
	animation: fadeIn 0.2s ease-in forwards;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

header.sticky .logo-container {
	padding: 2rem 0;
}

header.sticky .logo-container #header-logo {
	width: 18rem;
}

header.sticky .header-icon-wrapper .header-icon-item .header-icon-text {
	display: none;
}

/*
@keyframes slideDown {
    from {
        height: 0;
    }

    to {
        height: 8rem;
    }
}

@-webkit-keyframes slideDown {
    from {
        height: 0;
    }

    to {
        height: 8rem;
    }
}

@keyframes slideDown-sticky {
    from {
        height: 0;
    }

    to {
        height: 8rem;
    }
}

@-webkit-keyframes slideDown-sticky {
    from {
        height: 0;
    }

    to {
        height: 8rem;
    }
}
*/

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

header a {
	color: var(--black);
	text-decoration: none;
	/* font-weight: lighter !important; */
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 0 10rem; */
	padding: 0 4rem;
	height: 10rem;
	/* max-width: 1620px; */
	max-width: 1500px;
	margin: 0 auto;
}

.logo-container {
	display: flex;
	align-items: center;
	padding-bottom: 2.625rem;
}

.logo-container #header-logo {
	/* width: 17.5rem; */
	width: 28rem;
	line-height: 0;
}

.logo-container #header-logo>img {
	width: 24rem;
}

.header-icon-wrapper {
	display: none;
	align-items: center;
}

.header-icon-item {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-left: 0;
	cursor: pointer;
	text-decoration: none;
}

.header-icon-item i {
	/* font-size: 2.2rem; */
	font-size: 3.2rem;
	color: var(--blue);
}

.header-icon-item p {
	margin-top: 0.75rem;
	font-size: 1.6rem;
}

#language-switcher-small-screen {
	display: none;
	align-items: center;
}

#language-switcher-large-screen {
	display: block;
}

#searchform-small-screen {
	display: none;
	align-items: center;
}

#show-cart-large-screen {
	display: block;
	padding-bottom: 0rem;
	padding: 2.675rem 2rem 2.675rem 4rem;
}

#show-login-link-large-screen {
	display: block;
	padding-bottom: 0rem;
}

/* End of header */

/* **************************************** */

/* new 2024-02-08 JM */
/* top-small-banner-blue */
.top-small-banner-blue {
	width: 100%;
	position: relative;
	top: 17rem;
	display: flex;
	justify-content: center;
	align-items: center;

	background-color: var(--blue);
	color: var(--white);

	padding: 1rem 2rem;
}

.top-small-banner-blue-pipe-div {
	padding: 0 0 0 1rem;
}

.top-small-banner-h2 {
	font-size: 18px;
	padding: 0 1rem;
}

.top-small-banner-h2-bold {
	font-size: 18px;
	padding: 0 1rem;
}

.top-small-banner-blue .top-small-banner-link-wrapper a {
	padding: 0 1rem;
	color: var(--white);
}

/* end top-small-banner-blue */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* Main menu */

.menu-and-icons-wrapper {
	display: flex;
	justify-content: center;
}

#header-menu-button {
	display: none;
}

#close-menu-button {
	display: none;
}

.mainmenu {
	display: flex;
}

.mainmenu li {
	list-style-type: none;
	padding: 2.675rem 2rem;
}

header.sticky .mainmenu li {
	/* padding: 4rem 2rem; */
}

.mainmenu li a {
	text-decoration: none;
	color: var(--black);
	/* font-size: 1.4rem; */
	font-size: 1.8rem;
	font-weight: 500;
	transition: all 0.4s ease;
	word-break: keep-all;
	word-break: keep-all;
	align-items: center;
	flex-direction: row;
	display: flex;
}

#login-link,
#all-products-link {
	text-decoration: none;
	/* padding: 0rem 2rem; */
	color: var(--black);
	/* font-size: 1.4rem; */
	font-size: 1.8rem;
	font-weight: 500;
	transition: all 0.4s ease;
	padding-top: 0;
}

.custom-nav-item-link {
	text-decoration: none;
	padding: 1rem;
	color: var(--black);
	font-size: 1.8rem;
	font-weight: 500;
	transition: all 0.4s ease;
}

.custom-nav-item-link:hover {
	color: var(--blue);
}

#all-products-link {
	display: inline-block;
}

#small-scren-products-link {
	display: none;
	width: 80%;
}

.small-scren-products-link-wrapper {
	display: none;
}

.all-products-menu-wrapper,
.login-header-menu-wrapper {
	/* width: 100%; */
	padding: 2.675rem 2rem;
}

.all-products-menu-wrapper:hover #all-products-menu,
.login-header-menu-wrapper:hover #login-header-menu {
	opacity: 1;
	visibility: visible;
}

.all-products-menu-box:first-of-type {
	padding-right: 5rem;
}

/* .sub-menu-wrapper */

#login-header-menu,
#all-products-menu,
#small-screen-products-menu {
	width: 100%;
	/* padding: 5rem; */
	padding: 0;
	/* transition: all 0.2s ease; */
	height: auto;
	left: 0;
	top: 12rem;
	position: absolute;
	/* top: -500px; */
	max-height: 500px;
	background-color: var(--white);
	z-index: 9;
	opacity: 0;
	/* jm */
	visibility: hidden;
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
		0 5px 5px rgba(171, 171, 171, 0.15);
	/* border-top: 2px solid #b0b0b0; */
	border-top: 1px solid var(--mediumGray);
}

header.sticky #login-header-menu,
header.sticky #all-products-menu,
header.sticky #small-screen-products-menu {
	top: 14rem;
}

#login-header-menu.open,
#all-products-menu.open,
.sub-menu-wrapper.open {
	top: 17rem;
	left: 0;
	height: auto;
	opacity: 1;
	/* jm */
	visibility: visible;
}

body.sticky-body #login-header-menu.open,
body.sticky-body #all-products-menu.open,
body.sticky-body .sub-menu-wrapper.open {
	top: 8rem;
}

/* .sub-menu-wrapper */

#login-header-menu-inner-wrapper,
#all-products-menu-inner-wrapper {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 4rem;
	display: flex;
	justify-content: space-between;
}

#login-header-form {
	/* padding-left: 2rem; */
	max-width: 280px;
}

#login-header-form .form-row label {
	font-size: 1.5rem;
	font-weight: normal;
}

#login-header-form p.lost_password {
	padding-top: 1rem;
}

#login-header-form .lost_password a {
	font-size: 1.5rem;
}

.header-login-headline,
.header-products-headline {
	padding-bottom: 1rem;
	text-transform: uppercase;
}

#login-header-menu .input-wrapper {
	padding-bottom: 2rem;
}

#login-header-register-customer {
	/* padding-left: 5rem; */
	padding-left: 12rem;
	max-width: 50rem;
}

#login-header-register-customer #header-register-button {
	max-width: 180px;
}

.product-categories-list {
	display: grid;
	grid-template-columns: auto auto auto;
	column-gap: 50px;
}

.product-categories-list li,
.product-brand-list li,
.departments-list li {
	list-style-type: none;
}

.product-categories-list li a,
.product-brand-list li a,
.departments-list li a {
	padding: 0.6rem 1rem 0.6rem 0;
	display: block;
}

.product-categories-list li a:hover,
.product-brand-list li a:hover,
.departments-list li a:hover {
	color: var(--mediumGray);
}

.departments-list li a {
	/* text-transform: uppercase; */
	color: var(--blue);
}

.departments-list {
	/* display: grid; */
	/* grid-template-columns: auto auto; */
	/* column-gap: 50px; */

	display: flex;
	flex-direction: column;
}

.product-brand-list {
	display: flex;
	flex-direction: column;
}






/*************************************************************************/
/*************************************************************************/
/* #search-box  */
#search-box-large-screen #search-box-inner-wrapper #search-box-form,
#search-box-small-screen #search-box-inner-wrapper #search-box-form,
.searchform {
	width: 100%;
	display: flex;
}


.search-box-form .submit.action-search-box-submit i {
	color: var(--white);
}

/*************************************************************************/
/*************************************************************************/
/* search-box  */





#show-hide-search-box-for-small-screen {
	width: 100%;
	padding: 2rem;
	transition: all 0.4s ease;
	height: 0;
	left: 0;
	position: absolute;
	top: -500px;
	max-height: 500px;
	background-color: var(--white);
	z-index: 9;
	opacity: 0;
	/* jm */
	visibility: hidden;
	/* display: none; */
	border-top: 1px solid var(--blue);
	box-shadow: 4px 4px 6px #888;
}

#show-hide-search-box-for-small-screen.open {
	top: 9rem;
	left: 0;
	height: auto;
	opacity: 1;
	/* jm */
	visibility: visible;
}

#show-hide-search-box-for-small-screen #input-search-box-for-small-screen {
	border: none;
}

/* result-search-box-for-small-screen-wrapper */

/* result-search-box-for-small-screen */

#result-search-box-for-small-screen-wrapper {
	width: 100%;
	padding: 2rem;
	transition: all 0.4s ease;
	height: 0;
	left: 0;
	position: absolute;
	top: 20px;
	/* max-height: 500px; */
	background-color: var(--white);
	z-index: 9;
	opacity: 0;
	/* jm */
	/* visibility: hidden; */
	/* display: none; */
	border-top: 1px solid var(--blue);
	box-shadow: 5px 10px 18px #888888;
	display: none;
}

#result-search-box-for-small-screen-wrapper.open {
	top: 18rem;
	left: 0;
	height: 100%;
	min-height: 60vh;
	opacity: 1;
	/* jm */
	visibility: visible;
}

#result-search-box-for-small-screen {
	overflow: scroll;
	height: 100%;
	/* min-height: max-content; */
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.small-screen-product-search-result {
	/* padding: 2rem; */
	/* margin-bottom: 2rem; */
	/* border-bottom: 1px solid var(--blue); */
	/* border: 1px solid var(--blue); */
}

.small-screen-product-search-result,
.small-screen-product-search-result:visited {
	color: var(--black);
	/* width: 33.33%; */
	width: 98%;
	width: calc(100% - 30px);
	margin: 15px;
	text-decoration: none;
	background-color: var(--white);
}

.small-screen-product-search-result .box-image-container {
	width: 100%;
	overflow: hidden;
}

.small-screen-product-search-result .box-image-container:hover .box-image {
	width: 100%;
	transform: scale(1.05);
}

.small-screen-product-search-result .box-image {
	width: 100%;
	padding-top: 50%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	transition: all 0.4s ease;
}

.small-screen-product-search-result .box-content {
	width: 100%;
	padding: 25px;
}

.menu-language-wrapper {
	display: flex;
	align-items: center;
}

/* End of main menu */

/* **************************************** */

/* **************************************** */

/********************************************/

/********************************************/

/* wordpress Translate press */

.trp_language_switcher_shortcode {
	margin-right: -6px;
}

.trp-language-switcher>div>a {
	padding: 6px 0 !important;
}

.trp-language-switcher>div>a>img {
	display: inline;
	margin: 0 5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.trp-language-switcher>div {
	border: none;
}

.trp-language-switcher>div.trp-ls-shortcode-language {
	background-color: white !important;
}

.trp-ls-shortcode-current-language {
	width: 30px !important;
}

.trp-language-switcher>div {
	padding: 5px 0px 0px 0px !important;
	/* background-image: none; */
	text-align: unset !important;
	background: transparent !important;
}

.trp-language-switcher>div>a:hover {
	background: transparent !important;
}

/* end wordpress Translate press */

/********************************************/

/********************************************/

/* **************************************** */

/* **************************************** */

/* Newsletter form */

.newsletter-form-wrapper {
	width: 100%;
	background-color: #222327;
}

.newsletter-success {
	display: none;
	color: white;
}

.subscribe-errormessage {
	display: none;
	color: rgb(191, 55, 55);
	position: absolute;
	top: 9rem;
	width: 100%;
	font-size: 14px;
}

.newsletter-form-wrapper>div {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	/* padding: 5rem 2.5rem; */
	padding: 5rem 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.newsletter-form-wrapper>div img {
	max-width: 24rem;
	width: 100%;
	height: max-content;
	padding-top: 2.5rem;
}

.newsletter-form {
	padding: 1rem 0 4rem 0;
	display: flex;
	justify-content: flex-end;
	align-items: end;
	width: 100%;
	max-width: 70%;
	max-width: 1400px;
}

.newsletter-input-wrapper {
	/* display: grid; */
	display: flex;
	flex-direction: column;
	position: relative;
}

.newsletter-form input {
	/* max-width: 30rem; */
	width: 30rem;
	border: 2px solid var(--white);
	/* font-style: italic; */
	color: gray;
	padding-left: 2rem;
	border-radius: 50px;
	padding: 0.5rem 2rem;
	font-weight: 400;
}

.newsletter-form label {
	color: var(--white);
	margin-bottom: 1rem;
	font-size: 2rem;
}

.newsletter-form button {
	width: 30rem;
	margin-left: 2.5rem;
	border-radius: 50px;
	padding: 0.5rem 2rem;
	font-weight: 600;
	color: white;
	font-weight: normal;
}

/* End newsletter form */
/********************************************/



/**********************************************/
/**** miscellaneous forms  ********************/
.miscellaneous-forms .submit-button:disabled {
	/* background-color: var(--purple); */
	opacity: 0.7;
	color: var(--white);
	cursor: not-allowed;
}


.miscellaneous-forms .error-message {
	font-size: 12px;
	color: var(--purple);
	/* margin-bottom: 25px; */
	display: none;
}

.miscellaneous-forms .error-message.show {
	display: flex;
}

.the-miscellaneous-forms-loader-wrapper {
	display: none;
}

.the-miscellaneous-forms-loader-wrapper .loader {
	position: absolute;
	top: 50%;
	top: calc(50% - 25px);
	left: 50%;
	left: calc(50% - 25px);
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--purple);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}

.miscellaneous-forms-status-messages {
	color: var(--white);
	padding: 2rem;
}


/**** end miscellaneous forms  ****************/
/**********************************************/



/********************************************/

/* **************************************** */

/* **************************************** */

/* Footer */

footer {
	background-color: var(--white);
	height: auto;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	width: 100%;
	position: relative;
}

.footer-main {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	/* padding: 7.5rem 2.5rem; */
	padding: 3rem 4rem 10rem;
	margin: 0 auto;
	/* border: 1px solid red; */
}

.footer-main>div {
	min-width: 210px;
}

#footer-contact-wrapper {
	/* border: 1px solid royalblue; */
}

#footer-postal-wrapper {
	/* border: 1px solid lightcoral; */
}

#footer-contact-wrapper a {
	text-decoration: none;
}

#footer-contact-wrapper div.upper,
#footer-postal-wrapper div.upper {
	margin-bottom: 2rem;
}

#footer-terms-wrapper {
	/* border: 1px solid orange; */
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 10%;
}

.footer-terms-text-logo-wrapper {
	display: flex;
}

.footer-terms-text-logo {
	padding-left: 3rem;
}

#footer-terms-wrapper a,
.footer-terms-text-logo-wrapper a {
	text-decoration: none;
}

/* new 2024-04-23 JM */
#footer-follow-us-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo-badges-wrapper-lower {
	display: flex;
	align-items: center;
}

.badge-company-of-the-year-wrapper img.Arets_Foretagare_logotyp_Eskilstuna_Torshalla {
	height: auto;
	width: 148px;
}

#tidio-chat-iframe {
	bottom: 0 !important;
}

/*  */

#footer-follow-us-wrapper {
	/* border: 1px solid olive; */
}

#footer-follow-us-wrapper .social-media {
	padding-top: 0.5rem;
	/* border: 1px solid olive; */
}

#footer-follow-us-wrapper .social-media a {
	margin-right: 0.5rem;
}

#footer-follow-us-wrapper .social-media img {
	width: 25px;
}

#footer-logo-badges-wrapper {
	/* border: 1px solid blueviolet; */
	display: flex;
	align-items: center;
}

.footer-content-header {
	color: var(--blue);
	padding-bottom: 2rem;
	font-size: 20px;
	font-weight: 600;
}

.footer-content-text {
	color: var(--blue);
	font-size: 16px;
}

.footer-33 {
	width: 33.33%;
	width: calc(33.33% - 30px);
	margin: 15px;
	color: var(--white);
}

.footer-33 h4,
.footer-33 p,
.footer-33 a {
	color: var(--white);
}

.footer-33 a {
	text-decoration: underline;
}

.footer-copy {
	background-color: var(--lightGray);
	width: 100%;
	padding: 1rem 2.5rem;
	margin: 0 auto;
	text-align: center;
}

.footer-copy p {
	font-size: 1.4rem;
}

.badge-iso-9001-wrapper,
.badge-iso-14001-wrapper {
	width: 5rem;
}

.AAA-wrapper {
	width: 25rem;
}




/**************************************************/
/* 2025-04-11 JM new css for menu in footer Footer-menu-1 */
.Footer-menu-1 {}

.Footer-menu-1 li {
	list-style: none;
}

.Footer-menu-1 li a {
	transition: all 0.4s ease;
}

/*      */
.Footer-menu-1 li a:hover {
	color: var(--red);
}

/**************************************************/



/* End of footer */

/* customer type overlay in footer */
body {
	position: relative;
}

#customer-type-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 999;
	color: #fff !important;
	/* for now hide form */
	/* display: flex; */
	display: none;
	/*  */
	align-items: center;
	justify-content: center;
}

#customer-type-form-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

#customer-type-form-wrapper button {
	margin: 1.5rem;
}

/*  */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* News */

.box-latest-news {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.latest-news-head {
	/* width: 100%;
    width: calc(100% - 30px);
    margin: 15px; */

	width: 100%;
	width: calc(100% - 30px);
	margin: 15px;
	display: flex;
	justify-content: center;
	padding-bottom: 4rem;
	color: var(--blue);
}

.newslist-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.box-news-33,
.box-news-33:visited {
	color: var(--black);
	width: 33.33%;
	width: calc(33.33% - 30px);
	margin: 15px;
	text-decoration: none;
	/* background-color: var(--lightGray); */
	background-color: var(--white);
	border: 1px solid var(--mediumGray);
}

.box-news-33 .box-image-container {
	width: 100%;
	overflow: hidden;
}

.box-news-33 .box-image-container:hover .box-image {
	width: 100%;
	transform: scale(1.05);
}

.box-news-33 .box-image {
	width: 100%;
	padding-top: 65%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	transition: all 0.4s ease;
}

.box-news-33 .box-content {
	width: 100%;
	padding: 25px;
}

.news-read-more {
	text-decoration: underline;
}

#all-news-link,
#get-more-news {
	color: var(--blue);
	text-decoration: underline;
}

#all-news-link:hover,
#get-more-news:hover {
	text-decoration: none !important;
}

#all-news-link {
	margin: 15px auto;
}

#get-more-news {
	margin: 0 auto;
	padding-top: 4rem;
}

#get-more-news:hover {
	text-decoration: underline;
}

#all-news-loader {
	display: none;
}

#product-search-loader {
	display: none;
}


.the-main-loader-wrapper {
	display: none;
}

.sk-folding-cube {
	margin: 1.5rem auto;
	width: 2rem;
	height: 2rem;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

.al-single-product-pdfdownload-wrapper {
	margin-bottom: 2rem;
}

@-webkit-keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

.single-news {
	max-width: 1000px;
	margin: 15px auto;
	width: 100%;
	width: calc(100% - 30px);
}

.single-news-headline {
	padding-bottom: 20px;
	color: var(--blue);
}

.single-news-content {
	padding: 20px 0;
}

.single-news-date {
	font-size: 1.8rem;
	font-style: italic;
	color: var(--mediumGray);
}

/* End of news */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* Partners */

.partner-box {
	width: 16.66%;
	width: calc(16.66% - 30px);
	margin: 15px;
}

.partner-box .box-image-container {
	width: 100%;
}

.partner-box img {
	width: 100%;
	height: auto;
}

/* End of partners */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* **************************************** */

/* Standard text pages */

.top-img-text-page {
	width: 100%;
}

.text-page-content {
	margin: 1.5rem 0;
	width: 100%;
	width: calc(100% - 3rem);
	max-width: 750px;
	padding: 2.5rem 0;
}

.text-page-content h1,
.text-page-content h2,
.text-page-content h3,
.text-page-content h4,
.text-page-content h5,
.text-page-content h6 {
	padding-top: 2.5rem;
}

.text-page-content p {
	margin-bottom: 2rem;
}

.text-page-content table {
	border-collapse: collapse;
	max-width: 100% !important;
	width: auto !important;
}

.text-page-content table td,
.text-page-content table th {
	/* border: 1px solid var(--lightGray); */
	padding: 0 0 0 2.5rem;
}

.text-page-content table th {
	padding: 0.5rem 0;
	text-align: left;
	color: var(--black);
}

.text-page-content li {
	margin-bottom: 1.5rem;
}

/* End of standard text pages*/

/* **************************************** */

/* **************************************** */

/* COOKIES */

#cookie-info {
	position: fixed;
	z-index: 999;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0px -4px 3px rgba(87, 87, 87, 0.208);
	display: none;
}

#cookie-wrapper {
	position: relative;
}

#cookie-text {
	max-width: 75%;
}

#cookie-text p a {
	font-size: 1.6rem;
}

#cookie-content {
	max-width: 1520px;
	margin: 0 auto;
	padding: 1.5rem 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-content .btn-black-trans {
	width: -moz-max-content;
	width: max-content;
	margin-left: 2.5rem;
	padding: 1rem 1.5rem;
	font-size: 1.6rem;
}

#cookie-info p {
	font-size: 1.6rem;
}

.tiny {
	font-size: 1.4rem;
}

.semi-tiny {
	font-size: 1.6rem;
}

.cat-divider {
	padding: 0.5rem 0;
}

/* Tighten text masses */

.text-page-content .event-content,
.text-page-content .project-title,
.text-page-content .project-category,
.text-page-content .ingress,
.text-page-content .box-100-toggle,
.text-page-content .page-text {
	max-width: 750px;
}

/* Breadcrumbs */

.breadcrumb {
	font-size: 1.4rem;
	font-weight: bold;
	/* padding-left: 3rem; */
	max-width: 1520px;
	margin: 3.5rem 1.5rem 2rem 1.5rem;
	width: 100%;
	width: calc(100% - 3rem);
}

.breadcrumb a,
.breadcrumb p {
	font-weight: bold;
	display: inline;
	font-size: 1.4rem;
}

span.breadcrumb-current {
	display: inline;
	font-size: 1.4rem;
	font-weight: bold;
}

.breadcrumb i {
	font-weight: bold;
	display: inline;
	font-size: 1.4rem;
}

.breadcrumb-image {
	width: 1.4rem;
	height: 1.28rem;
	display: inline-block;
	height: auto;
}

/* End of breadcrumbs */

/*********************************************/

/*********************************************/

/* product search result */

.product-search-result-wrapper {
	padding: 0 0 2.5rem 0;
	width: 100%;
	width: calc(100% - 3rem);
	margin: 1.5rem;
	padding: 5rem;

	max-width: 1400px;
	margin: 0 auto;

}

.product-search-result {
	width: 100%;
	padding: 2.5rem 0;
	border-bottom: 2px solid var(--lightGray);
}

.product-search-result .post-type {
	color: var(--lightGray);
	font-weight: bold;
}

.product-search-result-wrapper .image-and-text-wrapper {
	display: flex;
	width: 100%;
	margin-bottom: 2rem;

	align-items: center;

}

.product-search-result-wrapper .image-and-text-wrapper img {
	width: 200px;
	margin-right: 2rem;
	max-width: 14rem;
}

.product-search-result-wrapper .text-and-button-wrapper {
	display: flex;
	flex-direction: column;
}

.product-search-result .post-title {
	padding: 1rem 0;
}

.product-search-result .product-search-result-content {
	margin-bottom: 2rem;
	max-width: 60%;
}

.product-search-result-wrapper .product-search-result-link {
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;

	max-width: 36rem;

}

.product-search-result-wrapper .product-search-result-link span {
	margin-right: 0.5rem;
}

/* end  product search result*/

/*********************************************/

/*********************************************/

/***************************************/

/***************************************/

/* splide css override */

.splide__pagination__page {
	display: inline-block;
	width: 17px;
	height: 17px;
	background: transparent;
	border-radius: 50%;
	margin: 6px;
	padding: 0;
	transition: transform 0.2s linear;
	border: 1px solid #fff;
	opacity: 1;
}

.splide__pagination__page.is-active {
	transform: scale(1);
	background: #fff;
}

/* end splide css override */

/**************************************/

/**************************************/

/* **************************************** */

/* **************************************** */

/* Responsive */

@media all and (max-width: 1200px) {
	main {
		/* margin-top: 9rem; */
	}

	.trp_language_switcher_shortcode .trp-language-switcher-container {
		width: fit-content;
	}

	.trp-language-switcher>div {
		padding: 4px 0px 0px 0px !important;
	}

	header {
		/* height: 12rem; */
		height: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	header.sticky .logo-container #header-logo {
		width: 20rem;
	}

	.logo-container {
		position: absolute;
		/* rigth: -2rem; */
		right: calc(50% - 14rem);
	}

	header .header-container {
		/* padding: 0 5rem; */
		padding: 0 6.5rem;
		align-items: center;
	}

	header.sticky .header-container {
		/* padding: 2rem 2rem; */
		padding: 2rem 6.5rem;
	}

	header.sticky {}

	.logo-container {
		padding: 0;
	}

	.header-icon-wrapper {
		display: flex;
		align-items: center;
	}

	#language-switcher-small-screen {
		display: flex;
		align-items: center;
	}

	#language-switcher-large-screen {
		display: none;
	}



	#search-box-large-screen {
		display: none;
	}

	#searchform-small-screen {
		display: flex;
		align-items: center;
		margin-left: 1.2rem;
	}

	#searchform-small-screen #show-hide-searchform-small-screen {
		font-size: 3.6rem;
	}

	#result-search-box-for-small-screen-wrapper {
		display: flex;
	}

	#show-cart-large-screen {
		display: none;
	}

	#show-login-link-large-screen {
		display: none;
	}

	#all-products-link {
		display: none;
	}

	#all-products-menu {
		display: none;
	}

	#all-products-menu.open {
		display: none;
	}

	.small-scren-products-link-wrapper .product-categories-list {
		padding: 2rem;
	}

	.small-scren-products-link-wrapper ul li #small-scren-products-link {
		display: inline-block;
		width: 80% !important;
	}

	.small-scren-products-link-wrapper ul li .toggle-icon-holder {
		/* width: 20% !important; */
		width: auto;
		display: flex;
		justify-content: flex-end;
	}

	.small-scren-products-link-wrapper {
		display: inline-block;
		width: 100%;
	}

	#main-menu-top-mobile {
		display: flex;
		padding: 2.25rem 6.5rem;
		background-color: var(--lightBeige);
		justify-content: space-between;
		align-items: center;
	}

	/* btn login */
	#main-menu-top-mobile a.btn-red {
		max-width: 33%;
		padding: 0.25rem 0.5rem;
	}

	.mobile-btn-create-account {
		font-size: 1.8rem;
	}

	.flex-small-screen {
		display: flex;
	}

	/* **************************************** */
	/* **************************************** */
	/* Main menu */

	#main-menu {
		position: fixed;
		display: none;
		left: 0;
		top: 8rem;
		width: 100%;
		padding-bottom: 2rem;
		max-height: calc(100% - 8rem);
		background-color: var(--white);
		z-index: 998;
		overflow-y: scroll;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		border-bottom: 1px solid var(--mediumGray);
	}

	.header-icon-wrapper {
		display: flex;
	}

	#main-menu-inner-wrapper {
		align-items: flex-start;
	}

	#header-menu-button {
		display: block;
	}

	body.menu-open #close-menu-button {
		display: block;
	}

	body.menu-open #header-menu-button {
		display: none;
	}

	.mainmenu {
		display: block;
		width: 100%;
	}

	#main-menu::-webkit-scrollbar {
		display: none;
	}

	#main-menu.open {
		display: block;
	}

	#main-menu.closed {
		display: none;
	}

	body.menu-open main,
	body.menu-open footer {
		position: relative;
	}

	#close-menu-button i {
		color: var(--black);
		font-size: 2.5rem;
	}

	#main-menu-inner-wrapper {
		/* position: relative; */
		width: 100%;
		height: 100%;
		margin-top: 0;
		display: flex;
		flex-direction: column;
		padding: 0 6rem;
	}

	#menu-huvudmeny .sub-menu-wrapper {
		padding: 0;
	}

	#main-menu-inner-wrapper .custom-nav-item-link {
		display: none;
	}

	#main-menu-inner-wrapper .mainmenu .sub-menu-wrapper {
		width: 100%;
	}

	#main-menu-inner-wrapper .mainmenu li {
		list-style-type: none;
		padding: 0;
		display: flex;
		flex-direction: row-reverse;
		/* justify-content: space-between; */
		justify-content: flex-end;
		width: 100%;
		flex-wrap: wrap;
		align-items: center;
	}

	#main-menu-inner-wrapper .mainmenu li a {
		color: var(--black);
		font-weight: 500;
		text-decoration: none;
		font-size: 1.8rem;
		padding: 1.5rem 2.5rem 1.5rem 0;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		width: 100%;
	}

	#main-menu-inner-wrapper .mainmenu li.menu-item-has-children a {
		/* width: 80%; */
		width: auto;
	}

	#main-menu-inner-wrapper .mainmenu li.menu-item-has-children a.toggle-icon-holder {
		/* width: 20%; */
		width: auto;
		display: flex;
		/* justify-content: flex-end; */
		justify-content: flex-start;
	}

	#main-menu-inner-wrapper .mainmenu li.menu-item-has-children a {
		/* padding: 1.5rem; */
		padding: 0.5rem 1.5rem;
		font-size: 1.8rem;
	}

	#main-menu-inner-wrapper .mainmenu>li.menu-item-has-children>a {
		padding: 1.5rem 1.5rem 1.5rem 0.5rem;
	}

	#main-menu-inner-wrapper .mainmenu>li a:hover {
		color: var(--mediumGray);
	}

	.small-scren-products-link,
	#main-menu-inner-wrapper .mainmenu>li>a {
		font-weight: bold;
		text-transform: uppercase;
	}

	#main-menu-inner-wrapper .mainmenu li a {
		/* padding: 1.5rem; */
		padding: 1.5rem 1.5rem 1.5rem 4.5rem;
		font-size: 1.8rem;
	}

	#main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
		/* padding: 0 2rem; */
		padding: 1.5rem 1rem;
		color: var(--blue);
	}

	#main-menu-inner-wrapper .mainmenu li:hover,
	#main-menu-inner-wrapper .mainmenu>li .sub-menu li:hover {
		/* background-color: var(--mediumGray); */
	}

	#main-menu-inner-wrapper .mainmenu>li .sub-menu li {
		/* background-color: var(--mediumGray); */
	}

	#main-menu-inner-wrapper .mainmenu>li .sub-menu li:last-of-type {
		border-bottom: none !important;
	}

	#main-menu-inner-wrapper .mainmenu>li .sub-menu li a {
		padding-left: 3rem;
		font-weight: normal;
	}

	#main-menu-inner-wrapper .mainmenu>li ul {
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		overflow: hidden;
	}

	#main-menu-inner-wrapper .mainmenu>li ul:not(.show-lis) {
		display: none;
	}

	#main-menu-inner-wrapper .mainmenu>li .sub-menu li .sub-menu a {
		/* padding-left: 5rem; */
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		border-top: 0;
		padding: 0;
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li {
		width: 100%;
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li a:not(.toggle-icon-holder) {
		width: 100%;
		padding-left: 6rem;
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li.menu-item-has-children>a {
		width: 90%;
		width: calc(100% - 50px);
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li.menu-item-has-children>a.toggle-icon-holder {
		width: 10%;
		width: calc(50px);
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li.menu-item-has-children a:not(.toggle-icon-holder) {
		padding-left: 1rem;
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li ul.show-lis li {
		padding-left: 7rem;
	}

	#main-menu-inner-wrapper .mainmenu li:has(~ li > a.toggle-icon-holder) {
		/* padding-left: 6rem; */
	}

	#main-menu-inner-wrapper .mainmenu li ul.show-lis li ul.show-lis li ul li {
		padding-left: 6rem;
	}

	#main-menu-inner-wrapper .mainmenu .product-categories-list li a:hover,
	#main-menu-inner-wrapper .mainmenu .departments-list li a:hover,
	#main-menu-inner-wrapper .mainmenu li ul.show-lis li a:hover {
		color: var(--mediumGray);
	}

	#main-menu-inner-wrapper .toggle-icon {
		/* color: var(--white); */
		color: var(--blue);
		font-size: 2rem;
		cursor: pointer;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}

	#main-menu-inner-wrapper .la-arrow-up {
		color: var(--white);
	}

	#main-menu-inner-wrapper .mainmenu li:hover .la-arrow-up,
	#main-menu-inner-wrapper .mainmenu>li .sub-menu li:hover .la-arrow-up {
		color: var(--white);
	}

	#main-menu-inner-wrapper .no-border {
		border: none !important;
	}

	.all-products-menu-wrapper,
	.login-header-menu-wrapper {
		padding: 0;
		width: 100%;
	}

	/* .trp_language_switcher_shortcode {
    display: none !important;
  } */
	/* End of main menu */
	/* **************************************** */
	/* **************************************** */
	.newsletter-form-wrapper>div {
		/* padding: 5rem 3rem; */
		padding: 5rem 6.5rem;
		justify-content: center;
	}

	.newsletter-form-wrapper>div {
		/* flex-wrap: wrap; */
	}

	.newsletter-form-wrapper>div img {
		/* max-width: 20rem; */
		height: max-content;
		padding: 0;
	}

	.newsletter-form input {
		max-width: 25rem;
	}

	/* new 2024-02-08 JM */
	/* top-small-banner-blue */
	.top-small-banner-blue {
		width: 100%;
		position: relative;
		top: 9rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.top-small-banner-blue-pipe-div {
		display: none;
	}

	.top-small-banner-h2 {
		font-size: 16px;
		padding: 0 1rem;
	}

	.top-small-banner-h2-bold {
		font-size: 16px;
		padding: 0 1rem;
	}

	.top-small-banner-blue .top-small-banner-link-wrapper a {
		padding: 0 1rem;
		color: var(--white);
	}

	/* end top-small-banner-blue */

	/* footer */
	.footer-main {
		flex-wrap: wrap;
		padding: 7.5rem 6.5rem;
	}

	#footer-contact-wrapper {
		width: 50%;
		margin-bottom: 2rem;
	}

	#footer-postal-wrapper {
		width: 50%;
		margin-bottom: 2rem;
	}

	#footer-terms-wrapper {
		width: 50%;
		max-width: unset;
		margin-bottom: 2rem;
	}

	#footer-follow-us-wrapper {
		width: 50%;
		margin-bottom: 2rem;
	}

	#footer-logo-badges-wrapper {
		width: 100%;
		justify-content: space-evenly;
	}

	.trp-language-switcher>div>a>img {
		width: 24px;
		height: 24px;
		margin: 0 3px;
	}

	.trp_language_switcher_shortcode {
		margin-right: 0px;
	}

	/* end footer */
}

@media all and (max-width: 960px) {
	.footer-main {
		flex-wrap: wrap;
		justify-content: center;
		/* padding: 7.5rem 2rem; */
		padding: 7.5rem 6.5rem;
	}

	.footer-33 {
		width: 100%;
		margin: 15px 0;
	}

	.newsletter-form-wrapper>div {
		flex-wrap: wrap;
	}

	.newsletter-form {
		padding: 5rem 0;
		display: flex;
		justify-content: center;
		align-items: end;
		width: 100%;
		max-width: 70%;
	}

	.form-container h1 {
		font-size: 6rem;
	}
}

@media all and (max-width: 768px) {
	h1 {
		font-size: 3.6rem;
	}

	h2 {
		font-size: 3rem;
	}

	h3 {
		font-size: 2.2rem;
	}

	h4 {
		font-size: 2rem;
	}

	h5 {
		font-size: 2.1rem;
	}

	h6 {
		font-size: 1.9rem;
	}

	p,
	a,
	.box-content {
		font-size: 1.5rem;
	}

	.big-p {
		font-size: 1.8rem;
	}

	em,
	strong {
		font-size: inherit;
	}

	label,
	input,
	::placeholder,
	textarea,
	select,
	option,
	ul,
	ol,
	li,
	th,
	tr,
	td {
		font-size: inherit;
		font-size: 1.5rem;
	}

	blockquote,
	blockquote p,
	blockquote a {
		font-size: 1.8rem;
	}

	main {
		/* margin-top: 7rem; */
	}

	header {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	header .header-container {
		/* padding: 0 2rem; */
		padding: 0 3rem;
	}

	header.sticky .header-container {
		padding: 2rem 3rem;
	}

	#show-hide-search-box-for-small-screen.open {
		top: 7rem;
	}

	#main-menu {
		top: 6rem;
	}

	body.menu-open #tidio-chat {
		display: none;
	}

	#main-menu-top-mobile {
		padding: 2.25rem 3rem;
	}

	.logo-container #header-logo {
		width: 20rem;
	}

	.header-icon-item {
		/* margin-left: 2.5rem; */
	}

	.header-icon-item i {
		font-size: 3.5rem;
	}

	.header-icon-item p {
		font-size: 1.6rem;
	}

	#main-menu-inner-wrapper {
		padding: 0 1rem;
	}

	#main-menu-inner-wrapper .toggle-icon {
		font-size: 2rem;
	}

	#main-menu-inner-wrapper .mainmenu>li .sub-menu li a {
		padding-left: 3rem;
	}

	#close-menu-button i {
		font-size: 3.5rem;
	}

	#small-scren-products-link {
		display: inline-block;
		width: 80%;
	}

	.text-page-content {
		margin: 1.5rem 0;
		padding: 0;
		width: 100%;
	}

	/* COOKIES */
	#cookie-content {
		padding: 2.5rem 3rem;
		flex-wrap: wrap;
	}

	#cookie-text {
		max-width: unset;
		width: 100%;
	}

	#cookie-content p {
		font-size: 1.4rem;
	}

	#cookie-content .btn-black-trans {
		font-size: 1.4rem;
		margin: 1.5rem auto 0 auto;
	}

	.tiny {
		font-size: 1.2rem;
	}

	.semi-tiny {
		font-size: 1.4rem;
	}

	.newsletter-form-wrapper>div {
		padding: 5rem 3rem;
	}

	.breadcrumb {
		margin: 2.5rem 0 1.5rem 0;
		width: 100%;
		max-width: calc(100% - 11rem);
	}

	.splide__pagination__page {
		width: 12px;
		height: 12px;
		margin: 5px;
	}

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

	.newsletter-input-wrapper {
		width: 100%;
		margin-bottom: 2.5rem;
	}

	.newsletter-form input {
		width: 100%;
		max-width: unset;
	}

	.newsletter-form button {
		margin-bottom: 2.5rem;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
	}

	.footer-main {
		padding: 7.5rem 3rem;
	}

	.section-breadcrumbs,
	.breadcrumb {
		display: none;
	}

	.logo-container {
		position: absolute;
		/* rigth: -2rem; */
		right: calc(50% - 10rem);
	}

	#result-search-box-for-small-screen-wrapper.open {
		top: 15rem;
		height: calc(100vh - 158px);
	}

	.sub-menu-wrapper .menu-holder {
		padding: 0 1rem;
	}

	/* new 2024-02-08 JM */
	/* top-small-banner-blue */
	.top-small-banner-blue {
		width: 100%;
		position: relative;
		top: 7rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.top-small-banner-h2 {
		font-size: 16px;
		padding: 0 1rem;
	}

	.top-small-banner-h2-bold {
		font-size: 16px;
		padding: 0 1rem;
	}

	.top-small-banner-blue .top-small-banner-link-wrapper a {
		padding: 0 1rem;
		color: var(--white);
	}

	/* end top-small-banner-blue */
}

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

	/* css overlay for select private or business */
	#customer-type-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#customer-type-form-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		/* flex-wrap: wrap; */
		flex-direction: column;
	}

	#customer-type-form-wrapper button {
		min-width: 180px;
	}

	/* end overlay for select private or business */

	.header-container {
		padding: 0 2rem;
		height: 6rem;
	}

	.logo-container {
		position: absolute;
		/* rigth: -2rem; */
		right: calc(50% - 7.5rem);
	}

	header .header-container {
		padding: 0 2rem;
	}

	header.sticky .header-container {
		padding: 0 2rem;
	}

	.logo-container #header-logo {
		width: 15rem;
	}

	header.sticky .logo-container #header-logo {
		width: 15rem;
	}

	.header-icon-item {
		/* margin-left: 1.75rem; */
	}

	#main-menu-top-mobile {
		padding: 2.25rem 2rem;
	}

	#main-menu-inner-wrapper {
		padding: 0 0;
	}

	#small-scren-products-link {
		display: inline-block;
		width: 80%;
	}

	.box-news-33,
	.box-news-33:visited {
		width: 100%;
		width: calc(100% - 30px);
	}

	.newsletter-form-wrapper>div {
		padding: 5rem 2rem;
	}


	/* product search small-screen */
	.product-search-result-wrapper {
		padding: 1rem;
	}


	.product-search-result-wrapper h2 {
		font-size: 2rem;
	}

	.product-search-result-wrapper .image-and-text-wrapper {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: 1rem;
	}

	.product-search-result-wrapper .image-and-text-wrapper img.product-search-image {
		width: auto;
		max-width: 300px;
	}

	.product-search-result .product-search-result-content {
		margin-bottom: 2rem;
		max-width: 100%;
	}

	/*  */



	/* footer */
	.footer-main {
		padding: 7.5rem 2rem;
	}

	#footer-contact-wrapper {
		/* border: 1px solid royalblue; */
		width: 100%;
		margin-bottom: 2rem;
	}

	#footer-postal-wrapper {
		/* border: 1px solid lightcoral; */
		width: 100%;
		margin-bottom: 2rem;
	}

	#footer-terms-wrapper {
		/* border: 1px solid orange; */
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: unset;
		margin-bottom: 2rem;
	}

	.footer-terms-text-logo-wrapper {
		display: flex;
		width: 100%;
		margin-bottom: 2rem;
	}

	#footer-follow-us-wrapper {
		/* border: 1px solid olive; */
		width: 100%;
		margin-bottom: 2rem;

		/* new 2024-04-23 JM */
		align-items: flex-start;
	}

	#footer-logo-badges-wrapper {
		/* border: 1px solid blueviolet; */
		width: 100%;
	}

	.badge-iso-9001-wrapper {}

	.badge-iso-14001-wrapper {}

	/* image-bisnode-aaa */
	/* badge-iso-9001  , badge-iso-14001 */
	/* grid ? */
	.image-bisnode-aaa {
		grid-area: image_bisnode_aaa;
	}

	/* .badge-iso-9001 { grid-area: badge_iso_9001; } */
	.badge-iso-9001-wrapper {
		grid-area: badge_iso_9001;
	}

	/* .badge-iso-14001 { grid-area: badge_iso_14001; } */
	.badge-iso-14001-wrapper {
		grid-area: badge_iso_14001;
	}

	#footer-logo-badges-wrapper {
		/*display: grid;
        grid-template: 'image_bisnode_aaa image_bisnode_aaa' 'badge_iso_9001 badge_iso_14001';*/
		justify-content: space-between;
	}

	.AAA-wrapper {
		width: 18rem;
	}

	/* end footer */
	header.sticky .header-container {
		height: auto;
	}

	header.sticky .logo-container {
		padding: 0;
	}

	.application-actionbuttons-wrapper {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		margin-top: 2rem;
		flex-direction: column;
	}

	.application-actionbuttons-wrapper #application-abort,
	.application-actionbuttons-wrapper #application-button {
		width: 100%;
		max-width: unset;
		margin-bottom: 1rem;
	}
}

/* End of responsive */

/* **************************************** */

/* **************************************** */


/* Helper classes */

.vertical-middle {
	vertical-align: middle;
}

.max-width-50-center {
	max-width: 50%;
	margin: 0 auto;
}

.grecaptcha-badge {
	display: none;
}
