/**
 * Styles for the Details Page
 */
.page-container.article-details {
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
  color: #333;
  position: relative;
}
.article-header {
  background-color: whitesmoke;
  border-bottom: 1px solid lightgray;
}
.article-header .article-header-row {
  padding: 20px 20px 0 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.article-header .article-header-row .title-block {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}
.article-header .article-header-row .title-block .article-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0;
  word-wrap: break-word;
}
.article-header .article-header-row .title-block .article-title .article-main-title {
  display: inline;
}
.article-header .article-header-row .title-block .article-info {
  font-size: 18px;
  line-height: 1.4;
}
.article-header .article-header-row .title-block .article-info .product-family,
.article-header .article-header-row .title-block .article-info .ordercode,
.article-header .article-header-row .title-block .article-info .classification {
  margin: 5px 0;
}
.article-header .article-header-row .title-block .article-info .product-family-link {
  color: #0072c6;
  text-decoration: none;
}
.article-header .article-header-row .title-block .article-info .product-family-link:hover {
  text-decoration: underline;
}
.article-header .article-header-row .title-block .article-info .classification {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-style: italic;
  color: #555;
}
.article-header .article-header-row .title-block .article-info .classification .icon {
  max-height: 20px;
  max-width: 40px;
}
.article-header .article-header-row .manufacturer {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: right;
}
.article-header .article-header-row .manufacturer .manufacturer-logo-wrapper {
  display: inline-block;
}
.article-header .article-header-row .manufacturer .manufacturer-logo-wrapper .manufacturer-logo {
  display: block;
  max-height: 60px;
  max-width: 200px;
  margin: 0 auto;
}
.article-header .article-header-row .manufacturer .manufacturer-logo-wrapper .manufacturer-name {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
  word-wrap: break-word;
  text-align: center;
  white-space: nowrap;
}
.article-header .images-row {
  position: relative;
  padding: 10px 10px 20px 10px;
}
.article-header .images-list:after {
  content: "";
  display: table;
  clear: both;
}
.article-header .image-grid-item:hover {
  cursor: pointer;
}
.article-header .image-grid-item:hover .image-wrapper {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.article-header .image-grid-item .image-square-img {
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  transition: all 0.2s ease-in-out;
}
.article-header .image-grid-item:hover .image-square-img {
  padding: 0;
  max-width: 100%;
  max-height: 100%;
}
.article-header .image-grid-item.gallery-overlay {
  display: none;
  cursor: pointer;
}
.article-header .image-grid-item.gallery-overlay.visible {
  display: block;
}
.article-header .image-grid-item.gallery-overlay .overlay-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.article-header .image-grid-item.gallery-overlay .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  border: 1px solid #ddd;
  display: table;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.article-header .image-grid-item.gallery-overlay .overlay-inner {
  display: table-cell;
  vertical-align: middle;
}
.article-header .image-grid-item.gallery-overlay .overlay-count {
  display: block;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
}
.article-header .image-grid-item.gallery-overlay .overlay-label {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}
.article-header .image-grid-item.gallery-overlay:hover .overlay-content {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.article-header .images-row.expanded .image-grid-item.hidden {
  display: block;
}
.article-header .images-row.expanded .gallery-overlay .overlay-count {
  display: none;
}
.article-header .image-grid-item {
  float: left;
  width: 50%;
  padding: 10px;
}
@media (min-width: 768px) {
  .article-header .image-grid-item {
    width: 33.333%;
  }
}
@media (min-width: 1024px) {
  .article-header .image-grid-item {
    width: 20%;
  }
}
.article-header .image-grid-item .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: white;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
}
.article-header .image-grid-item .image-square-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.article-header .image-grid-item .image-info-icon {
  position: absolute;
  top: 0;
  margin-top: 5px;
  margin-left: 5px;
  z-index: 10;
  pointer-events: none;
}
.article-header .image-grid-item.hidden {
  display: none;
}
.article-header .actions-row {
  padding-bottom: 30px;
  padding-top: 10px;
}
.article-header .actions-row .action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 759px) {
  .article-header .actions-row .action-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.article-header .actions-row .action-btn {
  min-width: 150px;
  width: 100%;
  font-size: 1rem;
}
.article-header .actions-row .action-btn:first-child {
  margin-bottom: 10px;
}
.article-header .actions-row .action-btn .material-icons {
  line-height: 24px;
}
@media screen and (min-width: 400px) {
  .article-header .actions-row .action-btn {
    width: 320px;
  }
}
@media screen and (min-width: 759px) {
  .article-header .actions-row .action-btn {
    margin-bottom: 0;
  }
  .article-header .actions-row .action-btn:not(:last-child) {
    margin-right: 15px;
  }
  .article-header .actions-row .action-btn:first-child {
    margin-bottom: 0;
  }
}
.article-body {
  background-color: #fff;
  font-size: 1.6em;
}
.article-body .where-to-buy-row {
  font-size: 1.1rem;
  padding: 0;
}
.article-body .where-to-buy-container {
  border: none;
  position: relative;
  margin-top: 0;
}
.article-body .where-to-buy-container .where-to-buy-header {
  display: none;
}
.article-body .where-to-buy-container .where-to-buy-expand-btn {
  display: none;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 16px;
  background-color: white;
  color: #009fe3;
  border: 1px solid #009fe3;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}
.article-body .where-to-buy-container .where-to-buy-expand-btn:hover {
  background-color: #005a9e;
  color: white;
  border: 1px solid #005a9e;
}
.article-body .where-to-buy-container .where-to-buy-expand-btn.visible {
  display: block;
}
.article-body .where-to-buy-container .where-to-buy-expand-btn .material-icons {
  vertical-align: middle;
  font-size: 18px;
  margin-left: 4px;
}
.article-footer {
  padding: 20px 15px 5px;
  border-top: 1px solid #e5e5e5;
}
.article-footer .logo img {
  width: 200px;
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.similar-components-wrapper .similar-components-headline {
  margin: 20px;
  text-align: center;
}
.similar-components-wrapper .similar-components h3 {
  display: none;
}
.similar-components-wrapper .similar-components .similar {
  width: 234px;
}
.overview-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.overview-content-wrapper .overview-help-image {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
  margin-right: 20px;
  padding-top: 10px;
}
.overview-content-wrapper .overview-help-image:hover {
  cursor: pointer;
}
.overview-content-wrapper .overview-help-image:hover .image-wrapper {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.overview-content-wrapper .overview-help-image:hover .image-square-img {
  padding: 0;
  max-width: 100%;
  max-height: 100%;
}
.overview-content-wrapper .overview-help-image .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: white;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
}
.overview-content-wrapper .overview-help-image .image-square-img {
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  width: auto;
  height: auto;
  display: block;
  transition: all 0.2s ease-in-out;
}
.overview-content-wrapper .overview-help-image .image-info-icon {
  position: absolute;
  top: 0;
  margin-top: 5px;
  margin-left: 5px;
  z-index: 10;
  pointer-events: none;
}
.overview-content-wrapper .overview-classifications {
  padding-top: 5px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.overview-content-wrapper .overview-classifications .DINGTCSwitches {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overview-content-wrapper .overview-classifications .DINGTCSwitches > * {
  margin-right: 5px;
  margin-bottom: 5px;
}
.overview-content-wrapper .overview-classifications .DINGTCSwitches > *:last-child {
  margin-right: 0;
}
.overview-content-wrapper .overview-classifications .k-dropdown {
  width: 100%;
}
@media (max-width: 767px) {
  .overview-content-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .overview-content-wrapper .overview-help-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .overview-content-wrapper .overview-help-image .image-wrapper {
    padding-top: 50%;
  }
}
.overview-content-wrapper + .tightGrid {
  margin-top: 12px;
}
