@charset "UTF-8";
/* Smaller, more compact clamp sizes */
body {
  font-family: "Roboto", sans-serif;
  font-size: calc(16 * var(--cf));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.8rem, 1.8vw + 1.2rem, 2.6rem);
}

h2 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.1rem);
}

h3 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.25rem, 1.2vw + 0.8rem, 1.6rem);
}

h4 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 1.1rem;
}

h5 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 1rem;
}

h6 {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 0.9rem;
}

.btn:not(.dropdown-toggle), .badge, .nav-link {
  font-family: "Roboto", "Roboto", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-panel::-webkit-scrollbar {
  width: calc(8 * var(--cf));
}

.main-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: calc(4 * var(--cf));
}

.main-panel::-webkit-scrollbar-track {
  background-color: transparent;
}

/* ------------------------------------------------------------
   Global reset
------------------------------------------------------------ */
html,
body {
  height: 100%;
  margin: 0;
}

/* ------------------------------------------------------------
   Global body defaults
------------------------------------------------------------ */
body {
  display: flex;
  flex-direction: column;
  /* FONT */
  font-family: "Roboto", sans-serif;
  font-size: calc(16 * var(--cf));
  line-height: 1.6;
  /* COLOR */
  color: #222124;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------
   Ensure inheritance (important for Bootstrap)
------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* Form controls */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Disable text selection */
/* Theme-aware text helpers */
.white {
  color: #fff;
}

.onBlue {
  color: #F7F7F7;
}

.centered {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.fs-12 {
  font-size: calc(12 * var(--cf));
}

.fs-14 {
  font-size: calc(14 * var(--cf));
}

.fs-16 {
  font-size: calc(16 * var(--cf));
}

.fs-20 {
  font-size: calc(20 * var(--cf));
}

.fs-36 {
  font-size: calc(32 * var(--cf));
}

.fs-48 {
  font-size: calc(48 * var(--cf));
}

.fs-64 {
  font-size: calc(64 * var(--cf));
}

.fs-72 {
  font-size: calc(64 * var(--cf));
}

.text-orange {
  color: #FA7C28;
}

/* Buttons */
button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(8 * var(--cf));
  height: calc(48 * var(--cf));
  padding: calc(4 * var(--cf)) calc(16 * var(--cf));
  font-size: calc(14 * var(--cf));
  width: -moz-fit-content;
  width: fit-content;
  border-radius: calc(12 * var(--cf));
  cursor: pointer;
  background-color: #1E5058;
  color: #fff;
  outline: none;
  box-shadow: none;
}
button:hover {
  background-color: #25606A;
}
button:active {
  background-color: #163D43;
}
button:focus {
  outline: none;
  box-shadow: none;
}
button.light {
  background-color: white;
  color: #1E5058;
  border: 1px solid #1E5058;
}
button.light:hover {
  color: #25606A;
  opacity: 0.9;
}
button.light:active {
  color: #163D43;
  opacity: 0.95;
}
button.wide {
  font-size: calc(24 * var(--cf));
  padding: calc(16 * var(--cf)) calc(32 * var(--cf));
}

.site-header {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100vw;
  z-index: 1;
}
.site-header > div {
  display: flex;
  align-items: center;
}
.site-header > div > div {
  padding-left: calc(16 * var(--cf));
  font-size: calc(12 * var(--cf));
}
.site-header .navLine {
  display: flex;
  justify-content: center;
  min-height: calc(68 * var(--cf));
  background-color: #4361EE;
  color: white;
  padding: 0 calc(16 * var(--cf));
}
.site-header .navLine > div {
  max-width: calc(1400 * var(--cf));
  width: calc(1440 * var(--cf));
  display: flex;
  align-items: center;
}
.site-header .navLine .logo {
  cursor: pointer;
}
.site-header .backLine {
  background-color: #EDEDED;
  min-height: calc(40 * var(--cf));
}

/* Header / Footer */
/* ***.site-header {  
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100vw;
  z-index: 1;

  & .logo {
    cursor: pointer;
  }

  & .infoLine {
    display: flex;    
    justify-content: center;
    min-height: calc(40 * var(--cf));
    background-color: $secondary-container;
    color: black;

    & > div {
      display: flex;
      align-items: center;
      width: $basePlane; 

      & > div { 
        padding-left: calc(16 * var(--cf));
        font-size: calc(12 * var(--cf));        
      }
    }
  }

  & .navLine {
    display: flex;
    justify-content: center;
    min-height: calc(80 * var(--cf));
    background-color: $primary;
    color: white;

    & > div {
      display: flex;
      align-items: center;
      width: $basePlane; 

      & > div { 
        font-size: calc(16 * var(--cf));        
      }
    }

    & .navItem {
      font-size: calc(16 * var(--cf));
      margin-left: calc(24 * var(--cf));
      cursor: pointer;
      color: $icon-color;
      &:hover { color: $icon-color-hover; }
      &:active { color: $icon-color-active; }
      &.selected { color: $green-background; font-weight: bolder;}
    }
  }

  & .backLine {
    background-color: white;
    min-height: calc(40 * var(--cf));
  }

  & .social {
    margin-right: calc(16 * var(--cf));
    height: calc(26 * var(--cf));
    cursor: pointer;
    &:hover { opacity: 0.6; }
    &:active { opacity: 0.8; }
  }
} *** */
#pageTrail {
  width: calc(1400 * var(--cf));
}
#pageTrail a {
  font-size: calc(14 * var(--cf));
  text-decoration: none;
  color: black;
  opacity: 0.6;
}
#pageTrail a:hover {
  opacity: 0.8;
}
#pageTrail a:active {
  opacity: 1;
}
#pageTrail .trail-current {
  font-size: calc(14 * var(--cf));
  color: black;
}

