@charset "UTF-8";
/* DISPLAY FLEX */
/* ROW */
/* COL */
/* JUSTIFY CONTENT */
/* ALIGN ITEMS */
/* ALIGN SELF */
/* Flex wrap */
/* Order */
/* Polaris | Stella | Orion */
/* base (used for Polaris) | light (used for Stella) | dark (used for Orion) | * (used for custom) */
/* ------------------------------------------------ 

	air_varukorg.css

 ------------------------------------------------ */
/* ------------------------ 
	Varukorgsknapp i header / Cart in header 
 ------------------------ */
#kundvagn .Cart {
  z-index: 5;
  position: relative;
}

#kundvagn .Varukorg.addedAnimation {
  color: var(--cta-color1);
  background: var(--cta-background1);
}
#kundvagn .Varukorg.addedAnimation svg {
  color: var(--cta-color1);
  fill: var(--cta-color1);
}

#kundvagn .Varukorg.errorAnimation {
  color: var(--base-background1);
  background: var(--danger-color);
}
#kundvagn .Varukorg.errorAnimation svg {
  color: var(--base-background1);
  fill: var(--base-background1);
}

/* ------------------------ 
	Öppnad varukorg / Cart dropdown   
 ------------------------ */
#AIRvarukorg-Wrap .close-header:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f07a";
  speak: never;
  font-weight: 200;
}

#AIRvarukorg-Wrap .RowWrap {
  overflow-y: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

/* Cart buttons */
.TxtWrap .Rem {
  position: absolute;
  right: 0;
  top: 0;
}

.TxtWrap .cartIcon {
  text-align: center;
  width: auto;
  padding: 0;
  min-width: 1.6rem;
  min-height: 1.6rem;
  background: var(--canvas-btns-background);
  color: var(--canvas-btns-color);
}

body:not(.using-mouse) .TxtWrap .cartIcon:focus,
.TxtWrap .cartIcon:hover {
  color: var(--cta-color2);
  background: var(--cta-background2);
  filter: none;
}

.TxtWrap .cartIcon::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 200;
  font-size: var(--text-m);
  speak: never;
}

.TxtWrap .Sub:before {
  content: "\f068";
}

.TxtWrap .Add:before {
  content: "\f067";
}

.TxtWrap .Rem:before {
  content: "\f00d";
}

.BWrap .Checkout {
  text-align: center;
  margin: 0;
  width: 100%;
}

/* Cart text */
.SumWrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.SumWrap br {
  display: none;
}

.BError {
  padding: var(--gutter);
}

.br-vk {
  display: none;
}

/* font weight / size */
.VarukorgVarum,
.DescrWrap .Descr,
.DescrWrap .Prop1 {
  font-size: var(--text-xs);
}

.DescrWrap .Descr {
  font-weight: 600;
}

.SumTxt,
.Sum {
  font-size: var(--text-xl);
  font-weight: 700;
}

.TxtWrap .Price {
  font-weight: 600;
  font-size: 14px;
}

.cart_campaign {
  color: #9f141d;
}

.TxtWrap .Rabatt {
  color: var(--danger-color);
  display: none;
}

/* Error message */
.BError:empty {
  display: none;
}

.BError {
  background: var(--base-background2);
}
.BError.status_message {
  max-width: unset;
}

.BError.status_message .box {
  background: var(--base-background1);
}

/* Cart Row */
.BWrap .Row {
  border-bottom: 1px solid var(--border-color1);
  border-bottom: 1px solid var(--canvas-border-color);
  padding: 0.5rem;
}

.BWrap .Row,
.BWrap .Row > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.BWrap .Row .Img {
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
}
.BWrap .Row .Img img {
  border-radius: var(--border-radius2);
}

.BWrap .Row .TxtWrap {
  position: relative;
  align-items: center;
  flex-wrap: wrap;
}

.BWrap .Row .Img {
  flex: 0 1 20%;
}

.BWrap .Row .TxtWrap {
  flex: 0 1 80%;
}

.DescrWrap {
  flex: 100%;
  margin-bottom: 0.3rem;
}

.TxtWrap .Price {
  flex: 0 1 25%;
  text-align: right;
  margin-left: auto;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  text-wrap: nowrap;
}

input[type=text].Qty {
  flex: 0 1 20%;
}

.TxtWrap .Sub,
.TxtWrap .Add,
.TxtWrap .Rem {
  flex: 0 1 10%;
  text-align: center;
  cursor: pointer;
}

.TxtWrap .Sub {
  order: 1;
}

input[type=text].Qty, .TxtWrap .Sub + label {
  order: 2;
  color: #000;
}

