/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/react-lazy-load-image-component/src/effects/blur.css ***!
  \*********************************************************************************************************************/
.lazy-load-image-background.blur {
  filter: blur(15px);
}

.lazy-load-image-background.blur.lazy-load-image-loaded {
  filter: blur(0);
  transition: filter .3s;
}

.lazy-load-image-background.blur > img {
  opacity: 0;
}

.lazy-load-image-background.blur.lazy-load-image-loaded > img {
  opacity: 1;
  transition: opacity .3s;
}

/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/photoswipe/dist/photoswipe.css ***!
  \***********************************************************************************************/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/*!**********************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./web/themes/custom/dahlt/react/product_detail/src/styles/main.scss ***!
  \**********************************************************************************************************************************************************************************************************************************/
/*
 * ---------- Widths ----------
 */
/*
 * ---------- Z-Index ----------
 */
/*
  * ---------- Colors ----------
  */
/*
  * ---------- Misc ----------
  */
/*
 * ---------- Colors ----------
 */
/**
 * ---------- Z-index ----------
 */
/**
 * ---------- Clearfix ----------
 */
/**
 * ---------- Widths ----------
 */
/**
 * ---------- Margin & Padding ----------
 */
/**
 * ---------- 'Boxes / cards / teasers' ----------
 */
/**
 * ---------- Placeholder ----------
 */
/**
 * ---------- 'Paragraphs' ----------
 */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: auto;
  -ms-text-size-adjust: auto;
  text-size-adjust: auto;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

h1 {
  font-size: calc(1.8em + 1vw);
}
@media screen and (min-width: 2000px) {
  h1 {
    font-size: calc(1.8em + 0.5vw);
  }
}

h2 {
  font-size: calc(1.4em + 1vw);
  margin: 1.2rem 0;
}
@media screen and (min-width: 2000px) {
  h2 {
    font-size: calc(1.4em + 0.5vw);
  }
}

h3 {
  font-size: calc(1.2em + 1vw);
}
@media screen and (min-width: 2000px) {
  h3 {
    font-size: calc(1.2em + 0.5vw);
  }
}

body {
  font-weight: 400;
  line-height: 1.2;
}

p {
  line-height: 1.4;
}

.product-classification {
  margin-top: 30px;
}
.product-classification .product-classification--wrapper {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 10px;
}
.product-classification .product-classification--wrapper img {
  margin-right: 1rem;
}

.product-documents {
  padding: 10px 26px;
}
.product-documents__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-documents__item {
  margin: 0 0 10px;
}
.product-documents a {
  padding-left: 25px;
  background: url(.././assets/ico-document.svg) no-repeat left center;
  background-size: auto 100%;
  color: #1E90B1;
  text-decoration: underline;
}

.fade-enter-active, .fade-leave {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.product-general-info {
  padding: 0;
}
@media (min-width: 1000px) {
  .product-general-info {
    max-width: 438px;
    padding: 0 45px;
  }
}

.product-general-info__title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 100;
}
@media (min-width: 900px) {
  .product-general-info__title {
    font-size: 43px;
    line-height: 45px;
  }
}

.product-general-info__description {
  font-size: 18px;
  line-height: 33px;
}

.fade-enter-active, .fade-leave {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

@media (min-width: 900px) {
  .product_detail__image {
    min-height: 670px;
  }
}
.product_detail__image img {
  border: 1px solid #D9D9D9;
}
.product_detail__image img[lazy=loading] {
  width: 30px;
  height: 30px;
  border: none;
}

.product-image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-image-gallery img {
  width: calc(50% - 13px);
  margin-bottom: 30px;
  border: 1px solid #D9D9D9;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.product-image-gallery img:hover {
  opacity: 0.9;
}
.product-image-gallery img:nth-child(1) {
  width: 100%;
  margin-right: 0;
}
.product-image-gallery img[lazy=loading] {
  width: auto;
  margin: 45% 0;
  border: none;
}

.fade-enter-active, .fade-leave {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.product-stock {
  align-self: center;
  margin: 0 auto;
  max-width: 160px;
}
@media (min-width: 600px) {
  .product-stock {
    margin: 0 30px;
    max-width: none;
  }
}
.product-stock__info {
  background: url(.././assets/ico-truck.svg) no-repeat right center;
  padding-right: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 45px;
  color: #C51414;
}
.product-stock__info--active {
  background: url(.././assets/ico-stock.svg) no-repeat right center;
  padding-right: 35px;
  color: #212121;
  font-weight: 500;
  max-width: 100px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .product-variation__buttons {
    display: flex;
    align-items: normal;
    justify-content: flex-end;
  }
}
.product-variation__buttons .field__item {
  margin-right: 0;
  margin-bottom: 0;
}

#product-tabs {
  margin-top: 40px;
  padding: 0.2em;
}
@media (min-width: 768px) {
  #product-tabs {
    margin-top: 0;
    width: 40%;
  }
}
#product-tabs .ui-tabs-panel {
  padding: 0;
}
#product-tabs .ui-tabs-anchor {
  padding: 0;
}
#product-tabs .ui-tabs-nav {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #9B9B9B;
}
#product-tabs .ui-tabs-nav li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
}
#product-tabs .ui-tabs-nav li a {
  font-size: 21px;
  line-height: 30px;
  font-weight: 600;
  color: #212121;
}
#product-tabs .ui-tabs-nav li.ui-state-active {
  border-bottom: 7px solid #1E90B1;
}

