body {
  background: #fff;
  color: #000;
  margin: 0px;
}
#bodyWrapper {
}
#bodyContent {
}
#header {
  height: 60px;
}
#storeLogo {
  float: left;
  margin-top: 5px;
}
#headerShortcuts {
  float: right;
  margin-top: 15px;
}
.infoBoxContainer {
}
.infoBoxHeading {
  padding: 2px;
  font-size: 11px;
}
.infoBoxContents {
  padding: 5px;
  font-size: 11px;
  line-height: 1.5;
}
.variant-color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.variant-text-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.variant-color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.variant-color-swatch {
  width: 30px;
  height: 30px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.variant-color-swatch.size-klein {
  width: 30px;
  height: 30px;
}
.variant-color-swatch.size-mittel {
  width: 60px;
  height: 60px;
}
.variant-color-swatch.size-gross {
  width: 120px;
  height: 120px;
}
.variant-color-swatch:hover {
  border-color: #666;
  transform: scale(1.08);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.variant-color-swatch:active {
  transform: scale(0.95);
}
.variant-color-swatch.selected {
  border-color: #4b4b4b;
  border-width: 3px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #4b4b4b;
}
.variant-color-inner {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.variant-color-label {
  padding: 8px 12px;
  border: 2px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
  min-width: 64px;
  height: 40px;
  text-align: center;
  border-radius: 3px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
.variant-color-label.text-wrap {
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
  padding: 6px 8px;
}
.variant-color-item .variant-color-label {
  min-width: 64px;
}
.variant-color-item:has(.variant-color-swatch.size-klein) .variant-color-label {
  min-width: 54px;
}
.variant-color-item:has(.variant-color-swatch.size-mittel) .variant-color-label {
  min-width: 84px;
}
.variant-color-item:has(.variant-color-swatch.size-gross) .variant-color-label {
  min-width: 144px;
}
.variant-color-label:hover {
  border-color: #666;
}
.variant-color-label.selected {
  background-color: #ff8200;
  color: #fff;
  font-weight: bold;
  border-color: #ff8200;
}
.variant-image-swatch {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
  background: #fff;
}
.variant-image-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.variant-image-swatch:hover {
  border-color: #666;
  transform: scale(1.05);
}
.variant-image-swatch.selected {
  border-color: #ff8200;
  border-width: 3px;
}
.variant-color-inner[style*=ffffff i],
.variant-color-inner[style*=fff i],
.variant-color-inner[style*=FFFFFF] {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .variant-color-row,
  .variant-text-row {
    gap: 8px;
  }
  .variant-option-values {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
  }
  .variant-color-swatch,
  .variant-color-swatch.size-klein {
    width: 25px;
    height: 25px;
  }
  .variant-color-swatch.size-mittel {
    width: 50px;
    height: 50px;
  }
  .variant-color-swatch.size-gross {
    width: 100px;
    height: 100px;
  }
  .variant-color-label {
    min-height: 36px;
    font-size: 11px;
    padding: 6px 8px;
  }
}
.variant-grid-container {
  display: grid;
  gap: 10px;
  max-width: 500px;
}
.variant-color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .variant-grid-container {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .variant-grid-container {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 300px;
  }
  .variant-color-swatch {
    width: 36px;
    height: 36px;
  }
  .variant-color-label {
    min-width: 60px;
    font-size: 11px;
  }
}
.contentText,
.contentText table {
  padding: 5px 0 5px 0;
  line-height: 1.5;
}
.productListTable {
  padding: 5px;
  font-size: 11px;
  line-height: 1.5;
}
.productListTable tr.alt td {
  background-color: #ecf6fc;
}
.fieldKey {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.5;
  width: 150px;
}
.fieldValue {
  font-size: 11px;
  line-height: 1.5;
}
h1 {
  font-size: 20px;
  margin-bottom: 0;
  padding-bottom: 5px;
}
img {
  border: 0;
}
table,
p {
  line-height: 1.5;
}
#piGal {
  float: right;
  width: 250px;
}
#piGal img {
  max-width: 250px;
  height: auto;
}
.buttonSet {
  clear: both;
}
.buttonAction {
}
.boxText {
  font-size: 10px;
}
.errorBox {
  font-size: 10px;
  background: #ffb3b5;
  font-weight: bold;
}
.stockWarning {
  font-size: 10px;
  color: #cc0033;
}
.productsNotifications {
  background: #f2fff7;
}
.orderEdit {
  font-size: 10px;
  color: #70d250;
  text-decoration: underline;
}
A {
  color: #000000;
  text-decoration: none;
}
A:hover {
  text-decoration: underline;
}
FORM {
  display: inline;
}
TR.header {
  background: #ffffff;
}
TR.headerNavigation {
  background: #bbc3d3;
}
TD.headerNavigation {
  font-size: 10px;
  background: #bbc3d3;
  color: #ffffff;
  font-weight: bold;
}
A.headerNavigation {
  color: #FFFFFF;
}
A.headerNavigation:hover {
  color: #ffffff;
}
TR.footer {
  background: #bbc3d3;
}
TD.footer {
  font-size: 10px;
  background: #bbc3d3;
  color: #ffffff;
  font-weight: bold;
}
.infoBox {
  background: #b6b7cb;
}
TD.infoBoxHeading {
  font-size: 10px;
  font-weight: bold;
  background: #bbc3d3;
  color: #ffffff;
}
TD.infoBox,
SPAN.infoBox {
  font-size: 10px;
}
TABLE.productListing {
  border: 1px;
  border-style: solid;
  border-color: #b6b7cb;
  border-spacing: 1px;
}
TD.pageHeading,
DIV.pageHeading {
  font-size: 20px;
  font-weight: bold;
  color: #9a9a9a;
}
TD.main,
P.main {
  font-size: 11px;
  line-height: 1.5;
}
TD.smallText,
SPAN.smallText,
P.smallText {
  font-size: 10px;
}
TD.accountCategory {
  font-size: 13px;
  color: #aabbdd;
}
SPAN.newItemInCart {
  font-size: 10px;
  color: #ff0000;
}
CHECKBOX,
INPUT,
RADIO,
SELECT {
  font-size: 11px;
}
TEXTAREA {
  width: 100%;
  font-size: 11px;
}
SPAN.greetUser {
  font-size: 12px;
  color: #f0a480;
  font-weight: bold;
}
TABLE.formArea {
  background: #f1f9fe;
  border-color: #7b9ebd;
  border-style: solid;
  border-width: 1px;
}
TD.formAreaTitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: bold;
}
SPAN.markProductOutOfStock {
  font-family: var(--font-body);
  font-size: 12px;
  color: #c76170;
  font-weight: bold;
}
SPAN.errorText {
  color: #ff0000;
}
.moduleRow {
}
.moduleRowOver {
  background-color: #D7E9F7;
  cursor: pointer;
}
.moduleRowSelected {
  background-color: #E9F4FC;
}
.checkoutBarFrom,
.checkoutBarTo {
  font-size: 10px;
  color: #8c8c8c;
}
.checkoutBarCurrent {
  font-size: 10px;
  color: #000000;
}
.tableBox {
  padding: 1em 0;
  max-width: 600px;
}
.messageBox {
  font-size: 10px;
}
.messageStackError,
.messageStackWarning,
.messageStackSuccess {
  font-size: 16px;
  padding: 0.125em;
  border-radius: 2px;
}
.messageStackError > img,
.messageStackSuccess > img,
.messageStackWarning > img {
  width: 20px;
  vertical-align: sub;
}
.inputRequirement {
  font-size: 12px;
  color: #ff0000;
  font-weight: bold;
}
.tdbLink a {
}
.tdbLink button {
}
.accountLinkList {
  list-style-type: none;
  margin: 2px 2px 2px 10px;
  padding: 5px;
}
.accountLinkListEntry {
  float: left;
  margin-right: 12px;
}
.progress {
  width: 1px;
  height: 12px;
  color: grey;
  font-size: 10px;
  background-color: #bbc3d3;
  padding-left: 5px;
}
.bar {
  border-style: solid;
  border-width: 1px;
  border-color: #bbc3d3;
}
#opt_bild_one {
  width: 100%;
}
#smartsuggest {
  position: absolute;
  float: left;
  background-color: #FFFFFF;
  text-align: left;
  font-size: 10px;
  border: 1px solid #bbc3d3;
  z-index: 999;
}
#smartsuggest div img {
  vertical-align: middle;
}
.suggest_link {
  background-color: #FFFFFF;
  padding: 2px 6px 2px 6px;
}
.suggest_link:visited {
  color: #FFFFFF;
}
.suggest_link_over {
  background-color: #bbc3d3;
  color: #000;
  padding: 2px 6px 2px 6px;
  border: red;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  #smartsuggest div {
    white-space: nowrap;
  }
}
@media screen and (max-width: 799px) {
  #smartsuggest div {
    white-space: normal;
  }
}
.untertitel {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 20px !important;
  justify-content: space-between !important;
}
.artikel-info-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.manufacturer-logo {
  flex: 0 0 auto !important;
  text-align: right !important;
}
.manufacturer-logo-img {
  max-width: 300px !important;
  max-height: 100px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
}
@media screen and (max-width: 768px) {
  .untertitel {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .artikel-info-wrapper {
    width: 100% !important;
    justify-content: flex-start !important;
  }
  .manufacturer-logo {
    width: 100% !important;
    margin-top: 15px !important;
    text-align: center !important;
  }
  .manufacturer-logo-img {
    max-width: 180px !important;
    max-height: 60px !important;
    margin: 0 auto !important;
  }
  #art_nr {
    max-width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .artikel-info-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .untertitel label {
    margin-bottom: 5px;
  }
  #art_nr {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
  }
  .manufacturer-logo {
    padding: 10px 0 !important;
  }
  .manufacturer-logo-img {
    max-width: 120px !important;
    max-height: 40px !important;
  }
}
.highlight-red.cat-preis,
.highlight-red .cat-preis,
.highlight-red .ab-preis-new,
.highlight-red .special_preis,
.highlight-red > .cart_item_price,
.highlight-red > .cart_item_price * {
  color: #e50000 !important;
}
.highlight-red .ab-preis-new::before {
  color: var(--standard-price) !important;
}
.stock-availability {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.stock-availability.is-available {
  color: #1a7f37;
  background: #e6f4ea;
}
.stock-availability.is-low {
  color: #b35900;
  background: #fff3e0;
}
.stock-availability.is-sold-out {
  color: #b00020;
  background: #fdecea;
}
.cat-link .stock-availability {
  margin: 4px 0;
}