.TxtWrap .Sub + label > span {
  /* display:none; */
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

.TxtWrap .Add {
  order: 3;
}

.TxtWrap .Rem {
  order: 4;
}

.TxtWrap .Price {
  order: 5;
}

input[type=text].Qty {
  text-align: center;
  font-weight: 600;
  font-size: var(--text-xs);
  border: 0;
  margin: 0 4px;
  padding: 0 !important;
  min-width: 2.1rem;
  height: 1.6rem !important;
  line-height: normal;
  pointer-events: none;
  color: #000;
}

.BWrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.BWrap .Footer {
  margin-top: auto;
  margin-bottom: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color1);
  border-top: 1px solid var(--canvas-border-color);
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
}

.cart_pixels {
  display: none !important;
}

/* Mobile adjustments */
@media only screen and (max-width: 47.99rem) {
  .Varukorg {
    justify-content: center;
  }
  .BWrap .Footer {
    min-height: 25%;
  }
}
/*------------------------
   Loading styling
------------------------*/
#dialogTitle-cartHeading i {
  position: relative;
  margin-right: 0.2em;
}

.AIRvarukorg_Load_running #dialogTitle-cartHeading i::before {
  opacity: 0;
}

.AIRvarukorg_Load_running #dialogTitle-cartHeading i::after {
  content: "L";
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  font-family: "Font Awesome 5 Pro";
  line-height: normal;
  content: "\f1ce";
  transform: none;
  -webkit-animation: air-loading 1s linear infinite;
  animation: air-loading 1s linear infinite;
  margin: -0.5rem 0 0 -0.5rem;
}

.fraktfriinformation {
  text-align: center;
  letter-spacing: normal;
  font-size: 14px;
  order: -1;
}

.price-type-campaign .price-ordinary {
  text-decoration: line-through;
  font-size: 14px;
  color: #5a5a5a;
}
.price-type-campaign .price-campaign {
  color: #9f141d;
}

/* ------------------------------------------------ 

	SEARCH
		Styling för snabbsöken/LSS och djupsöken

 ------------------------------------------------ */
/*------------------------
   Sökrutan i headern 
------------------------*/
.sokrutan *:focus {
  outline: none;
}

input[type=text].Sokfalt {
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 1.5em;
  width: 100%;
  font-weight: 200;
  text-align: center;
  font-size: var(--text-m);
  background: #faf7ef;
  border: none;
  border-radius: var(--search-in-header-borderradius);
  -webkit-appearance: none;
}
input[type=text].Sokfalt::-webkit-input-placeholder {
  color: #000;
}

input[type=search].Sokfalt {
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 1.5em;
  width: 100%;
  font-weight: 200;
  text-align: center;
  font-size: var(--text-m);
  background: var(--search-in-header-background);
  border: 1px solid var(--search-in-header-background);
  border-radius: var(--search-in-header-borderradius);
  -webkit-appearance: none;
}
input[type=search].Sokfalt::-webkit-input-placeholder {
  color: #000;
}

.Sokknapp {
  display: none;
  top: 0;
  bottom: 0;
  left: 0.5em;
  color: #666;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
}

input.Sokknapp[type=submit] {
  display: none;
  top: 0;
  bottom: 0;
  left: 0.5em;
  color: #666;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
}

.LSS_Input:after {
  top: 0;
  bottom: 0;
  left: 0.5em;
  color: #666;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  font-family: "Font Awesome 5 Pro";
  content: "\f002";
  speak: never;
  font-size: var(--text-xl);
  font-weight: 200;
  text-align: center;
  position: absolute;
  margin: auto;
  z-index: 5;
}
.LSS_Input > label > span {
  display: none;
}

.LSS_Container {
  position: relative;
}

#lblTerm {
  display: none;
}

.SokMer {
  margin-top: 0.5rem;
}

.js-removeSearchText {
  display: none;
}

.js-removeSearchText.show {
  display: flex;
}

.removeSearchText {
  position: absolute;
  top: 4.45em;
  right: calc(var(--gutter) + 0.25em);
  width: 2em;
  height: 2em;
  min-height: unset;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media only screen and (min-width: 47.1rem) {
  .removeSearchText {
    top: 0.25em;
  }
}

.using-mouse input[type=text].Sokfalt:focus {
  outline: none;
  border-color: var(--border-marked);
  box-shadow: none;
}
.using-mouse input[type=search].Sokfalt:focus {
  outline: none;
  border-color: var(--border-marked);
  box-shadow: none;
}

@media only screen and (max-width: 47.99rem) {
  .sokrutan {
    flex-basis: unset;
    max-width: unset;
    padding: unset;
  }
}
/*------------------------
   LSS dropdown
------------------------*/
#LSS_Result {
  display: none !important;
  margin: var(--gutter);
  position: relative;
  top: 0;
}
#LSS_Result ul {
  all: unset;
  list-style: none;
  padding: 0;
  margin: 0;
}
#LSS_Result li {
  all: unset;
  list-style: none;
  padding: 0;
  margin: 0;
}
#LSS_Result li a {
  all: unset; /* Denna plockar bort focus styling också, därför lägger vi tillbaka detta nedan */
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#LSS_Result::-webkit-scrollbar {
  display: none;
}
#LSS_Result .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  color: var(--base-color4);
  background: var(--base-background4);
  border-radius: 0;
  display: none;
}
#LSS_Result .close:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00d";
  speak: never;
  font-weight: 200;
}
#LSS_Result .btn-search a {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  padding: 0.5em 1em;
  padding: calc(var(--gutter) / 2) var(--gutter);
  color: var(--cta-color2);
  background: var(--cta-background2);
  border-radius: var(--border-radius2);
}
#LSS_Result a:hover {
  text-decoration: underline;
}
#LSS_Result .elastic-search-result li a:hover {
  text-decoration: none;
}
#LSS_Result li.product_card_img:hover {
  text-decoration: underline;
  cursor: pointer;
}
#LSS_Result .LSS_Varumarken li:has(a):hover {
  text-decoration: underline;
  cursor: pointer;
}
#LSS_Result .LSS_Artikelgrupper li:has(a):hover {
  text-decoration: underline;
  cursor: pointer;
}
#LSS_Result .LSS_Pages li:has(a):hover {
  text-decoration: underline;
  cursor: pointer;
}

