@charset "UTF-8";

:root {
  --bm-page-bg: #e8f4fb;
  --bm-shell: 1360px;
  --bm-sidebar: 210px;
  --bm-right-sidebar: 190px;
  --bm-header-height: 154px;
  --bm-header-tablet-height: 170px;
  --bm-header-mobile-height: 154px;
  --bm-header-top-height: 118px;
  --bm-sidebar-bg: linear-gradient(180deg, #003e77 0%, #06466f 8%, #053b60 46%, #032f50 100%);
  --bm-sidebar-line: #0a5c84;
  --bm-link: #006f9f;
  --bm-text: #403c3a;
  --bm-card-bg: #fff;
  --bm-card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --bm-card-hover-shadow: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --bm-radius: 6px;
  --bm-radius-sm: 4px;
  --bm-transition: 150ms ease;
}

html,
body.site {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body.site {
    overflow-x: hidden;
  }
}

body.site {
  min-height: 100vh;
  color: var(--bm-text);
  background: var(--bm-page-bg);
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.container-header {
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: none;
  height: var(--bm-header-height);
  min-height: var(--bm-header-height);
  margin: 0;
  background: transparent !important;
  box-shadow: none;
  overflow: visible;
}

.container-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #06131f 0%, #0a2238 54%, #0c2946 100%);
  content: "";
  pointer-events: none;
}

.container-header .grid-child:first-child {
  width: var(--bm-shell);
  max-width: calc(100% - 32px);
  height: var(--bm-header-top-height);
  min-height: var(--bm-header-top-height);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.container-header .navbar-brand {
  display: block;
  width: 100%;
  min-height: var(--bm-header-top-height);
  margin: 0;
}

.container-header .navbar-brand .brand-logo {
  display: block;
  width: 100%;
  min-height: var(--bm-header-top-height);
  overflow: visible;
  text-indent: 0;
}

.container-header .container-nav {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  max-width: none;
  min-height: 32px;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(8, 99, 166, .98), rgba(0, 58, 112, .98));
  box-shadow:
    inset 0 1px 0 rgba(142, 217, 255, .34),
    inset 0 -1px 0 rgba(0, 14, 28, .5);
  overflow: visible;
  transition: box-shadow 250ms ease;
}

.container-header .container-nav.bm-is-sticky {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 1000;
  box-shadow:
    inset 0 1px 0 rgba(142, 217, 255, .34),
    inset 0 -1px 0 rgba(0, 14, 28, .5),
    0 4px 16px rgba(0, 12, 28, .45);
}

.container-header .mod-menu {
  display: flex !important;
  flex: 0 0 auto !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  width: var(--bm-shell);
  max-width: calc(100% - 32px);
  min-height: 30px;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.container-header .mod-menu > li,
.container-header .metismenu.mod-menu .metismenu-item {
  flex: 0 0 auto !important;
  padding: 0;
  border-right: 0;
}

.container-header .mod-menu > li:last-child,
.container-header .metismenu.mod-menu .metismenu-item:last-child {
  border-right: 0;
}

.container-header .mod-menu > li > a,
.container-header .mod-menu > li > button,
.container-header .metismenu.mod-menu .metismenu-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.container-header .bm-sticky-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: max(calc((100% - var(--bm-shell)) / 2), 0px);
  width: var(--bm-sidebar);
  min-height: 32px;
  font-size: 24px;
  font-weight: 800;
  color: #1ab8f0;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(26, 184, 240, .4);
  opacity: 0;
  transform: translateY(-50%) scale(.6);
  transform-origin: center center;
  transition: opacity .3s cubic-bezier(.25, 1, .5, 1), transform .3s cubic-bezier(.25, 1, .5, 1);
  pointer-events: none;
  white-space: nowrap;
}

.container-header .container-nav.bm-is-sticky .bm-sticky-logo {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.container-header .bm-sticky-phone {
  display: none;
}

.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li > a:focus,
.container-header .mod-menu > li.active > a,
.container-header .metismenu.mod-menu .metismenu-item > a:hover,
.container-header .metismenu.mod-menu .metismenu-item.active > a {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.site-grid {
  width: 100%;
  max-width: var(--bm-shell);
  margin: 0 auto;
  grid-template-columns:
    minmax(0, var(--bm-sidebar))
    minmax(0, 1fr)
    minmax(0, var(--bm-right-sidebar)) !important;
  grid-template-areas:
    "banner banner banner"
    "top-a top-a top-a"
    "side-l comp side-r"
    "side-l bottom-a side-r"
    "bottom-b bottom-b bottom-b" !important;
  background: #fff;
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
}

.bm-open-notice {
  width: auto;
  max-width: 100%;
  margin: 18px 13px 18px;
  padding: 11px 10px 10px;
  color: #e5f8ff;
  background:
    linear-gradient(180deg, rgba(0, 112, 176, .52), rgba(0, 66, 119, .44));
  border: 1px solid rgba(115, 220, 255, .5);
  border-top-color: rgba(190, 244, 255, .64);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 1px 2px rgba(0, 18, 42, .18);
}

.bm-open-notice__label {
  margin: 0 0 6px;
  padding: 0;
  color: #7ee9ff;
  background: transparent;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.bm-open-notice__body {
  padding: 0;
}

.bm-open-notice h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.18;
}

.bm-open-notice__content {
  color: #e5f8ff;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.bm-open-notice__content > :last-child {
  margin-bottom: 0;
}

.bm-open-notice__content p {
  margin: 7px 0 0;
  color: #fff;
  font-weight: 700;
}

.bm-open-notice__content .bm-hours-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-open-notice__content .bm-hours-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: baseline;
  min-width: 0;
  margin: 0;
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.bm-open-notice__content .bm-hours-list li:first-child {
  border-top: 0;
}

.bm-open-notice__content .bm-hours-list span {
  min-width: 0;
  color: #c9edf8;
}

.bm-open-notice__content .bm-hours-list strong {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.bm-open-notice__content .bm-hours-list__closed strong {
  color: #ffe6a8;
}

.bm-open-notice__content a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.container-component {
  grid-area: comp;
  width: 100%;
  min-height: calc(100vh - var(--bm-header-height));
  padding: 30px 20px 48px;
  background: var(--bm-card-bg);
  border-radius: var(--bm-radius) var(--bm-radius) 0 0;
}

.container-component main {
  max-width: none;
  margin: 0;
}

body.com_content.view-article .container-component main {
  /* Keep article rows readable without returning to the cramped legacy width. */
  max-width: 760px;
}

body.site .site-grid > .container-sidebar-left {
  grid-area: side-l;
  align-self: stretch;
  position: relative;
  z-index: 0;
  width: var(--bm-sidebar);
  box-sizing: border-box;
  min-height: calc(100vh - var(--bm-header-height));
  padding: 0;
  color: #c8c8c8 !important;
  background: var(--bm-sidebar-bg) !important;
  border-right: 1px solid rgba(49, 199, 232, 0.18);
  overflow: visible;
}

/* Circuit texture in margins — SVG elements positioned via template */
.bm-circuit-margin {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  height: 100%;
  max-height: 100%;
  margin: 0 !important;
  color: #29b6f6;
  opacity: .20;
  overflow: hidden;
  pointer-events: none;
}

.bm-circuit-margin--left {
  right: 100%;
  width: max(calc((100vw - var(--bm-shell)) / 2), 0px);
}

.bm-circuit-margin--right {
  left: 100%;
  width: max(calc((100vw - var(--bm-shell)) / 2), 0px);
}

.bm-circuit-margin line,
.bm-circuit-margin rect,
.bm-circuit-margin circle {
  fill: none;
  stroke: currentColor;
  stroke-width: .8;
  vector-effect: non-scaling-stroke;
}

.bm-circuit-margin .bm-circuit-dot {
  fill: currentColor;
  stroke: none;
}

body.site .site-grid > .container-sidebar-left > .sidebar-left.card,
body.site .site-grid > .container-sidebar-left > .sidebar-left {
  width: 100%;
  box-sizing: border-box;
  padding: 17px 14px 28px;
  color: #c8c8c8 !important;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.site .site-grid > .container-sidebar-left > .sidebar-left.card + .sidebar-left.card,
body.site .site-grid > .container-sidebar-left > .sidebar-left + .sidebar-left {
  margin-top: 20px;
}

body.site .site-grid > .container-sidebar-left > .bm-sidebar-empty:not(.bm-circuit-margin) {
  display: none !important;
}

body.site .site-grid > .container-sidebar-right {
  grid-area: side-r;
  align-self: stretch;
  position: relative;
  z-index: 0;
  width: var(--bm-right-sidebar);
  max-width: var(--bm-right-sidebar);
  box-sizing: border-box;
  padding: 25px 15px 20px;
  background: #fff !important;
  overflow: visible;
}

body.site .site-grid > .container-sidebar-right > .sidebar-right.card,
body.site .site-grid > .container-sidebar-right > .sidebar-right {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-left .card,
.sidebar-right .card,
.sidebar-left .moduletable,
.sidebar-right .moduletable {
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-left .card-header,
.sidebar-left h3 {
  margin: 0 0 8px;
  padding: 0;
  color: #58dff6;
  background: transparent;
  border: 0;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.sidebar-left .card-body,
.sidebar-right .card-body {
  padding: 0;
}

.sidebar-right a {
  color: #00547f;
}

.sidebar-right a:hover,
.sidebar-right a:focus {
  color: #003f63;
}

.sidebar-right .mod-languages {
  margin-bottom: 14px;
  padding: 4px 0 14px;
  border-bottom: 1px solid #d5d5d5;
  text-align: right;
}

.sidebar-right .mod-languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 28px;
  margin-left: 8px;
  color: #00547f;
  border-radius: 2px;
  text-decoration: none;
}

.sidebar-right .mod-languages img {
  display: block;
  width: 18px;
  height: 12px;
  max-width: none;
  object-fit: cover;
}

.sidebar-right .mod-languages li.lang-active {
  background: #eef7fb;
  border-radius: 2px;
}

body.site .site-grid > .container-sidebar-right > .sidebar-right.card:has(.mod-bm-article-tags),
body.site .site-grid > .container-sidebar-right > .sidebar-right:has(.mod-bm-article-tags) {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #d4e8f2;
}

.sidebar-right.card:has(.mod-bm-article-tags) > .card-header,
.sidebar-right:has(.mod-bm-article-tags) > .card-header {
  margin: 0 0 10px;
  padding: 0;
  color: #17313b;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sidebar-right .mod-bm-article-tags {
  margin: 0;
}

.sidebar-right .mod-bm-article-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-right .mod-bm-article-tags li {
  margin: 0;
  padding: 0;
}

.sidebar-right .mod-bm-article-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: #075d83;
  background: #f4fbff;
  border: 1px solid #d7edf7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease;
}

.sidebar-right .mod-bm-article-tags a:hover,
.sidebar-right .mod-bm-article-tags a:focus {
  color: #02384f;
  background: #e9f7fd;
  border-color: #a8dceb;
  text-decoration: none;
}

.sidebar-right .mod-bm-article-tags a:focus-visible {
  outline: 3px solid rgba(18, 168, 214, 0.28);
  outline-offset: 2px;
}

.bm-article-sidebar-links {
  margin: 16px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid #d4e8f2;
}

.bm-article-sidebar-links h2 {
  margin: 0 0 10px;
  color: #17313b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bm-article-sidebar-links ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-article-sidebar-links a {
  display: block;
  min-height: 40px;
  padding: 9px 10px 9px 12px;
  color: #064d70;
  background: #f4fbff;
  border: 1px solid #d7edf7;
  border-left: 3px solid #12a8d6;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.bm-article-sidebar-links a:hover,
.bm-article-sidebar-links a:focus {
  color: #02384f;
  background: #e9f7fd;
  border-color: #a8dceb;
  border-left-color: #0488b9;
  box-shadow: 0 4px 12px rgba(3, 55, 82, 0.08);
  text-decoration: none;
}

.bm-article-sidebar-links a:hover {
  transform: translateY(-1px);
}

.bm-article-sidebar-links a:focus-visible {
  outline: 3px solid rgba(18, 168, 214, 0.32);
  outline-offset: 2px;
}

body.site .site-grid > .container-sidebar-right > .sidebar-right.card.bm-right-service-module,
.bm-right-service-module {
  margin: 0 0 16px;
  padding: 10px 12px !important;
  background: #f3f3f3 !important;
  border: 1px solid #d5d5d5 !important;
}

.bm-right-service-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-right-service-menu li {
  margin: 0;
  padding: 5px 0 5px 14px;
  position: relative;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
  line-height: 1.35;
}

.bm-right-service-menu li:last-child {
  border-bottom: 0;
}

.bm-right-service-menu li::before {
  position: absolute;
  left: 0;
  color: #666;
  content: "›";
}

.bm-right-service-menu a {
  color: #006e9f;
  text-decoration: none;
}

.bm-right-service-menu a:hover,
.bm-right-service-menu a:focus {
  color: #004f75;
  text-decoration: underline;
}

.bm-right-service-menu a.bm-is-current,
.bm-right-service-menu a[aria-current="page"] {
  color: #004f75;
  font-weight: 700;
}

.bm-mobile-huolto-menu {
  display: none !important;
}

.bm-mobile-main-menu {
  display: none !important;
}

.bm-brand-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 26px 15px;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}

.bm-brand-logos img {
  display: block;
  max-width: 112px;
  height: auto;
}

.sidebar-left .mod-menu {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sidebar-left .mod-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--bm-sidebar-line);
}

.sidebar-left .mod-menu a {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 8px;
  color: #d6e5ec;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.sidebar-left .mod-menu a:hover,
.sidebar-left .mod-menu a:focus,
.sidebar-left .mod-menu .active > a,
.sidebar-left .mod-menu .current > a {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  outline: 0;
}

.sidebar-left .mod-custom {
  margin: 0 0 20px;
}

.bm-static-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.bm-static-list li {
  position: relative;
  margin: 0;
  padding: 7px 8px 7px 20px;
  color: #d6e5ec;
  font-size: 13px;
  line-height: 1.35;
  border-bottom: 1px solid var(--bm-sidebar-line);
}

.bm-static-list li::before {
  position: absolute;
  left: 7px;
  color: #8ddff2;
  content: "\2022";
}

.sidebar-left .bm-static-list a {
  color: #d6e5ec;
  text-decoration: none !important;
}

.sidebar-left .bm-static-list a:hover,
.sidebar-left .bm-static-list a:focus {
  color: #fff;
}

.sidebar-left .bm-static-list a.bm-is-current,
.sidebar-left .bm-static-list a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.bm-static-list--catalog li {
  color: #fff;
  font-weight: 700;
}

.bm-static-list--services li {
  padding-top: 8px;
  padding-bottom: 8px;
}

.sidebar-left .ph-category-module-box {
  margin: 0 0 20px;
}

.sidebar-left .ph-category-module-box ul,
.sidebar-left .ph-category-module-box div ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-left .ph-category-module-box li,
.sidebar-left .ph-category-module-box div ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 8px 8px 8px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  border-bottom: 1px solid var(--bm-sidebar-line);
}

.sidebar-left .ph-category-module-box li::before,
.sidebar-left .ph-category-module-box div ul li::before {
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  left: 7px;
  padding: 0;
  background: none;
  color: #8ddff2;
  content: "\2022";
}

.sidebar-left .ph-category-module-box li.bm-phoca-sidebar-child,
.sidebar-left .ph-category-module-box div ul li.bm-phoca-sidebar-child {
  padding: 6px 0 6px 31px;
  font-weight: 400;
  border-bottom: 0;
}

.sidebar-left .ph-category-module-box li.bm-phoca-sidebar-child::before,
.sidebar-left .ph-category-module-box div ul li.bm-phoca-sidebar-child::before {
  left: 14px;
  color: #fff;
  content: "›";
}

.sidebar-left .ph-category-module-box li.ph-active,
.sidebar-left .ph-category-module-box div ul li.ph-active {
  background: rgba(0, 191, 243, 0.13);
  border-radius: 3px;
  box-shadow: inset 3px 0 0 #00bff3;
}

.sidebar-left .ph-category-module-box a {
  color: #fff;
  text-decoration: none !important;
}

.sidebar-left .ph-category-module-box a:hover,
.sidebar-left .ph-category-module-box a:focus,
.sidebar-left .ph-category-module-box .ph-active > a {
  text-decoration: underline !important;
}

.sidebar-left .ph-category-module-box .ph-active > a {
  color: #00bff3;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

.bm-static-news {
  margin: 0 0 17px;
  color: #c8c8c8;
  font-size: 13px;
  line-height: 1.35;
}

.mod-breadcrumbs__wrapper {
  display: none;
}

.pc-category-view .ph-subcategories,
.pc-category-view .ph-hr {
  display: none;
}

.pc-category-view .row-item-subcategory {
  margin: 0 0 28px;
}

.pc-category-view .ph-item-subcategory-box {
  text-align: center;
}

.pc-category-view .ph-item-subcategory-box img {
  display: block;
  width: auto;
  max-width: 118px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 11px;
}

.pc-category-view .row-item-subcategory h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.pc-category-view .row-item-subcategory h3 a {
  color: #0071bc;
  text-decoration: none;
}

.pc-category-view .row-item-subcategory h3 a:hover,
.pc-category-view .row-item-subcategory h3 a:focus {
  text-decoration: underline;
}

.pc-item-view .ph-item-bottom-box > .nav-tabs:has(> .nav-item:only-child) {
  display: none;
}

.pc-item-view .ph-item-bottom-box > .nav-tabs:has(> .nav-item:only-child) + .tab-content {
  padding-top: 0;
}

.bm-article-feature-grid,
.bm-article-compare-grid {
  display: grid;
  gap: 12px 24px;
  margin: 18px 0;
}

.bm-article-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.bm-article-feature-grid ul,
.bm-article-service-list {
  margin: 0;
  padding-left: 18px;
}

.bm-article-feature-grid li,
.bm-article-service-list li {
  margin: 0 0 5px;
}

.bm-article-compare-grid {
  grid-template-columns: minmax(130px, .8fr) repeat(2, minmax(150px, 1fr));
  max-width: 800px;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.bm-article-compare-grid > div {
  padding: 10px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.bm-article-compare-grid .bm-compare-head {
  font-weight: 700;
  background: #f0f0f0;
}

.bm-float-right {
  float: right;
  max-width: 100%;
  height: auto;
  margin: 0 0 14px 18px;
}

.bm-article-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px 0 18px;
}

.bm-article-img--full {
  width: 100%;
}

.bm-article-img--center {
  margin-right: auto;
  margin-left: auto;
}

.bm-image-center {
  margin: 28px 0;
  text-align: center;
}

.bm-clear {
  clear: both;
}

.bm-article-call-link {
  display: inline-block;
  margin: 6px 0 12px;
  color: #00547f;
  font-size: 1.06em;
  font-weight: 750;
}

.com-content-article h1,
.page-header h1,
h1 {
  margin: 0 0 16px;
  color: #403c3a;
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}

h2 {
  margin: 28px 0 12px;
  color: #0071a8;
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

a {
  color: var(--bm-link);
  transition: color var(--bm-transition);
  text-underline-offset: 2px;
}

a:hover {
  color: #006fa5;
}

a.btn.btn-primary,
button.btn.btn-primary {
  color: #fff;
}

a.btn.btn-primary:hover,
a.btn.btn-primary:focus,
button.btn.btn-primary:hover,
button.btn.btn-primary:focus {
  color: #fff;
}

.item-page img,
.com-content-article img {
  max-width: 100%;
  height: auto;
}

.com-content-article > figure.item-image {
  float: none !important;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 495px;
  margin: 0 0 22px;
  overflow: hidden;
  background: #eaf2f6;
}

.com-content-article > figure.item-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.com-content-article img[src$="tietokonehuolto350.jpg"] {
  display: block;
  width: 350px;
  max-width: 100%;
  margin: 120px auto 170px;
}

.com-content-article .bm-production-home-image {
  display: block;
  width: 100%;
  max-width: 553px;
  margin: 28px auto 24px;
}

.article-info,
.article-info-term {
  display: none;
}

.pagenavigation,
.pager,
.com-content-article__navigation {
  display: none;
}

.container-footer {
  width: 100% !important;
  max-width: var(--bm-shell) !important;
  margin: 0 auto !important;
  color: #403c3a !important;
  background-color: #e6e6e6 !important;
  background-image: url("../images/footer-right-tint.png") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: right top !important;
  background-size: 2000px 110px !important;
  border-top: 1px solid #ddd;
  border-radius: 0 0 var(--bm-radius) var(--bm-radius);
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  min-height: 110px;
  position: relative;
}

.container-footer::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--bm-sidebar);
  height: 110px;
  background: url("../images/footer-left-tint.png") no-repeat right top;
  content: "";
  pointer-events: none;
}

.container-footer .grid-child {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  padding: 22px 20px 24px calc(var(--bm-sidebar) + 20px) !important;
}

.container-footer a {
  color: #544f4c !important;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--bm-transition);
}

.container-footer a:hover,
.container-footer a:focus {
  color: #2a2827;
  text-decoration: underline;
}

.bm-footer-content {
  color: #403c3a !important;
}

html[lang^="fi"] .bm-footer-content-en,
html[lang^="en"] .bm-footer-content-fi {
  display: none;
}

.bm-mobile-sidebar-toggle {
  display: none;
}

.bm-brand-logos-toggle {
  display: none;
}

@media (min-width: 900px) and (max-width: 991.98px) {
  html,
  body.site {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container-header {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    height: var(--bm-header-tablet-height);
    min-height: var(--bm-header-tablet-height);
    overflow: hidden;
  }

  .container-header::before {
    width: 100%;
    max-width: none;
    background-size: auto;
  }

  .container-header .container-nav {
    width: 100% !important;
    max-width: none;
    min-height: 32px;
    margin-right: 0;
    margin-left: 0;
  }

  .container-header .mod-menu {
    justify-content: center !important;
    font-size: 12px;
  }

  .container-header .mod-menu > li,
  .container-header .metismenu.mod-menu .metismenu-item {
    flex: 0 0 auto !important;
  }

  .container-header .mod-menu > li > a,
  .container-header .mod-menu > li > button,
  .container-header .metismenu.mod-menu .metismenu-item > a {
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns:
      minmax(0, var(--bm-sidebar))
      minmax(0, 1fr) !important;
    grid-template-areas:
      "banner banner"
      "top-a top-a"
      "side-l comp"
      "side-l bottom-a"
      "bottom-b bottom-b" !important;
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }

  .site-grid > * {
    min-width: 0 !important;
  }

  body.site .site-grid > .container-sidebar-left {
    width: var(--bm-sidebar);
    max-width: var(--bm-sidebar);
    min-width: 0;
  }

  body.site .site-grid > .container-sidebar-right {
    display: none !important;
  }

  .container-component {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
    overflow-wrap: anywhere;
  }

  .container-component main,
  .com-content-article,
  .com-content-article__body {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .com-content-article img[align],
  .com-content-article img[style*="float"] {
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body.site .site-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns:
      minmax(0, var(--bm-sidebar))
      minmax(0, 1fr) !important;
    grid-template-areas:
      "banner banner"
      "top-a top-a"
      "side-l comp"
      "side-l bottom-a"
      "bottom-b bottom-b" !important;
  }

  body.site .site-grid > .container-sidebar-right {
    display: none !important;
  }
}

@media (max-width: 899.98px) {
  :root {
    --bm-header-mobile-height: 154px;
    --bm-header-top-height: 106px;
  }

  html,
  body.site {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container-header {
    width: 100% !important;
    max-width: 100% !important;
    height: var(--bm-header-mobile-height);
    min-height: var(--bm-header-mobile-height);
    background-size: auto !important;
    overflow: hidden;
  }

  .container-header .grid-child:first-child {
    height: var(--bm-header-top-height);
    min-height: var(--bm-header-top-height);
    background-size: auto;
  }

  .container-header .navbar-brand,
  .container-header .navbar-brand a {
    min-height: var(--bm-header-top-height);
  }

  .container-header .container-nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    min-height: 48px;
    padding: 0 14px;
    gap: 8px;
  }

  .container-header .container-nav:not(.bm-is-sticky) .bm-sticky-logo,
  .container-header .container-nav:not(.bm-is-sticky) .bm-sticky-phone {
    display: none !important;
  }

  .container-header .mod-menu {
    display: flex !important;
    flex: 1 1 auto !important;
    justify-content: flex-start !important;
    min-width: 0;
    min-height: 48px;
    margin: 0;
    font-size: 12px;
  }

  .container-header .mod-menu > li,
  .container-header .metismenu.mod-menu .metismenu-item {
    flex: 0 0 auto !important;
  }

  .container-header .mod-menu > li > a,
  .container-header .mod-menu > li > button,
  .container-header .metismenu.mod-menu .metismenu-item > a {
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
  }

  .container-header .container-nav.bm-is-sticky .mod-menu,
  body.bm-mobile-menu-stuck .container-header .mod-menu {
    display: none !important;
  }

  .container-header .bm-sticky-logo {
    position: static;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #1ab8f0;
    font-family: "BitmasterRoundHouse", system-ui, -apple-system, Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .02em;
    text-decoration: none;
    text-shadow:
      0 0 6px rgba(26, 184, 240, .48),
      0 2px 0 rgba(0, 22, 39, .58);
    opacity: 0;
    transform: translateX(-6px) scale(.86);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .container-header .container-nav.bm-is-sticky .bm-sticky-logo,
  body.bm-mobile-menu-stuck .container-header .bm-sticky-logo {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .container-header .bm-sticky-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-left: auto;
    padding: 0 10px;
    color: #eef9ff;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0, 18, 35, .55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2px);
    transition: opacity .18s ease, transform .18s ease, background .15s ease;
  }

  .container-header .container-nav.bm-is-sticky .bm-sticky-phone,
  body.bm-mobile-menu-stuck .container-header .bm-sticky-phone {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .container-header .bm-sticky-phone:hover,
  .container-header .bm-sticky-phone:focus {
    color: #fff;
    background: rgba(255, 255, 255, .1);
  }

  .site-grid {
    display: flex !important;
    position: relative;
    flex-direction: column;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
  }

  body.bm-sidebar-open .site-grid::after {
    position: absolute;
    z-index: 19;
    top: 56px;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100vh - 205px);
    background: rgba(0, 21, 48, .26);
    content: "";
  }

  @supports ((backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))) {
    body.bm-sidebar-open .site-grid::after {
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
    }
  }

  body.bm-sidebar-open.bm-mobile-menu-stuck .site-grid::after {
    position: fixed;
    top: 48px;
    min-height: calc(100vh - 48px);
  }

  .site-grid > * {
    min-width: 0 !important;
  }

  .container-component,
  .container-sidebar-left,
  .container-sidebar-right,
  .sidebar-left,
  .sidebar-right {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0;
    padding: 18px;
  }

  .container-component {
    display: block;
    order: 3 !important;
    margin: 0;
    padding: 20px 16px 32px;
    border-radius: 0;
    overflow: visible !important;
    overflow-wrap: anywhere;
  }

  .container-component main,
  .com-content-article,
  .com-content-article__body {
    max-width: 100% !important;
    margin: 0;
    overflow-wrap: anywhere;
  }

  .com-content-article .bm-production-home-image {
    width: auto;
    max-width: calc(100vw - 36px);
  }

  .com-content-article img[src$="tietokonehuolto350.jpg"] {
    margin: 28px auto 34px;
  }

  .com-content-article img[align],
  .com-content-article img[style*="float"] {
    display: block;
    float: none !important;
    max-width: calc(100vw - 36px);
    height: auto;
    margin: 18px auto;
  }

  .bm-mobile-sidebar-toggle {
    display: flex;
    position: static;
    z-index: 30;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 48px;
    gap: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: none;
    text-transform: none;
    box-shadow: none;
  }

  .bm-mobile-sidebar-toggle:hover,
  .bm-mobile-sidebar-toggle:focus {
    background: rgba(255, 255, 255, .1);
  }

  .bm-mobile-sidebar-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.bm-mobile-menu-stuck .bm-mobile-sidebar-toggle {
    position: static;
    width: 44px;
    border-radius: 4px;
    box-shadow: none;
    transform: none;
  }

  body.bm-mobile-menu-stuck .site-grid {
    padding-top: 0;
  }

  .bm-mobile-sidebar-toggle:focus-visible,
  .bm-mobile-section-toggle:focus-visible,
  .bm-mobile-main-menu__list a:focus-visible,
  .container-sidebar-left a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .86);
    outline-offset: 2px;
  }

  .bm-mobile-huolto-menu a:focus-visible,
  .bm-mobile-huolto-menu .bm-mobile-section-toggle:focus-visible {
    outline-color: rgba(0, 105, 160, .72);
  }

  .bm-mobile-sidebar-toggle__icon,
  .bm-mobile-sidebar-toggle__icon::before,
  .bm-mobile-sidebar-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
  }

  .bm-mobile-sidebar-toggle__icon {
    position: relative;
    height: 14px;
    background: linear-gradient(currentColor, currentColor) center / 18px 2px no-repeat;
    transition: background .15s ease;
  }

  .bm-mobile-sidebar-toggle__icon::before,
  .bm-mobile-sidebar-toggle__icon::after {
    position: absolute;
    left: 0;
    transform-origin: center center;
    transition: transform .15s ease, top .15s ease;
  }

  .bm-mobile-sidebar-toggle__icon::before {
    top: 0;
  }

  .bm-mobile-sidebar-toggle__icon::after {
    top: 12px;
  }

  body.bm-sidebar-open .bm-mobile-sidebar-toggle__icon {
    background: transparent;
  }

  body.bm-sidebar-open .bm-mobile-sidebar-toggle__icon::before {
    top: -2px;
    width: 18px;
    height: 18px;
    background: none;
    color: currentColor;
    content: "X";
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    transform: none;
  }

  body.bm-sidebar-open .bm-mobile-sidebar-toggle__icon::after {
    display: none;
  }

  .container-sidebar-left {
    order: 2 !important;
  }

  .container-sidebar-right {
    order: 4 !important;
  }

  body.bm-sidebar-open .container-sidebar-left {
    display: block !important;
  }

  body.site .site-grid > .container-sidebar-left,
  body.site .site-grid > .container-sidebar-right {
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    min-height: 0;
  }

  body.site .site-grid > .container-sidebar-left > .sidebar-left.card,
  body.site .site-grid > .container-sidebar-right > .sidebar-right.card {
    width: auto !important;
  }

  body.site .site-grid > .container-sidebar-right > .sidebar-right.card.bm-right-service-module {
    display: none !important;
  }

  body.site .site-grid > .container-sidebar-left {
    display: none !important;
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    max-height: calc(100vh - 167px);
    padding: 0 !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: linear-gradient(180deg, rgba(0, 77, 132, .98), rgba(0, 61, 112, .98)) !important;
    border: 1px solid rgba(255, 255, 255, .22);
    border-top: 0;
    border-radius: 0 0 6px 6px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .1) inset,
      0 18px 34px rgba(0, 18, 42, .38),
      0 2px 7px rgba(0, 0, 0, .16);
  }

  @supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    body.site .site-grid > .container-sidebar-left {
      -webkit-backdrop-filter: blur(7px) saturate(112%);
      backdrop-filter: blur(7px) saturate(112%);
      background: linear-gradient(180deg, rgba(0, 77, 132, .9), rgba(0, 61, 112, .92)) !important;
    }
  }

  body.site.bm-mobile-menu-stuck .site-grid > .container-sidebar-left {
    position: fixed;
    top: 48px;
    max-height: calc(100vh - 48px);
  }

  body.site .site-grid > .container-sidebar-left > .sidebar-left.card,
  body.site .site-grid > .container-sidebar-left > .sidebar-left {
    padding: 14px 15px 8px;
  }

  .bm-open-notice {
    margin: 14px 15px 12px;
    padding: 11px 12px;
  }

  body.site .site-grid > .container-sidebar-left > .bm-mobile-main-menu {
    display: block !important;
    padding: 10px 15px 4px;
  }

  .bm-mobile-main-menu__title,
  .bm-mobile-huolto-menu__title {
    margin: 0;
    padding: 0;
  }

  .bm-mobile-main-menu__list,
  .bm-mobile-main-menu__list.metismenu.mod-menu {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    list-style: none;
  }

  .bm-mobile-main-menu__list > li,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--bm-sidebar-line);
  }

  .bm-mobile-main-menu__list > li > a,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 10px 10px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    text-decoration: none !important;
    text-transform: none;
    white-space: normal;
  }

  .bm-mobile-main-menu__list > li > a::before,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item > a::before {
    position: absolute;
    left: 10px;
    color: #c8c8c8;
    content: "\2022";
  }

  .bm-mobile-main-menu__list > li.active > a,
  .bm-mobile-main-menu__list > li.current > a,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item.active > a,
  .bm-mobile-main-menu__list > li > a:hover,
  .bm-mobile-main-menu__list > li > a:focus,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item > a:hover,
  .bm-mobile-main-menu__list.metismenu.mod-menu .metismenu-item > a:focus {
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border-radius: 3px;
  }

  body.site .site-grid > .container-sidebar-left > .bm-sidebar-empty:not(.bm-circuit-margin) {
    display: none !important;
  }

  body.site .site-grid > .container-sidebar-left > .bm-mobile-huolto-menu {
    display: block !important;
    width: auto !important;
    margin: 8px 15px 10px;
    border-color: rgba(255, 255, 255, .55) !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .8) inset,
      0 10px 22px rgba(0, 18, 42, .2);
  }

  .bm-mobile-menu-section {
    margin-bottom: 2px;
  }

  .bm-mobile-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    padding: 10px 0;
    color: #06c6f4;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--bm-sidebar-line);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 20, 45, .45);
    text-transform: uppercase;
  }

  .bm-mobile-section-toggle__icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    position: relative;
  }

  .bm-mobile-section-toggle__icon::before,
  .bm-mobile-section-toggle__icon::after {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
  }

  .bm-mobile-section-toggle__icon::after {
    transform: rotate(90deg);
  }

  .bm-mobile-menu-section-open .bm-mobile-section-toggle__icon::after {
    display: none;
  }

  .bm-mobile-section-body {
    padding-top: 2px;
  }

  .bm-mobile-huolto-menu .bm-mobile-section-toggle {
    color: #333;
    border-bottom-color: #ddd;
    font-size: 13px;
    text-shadow: none;
  }

  .bm-mobile-huolto-menu .bm-mobile-section-body {
    padding-top: 2px;
  }

  .bm-mobile-huolto-menu .bm-right-service-menu li {
    min-height: 34px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
  }

  .sidebar-left .card-header,
  .sidebar-left h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .sidebar-left .mod-menu {
    margin-bottom: 8px;
  }

  .sidebar-left .mod-menu a {
    min-height: 40px;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .bm-static-list li {
    min-height: 40px;
    padding: 10px 10px 10px 24px;
    font-size: 14px;
    line-height: 1.35;
  }

  .bm-static-list li::before {
    left: 10px;
  }

  .sidebar-left .ph-category-module-box li {
    min-height: 40px;
    padding: 10px 10px 10px 24px;
    font-size: 14px;
    line-height: 1.35;
  }

  .sidebar-left .ph-category-module-box li::before {
    left: 10px;
  }

  .bm-article-compare-grid {
    grid-template-columns: 1fr;
  }

  .bm-article-compare-grid > div {
    border-right: 1px solid #d9d9d9;
  }

  .bm-article-compare-grid .bm-compare-head:not(:first-child) {
    display: none;
  }

  .bm-article-compare-grid .bm-compare-label {
    font-weight: 700;
    background: #f7f7f7;
  }

  .bm-float-right {
    float: none;
    display: block;
    margin: 10px auto 16px;
  }

  .sidebar-left .mod-menu li.active > a,
  .sidebar-left .mod-menu li.current > a {
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border-radius: 3px;
  }

  body.site.bm-sidebar-open .site-grid > .container-sidebar-left {
    display: block !important;
  }

  body.site .site-grid > .container-sidebar-right {
    background: #fff !important;
  }

  .sidebar-right .mod-languages {
    text-align: center;
  }

  .sidebar-right .mod-languages a {
    min-width: 44px;
    min-height: 40px;
    margin: 0 4px;
  }

  .bm-brand-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 22px 18px;
    padding: 22px 18px;
  }

  .bm-brand-logos-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    margin: 18px 0 0;
    padding: 11px 16px;
    color: #fff;
    background: var(--bm-sidebar-bg);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .18) inset;
  }

  .bm-brand-logos-toggle__icon {
    width: 0;
    height: 0;
    border-top: 6px solid currentColor;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform .15s ease;
  }

  body.bm-brand-logos-open .bm-brand-logos-toggle__icon {
    transform: rotate(180deg);
  }

  .bm-brand-logos {
    display: none;
  }

  body.bm-brand-logos-open .bm-brand-logos {
    display: grid;
  }

  .bm-brand-logos img {
    max-width: 118px;
  }

  .container-footer {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0;
    background-image: none !important;
    font-size: 12px;
    line-height: 1.6;
  }

  .container-footer::before {
    display: none;
  }

  .container-footer .grid-child {
    padding: 18px !important;
  }

  .bm-footer-content {
    text-align: center;
  }
}

