body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.inner_header .container_contact {
  display: none !important;
}
header.header--dark {
  position: static !important;
}
header.header--dark .inner_header {
  min-height: 68.8px;
}
@media (min-width: 1181px) {
  header.header--dark .inner_header {
    min-height: 85.8px;
  }
}
.content {
  flex: 1 0 auto;
  max-width: var(--shell-max) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 20px !important;
  background: white;
  box-shadow: none !important;
}
.checkout_process {
  padding: 1em 0;
  background: #f8f9fa;
  border-radius: 5px;
  margin: 0 auto 30px auto;
}
.check_o_container {
  margin: 8px 0px;
  text-align: center;
  color: #a2a2a2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  position: relative;
}
.check_o_container > .check_o_child:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.check_o_container > .check_o_child:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.check_o_container > .check_o_child:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.check_o_container > .check_o_child:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.check_o_container > .check_o_child:nth-child(5) {
  grid-column: 5;
  grid-row: 1;
}
.check_o_container > .dot:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}
.check_o_container > .dot:nth-child(7) {
  grid-column: 2;
  grid-row: 2;
}
.check_o_container > .dot:nth-child(8) {
  grid-column: 3;
  grid-row: 2;
}
.check_o_container > .dot:nth-child(9) {
  grid-column: 4;
  grid-row: 2;
}
.check_o_container > .dot:nth-child(10) {
  grid-column: 5;
  grid-row: 2;
}
.check_o_child {
  display: inline-block;
  margin: 0.3em;
  align-self: center;
  justify-self: center;
}
.check_o_child span,
.check_o_child a {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 13px;
}
.active_check_o {
  color: var(--primary);
  font-weight: bold;
}
.inactive_check_o {
  color: #999;
}
.check_o_child a.inactive_check_o:hover {
  color: #666;
  text-decoration: underline;
}
.dot {
  display: none;
}
@supports (display: grid) {
  .dot {
    z-index: 1;
    display: inline-block;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 23px;
    color: #fff !important;
    text-align: center;
    background-color: #969696;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    justify-self: center;
    align-self: center;
  }
}
.dot > a {
  color: #FFF;
  text-decoration: none;
}
.active_dot {
  background-color: var(--primary) !important;
}
.inactive_dot {
  background-color: #969696;
}
.check_o_line_container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@supports (display: grid) {
  .check_o_line_container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}