body:not(.using-mouse) #LSS_Result ul li a:focus {
  outline: var(--focus-outline);
  box-shadow: var(--focus-shadow);
}

ul.LSS_Artiklar::-webkit-scrollbar {
  display: none;
}

ul.LSS_Artikelgrupper::-webkit-scrollbar {
  display: none;
}

.LSSordPris {
  text-decoration: line-through;
}

.LSS_Artiklar .Img:empty {
  display: block;
  padding-bottom: 80%;
  width: 80%;
  margin: 0 auto;
  background: var(--base-background2);
  position: relative;
  border-radius: 50%;
}
.LSS_Artiklar .Img:empty::after {
  content: "?";
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--lowlight-color1);
}

.LSS_noHits .LSS_Sokterm {
  font-weight: bold;
}

.elastic-search-product-results .select-ul-li {
  text-align: left;
}

.elastic-search-result {
  list-style: none;
  padding: 0;
}
.elastic-search-result li a {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding-top: calc(var(--gutter) / 2);
  padding-bottom: calc(var(--gutter) / 2);
}
.elastic-search-result li a span.suggest-hl {
  font-weight: 700;
}
.elastic-search-result li:not(.product_card_img) a {
  white-space: break-spaces;
}
.elastic-search-result li:not(.product_card_img) a:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f002";
  font-weight: 200;
  margin-right: 5px;
  margin-top: 3px;
}
.elastic-search-result li:hover a {
  background: var(--base-background2);
  color: #444;
}
.elastic-search-result li.product_card_img {
  line-height: normal;
}
.elastic-search-result li.product_card_img a {
  height: 100%;
}
.elastic-search-result li.product_card_img a span.term {
  white-space: break-spaces;
}
.elastic-search-result li.product_card_img a div {
  align-self: center;
}

#suggest-no-result {
  padding: 0 var(--gutter);
}

.elastic--title {
  display: block;
  width: 100%;
}

.search-history-header {
  font-weight: 600;
  margin-bottom: calc(var(--gutter) / 2);
  border-bottom: var(--border-std);
  line-height: 30px;
  display: block;
  width: 100%;
  margin-top: var(--gutter);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

#search-history-clear {
  font-weight: normal;
  color: var(--danger-color);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 0.75rem;
}
#search-history-clear:before {
  content: "-";
  margin: 0 calc(var(--gutter) / 2);
  color: var(--base-color1);
}
#search-history-clear:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f00d";
  speak: never;
  font-weight: 200;
  color: var(--danger-color);
  margin-left: 5px;
  font-size: 0.5rem;
  height: 12px;
  border: 1px solid var(--danger-color);
  border-radius: 20px;
  line-height: 11px;
  width: 12px;
  text-align: center;
  margin-top: 9px;
}

.search-popular-li a:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f005";
  speak: never;
  font-weight: 200;
  margin-right: 5px;
  margin-top: 3px;
}

.search-history-li a:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f017";
  speak: never;
  font-weight: 200;
  margin-right: 5px;
  margin-top: 3px;
}

.elastic-query {
  font-weight: bold;
}

@media only screen and (min-width: 47.1rem) {
  #LSS_Result {
    position: absolute;
    top: 100%;
    right: 0;
    left: calc(1rem - 1px);
    width: calc(100% - 2rem + 2px);
    margin: 0;
    max-height: 30rem;
    overflow-y: auto;
    padding: var(--gutter);
    box-shadow: var(--box-shadow1);
    background: var(--base-background1);
    border-radius: var(--border-radius2);
    border: 1px solid var(--border-color1);
    padding-top: 0px;
  }
}
/*------------------------
   Djupsöken
------------------------*/
.matched-group-wrapper {
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: calc(var(--gutter) * 2);
}

ul.matched-group-wrapper {
  list-style: none;
}
ul.matched-group-wrapper li {
  list-style: none;
}