/* Main section fills remaining space */
.site-main {
  margin-top: calc(108 * var(--cf));
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.module {
  width: 100vw;
  padding: calc(36 * var(--cf)) 0;
}
.module.narrow {
  padding: calc(8 * var(--cf)) 0;
}
.module.midHeight {
  padding: calc(16 * var(--cf)) 0;
}
.module.topZero {
  padding-top: 0;
}
.module > div {
  max-width: calc(1400 * var(--cf));
  margin: 0 calc(20 * var(--cf));
}
.module > div.inner {
  padding: calc(16 * var(--cf));
}
.module.flat {
  background-color: #FFFFFF;
}
.module.blue {
  background-color: #1E5058;
}
.module.green {
  background-color: #8BB4B8;
}
.module.gray {
  background-color: #EDEDED;
}

.module1 * {
  padding-bottom: calc(8 * var(--cf));
}

.moduleNavContainer {
  background-color: #EDEDED;
}
.moduleNavContainer .moduleNav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.moduleNavContainer .moduleNav .navCell {
  margin: 0 calc(48 * var(--cf));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  color: #F7F7F7;
}
.moduleNavContainer .moduleNav .navCell .navTitle {
  text-align: center;
  font-size: calc(16 * var(--cf));
  font-weight: bold;
  color: #222124;
}
.moduleNavContainer .moduleNav .navCell .imgContainer {
  width: calc(96 * var(--cf));
  border-radius: calc(48 * var(--cf));
  background-color: #D9D9D9;
  padding: calc(16 * var(--cf));
}
.moduleNavContainer .moduleNav .navCell .imgContainer img {
  height: calc(64 * var(--cf));
}
.moduleNavContainer .moduleNav .navCell:hover .imgContainer {
  background-color: #4361EE;
}
.moduleNavContainer .moduleNav .navCell:hover .imgContainer img {
  filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(252deg) brightness(107%) contrast(102%);
}
.moduleNavContainer .moduleNav .navCell:hover .navTitle {
  color: #4361EE;
}
.moduleNavContainer .moduleNav .navCell:active .imgContainer {
  background-color: #3A0CA3;
}
.moduleNavContainer .moduleNav .navCell:active .imgContainer img {
  filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(252deg) brightness(107%) contrast(102%);
}
.moduleNavContainer .moduleNav .navCell:active .navTitle {
  color: #3A0CA3;
}

.moduleQuestionnaire {
  color: #F7F7F7;
  cursor: pointer;
}
.moduleQuestionnaire:hover {
  color: #EAEAEA;
}
.moduleQuestionnaire:active {
  color: #DADADA;
}
.moduleQuestionnaire.selected {
  color: #E4F5E9;
  font-weight: bolder;
}

.module2 .category {
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
}
.module2 .category.left {
  margin-right: calc(8 * var(--cf));
}
.module2 .category.right {
  margin-left: calc(8 * var(--cf));
}
.module2 .category * {
  padding-bottom: calc(8 * var(--cf));
}
.module2 .title {
  width: 100%;
  text-align: center;
  font-size: calc(48 * var(--cf));
}
.module2 .text {
  font-size: calc(16 * var(--cf));
}

.module3 {
  /* 👇 Universal fix: all direct children get full width */
}
.module3 .cell {
  height: 100%;
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: 0 calc(16 * var(--cf));
  border-radius: calc(20 * var(--cf));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: calc(8 * var(--cf));
  margin-right: calc(8 * var(--cf));
}
.module3 .cell:hover {
  background-color: #ededed;
}
.module3 .cell > * {
  width: 100%;
  max-width: 100%;
}
.module3 .cell img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: calc(12 * var(--cf));
  display: block;
  border-radius: calc(20 * var(--cf)) calc(20 * var(--cf)) 0 0;
}
.module3 .title {
  font-size: calc(20 * var(--cf));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.module3 .text {
  font-size: calc(16 * var(--cf));
}
.module3 .cell > .centerFlex {
  margin-top: auto;
  padding-top: calc(16 * var(--cf));
  display: flex;
  justify-content: center;
  width: 100%;
}
.module3 .cell p:last-of-type {
  margin-bottom: 0;
}

.module4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blogRow {
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blogRow img {
  width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: calc(12 * var(--cf));
  display: block;
  border-radius: calc(8 * var(--cf));
}
.blogRow .title {
  font-size: calc(36 * var(--cf));
  font-weight: bold;
  padding-bottom: calc(8 * var(--cf));
}
.blogRow .teaser {
  font-size: calc(16 * var(--cf));
}

.categoryContainer {
  margin-bottom: calc(24 * var(--cf));
  max-width: calc(1400 * var(--cf));
  display: flex;
  align-items: stretch;
}
.categoryContainer > .col, .categoryContainer > .categoryLeft, .categoryContainer > .categoryRight {
  display: flex;
  flex-direction: column;
}
.categoryContainer .module {
  width: 100%;
  padding: 0;
}
.categoryContainer .module.midHeight {
  margin-top: calc(16 * var(--cf));
}
.categoryContainer .module.rounded {
  border-radius: calc(16 * var(--cf)) !important;
}
.categoryContainer .categoryLeft {
  margin: calc(16 * var(--cf)) 0;
  width: calc(360 * var(--cf));
}
.categoryContainer .categoryLeft > div {
  height: 100%;
  margin-right: calc(16 * var(--cf));
  border: 1px solid #2E2E2E;
  border-radius: calc(8 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
}
.categoryContainer .categoryRight {
  margin: calc(16 * var(--cf)) 0;
  width: calc(360 * var(--cf));
}
.categoryContainer .categoryRight > div {
  height: 100%;
  margin-left: calc(16 * var(--cf));
  border: 1px solid #2E2E2E;
  border-radius: calc(8 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
}
.categoryContainer .categoryRight .blogCell {
  padding: calc(16 * var(--cf)) calc(8 * var(--cf));
}
.categoryContainer .categoryRight .blogCell .title {
  font-size: calc(18 * var(--cf));
  font-family: "Roboto", "Roboto", sans-serif;
  padding-top: calc(12 * var(--cf));
}
.categoryContainer .categoryRight .blogCell .text {
  font-size: calc(14 * var(--cf));
}
.categoryContainer .categoryRight .blogCell img {
  width: 100%;
}

.categoryTitle {
  border: 1px solid #2E2E2E;
  border-radius: calc(24 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
}
.categoryTitle * {
  padding-bottom: calc(8 * var(--cf));
}

.categoryModule {
  width: calc(1400 * var(--cf));
}
.categoryModule .categoryCell {
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid black;
  border-radius: calc(16 * var(--cf));
}
.categoryModule .categoryCell .row {
  margin-top: calc(12 * var(--cf));
}
.categoryModule .categoryCell .indent {
  padding-left: calc(24 * var(--cf));
}
.categoryModule .categoryCell .shallowIndent {
  padding-left: calc(8 * var(--cf));
}
.categoryModule .categoryCell h3 {
  font-size: calc(36 * var(--cf));
}
.categoryModule .categoryCell h4 {
  font-size: calc(24 * var(--cf));
  margin-top: calc(12 * var(--cf));
}
.categoryModule .categoryCell .text {
  font-size: calc(16 * var(--cf));
}
.categoryModule .categoryCell .text.spacer {
  font-size: calc(4 * var(--cf));
}
.categoryModule .categoryCell.left {
  margin-right: calc(8 * var(--cf));
}
.categoryModule .categoryCell.right {
  margin-left: calc(8 * var(--cf));
}

/* Make sibling columns match height */
.equalHeight {
  display: flex;
  align-items: stretch;
}

/* All equal-height columns become flex containers */
.equalHeight > [class*=col-],
.equalHeight > .adsBlock,
.equalHeight > .brandsBlock {
  display: flex;
}

/* -------------------- */
/* brandsBlock version  */
/* -------------------- */
.brandsBlock {
  flex-direction: column;
}

/* same spacer reuse */
.adSpacer {
  height: calc(8 * var(--cf));
}

/* HEIGHT RATIOS: slider = 1, questionnaire = 2 */
.slider {
  padding: calc(16 * var(--cf));
  flex: 1 1 0;
}

.questionaireBox {
  flex: 2 1 0;
  background: #E4F5E9;
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
  padding: calc(16 * var(--cf));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.readMoreButton {
  display: flex;
  align-items: center;
  height: calc(40 * var(--cf));
  color: #41729F;
  font-size: calc(16 * var(--cf));
  cursor: pointer;
}
.readMoreButton:hover {
  color: #4D88BF;
  border-color: #4D88BF;
  font-weight: bold;
}
.readMoreButton:active {
  color: #335A7A;
  border-color: #335A7A;
}

.slider-wrapper {
  display: flex;
  justify-content: space-around; /* space-around layout */
  align-items: center;
  width: 100%;
  min-height: calc(100 * var(--cf)); /* adjust as needed */
  overflow: hidden;
}

.slider-wrapper img {
  max-width: 20%; /* 4 images in a row */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}

.slider-wrapper img:hover {
  transform: scale(1.03);
  opacity: 1;
  cursor: pointer;
}

.site-footer {
  padding: calc(24 * var(--cf)) 0;
  flex-shrink: 0;
  width: 100%;
  background-color: #2E2E2E;
  color: white;
}
.site-footer > div {
  max-width: calc(1440 * var(--cf));
  padding: 0 calc(20 * var(--cf));
}
.site-footer .footerLink {
  font-size: calc(16 * var(--cf));
}
.site-footer .right {
  display: flex;
  justify-content: end;
}

/* Center panel and limit width */
.main-panel {
  position: relative;
  max-width: calc(1440 * var(--cf));
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--background);
  box-shadow: 0 calc(4 * var(--cf)) calc(12 * var(--cf)) rgba(0, 0, 0, 0.08);
}
.main-panel .mainImage {
  position: relative;
  display: flex;
  align-items: center;
}
.main-panel .mainImage img {
  width: 100%;
}
.main-panel .mainImage h1, .main-panel .mainImage p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

#categories {
  display: flex;
  justify-content: center;
}
#categories .categoryCell {
  padding: calc(16 * var(--cf));
}
#categories .categoryCell img {
  width: 100%;
  border-radius: calc(12 * var(--cf)) calc(12 * var(--cf)) 0 0;
}
#categories .categoryCell > div {
  background-color: white;
  border: 1px solid black;
  border-radius: calc(12 * var(--cf));
}
#categories .categoryCell > div:hover {
  background-color: #ededed;
}
#categories .categoryCell .title {
  margin: calc(16 * var(--cf)) 0;
  font-size: calc(16 * var(--cf));
  font-weight: bold;
  text-align: center;
}
#categories .categoryCell button {
  margin-top: unset;
  margin-bottom: calc(16 * var(--cf));
}

