:root {
  --sc-color-primary-h: 201.5;
  --sc-color-primary-s: 100%;
  --sc-color-primary-l: 38%;
  --sc-color-primary: hsl(201.5, 100%, 38%);
  --sc-color-secondary-h: 0;
  --sc-color-secondary-s: 0.0%;
  --sc-color-secondary-l: 13.3%;
  --sc-color-secondary: (0, 0.0%, 13.3%, 1);
  --sc-menu-link-color-hover: var(--sc-color-primary);
  --sc-footer-bg: white;
  --sc-footer-color: var(--sc-shade-darkest);
  --sc-shade-darkest: #101112;
  --sc-shade-dark: #383B3E;
  --sc-shade-neutral: #979EA4;
  --sc-shade-light: #D0D4D8;
  --sc-shade-lighter: #E0E2E5;
  --sc-shade-lightest: #EFF1F2;
  --sc-border-radius: 0px;
  --sc-border-rounded: 10px;
  --sc-font-micro: 12px;
  --sc-max-width: 1260px;
  --sc-grid-gap: 2rem;
  --sc-notice-bar-bg: #e5eff5;
  --sc-notice-bar-color: rgb(0, 98, 154);
}

body {
  font-size: 1rem;
  --font-size: 1rem;
  line-height: 1.5;
  -ms-overflow-style: scrollbar;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-x: none;
}

.SC-Accordion_header {
  padding-left: var(--sc-spacing-small);
}
.SC-Accordion_header_heading {
  font-weight: var(--sc-font-normal);
}
.SC-Accordion_header.sc-reverse {
  flex-direction: row-reverse;
  gap: var(--sc-spacing-small);
  padding-left: 0;
}
.SC-Accordion_body {
  background-color: white;
  padding: var(--sc-spacing-medium);
}