.matched-group-title.tab {
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  border: 1px solid;
  border-color: var(--border-color1);
  cursor: pointer;
  color: var(--lowlight-color1);
  order: 1;
  height: 2em;
  padding: 0 calc(var(--gutter) / 2);
  margin-right: calc(var(--gutter) / 4);
  margin-bottom: calc(var(--gutter) / 4);
}
.matched-group-title.tab * {
  cursor: pointer;
}
.matched-group-title.tab span {
  font-size: 0.75rem;
  margin-left: 3px;
}

.matched-group-title.tab.active {
  border: 1px solid #000;
  color: var(--base-color1);
}
.matched-group-title.tab.active label {
  font-weight: bold;
}

.matched-group-item-wrapper {
  -ms-flex-align: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  flex-flow: wrap;
  justify-content: start;
}

.matched-group-item-wrap.active {
  -ms-flex-align: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  flex-flow: wrap;
  margin-top: calc(var(--gutter) * 2);
  justify-content: start;
  margin-top: calc(var(--gutter));
}

.matched-group-item-wrap {
  display: none;
  order: 2;
}
.matched-group-item-wrap .elastic-search-product-results {
  width: 100%;
}

.matched-group-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-right: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter) / 2);
}
.matched-group-item a {
  text-align: center;
  font-weight: 700;
  width: 100%;
  display: inline-block;
  border-radius: var(--border-radius2);
  cursor: pointer;
  padding: 0.5em 1em; /* fallback */
  padding: calc(var(--gutter) / 2) var(--gutter);
  --focus-color: var(--cta-background1);
  background: var(--cta-background1);
  color: var(--cta-color1);
}
.matched-group-item a:hover {
  filter: brightness(0.8);
}

body:not(.using-mouse) .matched-group-item a:focus {
  outline: none;
  /* border: none; */
  box-shadow: 0 0 0 3px #fff, 0px 0px 0 6px var(--focus-color);
}

#search-wrapper input#search-input {
  font-size: 1rem;
}

.search-result-wrapper[data-enterprisesearch=false] {
  /* Orginal djupsök specifikt */
}
.search-result-wrapper[data-enterprisesearch=false] .search-articlegroups-wrapper .matched-group {
  display: flex;
  flex-wrap: wrap;
}
.search-result-wrapper[data-enterprisesearch=false] .search-articlegroups-wrapper .matched-group .matched-group-title {
  order: 0;
  width: 100%;
  margin-bottom: calc(var(--gutter) / 2);
}

.search-result-wrapper [data-enterpriseSearch=true] {
  /* Enterprise specifikt */
}

/* ------------------------------------------------ 

		ORION

------------------------------------------------ */
/* ------------------------------------------------ 

		SLUT ORION

------------------------------------------------ */
/* ------------------------------------------------ 

		STELLA

------------------------------------------------ */
/* ------------------------------------------------ 

		SLUT STELLA

------------------------------------------------ */
/* ------------------------------------------------ 

	cookie_consent.css

 ------------------------------------------------ */
.consentInput {
  align-items: center;
  border-radius: 100px;
  display: flex;
  font-weight: 700;
  margin-bottom: var(--gutter);
}
.consentInput:last-of-type {
  margin: 0;
}
.consentInput input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.consentInput input:disabled + .check-slider {
  cursor: not-allowed;
  opacity: 0.8;
}
.consentInput input:disabled + .check-slider:hover .toggle-indicator:after {
  content: unset;
}
.consentInput input:checked + .check-slider {
  filter: unset;
  background: var(--cta-background1);
}
.consentInput input:checked + .check-slider .toggle-indicator {
  transform: translateX(32px);
}
.consentInput input:focus + .check-slider {
  outline: var(--focus-outline) !important;
}

.check-slider {
  filter: grayscale(1);
  background: #919191;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  height: calc(var(--gutter) * 2);
  margin-right: var(--gutter);
  position: relative;
  width: calc(var(--gutter) * 4);
}
.check-slider .toggle-indicator {
  align-items: center;
  background: #fff;
  border-radius: calc(var(--gutter) * 2);
  bottom: 3px;
  left: 3px;
  display: flex;
  height: 26px;
  justify-content: center;
  outline: solid 2px transparent;
  position: absolute;
  width: 26px;
}

#cookie_consent {
  position: fixed;
  left: var(--gutter);
  bottom: var(--gutter);
  width: calc(100% - 2 * var(--gutter));
  padding: calc(var(--gutter) * 2);
  z-index: 56;
  background: var(--base-background1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-height: 100vh;
  overflow-y: auto;
}
#cookie_consent:focus {
  box-shadow: var(--focus-shadow);
}
#cookie_consent h2 {
  margin: 0;
}
#cookie_consent .button-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 64.1rem) {
  #cookie_consent .button-wrapper {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 84.475rem) {
  #cookie_consent {
    left: calc((100% - 84.375rem) / 2);
    width: 84.375rem;
  }
}