.fade-picker-enter-active, .fade-picker-leave {
  transition: opacity 0.5s;
}

.fade-picker-enter, .fade-picker-leave-to {
  opacity: 0;
}

.product-different-attributes,
.product-common-attributes {
  font-weight: bold;
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}
.product-different-attributes__label,
.product-common-attributes__label {
  font-weight: normal;
}
.product-different-attributes li,
.product-common-attributes li {
  line-height: 20px;
  padding: 0 0 5px;
}
.product-different-attributes li:nth-child(even),
.product-common-attributes li:nth-child(even) {
  padding-right: 0;
}

.product-different-attributes {
  margin-top: 0;
}

.product-price {
  display: inline-block;
  margin-bottom: 20px;
}
.product-price__ref, .product-price__value {
  display: inline-block;
  width: 100%;
}
.product-price__ref {
  font-size: 21px;
  font-weight: bold;
}
.product-price__value {
  font-size: 45px;
  font-weight: 100;
}

.product-box-selector {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-box-selector__wrapper {
  margin-bottom: 20px;
}
.product-box-selector__item {
  margin: 0 15px 20px 0;
  width: 47%;
  height: 134px;
}
@media (min-width: 900px) {
  .product-box-selector__item {
    width: calc(25% - 12px);
  }
}
.product-box-selector__item:nth-child(even) {
  margin-right: 0;
}
@media (min-width: 900px) {
  .product-box-selector__item:nth-child(even) {
    margin-right: 15px;
  }
}
@media (min-width: 900px) {
  .product-box-selector__item:nth-child(4n) {
    margin-right: 0;
  }
}
.product-box-selector__item:last-child {
  margin: 0;
}
.product-box-selector__item.half-width {
  width: calc(50% - 8px);
}
.product-box-selector__item.half-width:nth-child(even) {
  margin-right: 0;
}
@media screen and (max-width: 599px) {
  .product-box-selector__item.half-width {
    width: 100%;
    margin-right: 0;
  }
}
.product-box-selector__item.selected {
  border: 1px solid #000000;
  box-shadow: 0 0 0 2px #000000;
}
.product-box-selector__label {
  font-size: 16px;
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
}
.product-box-selector__value {
  display: inline-block;
  padding: 10px 0 0;
  word-break: break-word;
}
.product-box-selector__button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  padding: 10px;
  font-size: 19px;
  line-height: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  border: 0;
  background: none;
  text-align: left;
  justify-content: center;
  cursor: pointer;
}

.product-variation--summary {
  border-top: 1px solid #D9D9D9;
  color: #7A7A7A;
  font-weight: bold;
  margin-bottom: 20px;
  padding-top: 30px;
}

.product-variation__wrapper_select {
  margin-bottom: 20px;
}

.product-variation__wrapper__cascade_filters__dropdown {
  margin-bottom: 20px;
}
.product-variation__wrapper__cascade_filters__single {
  font-weight: bold;
  margin-bottom: 5px;
}
.product-variation__wrapper__cascade_filters__single .label {
  font-weight: normal;
}

.product-variation__value {
  font-weight: bold;
}

#commerce-product-add-to-cart-form {
  display: none;
}

.select-wrapper {
  margin-bottom: 20px;
}

/*# sourceMappingURL=main.css.map*/