.check_o_line_container > p:first-of-type {
  visibility: hidden;
}
.check_o_line_container > p:last-of-type {
  visibility: hidden;
}
.connect_line {
  z-index: 0;
  background-color: #969696;
  height: 3px;
  margin: 0;
  padding: 0;
}
.blue_active {
  background-color: var(--primary);
}
.check_o_labels,
.check_o_dots {
  display: none !important;
}
.contentContainer {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  box-sizing: border-box;
}
.contentText {
  width: 100%;
}
.shopping_cart {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: white;
}
.shopping_cart hr,
.contentContainer hr {
  margin: 2px 0;
  border: none;
  border-top: 1px solid #333;
}
.shopping_cart .cart_item,
.contentContainer .cart_item {
  display: grid;
  grid-template-columns: 150px minmax(300px, 1fr) 200px 150px 30px;
  grid-gap: 15px;
  align-items: start;
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 150ms ease;
}
.cart_item.cart_item_off {
  font-weight: bold;
  background: #f8f9fa;
  border-bottom: 2px solid #333;
  padding: 10px 0;
  align-items: center;
}
.cart_item .cart_item_image {
  grid-column: 1;
}
.cart_item .cart_item_desc {
  grid-column: 2;
}
.cart_item .cart_item_buttons,
.cart_item .cart_item_buttons_header {
  grid-column: 3;
}
.cart_item .cart_item_price {
  grid-column: 4;
}
.contentContainer .cart_summary {
  display: grid !important;
  grid-template-columns: 150px minmax(300px, 1fr) 200px 150px 30px !important;
  grid-gap: 15px;
  padding: 8px 0;
  background: transparent;
  margin: 2px 0;
}
.contentContainer .cart_summary .cart_item_desc {
  grid-column: 1 / 4 !important;
  text-align: right !important;
  padding-right: 0;
  font-weight: normal;
  white-space: nowrap;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-self: end !important;
}
@media (max-width: 770px) {
  .checkout_process {
    display: none !important;
  }
}
@media (max-width: 621px) {
  #loginModules .contentContainer {
    padding: 20px !important;
  }
  *:not(.header):not(.header_checkout) {
    max-width: 100vw !important;
  }
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  [class*=col-] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wrapper {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .contentContainer {
    padding: 0 10px !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .cart_item_buttons {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 800px) {
  .container_logo img {
    max-width: 280px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .container_logo img {
    max-width: 220px !important;
    display: block !important;
  }
}
@media (max-width: 900px) {
  .shopping_cart .cart_item:not(.cart_summary):not(.cart_item_off),
  .contentContainer .cart_item:not(.cart_summary):not(.cart_item_off) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 10px;
    gap: 10px;
    text-align: center !important;
    position: relative;
  }
  .cart_item > .button_entfernen {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .cart_item_image {
    flex: none;
    order: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 10px;
  }
  .cart_item_image img {
    max-width: 100px;
    max-height: 100px;
  }
  .cart_item_desc {
    flex: none;
    order: 2;
    width: 100%;
    text-align: center !important;
    padding: 0 15px;
    margin-bottom: 10px;
  }
  .cart_item_price {
    flex: none;
    order: 3;
    width: 100% !important;
    text-align: center !important;
    padding: 5px !important;
    margin: 0 auto !important;
    font-size: 1.1rem;
    display: block !important;
    align-self: center !important;
    justify-content: center !important;
  }
  .cart_item_buttons {
    flex: none;
    order: 4;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 10px;
    margin: 10px auto 0 auto !important;
  }
  .cart_item.cart_item_off {
    display: none !important;
  }
  .contentContainer .cart_summary {
    display: grid !important;
    grid-template: auto / 1fr auto !important;
    gap: 0 15px !important;
    align-items: center !important;
    padding: 10px !important;
  }
  .contentContainer .cart_summary .cart_item_desc {
    grid-area: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
    justify-self: start !important;
    margin-bottom: 0 !important;
  }
  .contentContainer .cart_summary .cart_item_price {
    grid-area: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: right !important;
    justify-self: end !important;
  }
}
@media (max-width: 577px) {
  .shopping_cart_page {
    font-size: 16px !important;
  }
  .shopping_cart_page small,
  .shopping_cart_page .smallText {
    font-family: "General Sans", sans-serif !important;
    font-size: 0.875em !important;
    line-height: 1.3em !important;
  }
  .shopping_cart_page .cart_item_desc,
  .shopping_cart_page .cart_item_desc a,
  .shopping_cart_page .cart_item_price {
    font-size: 1rem !important;
  }
  .shopping_cart_page h1 {
    font-size: 1.4375em !important;
  }
  .shopping_cart_page h2 {
    font-size: 1.25em !important;
  }
  .shopping_cart_page h3 {
    font-size: 1.0625em !important;
  }
  .shopping_cart .cart_item_off,
  div.cart_item_off[style] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .cart_item_image .shopping_cart_header,
  .cart_item_desc .shopping_cart_header,
  .cart_item_price .shopping_cart_header,
  .cart_item_buttons_header .shopping_cart_header {
    display: none !important;
  }
  .shopping_cart_page .cart_bottom_one {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    padding: 15px 5px !important;
    gap: 5px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .shopping_cart_page .cart_bottom_one .left_center,
  .shopping_cart_page .cart_bottom_one .right_center {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 50% !important;
  }
  .shopping_cart_page .cart_bottom_one a,
  .shopping_cart_page .cart_bottom_one button,
  .shopping_cart_page .cart_bottom_one .secondary-button,
  .shopping_cart_page .cart_bottom_one .primary-button {
    width: 95% !important;
    max-width: none !important;
    padding: 0.8rem 0.3rem !important;
    margin: 0 !important;
    display: block !important;
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
  }
  .shopping_cart .cart_item:not(.cart_summary):not(.cart_item_off),
  .contentContainer .cart_item:not(.cart_summary):not(.cart_item_off) {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    padding: 15px 10px;
  }
  .cart_item_image {
    flex: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .cart_item_image img {
    max-width: 80px;
    max-height: 80px;
  }
  .cart_item_desc {
    flex: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .cart_item_price {
    margin: 0 !important;
    padding: 5px 0 !important;
  }
  .cart_item_buttons {
    flex: none;
    align-self: center;
    margin: 10px 0 0 0;
    flex-direction: column !important;
    gap: 5px;
  }
  .cart_item_buttons input[type=number] {
    width: 40px !important;
  }
  .qty-btn {
    width: 38px;
    height: 44px;
    font-size: 20px;
  }
  .qty-control input[type=number] {
    width: 50px;
    height: 44px;
  }
  body:not(.shopping_cart_page) .cart_bottom_one {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  body:not(.shopping_cart_page) .cart_bottom_one .primary-button,
  body:not(.shopping_cart_page) .cart_bottom_one .secondary-button {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media (max-width: 400px) {
  .contentContainer .cart_summary {
    grid-template-columns: 1fr auto !important;
  }
  .contentContainer .cart_summary .cart_item_desc {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
    justify-self: start !important;
  }
  .contentContainer .cart_summary .cart_item_price {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: right !important;
    justify-self: end !important;
  }
  .cart-shipping-note {
    text-align: center !important;
  }
}
@media screen and (min-width: 1650px) {
  #cart-subtotal,
  .cart_item_price {
    margin-right: 0;
  }
}
.cart_item_image {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cart_item_image img {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
}
.cart_item_desc {
  padding: 0 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.cart_item_desc a {
  word-break: break-word;
  overflow-wrap: break-word;
}
.cart_item_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5px;
  align-self: start !important;
}
.cart_item_buttons > div:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cart_item_buttons input[type=number] {
  width: 50px !important;
  padding: 4px !important;
  text-align: center;
  margin: 0;
}
.cart_item > .button_entfernen {
  grid-column: 5;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.button_entfernen a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button_entfernen a:hover {
  color: #d9534f;
}
.cart_item_price {
  text-align: center;
  font-weight: normal;
  font-size: 1.125rem;
  white-space: nowrap;
  align-self: start !important;
  min-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart_item_price .mwst {
  display: none;
}
.price-original {
  text-decoration: line-through;
  color: #5e5e5e;
  font-size: 1rem;
}
.price-special {
  color: #b90500;
}
.cart_item.cart_item_off .cart_item_image {
  justify-self: center !important;
  text-align: center !important;
}
.cart_item_off .cart_item_buttons_header {
  text-align: center;
  padding: 0;
}
.cart_item_off .cart_item_price {
  text-align: center;
  padding: 0;
}
.cart_item input[type=text] {
  width: 60px;
  padding: 5px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}
.shopping_cart_header {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}
.cart-notice {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 12px;
  color: #c45c00;
}
.cart-notice strong {
  font-weight: 600;
}
.cart_bottom_one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 30px;
}
.left_center,
.right_center {
  display: flex;
  align-items: center;
}
.shipping_select_c {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  align-items: stretch;
}
.shipping_select {
  flex: 1;
  min-width: 250px;
  height: 240px;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
.shipping_select:hover {
  border-color: currentColor;
  background: #f8f9fa;
}
.shipping_select > strong:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  height: 60px;
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 14px;
}
.shipping_select input[type=radio] {
  margin: 0;
  height: 20px;
}
.shipping_select span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 10px 0;
}
.shipping_select span strong {
  color: inherit;
  font-size: 1.3em;
  font-weight: bold;
}
.shipping_select p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: auto;
  font-size: 0.9em;
  color: #666;
  line-height: 1.4;
  text-align: center;
}
.shipping_select br + text,
.shipping_select br ~ text {
  font-size: 0.9em;
  color: #666;
}
.shipping_select > br {
  display: none;
}
.shipping_select {
  position: relative;
}
.shipping_select::after {
  content: "";
  display: block;
  height: 30px;
}
.payment_container {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.payment {
  flex: 1;
  min-width: 250px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}
.payment:hover {
  border-color: currentColor;
  background: #f8f9fa;
}
.payment input[type=radio] {
  margin-right: 10px;
}
.payment strong {
  font-size: 16px;
  color: #333;
}
.payment div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-checkout {
  flex-shrink: 0;
  background: #f8f9fa;
  margin-top: auto;
  padding: 30px 0;
  width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table td {
  padding: 10px;
  vertical-align: middle;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-danger {
  color: var(--danger-text, #721c24);
  background-color: var(--danger-bg, #f8d7da);
  border-color: var(--danger-border, #f5c6cb);
}
.alert-info {
  color: var(--info-text, #004085);
  background-color: var(--info-bg, #d1ecf1);
  border-color: var(--info-border, #bee5eb);
}
.alert-warning {
  color: var(--warning-text, #856404);
  background-color: var(--warning-bg, #fff3cd);
  border-color: var(--warning-border, #ffeeba);
}
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(6, 93, 184, 0.1);
}
.contentText {
  margin-bottom: 20px;
}
.center {
  text-align: center;
}
.ui-widget {
  margin-bottom: 20px;
}
.infoBoxContainer {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.infoBoxHeading {
  background: #f8f9fa;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}
.infoBoxContents {
  padding: 15px;
  background: white;
}
.qty-control {
  display: inline-flex;
  align-items: stretch;
}
.qty-btn {
  width: 36px;
  height: 42px;
  border: 2px solid var(--quantity-border, #ccc);
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.qty-minus {
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.qty-plus {
  border-left: none;
  border-radius: 0 4px 4px 0;
}
.qty-btn:hover {
  background: #f5f5f5;
}
.qty-btn:disabled {
  cursor: default;
}
.qty-control input[type=number] {
  width: 55px;
  text-align: center;
  border: 2px solid var(--quantity-border, #ccc);
  border-left: none;
  border-right: none;
  border-radius: 0;
  height: 42px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  -moz-appearance: textfield;
}
.qty-control input:focus,
.qty-control .qty-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  z-index: 1;
}
.qty-control input[type=number]::-webkit-inner-spin-button,
.qty-control input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-info {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  line-height: 1.4;
  text-align: right;
}
.qty-invalid input,
.qty-invalid .qty-btn {
  border-color: #d9534f !important;
  color: #d9534f;
}
.js-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
.cart-header__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.cart-header__count {
  color: #8a857d;
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
}
.cart-header__continue {
  color: #5a574f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.cart-header__continue:hover {
  color: var(--primary);
}
.cart-auth-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #edf6ee;
  border: 1px solid #cfe6d1;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 0 0 20px;
}
.cart-auth-banner__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cart-auth-banner__info {
  flex: 1;
}
.cart-auth-banner__name {
  font-size: 15px;
  font-weight: 700;
}
.cart-auth-banner__address {
  font-size: 13px;
  color: #3f6b47;
}
.cart-auth-banner__address a {
  color: #1f8a3b;
  font-weight: 600;
}
.cart-auth-banner__logoff {
  font-size: 13px;
  color: #5a574f;
  text-decoration: underline;
  flex: none;
}
body.shopping_cart_page .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
body.shopping_cart_page .cart-layout__summary {
  position: sticky;
  top: var(--sticky-offset);
}
@media (max-width: 900px) {
  body.shopping_cart_page .cart-layout {
    grid-template-columns: 1fr;
  }
  body.shopping_cart_page .cart-layout__summary {
    position: static;
  }
  .cart-header {
    flex-wrap: wrap;
    gap: 8px;
  }
}
body.shopping_cart_page .cart_item.cart_item_off {
  display: none !important;
}
body.shopping_cart_page .contentContainer .cart_item:not(.cart_summary):not(.cart_item_off) {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  align-content: start;
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
body.shopping_cart_page .cart_item .cart_item_image {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 96px;
  overflow: hidden;
}
body.shopping_cart_page .cart_item .cart_item_image img {
  max-width: 100%;
  max-height: 150px;
}
body.shopping_cart_page .cart_item .cart_item_desc {
  grid-column: 2;
  grid-row: 1 / span 3;
}
body.shopping_cart_page .cart_item > .button_entfernen {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}
body.shopping_cart_page .cart_item .cart_item_buttons {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}
body.shopping_cart_page .cart_item .cart_item_price {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  font-weight: 700;
  font-size: 20px;
}
.cart-item-badge {
  display: table;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 6px;
}
.cart-item-badge--ticket {
  background: var(--primary);
}
.cart-item-badge--merch {
  background: #0a0a0a;
}
.cart-item-unit-price {
  font-size: 13px;
  color: #a8a49c;
  margin-top: 4px;
}
.cart-item-venue,
.cart-item-variant {
  font-size: 14px;
  color: #8a857d;
  margin-top: 2px;
}
body.shopping_cart_page .qty-btn,
body.shopping_cart_page .qty-control input[type=number] {
  border-width: 1px;
  border-color: #e5e3df;
}
body.shopping_cart_page .qty-btn:hover {
  background: #fff;
  color: var(--primary);
}
.cart-summary-card {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 14px;
  padding: 24px;
}
.cart-summary-card__heading {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 18px;
}
body.shopping_cart_page .cart-summary-card .cart_summary {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 0 !important;
  padding: 6px 0 !important;
  margin: 2px 0 !important;
}
body.shopping_cart_page .cart-summary-card .cart_item_desc {
  grid-column: 1 !important;
  grid-row: 1 !important;
  text-align: left !important;
  justify-self: start !important;
  display: block !important;
  font-weight: 500;
  white-space: normal !important;
  min-height: auto !important;
}
body.shopping_cart_page .cart-summary-card .cart_item_price {
  grid-column: 2 !important;
  grid-row: 1 !important;
  text-align: right !important;
  justify-self: end !important;
  font-weight: 700;
  justify-content: flex-start !important;
}
body.shopping_cart_page .cart-summary-card #cart-total-row {
  border-top: 1px solid #e5e3df;
  margin-top: 10px !important;
  padding-top: 14px !important;
}
body.shopping_cart_page .cart-summary-card #cart-total-row .cart_item_desc,
body.shopping_cart_page .cart-summary-card #cart-total-row .cart_item_price {
  font-size: 18px;
  font-weight: 700;
}
.cart-summary-card__cta {
  display: block;
  width: 100%;
  margin: 20px 0 0;
  height: 56px;
  border-radius: 10px;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
.cart-trust-box {
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-trust-box__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a473f;
}
.cart-trust-box__check {
  color: #1f8a3b;
  display: flex;
  flex: none;
}
@media (max-width: 768px) {
  .container_logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-self: flex-start !important;
  }
  .container_logo img {
    margin-right: 26px !important;
    display: block !important;
  }
}