.cookie_consent_wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 64.1rem) {
  .cookie_consent_wrap {
    flex-wrap: nowrap;
  }
}

#cookie_consent_text p {
  margin: var(--gutter) 0 calc(var(--gutter) * 2) 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 64.1rem) {
  #cookie_consent_text {
    margin-right: calc(var(--gutter) * 2);
  }
}

#cookie_consent_manager {
  position: fixed;
  left: var(--gutter);
  bottom: var(--gutter);
  width: calc(100% - 2 * var(--gutter));
  height: auto;
  max-height: calc(100vh - 2 * var(--gutter));
  max-height: calc(100vh - 8 * var(--gutter)); /* Safari fix*/
  overflow-y: auto;
  padding: calc(var(--gutter) * 2);
  background: var(--base-background1);
  z-index: 30;
  -webkit-box-shadow: 2px 0px 9px 0 rgba(25, 25, 25, 0.3);
  box-shadow: 2px 0px 9px 0 rgba(25, 25, 25, 0.3);
}
@media only screen and (min-width: 47.1rem) {
  #cookie_consent_manager {
    top: 50%;
    left: 50%;
    bottom: unset;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40rem;
    max-width: 90%;
  }
}

#cookie_consent_manager_wrapper .consentInput {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: var(--gutter);
  font-weight: bold;
}
#cookie_consent_manager_wrapper button {
  border: 1px solid transparent;
  white-space: nowrap;
  width: auto;
  margin-top: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter) / 2);
}
#cookie_consent_manager_wrapper button:not(:last-child) {
  margin-right: var(--gutter);
}

#cookie_consent_manager_confirm {
  margin-top: var(--gutter);
}

.cookie_consent_manager_block {
  margin: 0 0 calc(var(--gutter) * 2) 0;
}
.cookie_consent_manager_block h2 {
  margin: 0;
}
.cookie_consent_manager_block p {
  margin: var(--gutter) 0 0 0;
}

.cookie_manager_head {
  font-weight: bold;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .check-slider .toggle-indicator {
    transition: 0.4s;
  }
}
@media only screen and (min-width: 64.1rem) {
  #cookie_consent_manager {
    top: 50%;
  }
}
/* ------------------------------------------------ 

	air_menu.css

 ------------------------------------------------ */
/* ------------------------ 
	Generellt 
------------------------ */
/* Menu general */
.menu ul,
.menu li {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  word-break: break-word;
}

.menu li a {
  display: inline-block;
}

.menu ul li ul {
  display: none;
}

@media only screen and (min-width: 64.1rem) {
  .menu li a {
    padding: 0.5em; /* fallback */
    padding: calc(var(--gutter) / 2);
  }
  .menu li a:hover {
    text-decoration: underline;
  }
  .menu ul li ul li {
    width: 100%;
  }
  .menu ul li ul li a {
    padding: 0;
  }
  .menu > div > ul > li > ul {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--base-background1);
    width: calc(100% - 2em);
    left: 1rem;
    z-index: 7;
    padding: 1rem;
  }
  .web-desktop, .kampanjmenu ul, .brand_menu ul {
    min-width: 200px;
    flex-direction: column;
  }
}
/* ------------------------ 
	Huvudmenyn i headern
------------------------ */
/* Accessibility buttons */
#main-menu .menu-btn {
  text-align: center;
  background: var(--canvas-btns-background);
  color: var(--canvas-btns-color);
  cursor: pointer;
}

#main-menu .arrow:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  speak: never;
  font-style: normal;
}

.menu-btn:focus, .main-menu-close .btn-auto:focus {
  width: auto;
  height: auto;
  padding: 0 0.4em;
  overflow: visible;
}