.com_phocacart .ph-pagination-top,
.com_phocacart .ph-pagination {
  align-items: center;
}

.com_phocacart .ph-pag-top-row,
.com_phocacart .ph-center-pagination {
  margin-bottom: 12px;
}

.com_phocacart .ph-pagination-top {
  display: none;
}

.com_phocacart .ph-items.list {
  margin-top: 12px;
}

.com_phocacart .ph-item-box.list {
  padding: 14px 0 16px;
  border-bottom: 1px solid #d6d6d6;
}

.com_phocacart .ph-item-box.list .thumbnail {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.com_phocacart .jf_ph_cat_list {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(150px, auto);
  column-gap: 18px;
  align-items: center;
}

.com_phocacart .jf_ph_cat_list > .row-item:first-child {
  width: auto;
  max-width: none;
}

.com_phocacart .jf_ph_cat_list > .row-item:nth-child(2) {
  width: auto;
  max-width: none;
}

.com_phocacart .jf_ph_cat_list > .col-12.col-sm-5.col-md-5.list:last-child {
  display: block;
  width: auto;
  max-width: none;
  justify-self: end;
  text-align: right;
}

.com_phocacart .ph-category-price-box {
  margin: 0 0 8px;
}

.com_phocacart .ph-category-price-box .ph-price-txt,
.com_phocacart .ph-category-price-box .ph-price-brutto {
  float: none;
  display: block;
}

.com_phocacart .ph-category-price-box .ph-price-txt {
  margin: 0 0 2px;
  color: #69777f;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.com_phocacart .ph-category-price-box .ph-price-brutto {
  color: #17272d;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.com_phocacart .ph-category-action-box-buttons .btn,
.com_phocacart .ph-category-action-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.com_phocacart .phIBoxOH.list,
.com_phocacart .phIBox {
  text-align: left;
}

.com_phocacart .ph-image {
  max-width: 105px;
  height: auto;
}

.com_phocacart .ph-product-header.list {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
}

.com_phocacart .ph-product-header.list a {
  color: #00547f;
  font-weight: 700;
  text-decoration: none;
}

.com_phocacart .ph-product-header.list a:hover,
.com_phocacart .ph-product-header.list a:focus {
  color: #003f63;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.com_phocacart .ph-item-desc {
  color: #403c3a;
  font-size: 14px;
  line-height: 1.55;
}

.com_phocacart .bm-product-category-cta {
  margin: 24px 0 4px;
  padding: 18px 20px;
  border: 1px solid #c8dce7;
  border-left: 4px solid #00a7dd;
  background: #f7fbfd;
}

.com_phocacart .bm-product-category-cta h2 {
  margin: 0 0 8px;
  color: #17323f;
  font-size: 22px;
  line-height: 1.25;
}

.com_phocacart .bm-product-category-cta p {
  max-width: 760px;
  margin: 0;
  color: #31434c;
  font-size: 15px;
  line-height: 1.55;
}

.com_phocacart .bm-product-category-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.com_phocacart .bm-product-category-cta__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  color: #064f80;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: #fff;
  border: 1px solid #a9cbdc;
  border-radius: 3px;
}

.com_phocacart .bm-product-category-cta__actions a:hover,
.com_phocacart .bm-product-category-cta__actions a:focus {
  color: #003e63;
  background: #eaf7fc;
  text-decoration: none;
}

.com_phocacart.view-item .ph-item-price-box,
.com_phocacart.view-item .ph-item-manufacturer-box,
.com_phocacart.view-item .ph-item-sku-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  align-items: baseline;
}