.sc-accordion {
  background-color: var(--sc-shade-lightest);
  transition: all 0.3s ease;
}
.sc-accordion.is-active {
  background-color: white;
}
.sc-accordion:first-child {
  border-top-left-radius: var(--sc-border-rounded);
  border-top-right-radius: var(--sc-border-rounded);
}
.sc-accordion:last-child {
  border-bottom-left-radius: var(--sc-border-rounded);
  border-bottom-right-radius: var(--sc-border-rounded);
}
.sc-accordion_body {
  height: 0;
  overflow: hidden;
}
.sc-accordion_body.is-expanded {
  height: auto;
}
.sc-accordion_icon {
  transition: all 0.3s ease;
}
.sc-accordion_icon.is-active {
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.SC-Banner {
  background-position: center;
  background-repeat: no-repeat;
}
.SC-Banner_container {
  min-height: 600px;
  padding-left: var(--sc-spacing-medium);
  padding-right: var(--sc-spacing-medium);
}
.SC-Banner_content {
  font-size: 1rem;
  max-width: 600px;
}
.SC-Banner_content.sc-expanded {
  max-width: 710px;
}
.SC-Banner_content.sc-offset {
  background-color: transparent;
  color: white;
}
.SC-Banner_content.sc-offset .SC-Field_input {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.SC-Banner_content.sc-offset .SC-Field_input::placeholder {
  color: white;
}
@media screen and (min-width: 768px) {
  .SC-Banner_content {
    width: 66.66%;
  }
}
.SC-Banner_heading {
  color: currentColor;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--sc-spacing-base);
}
@media screen and (min-width: 768px) {
  .SC-Banner_heading {
    font-size: 2.125rem;
  }
}
.SC-Banner_subheading {
  font-size: 1rem;
}
.SC-Banner .SC-Button {
  border: 1px solid var(--sc-color-primary);
}

.SC-Breadcrumb {
  font-size: 0.75rem;
}
.SC-Breadcrumb a {
  color: var(--sc-shade-darkest);
}

.SC-Button {
  font-size: var(--sc-font-base);
  font-weight: var(--sc-font-normal);
  padding: 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
  /*
  &:hover:not(:disabled) {
    color: var(--sc-color-secondary);
  }*/
}
.SC-Button-outline {
  border: 1px solid var(--sc-color-primary);
}
.SC-Button-add {
  border: 1px solid var(--sc-color-primary);
}
.SC-Button-buy {
  border: 1px solid var(--sc-color-secondary);
}
@media screen and (max-width: 768px) {
  .SC-Button-icon {
    justify-content: start;
  }
}

@media screen and (min-width: 1400px) {
  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .SC-CardGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.Checkbox_input,
.SC-Checkbox_input {
  background-color: #71767c;
  border: 1px solid #71767c;
  border-radius: 0;
  margin-right: 0.5rem;
  height: 1.5rem;
  width: 1.5rem;
}
.Checkbox_input:checked,
.SC-Checkbox_input:checked {
  background-image: url(https://res.cloudinary.com/hpfw5ili0/image/upload/v1712040182/media/checkmark-bold-white.svg);
  background-size: 100%;
}

.SC-CheckoutLogin {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sc-spacing-small);
}
@media screen and (min-width: 1268px) {
  .SC-CheckoutLogin {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--sc-grid-gap);
  }
}

.sc-container:not(.sc-container-capsule) {
  max-width: var(--sc-max-width);
}

.SC-ContentBlockContainer {
  padding: 0 0;
}
.SC-ContentBlockContainer_body.sc-none {
  display: grid;
  gap: 2rem;
}
.SC-ContentBlockContainer_header.sc-expand, .SC-ContentBlockContainer_footer.sc-expand {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 768px) {
  .sc-copyright {
    order: 3;
  }
}

.sc-count {
  background-color: var(--sc-color-primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  height: 1rem;
  line-height: 1rem;
  min-width: 1rem;
  padding: 0 0.25rem;
  position: absolute;
  top: 4px;
  right: -10px;
}

@media screen and (max-width: 768px) {
  #SC-ContentBlockContainer-returns-policy .sc-one-to-two-column {
    gap: 0;
  }
}

.Field,
.SC-Field {
  min-height: 3rem;
}
.Field-special,
.SC-Field-special {
  border-bottom: 1px solid var(--sc-shade-darkest);
}
.Field-icon input,
.SC-Field-icon input {
  font-size: var(--sc-font-tiny);
  padding-left: 10px;
  padding-right: 45px;
  width: 100%;
}
.Field-icon svg,
.SC-Field-icon svg {
  right: 18px;
  left: auto;
  height: 20px;
  width: 20px;
}
.Field_input:not([type=search]), .Field_textarea,
.SC-Field_input:not([type=search]),
.SC-Field_textarea {
  background-color: #e0e2e5;
  border: unset;
  border-bottom: 1px solid #000000;
  box-shadow: none;
}
.Field_input:not([type=search]):active, .Field_input:not([type=search]):focus, .Field_textarea:active, .Field_textarea:focus,
.SC-Field_input:not([type=search]):active,
.SC-Field_input:not([type=search]):focus,
.SC-Field_textarea:active,
.SC-Field_textarea:focus {
  background-color: #e8f1ff;
}
.Field_textarea:focus, .Field_textarea:active,
.SC-Field_textarea:focus,
.SC-Field_textarea:active {
  outline: none;
}
.Field_label,
.SC-Field_label {
  font-size: 0.75rem;
  font-weight: 300;
}
.Field_select,
.SC-Field_select {
  background-color: #e0e2e5;
  background-image: url(https://res.cloudinary.com/hpfw5ili0/image/upload/v1712040647/media/arrow_down.svg);
  background-size: 1.5rem;
  border-color: #e0e2e5;
  box-shadow: none;
}
.Field_input,
.SC-Field_input {
  background-color: #e0e2e5;
  border-top: none;
  border-right: none;
  border-left: none;
  box-shadow: none;
  border-bottom: 1px solid #000000;
}
.Field_input::placeholder,
.SC-Field_input::placeholder {
  color: #000000;
  opacity: 1;
}
.Field_input:focus,
.SC-Field_input:focus {
  background-color: #e0e2e5;
}
.SC-Footer {
  font-weight: 400;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 0;
  padding-right: 0;
}
.SC-Footer_links {
  display: flex;
  flex-direction: column;
  gap: var(--sc-spacing-large);
}
@media screen and (min-width: 992px) {
  .SC-Footer_links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .SC-Footer_links .SC-Menu {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .SC-Footer .SC-Menu {
    flex-direction: column;
  }
}
.SC-Footer .SC-Menu_item.tier1.parent > a {
  cursor: auto;
}
.SC-Footer_bottom .SC-Menu {
  width: auto;
}
.SC-Footer_bottom .SC-Menu.tier1 {
  column-gap: var(--sc-spacing-base);
}

.SC-Grid_main-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .SC-Grid_main-page {
    gap: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .SC-CardGrid {
    gap: var(--sc-spacing-small);
  }
}

.SC-Header {
  box-shadow: none;
  font-weight: 300;
}
.SC-Header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.SC-Header_inner {
  max-width: var(--sc-max-width);
}
@media screen and (min-width: 768px) {
  .SC-Header_inner {
    min-height: 100px;
  }
}
.SC-Header_inner_center.sc-slim {
  max-width: 100px;
}
.SC-Header_inner_center.sc-expanded {
  max-width: unset;
  width: auto;
}
.SC-Header_inner_center.sc-expanded .SC-Menu {
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .SC-Header_inner_right {
    gap: var(--sc-spacing-medium);
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  #SC-HeaderMenuSecondary {
    gap: var(--sc-spacing-medium);
  }
}

@media screen and (min-width: 768px) {
  .SC-Icon {
    height: 25px;
    width: 25px;
  }
}

.SC-IconCard_image {
  height: 175px;
  width: 175px;
}
.SC-IconCard_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.SC-ImageBesideText {
  align-items: start;
  gap: var(--sc-spacing-tiny);
}
.SC-ImageBesideText.sc-align-top {
  flex-direction: column;
}
.SC-ImageBesideText.sc-align-bottom {
  flex-direction: column-reverse;
}
.SC-ImageBesideText_content.image_separator {
  text-align: center;
  height: 100%;
}
.SC-ImageBesideText_headline {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .SC-ImageBesideText_headline {
    font-size: 2rem;
  }
}
.SC-ImageBesideText_image svg {
  fill: rgba(0, 0, 0, 0.05);
}
.SC-ImageBesideText_image iframe {
  min-height: 300px;
}
.SC-ImageBesideText_play {
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 3px solid white;
  top: 0;
}
.SC-ImageBesideText_cta {
  background-color: var(--sc-color-primary);
  color: white;
  font-size: 1rem;
  font-weight: var(--sc-font-normal);
  padding: var(--sc-spacing-small) var(--sc-spacing-medium);
}
.SC-ImageBesideText_cta:hover {
  background-color: #00629a;
  text-decoration: none;
}

.SC-Logo_image {
  min-width: 145px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .SC-Logo_image {
    max-width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .SC-Menu.tier1.dropdown {
    color: initial;
  }
}
.SC-Menu_item.tier2:not(.parent) > a, .SC-Menu_item.tier3:not(.parent) > a {
  opacity: 1;
}
.SC-MenuTrigger {
  position: relative;
  width: 25px;
}
.SC-MenuTrigger svg {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .SC-Cart.SC-Menu.dropdown:not(.tier1) {
    padding: var(--sc-spacing-medium);
  }
}

.SC-Modal_wrapper {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 200px;
  width: 100%;
  height: 100%;
  z-index: var(--sc-depth-foreground);
}

.SC-Navbar_inner {
  max-width: var(--sc-max-width);
}

.SC-Notice {
  background: var(--sc-notice-bar-bg);
  color: var(--sc-notice-bar-color);
  border-radius: var(--sc-border-radius);
  font-weight: var(--sc-font-normal);
  font-size: var(--sc-font-base);
  line-height: 1.4;
  padding: 0.75rem 1rem;
}

.SC-PageHeader.sc-expanded h1 {
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .SC-PageHeader.sc-expanded h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .SC-PageHeader.sc-expanded h1 {
    font-size: 4rem;
  }
}
.SC-PageHeader_heading {
  margin-bottom: var(--sc-spacing-small);
}
.SC-PageHeader_subheading {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .SC-PoweredBanner_text p {
    max-width: 90%;
    margin-left: auto;
  }
}

.SC-PrivacyBanner {
  background-color: rgba(113, 118, 124, 0.2509803922);
  backdrop-filter: blur(0.25rem);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: var(--sc-depth-overlay);
}
.SC-PrivacyBanner_body {
  height: 100%;
  max-width: 700px;
}
@media screen and (min-width: 768px) {
  .SC-PrivacyBanner_body {
    height: auto;
  }
}
.SC-PrivacyBanner_actions_settings button {
  background-color: transparent;
  color: var(--sc-color-primary);
}
.SC-PrivacyBanner_actions_reject {
  background: transparent !important;
  border: 1px solid var(--sc-color-primary) !important;
  color: var(--sc-color-primary) !important;
}
.SC-PrivacyBanner_actions_accept {
  background: var(--sc-color-primary) !important;
}
.SC-PrivacyBanner_actions button {
  border-radius: 0;
}

.SC-PrivacySettingsForm {
  backdrop-filter: blur(0.25rem);
}
.SC-PrivacySettingsForm_overlay {
  background-color: rgba(113, 118, 124, 0.2509803922);
}

.SC-ProductCard {
  background-color: white;
  padding: var(--sc-spacing-small);
}
@media screen and (min-width: 768px) {
  .SC-ProductCard {
    padding: 16px 16px 11px;
  }
}
.SC-ProductCard_headline {
  font-size: var(--sc-font-small);
}
@media screen and (min-width: 768px) {
  .SC-ProductCard_headline {
    font-size: var(--sc-font-large);
  }
}
@media screen and (max-width: 768px) {
  .SC-ProductCard_actions .SC-Button {
    font-size: var(--sc-font-small);
  }
}

.SC-ProductDisplay_details [data-bundle-price] [data-line-item-amount] {
  margin-bottom: 0;
  font-weight: 600;
}

#SC-ProductContentBlocks[data-bundle-anchor-variants] [data-variant-id] div.sc-mb {
  display: none;
}

.SC-ProductGallery {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.SC-ProductGallery_body {
  background-color: white;
  overflow: hidden;
  position: relative;
  height: 90vh;
  width: 90vw;
}

.SC-ProductImages {
  background: 0, 0, 0, 0.5;
}
@media screen and (min-width: 768px) {
  .SC-ProductImages.sc-sticky {
    height: auto;
    position: sticky;
    top: 130px;
  }
}
@media screen and (min-width: 1440px) {
  .SC-ProductImages_thumbnails {
    width: 120px;
  }
}
.SC-ProductImages_thumbnails_track {
  padding-left: var(--sc-spacing-micro);
  padding-right: var(--sc-spacing-micro);
}

#SC-products-index {
  background-color: var(--sc-shade-lightest);
}

.SC-QuantityPicker-large .SC-QuantityPicker_trigger {
  padding: 0.75rem 1rem;
  box-shadow: none;
  border-color: var(--sc-color-primary);
  color: var(--sc-color-primary);
}
.SC-QuantityPicker_trigger {
  border-color: var(--sc-color-primary);
  box-shadow: none;
  color: var(--sc-color-primary);
}

.shimmer {
  background-color: var(--sc-shade-lighter);
  display: inline-block;
  mask: linear-gradient(-60deg, #000 30%, rgba(0, 0, 0, 0.3333333333), #000 70%) right/350% 100%;
  animation: shimmer 2.5s infinite;
}

.bar {
  width: 100%;
  height: 25px;
}

.bar.title {
  width: 45%;
}

.bar.button {
  width: 25%;
}

@keyframes shimmer {
  100% {
    mask-position: left;
  }
}
.CB-Slideshow {
  margin-bottom: 0;
}

.SC-SuperGraphic::before {
  background-image: url(https://res.cloudinary.com/hpfw5ili0/image/upload/v1711060451/media/Bosch-Supergraphic_RGB.svg);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  z-index: var(--sc-depth-overlay);
}

.SC-Switch {
  position: relative;
}
.SC-Switch_icon {
  position: absolute;
  transition: all 0.15s ease;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.SC-Switch input {
  display: block;
  cursor: pointer;
  height: 1.5rem;
  width: 1.5rem;
}
.SC-Switch input[type=checkbox] {
  appearance: none;
  background-color: var(--sc-shade-neutral);
}
.SC-Switch input[type=checkbox]:checked {
  background-color: var(--sc-color-primary);
}
.SC-Switch input[type=checkbox]:checked ~ .SC-Switch_icon {
  opacity: 1;
}

.SC-Tab-button {
  font-weight: var(--sc-font-normal);
  padding: 0.75rem 1rem;
}
.SC-Tab-button.is-active::after {
  border-top: none;
  border-right: none;
  border-left: none;
}

.TabPanel {
  display: flex !important;
  flex-wrap: wrap !important;
}
.TabPanel_tab {
  background-color: var(--sc-shade-lightest);
  font-size: var(--sc-font-base) !important;
  font-weight: var(--sc-font-normal) !important;
  padding: var(--sc-spacing-medium);
  width: 100%;
}

.sc-bg-primary {
  background-color: var(--sc-color-primary);
}

.sc-bg-secondary {
  background-color: var(--sc-color-secondary);
}

.sc-color-white {
  color: white;
}

.sc-color-blue-light {
  color: #35a6c9;
}

@media screen and (min-width: 768px) {
  .sc-md\:align-items-center {
    align-items: center;
  }
}

.sc-grid {
  display: grid;
}

.sc-row-gap {
  row-gap: var(--sc-spacing-small);
}
@media screen and (min-width: 768px) {
  .sc-row-gap {
    row-gap: var(--sc-spacing-medium);
  }
}
@media screen and (min-width: 992px) {
  .sc-row-gap {
    row-gap: var(--sc-spacing-base);
  }
}

.sc-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sc-mt-auto {
  margin-top: auto;
}

.sc-ml-auto {
  margin-left: auto;
}

.sc-md\:pr-large {
  padding-right: var(--sc-spacing-large);
}

.sc-font-micro {
  font-size: var(--sc-font-micro);
}

.tns-controls button {
  background-color: transparent;
  background-image: url(https://res.cloudinary.com/hcfpo2i8z/image/upload/v1711493861/media/back-left-white.svg);
  background-size: 100%;
}
.tns-controls button[data-controls=prev] {
  transform: translateY(-50%) rotate(360deg);
}
.tns-controls button[data-controls=next] {
  transform: translateY(-50%) rotate(-180deg);
}

@media screen and (min-width: 768px) {
  .sc-md\:width-auto {
    width: auto;
  }
}

/*# sourceMappingURL=styles.css.map */