.menu-btn, .main-menu-close .btn-auto {
  width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-menu-close {
  text-align: right;
}

.main-menu-close .btn-auto {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.main-menu-close .btn-auto:focus {
  opacity: 1;
  padding: 0;
  margin: var(--gutter);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  overflow: visible;
}

#main-menu .canvas-header svg {
  position: relative;
  top: 4px;
}

/* Huvudmenyn i desktop */
@media only screen and (min-width: 64.1rem) {
  .all-in-category {
    display: none !important;
  }
  .menu-header-mobile {
    display: none;
  }
  /* Accessibility buttons */
  .main-menu-close {
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    width: unset !important;
  }
  .child-ul .level2 + .menu-btn {
    display: none !important;
    width: unset !important;
  }
  .child-ul .level2 + .menu-btn {
    display: none !important;
  }
  /* Pilar */
  .fa-chevron-down:before {
    content: "\f078";
    speak: never;
  }
  /* Huvudmeny */
  .main-menu.menu .Close {
    display: none;
  }
  .main-menu .wrap {
    position: relative;
  }
  .main-menu .main-menu-wrap > ul > li > a {
    font-size: var(--text-s);
    font-weight: 600;
  }
  .main-menu-wrap > ul > li:not(.kampanjmenu, .brand_menu) > ul > li {
    flex: 0 1 11%;
  }
  .main-menu-wrap > ul > li > ul > li > a {
    margin-top: calc(var(--gutter) / 2);
    margin-bottom: calc(var(--gutter) / 2);
  }
  .main-menu-wrap > ul > li > ul > li > a {
    font-size: var(--text-s);
    font-weight: 700;
    color: #217c37;
  }
  .main-menu-wrap > ul > li > ul > li > ul {
    display: block;
    margin-bottom: calc(var(--gutter) / 2);
  }
  .main-menu-wrap > ul > li > ul > li > ul > li {
    font-size: var(--text-s);
  }
  .main-menu-wrap > ul > li > ul > li > ul > li > a {
    font-weight: 400;
    font-size: var(--text-s);
  }
  .main-menu-wrap > ul > li.delayedHover > a {
    text-decoration: underline;
  }
  .main-menu-wrap > ul > li.delayedHover > ul,
  .main-menu-wrap > ul > li[data-submenu=has-submenu].open > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: 600px;
    column-gap: 1rem;
    padding: calc(var(--gutter) / 2) var(--gutter);
    background: var(--base-background1);
    box-shadow: var(--box-shadow1);
    border: var(--border-std);
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
  }
  .menu-banner {
    display: flex;
    gap: 1rem;
    min-width: fit-content;
    margin-left: auto !important;
  }
  /* scrollMenu */
  .scrollMenu {
    position: relative;
  }
  .main-menu-wrap > ul > li.scrollMenu.delayedHover > ul,
  .main-menu-wrap > ul > li.scrollMenu[data-submenu=has-submenu].open > ul {
    flex-wrap: nowrap;
    width: 200px;
  }
  .main-menu-wrap > ul > li.scrollMenu > ul > li > a {
    font-weight: normal;
  }
}
/* Huvudmenyn i mobil */
@media only screen and (min-width: 0rem) and (max-width: 64.1rem) {
  /* Huvudmeny */
  #main-menu ul {
    display: block;
  }
  #main-menu ul.level2 a {
    padding-left: 2rem;
  }
  .main-menu.menu ul,
  .main-menu.menu li {
    width: 100%;
  }
  .main-menu.menu ul.open > li.active, .menu.main-menu .open li.active > ul > li, .main-menu.menu .active > ul > li.parent-category {
    display: block;
  }
  .main-menu.menu ul li {
    font-weight: 500;
    font-size: var(--text-m);
    position: relative;
  }
  .main-menu.menu ul li a,
  .main-menu.menu ul li span {
    padding: 0.7rem;
    display: inline-block;
    width: 100%;
  }
  /* level 1 */
  .menu.main-menu li li {
    display: none;
  }
  .main-menu.menu li li a {
    font-weight: 400;
  }
  /* Knappar */
  #main-menu .menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.9rem;
    width: 3.2rem;
    text-align: center;
    background: var(--canvas-btns-background);
    color: var(--canvas-btns-color);
    cursor: pointer;
    border-radius: unset;
  }
  #main-menu .arrow:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f078";
    speak: never;
    font-style: normal;
  }
  #main-menu li.active > .menu-btn .arrow:after {
    content: "\f077";
    speak: never;
    padding-right: 0.3rem;
  }
  .main-menu-close {
    display: none;
  }
  /* Active */
  .main-menu.menu ul.active li.active a {
    text-decoration: underline;
    background: var(--base-background2);
    color: var(--base-color2);
  }
  .main-menu.menu ul li.active-parent > i {
    width: 100%;
    background-color: transparent;
    text-align: right;
  }
  /* current url styling */
  .main-menu.menu li.has_active_child > a {
    border-left: 4px solid var(--border-color1);
  }
  .main-menu.menu li.open.active > a {
    background-color: var(--base-background1);
    border-left: none;
    font-weight: 600;
    color: #217c37;
  }
}
.country_menu button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.menu-banner-wrap {
  position: relative;
  padding: 10px 0;
}
.menu-banner-wrap img {
  z-index: -1;
  margin: auto;
  display: flex;
}
.menu-banner-wrap a, .menu-banner-wrap span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.menu-banner-wrap span {
  z-index: 0;
}

.brand_menu ul {
  min-width: 200px;
  flex-direction: column;
}
.brand_menu ul li a {
  color: #000 !important;
}

/* ------------------------ 
	DIMMER
 ------------------------ */
#dimmer,
.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

#dimmer.active,
.overlay.active,
body.checkout-modal-open-right #dimmer {
  z-index: 60;
  opacity: 1 !important;
  pointer-events: initial;
  display: unset !important;
  visibility: unset !important;
}

/* Header specific dimmers */
#header-dimmer.overlay.active {
  width: 100vw;
  height: 100vh;
  z-index: 56; /* Pga .sokrutan {z-index: 57} */
}