.com_phocacart.view-item .ph-item-price-box .ph-price-txt,
.com_phocacart.view-item .ph-item-manufacturer-box .ph-manufacturer-txt,
.com_phocacart.view-item .ph-item-sku-box .ph-sku-txt,
.com_phocacart.view-item .ph-item-price-box .ph-price-brutto,
.com_phocacart.view-item .ph-item-manufacturer-box .ph-manufacturer,
.com_phocacart.view-item .ph-item-sku-box .ph-sku {
  float: none;
  clear: none;
}

.com_phocacart.view-item .ph-item-price-box .ph-price-brutto,
.com_phocacart.view-item .ph-item-manufacturer-box .ph-manufacturer,
.com_phocacart.view-item .ph-item-sku-box .ph-sku {
  text-align: right;
}

.com_phocacart.view-item .ph-item-image-add-box:has(> .ph-item-image-box:only-child) {
  display: none;
}

.com_phocacart.view-item .ph-top {
  margin: 0 0 18px;
}

.com_phocacart.view-item .ph-top .btn,
.com_phocacart.view-item .ph-top .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  min-height: 34px;
  padding: 6px 12px 6px 10px;
  color: #064f80 !important;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  background: linear-gradient(180deg, #fbfdff 0%, #eef7fc 100%) !important;
  border: 1px solid #bfd3df !important;
  border-left: 3px solid #00bff3 !important;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 50, 90, .12);
}