#blogCategoriesContainer .filter-option {
  display: flex;
  align-items: center;
}

#blogList {
  margin: calc(16 * var(--cf)) 0;
}
#blogList .blogItem {
  border: calc(1 * var(--cf)) solid black;
  border-radius: calc(12 * var(--cf));
  min-height: calc(80 * var(--cf));
  padding: calc(8 * var(--cf));
  margin-bottom: calc(16 * var(--cf));
}
#blogList .blogItem .blogCell {
  width: 100%;
  height: 100%;
  padding-right: calc(16 * var(--cf));
}
#blogList .blogItem .blogCell .imageContainer {
  padding: calc(8 * var(--cf));
  display: flex;
  align-items: center;
}
#blogList .blogItem .blogCell .imageContainer img {
  max-width: 100%;
  border-radius: calc(8 * var(--cf));
}
#blogList .blogItem .blogCell .col > * {
  margin-bottom: calc(8 * var(--cf));
}
#blogList .blogItem .blogCell .date {
  font-size: calc(13 * var(--cf));
  color: gray;
}
#blogList .blogItem .blogCell .blogLink {
  font-size: calc(15 * var(--cf));
  color: blue;
  cursor: pointer;
}
#blogList .blogItem.right .date, #blogList .blogItem.right .title, #blogList .blogItem.right p {
  text-align: end;
}
#blogList .blogItem.right .blogCell {
  padding-right: unset;
}
#blogList .blogItem.right p.two-row-ellipsis-right {
  text-align: unset;
  padding-right: calc(8 * var(--cf));
}