body.search-modal-open #header-dimmer, body.menu-modal-open-left-xs #header-dimmer {
  display: block;
}
body.search-modal-open #dimmer, body.menu-modal-open-left-xs #dimmer {
  display: none;
}

/* ------------------------ 
	Keyframes   
 ------------------------ */
/*Spinner*/
@-webkit-keyframes air-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes air-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#dialogruta {
  position: fixed;
  max-height: 500px;
  max-width: 500px;
  height: fit-content;
  text-align: left;
  top: 0;
  margin: auto;
  left: 0;
  bottom: 0;
  z-index: 61;
  background: var(--base-background1);
  border: var(--border-std);
  right: 0;
  visibility: hidden;
  padding: calc(var(--gutter) * 2);
}
#dialogruta h1 {
  margin-top: 0;
  margin-top: 0;
  font-size: var(--text-xl);
}
#dialogruta h1 img {
  display: none;
}
#dialogruta a:last-child {
  background: var(--base-background6);
  color: var(--base-color6);
  line-height: 35px;
  display: block;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: center;
}

.status_message.status_message-neutral,
.status_message.status_message-neutral a {
  color: var(--base-color1);
}

.status_message.status_message-negative,
.status_message.status_message-negative a {
  color: var(--danger-color);
}

.status_message.status_message-positive,
.status_message.status_message-positive a {
  color: var(--success-color);
}

.status_message {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.status_message .box {
  font-size: var(--text-xs);
  text-align: left;
  background: var(--base-background2);
  border-radius: var(--border-radius2);
}
.status_message i {
  padding-right: 0.3em;
}
.status_message .status_message__main {
  margin: 0.5em 0;
}
.status_message button {
  margin-left: auto;
  display: block;
  min-width: 60px;
}
.status_message img[src="/bilder/ibutik-a/symboler/varning.gif"] {
  display: none !important;
}

/* ------------------------ 
	Price History
------------------------ */
.fa-circle-info:before {
  content: "\f05a";
  font-weight: 700;
}

body.priceinfo-modal-open #dimmer.active {
  display: block;
}

.price-history-lowest-price:empty + .price_info_trigger,
.price-history-lowest-price {
  display: none;
}

.price_info_area .price-history-lowest-price {
  display: initial;
}

.price_info_area {
  height: fit-content;
  width: 90vw;
  padding: 1rem;
}

.price-history-closebtn-wrap {
  top: 0;
  right: 0.5rem;
}
.price-history-closebtn-wrap .unstyleButton {
  color: var(--canvas-color);
}

.price_history_title {
  margin: 0;
  font-size: 1rem;
}

#AIRvarukorg-Wrap .Price_History {
  display: flex;
  justify-content: end;
  gap: 0.3rem;
  color: var(--lowlight-color1);
  text-decoration: line-through;
  font-size: 0.875rem;
}
#AIRvarukorg-Wrap .price-history-lowest-price {
  font-weight: 400;
  display: block;
  color: var(--canvas-lowlight-color);
}

/* ------------------------ 
   Cross selling
 ------------------------ */
/*
OBS! Denna fil gäller endast för de butiker som har nya versionen av cross selling UTAN FANCYBOX!
För att slippa fancybox kan inställningen ändras i varukorgsinitieringen, typ
cross_selling: {active: 1, boxShown: false, showBoxAgain: true, useFancyBox: false} 

Förutsättningar:
- Licensen för cross selling måste vara aktiverad och aktiverat på en produkt.
- useFancyBox: false måste vara med i varukorgsinitieringen.
- design/tt/page/includes/incl_cross_selling.tt måste finnas i temat och inkluderas i arbetsytan.
- Cross selling modalen måste defineras i click_n_toggle i afterload.js och addToggle måste vara uppdaterad till senaste versionen.
- Cart.js måste vara uppdaterad till senaste versionen.

*/
#cross-selling-module {
  background: #fff;
  background: var(--base-background1) !important;
  border-radius: var(--border-radius1) !important;
}
#cross-selling-module.active {
  display: block;
}
#cross-selling-module .canvas-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
}
#cross-selling-module .canvas-header .Close {
  background: transparent;
}
#cross-selling-module .CrossSelling {
  min-width: 100%;
  padding-inline: 1rem;
}
#cross-selling-module .CrossSelling .cross-selling-heading-text {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  margin-top: 1rem;
}
#cross-selling-module .CrossSelling h2 {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
  font-size: 1.5rem;
}
#cross-selling-module .CrossSelling .PT_Wrapper_All {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-bottom: 1.3rem;
}
#cross-selling-module .CrossSelling .PT_Wrapper_All .PT_Wrapper {
  width: calc(50% - var(--gutter));
}
#cross-selling-module .CrossSelling .PT_Wrapper_All .PT_Faktaruta .PT_Brand {
  display: none;
}
#cross-selling-module .CrossSelling .PT_Wrapper_All .PT_Pris {
  justify-content: center;
}
#cross-selling-module .CrossSelling .cross_selling__checkout-btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  padding-bottom: 2rem;
  border-top: var(--border-std);
  padding-top: 2em;
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 1em;
}
#cross-selling-module .CrossSelling .cross_selling__checkout-btn button {
  width: 100%;
  flex-grow: 1;
}
#cross-selling-module .CrossSelling .cross_selling__checkout-btn button:nth-child(1) {
  --focus-color: var(--cta-background2);
  color: var(--cta-background2);
  background: var(--cta-color2);
  border: 1px solid var(--cta-background2);
}