.com_phocacart.view-item .ph-top .btn:hover,
.com_phocacart.view-item .ph-top .btn:focus,
.com_phocacart.view-item .ph-top .btn-secondary:hover,
.com_phocacart.view-item .ph-top .btn-secondary:focus {
  color: #003e77 !important;
  background: linear-gradient(180deg, #fff 0%, #dff2fb 100%) !important;
  border-color: #87bdd8 !important;
  text-decoration: none;
}

.com_phocacart.view-item .ph-top .btn .icon,
.com_phocacart.view-item .ph-top .btn [class^="icon-"],
.com_phocacart.view-item .ph-top .btn [class*=" icon-"],
.com_phocacart.view-item .ph-top .btn .fa {
  color: #0870a8;
}

.bm-column-list {
  column-count: 3;
  column-gap: 28px;
  margin: 16px 0 20px;
  padding-left: 20px;
}

.bm-column-list li {
  break-inside: avoid;
  margin-bottom: 4px;
}

.bm-comparison-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}

.bm-comparison-list > div,
.bm-price-list > li {
  display: grid;
  gap: 8px;
  border: 1px solid #d7e0e5;
  background: #fff;
}

.bm-comparison-list > div {
  grid-template-columns: 150px repeat(2, minmax(0, 1fr));
  padding: 10px 12px;
}

