@font-face {
  font-family: "Ubuntu";
  src: url("../assets/fonts/Ubuntu.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url("../assets/fonts/glyphicons-halflings-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --text: #3a3939;
  --muted: #888;
  --dark: #333;
  --brand-accent: #f28c00;
  --brand-accent-soft: rgba(242, 140, 0, 0.1);
  --footer-bg: #b2b2b2;
  --mobile-bar: #fafafa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

a,
button {
  transition: color 0.35s, background-color 0.35s, opacity 0.35s;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

button {
  font: inherit;
}

img {
  border: 0;
  vertical-align: middle;
}

.site-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.language-row {
  height: 34px;
  background: #fff;
}

.language-inner {
  height: 34px;
}

.language-links {
  display: flex;
  float: right;
  height: 34px;
  align-items: center;
}

.language-links button,
.language-links a {
  position: relative;
  display: inline-flex;
  min-width: 62px;
  height: 28px;
  margin: 0;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #4a4a4a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.language-links button:first-child,
.language-links a:first-child {
  border-radius: 999px 0 0 999px;
}

.language-links button:last-child,
.language-links a:last-child {
  margin-left: -1px;
  border-radius: 0 999px 999px 0;
}

.language-links button:hover:not(.is-active),
.language-links a:hover:not(.is-active) {
  z-index: 1;
  border-color: rgba(242, 140, 0, 0.48);
  background: var(--brand-accent-soft);
  color: #8a5100;
}

.language-links button.is-active,
.language-links a.is-active {
  z-index: 1;
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #fff;
}

.language-links button:focus,
.language-links a:focus {
  outline: none;
}

.language-links button:focus-visible,
.language-links a:focus-visible {
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.32);
}

.language-links img {
  display: block;
  width: 18px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.language-links button.is-active img,
.language-links a.is-active img {
  border-color: rgba(255, 255, 255, 0.58);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 50px;
  margin: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 16px -7px rgba(0, 0, 0, 0.09);
}

.header-inner {
  position: relative;
}

.brand {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}

.brand:hover,
.brand:focus {
  opacity: 0.8;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.logo {
  display: block;
  width: auto;
  height: auto;
}

.nav-toggle {
  position: absolute;
  top: 8px;
  right: 15px;
  width: 42px;
  height: 34px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  outline: 2px solid #888;
  outline-offset: 1px;
}

.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--dark);
}

.icon-bar + .icon-bar {
  margin-top: 4px;
}

.main-navigation {
  display: none;
  clear: both;
  border-top: 1px solid #e7e7e7;
}

.main-navigation.is-open {
  display: block;
}

.main-navigation ul {
  margin: 0 -15px;
  padding: 0;
  list-style: none;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  position: relative;
  display: block;
  padding: 10px 15px 10px 12px;
  border-left: 3px solid transparent;
  color: var(--dark);
  line-height: 20px;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  background: var(--brand-accent-soft);
  color: var(--dark);
  text-decoration: none;
}

.main-navigation .active > a {
  border-left-color: var(--brand-accent);
  background: var(--brand-accent-soft);
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
}

.main-navigation a:focus {
  outline: none;
  box-shadow: none;
}

.route-view {
  min-height: 260px;
  outline: 0;
}

.route-view > div:first-child > a,
.route-view > div:first-child > a > img,
.route-view > .flash,
.route-view > .flash img {
  display: block;
  width: 100%;
  height: auto;
}

.route-view img {
  max-width: 100%;
  height: auto;
}

.route-view .row::before,
.route-view .row::after,
.route-view .list_box::before,
.route-view .list_box::after,
.route-view .product_list::before,
.route-view .product_list::after {
  display: table;
  clear: both;
  content: "";
}

.route-view .contents {
  overflow-wrap: anywhere;
}

.route-view table {
  max-width: 100%;
}

.route-view .product_list img,
.route-view .showpic_box img {
  max-width: 100%;
}

.route-view .flash {
  position: relative;
  overflow: hidden;
  background: #111;
}

.route-view .flash ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-view .flash li {
  display: none;
  margin: 0;
}

.route-view .flash li.is-active,
.route-view .flash li:only-child {
  display: block;
}

.route-view .flash a,
.route-view .flash img {
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  opacity: 0.72;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.carousel-previous { left: 16px; }
.carousel-next { right: 16px; }

.carousel-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.carousel-previous::before { transform: translate(-38%, -50%) rotate(-135deg); }
.carousel-next::before { transform: translate(-62%, -50%) rotate(45deg); }

.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.route-view .flash:focus-within .carousel-arrow {
  background: rgba(0, 0, 0, 0.58);
  opacity: 1;
}

.carousel-arrow:focus {
  outline: none;
}

.carousel-arrow:focus-visible {
  box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.55);
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.carousel-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: #fff;
}

.carousel-dot.is-active {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  transform: scale(1.25);
}

.carousel-dot:focus {
  outline: none;
}

.carousel-dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.55);
}

.route-state {
  min-height: 360px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.route-state h1 {
  margin: 0 0 16px;
  font-size: 32px;
}

.route-loading {
  color: #777;
}

.source-reference {
  color: #888;
  overflow-wrap: anywhere;
}

.translation-note,
.form-message {
  margin: 12px 0;
  padding: 10px 12px;
  border-left: 3px solid #555;
  background: #f3f3f3;
}

.route-notice {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 2000;
  width: min(520px, calc(100% - 32px));
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  background: rgba(35, 35, 35, 0.96);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  text-align: center;
  transform: translateX(-50%);
}

.route-notice[hidden] {
  display: none;
}

.copyright-bar {
  clear: both;
  min-height: 40px;
  padding: 0 15px;
  background: var(--footer-bg);
  color: #666;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
}

.social-link {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 3px;
  vertical-align: middle;
}

.social-link img {
  display: block;
  width: 28px;
  height: 28px;
}

.social-link:hover,
.social-link:focus {
  opacity: 0.8;
}

.customer-strip,
.info-footer {
  background: #fff;
}

.customer-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.footer-column {
  width: 100%;
  margin: 30px 0 20px;
  padding: 0 15px;
  color: #060606;
  font-style: normal;
  line-height: 24px;
}

.footer-column p {
  margin-bottom: 0;
}

.footer-column ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.certification-image {
  margin-bottom: 1px;
  text-align: center;
}

.certification-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.indented {
  text-indent: 4em;
}

.mobile-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  display: flex;
  height: 50px;
  border-top: 1px solid #e7e7e7;
  background: var(--mobile-bar);
}

.mobile-action {
  position: relative;
  width: 25%;
  height: 49px;
  background: var(--mobile-bar);
  color: #898989;
  text-align: center;
}

.mobile-action:hover,
.mobile-action:focus-within {
  background: #e4e4e4;
}

.mobile-action > a,
.mobile-action > button {
  display: flex;
  width: 100%;
  height: 49px;
  margin: 0;
  padding: 3px 0 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #898989;
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
}

.mobile-action > a:focus-visible,
.mobile-action > button:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: -2px;
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.glyphicon-share::before { content: "\e066"; }
.glyphicon-phone::before { content: "\e145"; }
.glyphicon-th-list::before { content: "\e012"; }
.glyphicon-circle-arrow-up::before { content: "\e133"; }

@media (min-width: 769px) {
  .site-container { width: 750px; }
  .site-header { min-height: 90px; }
  .header-inner { display: flex; min-height: 95px; align-items: flex-start; }
  .logo { width: auto; height: 76px; max-width: none; max-height: none; margin: 9px 0 10px; }
  .nav-toggle { display: none; }
  .main-navigation { display: block; clear: none; margin-left: auto; border-top: 0; }
  .main-navigation ul { display: flex; margin: 0 20px 0 0; }
  .main-navigation a { padding: 37px 15px 30px; border-left: 0; color: var(--muted); font-size: 16px; text-align: center; text-transform: uppercase; }
  .main-navigation a::after {
    position: absolute;
    right: 15px;
    bottom: 22px;
    left: 15px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-accent);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }
  .main-navigation a:hover,
  .main-navigation a:focus-visible,
  .main-navigation .active > a { background: transparent; color: var(--dark); }
  .main-navigation a:hover::after,
  .main-navigation a:focus-visible::after,
  .main-navigation .active > a::after { opacity: 1; transform: scaleX(1); }
  .mobile-actions { display: none; }
}