.citiesFilterContainer {
  padding: calc(16 * var(--cf));
}
.citiesFilterContainer .form-control {
  background-color: unset;
}
.citiesFilterContainer .bootstrap-select .dropdown-toggle .filter-option {
  display: contents;
}

.entityCard {
  border: 1px solid black;
  border-radius: calc(16 * var(--cf));
  padding: calc(8 * var(--cf)) calc(16 * var(--cf));
  margin-top: calc(16 * var(--cf));
}
.entityCard .image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(8 * var(--cf));
}
.entityCard .image img {
  max-width: 100%;
}
.entityCard .info {
  padding-left: calc(8 * var(--cf));
}
.entityCard .brands > div {
  padding-right: calc(16 * var(--cf));
  padding-bottom: calc(8 * var(--cf));
}
.entityCard .contacts {
  padding: calc(12 * var(--cf)) 0;
}
.entityCard .contactInfo {
  padding: calc(8 * var(--cf));
  border-radius: calc(6 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
  padding-bottom: calc(12 * var(--cf));
}

.brandChip {
  background-color: #41729F;
  height: calc(48 * var(--cf));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: calc(24 * var(--cf));
  font-size: calc(16 * var(--cf));
  cursor: pointer;
}
.brandChip:hover {
  background-color: #4D88BF;
}
.brandChip:active {
  background-color: #335A7A;
}

#manufacturerCategories {
  display: flex;
  padding-bottom: calc(24 * var(--cf));
}
#manufacturerCategories > div {
  padding-right: calc(16 * var(--cf));
}