@media only screen and (min-width: 47.1rem) {
  #cross-selling-module {
    padding: 0 1rem 1rem;
  }
}
.CrossSelling .PT_Wrapper_All {
  --scrollbar-foreground-color: var(--base-color3);
  --scrollbar-background-color: var(--base-background3);
  /* Foreground, Background */
  scrollbar-color: var(--scrollbar-foreground-color) var(--scrollbar-background-color);
}

.CrossSelling .PT_Wrapper_All::-webkit-scrollbar {
  width: 3px; /* Mostly for vertical scrollbars */
  height: 3px; /* Mostly for horizontal scrollbars */
}

.CrossSelling .PT_Wrapper_All::-webkit-scrollbar-thumb { /* Foreground */
  background: var(--scrollbar-foreground-color);
}

.CrossSelling .PT_Wrapper_All::-webkit-scrollbar-track { /* Background */
  background: var(--scrollbar-background-color);
}

.footer {
  background: var(--footer-background);
  color: var(--footer-color);
}

.footer svg {
  fill: var(--footer-color);
}

.footer .text-color-light-grey {
  color: inherit;
  opacity: 0.65;
}

.Footer-newsletter .flexbox > * {
  max-width: calc(100% - 80px);
}

.footer {
  overflow: hidden;
}

.footer .menu li a {
  padding: 0;
  margin: 0.3em 0;
}

.footer .Kontaktform .btn {
  display: grid;
  place-content: center;
}

/* Enkel landsväljare */
.lang_chooser {
  position: relative;
  gap: 0.5em;
  margin-top: 1.5em;
  padding-top: 1.5em;
  min-width: 200px;
}
.lang_chooser svg {
  margin-right: 0.5em;
}
.lang_chooser a:hover {
  text-decoration: underline;
}

.lang_chooser::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 40px;
  background: var(--footer-color);
}

html[lang=sv] .sv {
  font-weight: 700;
}

html[lang=en] .en {
  font-weight: 700;
}

@media only screen and (max-width: 47.99rem) {
  .footer .menu {
    display: none;
  }
  .footer .menu.show {
    display: flex !important;
  }
  .footer .betalmetoder table {
    width: 98% !important;
    table-layout: unset !important;
  }
  .footer .betalmetoder table tr {
    display: flex !important;
    align-items: center;
    gap: 3px;
  }
  .footer_h2 {
    cursor: pointer;
    display: flex;
  }
  .footer_h2:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    margin-left: auto;
  }
}
.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.socials p {
  margin: 0;
}
.socials a {
  display: flex;
  gap: 5px;
  align-items: center;
}
.socials a:not(:has(img)) {
  margin-left: 30px;
}

.footer-logos-wrap {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
  margin: 0 auto;
}
.footer-logos-wrap .footer-logo-img {
  display: flex;
  align-items: center;
}
.footer-logos-payments, .footer-logos-fraight {
  display: flex;
  gap: 10px;
}
.footer-logos p {
  width: 100%;
}

/* Body och main */
html {
  font-size: 1rem;
  -moz-text-size-adjust: none; /* Prevent font scaling in landscape while allowing user zoom */
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  position: absolute;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-color1);
  background-color: var(--base-background1);
}

main {
  position: relative;
  min-height: 50vh;
}

/* LOADER / PRELOAD */
.preloader {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .preloader {
    -webkit-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
}
.preloader i {
  font-size: 2.5rem;
  margin-top: -40px;
  color: var(--base-color6);
}

.swiper-wrapper.PT_Wrapper_All {
  display: flex;
  flex-wrap: unset;
}

article.col-blogg {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.gutter-md-B {
  margin-bottom: var(--gutter);
}

@media only screen and (min-width: 47.1rem) {
  .blogg-slider + .slider-controls .slider-prev {
    left: -20px;
  }
  .blogg-slider + .slider-controls .slider-next {
    right: -20px;
  }
}
@media only screen and (max-width: 47.99rem) {
  article.col-blogg {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.cm-section:has(.blogg-slider) {
  overflow: unset;
}

.blog-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-ingress {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.banner2, .menubar-navigation .brand_menu {
  z-index: unset !important;
}

.cm-blog-wrapper .blog-image img, .blogg-slider .blog-image img {
  max-height: 21vh;
}