@media (min-width: 769px) and (max-width: 991.98px) {
  .logo { width: auto; height: 58px; max-width: none; max-height: none; margin-top: 18px; margin-bottom: 19px; }
  .main-navigation ul { margin-right: 0; }
  .main-navigation a { padding-right: 4px; padding-left: 4px; font-size: 15px; }
  .main-navigation a::after { right: 4px; left: 4px; }
}

@media (min-width: 992px) {
  .site-container { width: 970px; }
  .footer-about { width: 50%; }
  .footer-information { width: 16.66666667%; }
  .footer-contact { width: 33.33333333%; }
}

@media (min-width: 1200px) {
  .site-container { width: 1170px; }
}

@media (max-width: 768.98px) {
  body { padding-bottom: 50px; }
  .language-row,
  .language-inner,
  .language-links { height: 32px; }
  .language-links button,
  .language-links a { min-width: 54px; height: 27px; padding: 0 8px; gap: 5px; font-size: 11px; }
  .language-links img { width: 16px; height: 11px; }
  .site-header { min-height: 50px; }
  .header-inner { min-height: 50px; }
  .header-inner::after { display: table; clear: both; content: ""; }
  .brand { float: left; height: 50px; margin-left: -15px; }
  .logo { width: auto; height: 42px; max-width: none; max-height: none; margin: 4px 0 4px 10px; }
  .route-view .container { width: 100%; }
  .route-view .contents { line-height: 29px; }
  .route-view table { display: block; width: 100% !important; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .route-view td,
  .route-view th { min-width: 96px; }
  .copyright-bar { padding-top: 4px; padding-bottom: 4px; line-height: 28px; }
  .info-footer { padding-bottom: 10px; }
  .info-footer a,
  .info-footer a:visited { color: #060606; text-decoration: none; }
  .info-footer a:hover,
  .info-footer a:active,
  .info-footer a:focus-visible { color: var(--brand-accent); text-decoration: none; }
  .info-footer a:focus { outline: none; }
  .info-footer a:focus-visible { border-radius: 2px; box-shadow: 0 0 0 2px rgba(242, 140, 0, 0.3); }
  .footer-column { margin-top: 20px; margin-bottom: 0; }
  .route-notice { top: 12px; }
  .route-view .flash { touch-action: pan-y; user-select: none; }
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: 7px; gap: 6px; padding: 5px 7px; }
}

@media (max-width: 369px) {
  .main-navigation a { padding-top: 8px; padding-bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  a,
  button,
  .main-navigation a::after,
  .carousel-arrow,
  .carousel-dot { transition: none; }
}