#companyContainer {
  flex-direction: column;
}

.manufacturerContainer {
  margin-bottom: calc(24 * var(--cf));
  max-width: calc(1400 * var(--cf));
  display: flex;
  align-items: stretch;
  padding: calc(16 * var(--cf)) calc(24 * var(--cf));
  /*
    & > .col,
    & > .categoryLeft,
    & > .categoryRight {
      display: flex;          // allow them to stretch inside
      flex-direction: column; // optional (helps if content isn't stretching)
    }

    & .module {
      width: 100%;    
      padding: 0;   

      &.midHeight {
        margin-top: calc(16 * var(--cf));
      }

      &.rounded { border-radius: calc(16 * var(--cf)) !important; } 
    }

    & .categoryLeft {
      margin: calc(16 * var(--cf)) 0;
      width: calc(360 * var(--cf));

      & > div {
        height: 100%;
        margin-right: calc(16 * var(--cf));
        border: 1px solid $primary;
        border-radius: calc(8 * var(--cf));
        background-color: rgba($bg-green, 0.1);
      }

    }

    & .categoryRight {
      margin: calc(16 * var(--cf)) 0;
      width: calc(360 * var(--cf));

      & > div {
        height: 100%;
        margin-left: calc(16 * var(--cf));
        border: 1px solid $primary;
        border-radius: calc(8 * var(--cf));
        background-color: rgba($bg-green, 0.1);
      }

      & .blogCell {
        padding: calc(16 * var(--cf)) calc(8 * var(--cf));

        & .title {
          font-size: calc(18 * var(--cf));
          font-family: $font-family-accent;
          padding-top: calc(12 * var(--cf));
        }

        & .text {
          font-size: calc(14 * var(--cf));
        }

        & img {
          width: 100%;
        }
      }
    }
      */
}
.manufacturerContainer .companyContainer {
  padding-right: calc(16 * var(--cf));
}
.manufacturerContainer .infoContainer {
  padding-left: calc(16 * var(--cf));
}
.manufacturerContainer .infoContainer .infoBlock {
  border: 1px solid black;
  border-radius: calc(12 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
  padding: calc(16 * var(--cf));
}

.blogPage {
  flex-direction: column;
  max-width: calc(840 * var(--cf)) !important;
  padding: calc(36 * var(--cf)) calc(20 * var(--cf));
  background-color: white;
  border-radius: 0 0 calc(36 * var(--cf)) calc(36 * var(--cf));
}
.blogPage > div {
  margin-bottom: calc(16 * var(--cf));
}
.blogPage .body > * {
  margin-bottom: calc(16 * var(--cf));
}
.blogPage img {
  max-width: 100%;
  border-radius: calc(24 * var(--cf));
}

.blogDetailNavigation {
  max-width: calc(840 * var(--cf)) !important;
  border-radius: calc(50 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
  min-height: calc(100 * var(--cf));
}
.blogDetailNavigation > div {
  padding: 0 calc(24 * var(--cf));
}
.blogDetailNavigation img {
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
}
.blogDetailNavigation .blogDetailNavigationCell {
  padding: calc(12 * var(--cf));
  cursor: pointer;
}
.blogDetailNavigation .blogDetailNavigationCell:hover {
  background-color: rgba(139, 180, 184, 0.3);
}
.blogDetailNavigation .blogDetailNavigationCell:active {
  background-color: rgba(139, 180, 184, 0.5);
}
.blogDetailNavigation .blogDetailNavigationCell.left {
  border-radius: calc(50 * var(--cf)) 0 0 calc(50 * var(--cf));
  border-right: calc(0.1 * var(--cf)) solid #8BB4B8;
}
.blogDetailNavigation .blogDetailNavigationCell.right {
  border-radius: 0 calc(50 * var(--cf)) calc(50 * var(--cf)) 0;
  border-left: calc(0.1 * var(--cf)) solid #8BB4B8;
}

.bootstrap-select .dropdown-menu li.disabled a {
  opacity: 0.2;
}

@media (max-width: 1440px) {
  .module {
    padding: 0px calc(20 * var(--cf)) !important;
  }
}/*# sourceMappingURL=cati.css.map */