.bm-comparison-list strong,
.bm-price-list strong {
  color: #222;
}

.bm-price-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.bm-price-list > li {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: start;
  padding: 8px 10px;
}

.bm-price-list > li strong {
  text-align: right;
  white-space: nowrap;
}

.bm-price-list-compact {
  max-width: 420px;
}

@media (max-width: 479.98px) {
  .container-header .container-nav:not(.bm-is-sticky) .mod-menu > li.item-407,
  .container-header .container-nav:not(.bm-is-sticky) .metismenu.mod-menu .metismenu-item.item-407 {
    display: none !important;
  }

  .container-header .container-nav:not(.bm-is-sticky) .mod-menu {
    flex: 0 1 auto !important;
  }

  .container-header .container-nav:not(.bm-is-sticky) .mod-menu > li > a,
  .container-header .container-nav:not(.bm-is-sticky) .metismenu.mod-menu .metismenu-item > a {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 899.98px) {
  .com_phocacart,
  .com_phocacart .pc-view,
  .com_phocacart .pc-category-view,
  .com_phocacart .pc-item-view,
  .com_phocacart .ph-desc,
  .com_phocacart h1,
  .com_phocacart h2,
  .com_phocacart h3,
  .com_phocacart p {
    width: auto !important;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .com_phocacart.view-item .ph-item-price-box,
  .com_phocacart.view-item .ph-item-manufacturer-box,
  .com_phocacart.view-item .ph-item-sku-box {
    grid-template-columns: 1fr;
    row-gap: 3px;
  }

  .com_phocacart.view-item .ph-item-price-box .ph-price-brutto,
  .com_phocacart.view-item .ph-item-manufacturer-box .ph-manufacturer,
  .com_phocacart.view-item .ph-item-sku-box .ph-sku {
    text-align: left;
  }

  .com_phocacart .ph-pagination-top,
  .com_phocacart .ph-pagination {
    display: block;
  }

  .com_phocacart .ph-pagination-top {
    display: none;
  }

  .com_phocacart .ph-pag-top-row,
  .com_phocacart .ph-center-pagination {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
  }

  .com_phocacart .ph-pag-top-row .form-select,
  .com_phocacart .ph-center-pagination .form-select {
    min-width: 0;
  }

  .com_phocacart .jf_ph_cat_list {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
  }

  .com_phocacart .jf_ph_cat_list > .row-item:first-child,
  .com_phocacart .jf_ph_cat_list > .row-item:nth-child(2),
  .com_phocacart .jf_ph_cat_list > .col-12.col-sm-5.col-md-5.list:last-child {
    width: auto;
    max-width: none;
  }

  .com_phocacart .jf_ph_cat_list > .col-12.col-sm-5.col-md-5.list:last-child {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .com_phocacart .ph-items.list {
    margin-top: 4px;
  }

  .com_phocacart .ph-desc {
    margin-bottom: 18px;
  }

  .com_phocacart .ph-item-box.list {
    padding: 12px 0 14px;
  }

  .com_phocacart .ph-category-price-box {
    margin-bottom: 7px;
  }

  .com_phocacart .ph-product-header.list {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .com_phocacart .bm-product-category-cta {
    padding: 16px;
  }

  .com_phocacart .bm-product-category-cta h2 {
    font-size: 20px;
  }

  .com_phocacart .bm-product-category-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .com_phocacart .bm-product-category-cta__actions a {
    justify-content: center;
    width: 100%;
  }

  .bm-column-list {
    column-count: 1;
  }

  .bm-comparison-list > div,
  .bm-price-list > li {
    grid-template-columns: 1fr;
  }

  .bm-price-list > li strong {
    text-align: left;
  }
}

/* === Article gallery (replaces float:right images) === */
.article-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  justify-content: center;
}
.article-gallery figure {
  margin: 0;
  text-align: center;
  flex: 0 1 auto;
  max-width: 180px;
}
.article-gallery figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.article-gallery figcaption {
  font-size: .82rem;
  color: #555;
  margin-top: 4px;
}

/* === Text highlight (replaces inline style=color) === */
.text-highlight {
  color: #c00;
  font-weight: 500;
}

/* === Mobile: gallery stacks vertically === */
@media (max-width: 480px) {
  .article-gallery {
    gap: 8px;
  }
  .article-gallery figure {
    max-width: 100%;
  }
}

/* === CTA callout box (replaces inline style callout divs) === */
.cta-box {
  margin: 0 0 20px 0;
  padding: 15px;
  background: #f4f4f4;
  border-left: 4px solid #0073e6;
}
.cta-box .cta-title {
  font-size: 1.17em;
  font-weight: bold;
  margin: 0 0 8px 0;
}

/* === Pipe separator for accessible link lists === */
@media (max-width: 991.98px) {
  .cta-box {
    margin: 0 0 16px 0;
    padding: 12px;
  }
}

/* n3t Cookie Consent — footer link (replaces floating icon) */
footer.footer a.n3tcc-settings {
  color: var(--footercolor, #ccc);
  text-decoration: underline;
  cursor: pointer;
  font-size: .82rem;
}
footer.footer a.n3tcc-settings:hover {
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  body.site .site-grid > .container-sidebar-right {
    display: flex !important;
    position: static !important;
    grid-area: bottom-a;
    order: 4 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    max-width: none !important;
    min-height: 0;
    margin: 0;
    padding: 16px 16px 24px;
    background: transparent !important;
    pointer-events: none;
  }

  body.site .site-grid > .container-sidebar-right > .sidebar-right.card,
  body.site .site-grid > .container-sidebar-right > .sidebar-right {
    display: none !important;
  }

  body.site .site-grid > .container-sidebar-right > .sidebar-right.card:has(.mod-languages),
  body.site .site-grid > .container-sidebar-right > .sidebar-right:has(.mod-languages) {
    display: block !important;
    width: auto !important;
    margin: 0;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    pointer-events: auto;
  }

  .sidebar-right .mod-languages {
    margin: 0;
    padding: 0;
    border-bottom: 0;
    text-align: center;
  }

  .bm-article-sidebar-links {
    width: min(460px, 100%);
    margin-top: 16px;
    padding-top: 16px;
    text-align: left;
    pointer-events: auto;
  }

  .bm-article-sidebar-links h2 {
    text-align: center;
  }

  .bm-article-sidebar-links a {
    min-height: 44px;
    padding: 10px 12px 10px 14px;
    font-size: 14px;
  }

  .container-component {
    padding-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .bm-article-sidebar-links {
    margin-top: 18px;
    padding-top: 16px;
  }

  .bm-article-sidebar-links h2 {
    margin-bottom: 11px;
  }

  .bm-article-sidebar-links ul {
    gap: 9px;
  }

  .bm-article-sidebar-links a {
    min-height: 44px;
    padding: 10px 12px 10px 14px;
    font-size: 14px;
  }
}
