/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}
.dnd-section {
   overflow: hidden;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'Noto Sans', sans-serif;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  row-gap: 0.25em;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.link-group {
  display: flex;
  column-gap: 1px;
}

.link-group__link,
.link-group__link:visited {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 1em;
  padding: 1em 1.5em;
  border: 1px solid var(--thermo-blue);
  text-decoration: none;
  line-height: 0.875;
  font-size: 1em;
  background-color: var(--thermo-blue);
  color: white;
  transition: background-color 300ms, color 300ms;
  white-space: nowrap;
}

.link-group__link:focus,
.link-group__link:active,
.link-group__link:hover {
  background-color: var(--thermo-blue--hover);
  color: white;
}

.link-group__link .fas {
  font-size: 0.75em;
}


.link-group__link--red,
.link-group__link--red:visited {
  background-color: var(--thermo-red);
  border: 1px solid var(--thermo-red);
}


.link-group__link--red:focus,
.link-group__link--red:active,
.link-group__link--red:hover {
  background-color: var(--thermo-red--hover);
  color: white;
}
/* Fields */




form {
  display: flex;
  flex-direction: column;
  row-gap: calc(20px / 2);
}


form fieldset {
  max-width: 100% !important;
  width: 100%;
  column-gap: 20px;
  display: flex;
  flex-direction: column;
  row-gap: calc(20px / 2);
}

form fieldset .hs-form-field {
  flex-basis: 100%;
  float: none !important;
  width: auto !important;
}



form .form-columns-1 {
  width: 100%;
  display: flex;
  max-width: 100% !important;
}

form .form-columns-1 > div {
  flex-basis: 100%;
}

form fieldset.form-columns-2 {
  max-width: 100% !important;
  width: 100%;
}

form fieldset.form-columns-2 .hs-form-field {
  flex-basis: 100%;
  float: none !important;
  width: auto !important;
}


form .hs-form-field label {
  color: var(--body-color);
  font-size: 16px;
  transition: 300ms;
  padding-bottom: 5px;
  display: block;
}

form .hs-form-field label.hs-error-msg {
  color: var(--thermo-red);
}
form .hs-form-field .input {
  margin: 0 !important;
}
form .hs-form-field .hs-input {
  margin: 0 !important;
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0;
  line-height: 50px;
  height: 50px;
  padding: 0 16px;
  font-size: 16px;
  transition: 300ms;
  margin: 0 !important;
  color: var(--body-color);
}
form .hs-form-field textarea.hs-input {
  height: 200px;
}

form .hs-form-field .hs-input.is-placeholder,
form .hs-form-field .hs-input::placeholder { 
  color: rgba(0,0,0,0.3);
  opacity: 1; /* Firefox */
}

form .hs-form-field .hs-input.is-placeholder option { 
  color: var(--body-color);
}

form .hs-form-field .hs-input.invalid {
  border: 1px solid var(--thermo-red);
}


form .hs-form-field .hs-input:focus {
  border: 1px solid var(--thermo-blue);
  outline: none;
}

form legend.hs-field-desc {
  display: none !important;
}


form .inputs-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: calc(20px / 2);
}

form .inputs-list li {
  display: flex;
  width: 100% !important;
  align-items: center;
  max-width: 100% !important;
}

form .inputs-list li label {
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 1em;
}

form .inputs-list li label  .hs-input {
  width: 16px !important;
  height: 16px !important;
}
form .actions {
  padding-top: 22px;
}
form .actions .hs-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  width: 100%;
  padding: 14px 23px;
  font-size: inherit;
  transition: 300ms;
  cursor: pointer;

  column-gap: 1em;
  text-decoration: none;
  line-height: 1;
  font-size: inherit;
  color: white;
  transition: 300ms;
  border-radius: 10px;
  min-height: 50px;
  background: var(--thermo-blue);
}

form .actions .hs-button:focus,
form .actions .hs-button:active,
form .actions .hs-button:hover {
  background: var(--thermo-red);
  color: white;
  border: none;
}

.hs-button-wrap {
  position: relative;
}

.hs-button-wrap i {
  position: absolute !important;
  top: 50% !important;
  right: 22px !important;
  color: white;
  font-size: 16px !important;
  transform: translateY(-50%) !important;
}

.hs-dependent-field .field + .field{
  margin-top: 10px;
}

.hs-form-field label > span:empty + span.hs-form-required {
  display: none;
}

form .hs-form-field .hs-input[type="file"] {
    padding: 0;
    border: 0 none;
    background-color: transparent;
    appearance: none;
    height: auto;
}

@media all and (min-width: 550px) {
  form fieldset.form-columns-3,
  form fieldset.form-columns-2 {
    max-width: 100% !important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 20px;
  }
  form fieldset.form-columns-3 .hs-form-field,
  form fieldset.form-columns-2 .hs-form-field {
    flex-basis: calc(50% - (20px / 2));
    float: none !important;
    width: auto !important;
    flex-grow: 1;
  }
}



@media all and (min-width: 960px) {
  form fieldset.form-columns-3 {
    max-width: 100% !important;
    width: 100%;
    flex-direction: row;
    column-gap: 20px;
  }

  form fieldset.form-columns-3 .hs-form-field {
    flex-basis: calc(33.33% - ((20px * 2) / 3));
    float: none !important;
    width: auto !important;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header__top {
  background: var(--thermo-blue);
  color: white;
}



/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Global Partials
Styles for Global Partials 
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-cat-intro {
  min-height: 100px;
  padding: 0 1.5rem;
}

.tl-cat-intro__container {
  box-sizing: border-box;
  flex-direction: column;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  column-gap: 10%;
}

.tl-cat-intro__contents {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  flex-basis: 70%;
}


.tl-cat-intro__title {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  color: var(--thermo-blue);
}

@media screen and (min-width: 375px) {
  .tl-cat-intro__title {
    font-size: calc(25px + 10 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-cat-intro__title {
    font-size: 35px;
  }

}

.tl-cat-intro__content {
  line-height: 1.5;
  padding-bottom: 36px;
}
.tl-cat-intro__expander {
  overflow: hidden;
  position: relative;
}
.expander-open .tl-cat-intro__expander,
.expander-closed .tl-cat-intro__expander {
  transition: height 300ms; 
}

.tl-cat-intro__expander:after {
  content: '';
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,100,0) 100%);
  opacity: 0;
  transition: opacity 300ms;
}

.expander-closed .tl-cat-intro__expander:after {
  opacity: 1;
}

.tl-cat-intro__expander *:last-child {
  margin-bottom: 0 !important;
}

.tl-cat-intro__expander-action {
  padding: 1em 0;
  background: none;
  color: var(--thermo-blue);
  font-size: 16px;
  border: none;
}

.tl-cat-intro__expander-action-more,
.tl-cat-intro__expander-action-less {
  display: flex; 
  column-gap: 0.75rem;
  align-items: center;
}

.tl-cat-intro__expander-action .fas {
  font-size: 14px; 
}

.tl-cat-intro__expander-action:active,
.tl-cat-intro__expander-action:focus,
.tl-cat-intro__expander-action:hover {
  color: var(--thermo-red);
  background: none;
  border: none;
  outline: none;
}

.tl-cat-intro__expander-action-less {
  display: none; 
}


.expander-open .tl-cat-intro__expander-action-less {
  display: flex; 
}
.expander-open .tl-cat-intro__expander-action-more {
  display: none; 
}

.tl-cat-intro__image {
  flex-basis: 30%;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: flex-end;
  display: none;
}

.tl-cat-intro__img {
  display: block;
  width: 100%;
  height: 307px;
  object-fit: cover;
  object-position: top;
}

@media all and (min-width: 800px) {
 .tl-cat-intro__container {
    flex-direction: row;
  }
  .tl-cat-intro__image {
    display: flex; 
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-breadcrumbs {
  padding: 1.5em;
  overflow-x: scroll;
  width: 100%;
}
.tl-breadcrumbs::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.tl-breadcrumbs__list {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
}

.tl-breadcrumbs__list-item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--thermo-blue);
}

.tl-breadcrumbs__list-link,
.tl-breadcrumbs__list-link:visited {
  display: block;
  padding: 0.5em 1em;
  color: var(--thermo-blue);
  transition: color 300ms;
  white-space: nowrap;
}
.tl-breadcrumbs__list-link.active-item {
  font-weight: bold;
  pointer-events: none;
}

.tl-breadcrumbs__list-item:first-child .tl-breadcrumbs__list-link {
  padding-left: 0;
}

.tl-breadcrumbs__list-link:hover,
.tl-breadcrumbs__list-link:active {
  color: var(--thermo-red);
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-product-listing {
  min-height: 100px;
}

.tl-product-listing__header {
  padding: 0;
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}

.tl-product-listing__header-container,
.tl-product-listing__body-container {
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
}

.tl-product-listing__header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.tl-product-listing__header-controls {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.tl-product-listing.search-template .tl-product-listing__header-control{ flex-grow: 1; }


.tl-product-listing__header-control {
  position: relative; 
  transition: color 300ms;
  border-bottom: 1px solid var(--grey-2);
}

.tl-product-listing__header-control:hover {
  color: var(--thermo-red);
}

.tl-product-listing__header-control .fas {
  position: absolute;
  top: calc(50% - 7px);
  right: 1rem;
  font-size: 12px;
}

.tl-product-listing__header-select {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: ellipsis; 
  color: inherit;
  width: 100%;
  line-height: 1.3em;
}

.tl-product-listing__header-select option {
  color: black;
}

.tl-product-listing__header-select::-ms-expand {
    display: none;
}

.tl-product-listing__header-select:focus,
.tl-product-listing__header-select:active {
  outline: none; 
}

.tl-product-listing__header-results-status,
.tl-product-listing__header-search form label {
  white-space: nowrap;
  padding: 1em 0;
}

.tl-product-listing__header-search form {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-product-listing__header-search form input,
.tl-product-listing__header-search form input:focus,
.tl-product-listing__header-search form input:active {
  border: none !important;
  font-size: 18px;
  outline: none;
}

.tl-product-listing__header-search form label{
	font-size: 1em;
	color: #000;
	margin: 0;
}




.tl-product-listing__body {
  padding: 0 1.5rem;
  background: #F8F7F7;
}

.tl-product-listing__body-container {
 padding: calc(3vw + 2rem) 0;
}


@media all and (min-width: 550px) {
  .tl-product-listing__header-controls {
    flex-direction: row;
    justify-content: stretch;
  }
  
  .tl-product-listing__header-control {
    flex-basis: 50%; 
  }
  .tl-product-listing__header-control:first-child {
    border-right: 1px solid var(--grey-2);
  }
}

@media all and (max-width: 830px) {
  .tl-product-listing__header-search form label{ padding-bottom: 0; }
  
  .tl-product-listing__header-search form input {
    text-align: center;
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 830px) {
  .tl-product-listing__header-container {
    flex-direction: row;
  }
  .tl-product-listing__header-controls {
    flex-direction: row;
    justify-content: stretch; 
    border-left: 1px solid var(--grey-2);
  }
  
  .tl-product-listing__header-control {
    flex-basis: auto; 
  }
  
  .tl-product-listing__header-control {
    border-right: 1px solid var(--grey-2);
    border-bottom: none;
  }
  
  .tl-product-listing__header-search form {
    flex-direction: row;
  }
  
  .tl-product-listing__header-results-status,
  .tl-product-listing__header-search form label {
    padding: 1em 1.5rem;
  }
  

}

.tl-product-listing__products {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.tl-product-listing__product {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  background: white;
  border: 1px solid var(--grey-2);
  border-bottom: 3px solid var(--thermo-red);
  width: 100%;
  min-height: 100px; 
}

.tl-product-listing__product-image {
  flex-basis: 100%;
  position: relative;
  min-height: 225px;
}

.tl-product-listing__product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tl-product-listing__product-content {
  flex-basis: 100%;
  padding: 2rem;
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.tl-product-listing__product-content-title {
  color: var(--thermo-blue);
  font-size: 25px;
  margin: 0;
  font-weight: bold;
  transition: color 300ms;
}
.tl-product-listing__product-content-title:hover {
  color: var(--thermo-red);
}

.tl-product-listing__product-content-sku {
  margin: 0;
  font-size: 19px;
  color: var(--grey-3);
  display: block;
  font-weight: bold;
}

.tl-product-listing__product-content-description {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.tl-product-listing__product-content-description ul {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  margin: 0;
  padding-left: 1.25em;
}

.tl-product-listing__product-specs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;
}

.tl-product-listing__product-specs-data {
  display: flex;
  flex-direction: column;
  padding: 2em; 
  row-gap: 1rem;
}


.tl-product-listing__product-specs-title {
  color: var(--thermo-blue);
  font-size: 16px;
  margin: 0;
}

.tl-product-listing__product-specs-data ul {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.tl-product-listing__product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  padding: 1em 2em;
  color: inherit;
  transition: color 300ms;
  border-top: 1px solid var(--grey-2);
}
.tl-product-listing__product-link .fas {
  font-size: 12px; 
}

.tl-product-listing__product-link:hover {
  color: var(--thermo-red); 
}

@media all and (min-width: 639px) {
  .tl-product-listing__product-content {
    flex-basis: 50%;
    border-right: 1px solid var(--grey-2);
  }
  
  .tl-product-listing__product-specs {
    flex-basis: 50%;
    border-top: 1px solid var(--grey-2);
  }
}

@media all and (min-width: 975px) {
 .tl-product-listing__product-image {
    min-height: 320px;
    flex-basis: 30%;
  }
  .tl-product-listing__product-content {
    flex-basis: 45%;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid var(--grey-2);
  }
  
  .tl-product-listing__product-specs {
    flex-basis: 25%;
    border-top: none;
  }
 
}


.no-results {
  padding: calc(3vw + 2rem) 2em;
  background: white;
  border: 1px solid var(--grey-2);
  text-align: center;
}
.no-results__title {
  font-size: 25px;
  color: var(--thermo-blue);
  line-height: 1.1;
}

@media screen and (min-width: 375px) {
  .no-results__title {
    font-size: calc(25px + 10 * ((100vw - 375px) / 825));
  }
}
@media screen and (min-width: 1200px) {
  .no-results__title {
    font-size: 35px;
  }
}

.no-results__button {
  font-size: 16px !important; 
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-product-tabs {
}

.tl-product-tabs__header {
  border-top: 1px solid var(--grey-2);
  display: flex;
  justify-content: center;
  background: white;
}

.tl-product-tabs__tab-list {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--container-width);
  width: 100%;
  justify-content: center;
}

.tl-product-tabs__tab-button {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--grey-2);
  border-radius: 0;
  background: white;
  color: black;
  cursor: pointer;
  font-size: 16px;
  padding: 1.5em;
}

.tl-product-tabs__tab-button:hover,
.tl-product-tabs__tab-button:active,
.tl-product-tabs__tab-button:focus {
  color: var(--thermo-red);
  background: white;
  outline: none;
  border-color: var(--grey-2);
}

.tl-product-tabs__tab-button.active {
  background-color: var(--thermo-blue);
  color: white;
}


.tl-product-tabs__body {
  background: #F8F7F7;
  padding: calc(3vw + 2rem) 1.5rem;
  display: flex;
  justify-content: center;
}

.tl-product-tabs__body-items {
  width: 100%;
  max-width: var(--container-width);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tl-product-tabs__body-item {
  display: none;
  margin-bottom: calc(3vw + 2rem);
}

.tl-product-tabs__body-item.active {
  display: block;
}

.tl-product-tabs__body-item ul + h2 { margin-top: 1.4rem; }

/* TECH DATA */

.tl-tech-date__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 0;
}

.tl-tech-date__list-item {
  flex-basis: 100%;
  border-bottom: 1px solid var(--grey-2);
  padding: 0.75em 0;
}

.tl-tech-date__list-item div {
  width: 100%;
  display: inline-block;
}

.tl-tech-date__list-item-title {
  font-weight: bold; 
}


/* Download List */

.tl-download__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2rem;
  column-gap: 2rem;
}

.tl-download__list-item {
  flex-basis: 100%;
}

.tl-download__list-item-link {
  background: white;
  border: 1px solid var(--grey-2);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  transition: color 300ms;
  height: 100%;
}



.tl-download__list-item-link .fas {
  color: var(--thermo-blue);
  font-size: 1.5em;
  transition: color 300ms;
}

.tl-download__list-item-link:hover,
.tl-download__list-item-link:hover .fas {
  color: var(--thermo-red);
}

/* FAQs List */

.tl-faq__list {
  padding: 0;
  margin: 0 0 2rem 0;
}

.tl-faq__list-term {
  margin: 2rem 0 0 0;
  padding: 1em 1.5rem;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  background: white;
  border: none;
  transition: color 300ms;
  cursor: pointer;
}

.tl-faq__list-term .fas {
  font-size: 1.5rem;
  color: var(--thermo-blue);
  transition: transform 300ms, color 300ms;
}

.tl-faq__list-term:hover,
.tl-faq__list-term:hover .fas {
  color: var(--thermo-red);
}

.tl-faq__list-term.active .fas {
  transform: rotate(45deg);
}

.tl-faq__list-data {
  cursor: pointer;
  line-height: 1.5;
  margin: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--grey-2);
  background-color: var(--grey-1);
  background: white;
}


/* Support Links */

.tl-support-links {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 2rem;
}


.tl-support-links li {
  flex-basis: calc(50% - 1rem);
}

.tl-support-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 1px solid black;
  color: inherit;
  padding: 1rem 1.5rem;
  transition: border-color 300ms, background-color 300ms, color 300ms;
}

.tl-support-link--kb {
  background: var(--thermo-red);
  color: white;
  border-color: var(--thermo-red);
}

.tl-support-link:hover {
  background: var(--thermo-blue);
  color: white;
  border-color: var(--thermo-blue);
}


@media all and (min-width: 700px) {
  
  .tl-support-links {
    flex-direction: row;
  }
}


@media all and (min-width: 400px) {
  .tl-tech-date__list-item div {
    width: 50%;
  }
  .tl-tech-date__list-item {
    white-space: nowrap;
  }

  .tl-product-tabs__tab-button {
    border: none;
    border-bottom: 1px solid var(--grey-2);
    width: calc(50%-1px);
  } 
  .tl-product-tabs__tab-button:nth-child(odd) {
    border-right: 1px solid var(--grey-2);
  }
}


@media all and (min-width: 650px) {
  .tl-tech-date__list-item {
    flex-basis: calc(50% - 1rem);
  }
 .tl-product-tabs__tab-list {
    flex-wrap: nowrap;
    border-left: 1px solid var(--grey-2);
  } 
  
  .tl-product-tabs__tab-button {
    border: none;
    border-right: 1px solid var(--grey-2);
  } 
  .tl-product-tabs__header {
    border-bottom: 1px solid var(--grey-2);
  }
  
  .tl-download__list-item {
    flex-basis: calc(50% - 1rem);
  }
  
}






.tl-tech-spec__list-data table {
	width: 100%;
	text-align: center;
	border-color: #FFF;
	background-color: var(--grey-1);
}

.tl-tech-spec__list-data table tr td{ border-color: #FFF; color: #000; }

.tl-tech-spec__list-data table tr td:first-child{
	text-align: left;
	background-color: #FFF;
	font-weight: bold;
	color: var(--thermo-blue);
}

.tl-tech-spec__list-data table tr td:first-child strong {
    color: red;
}

.tl-tech-spec__list-data table thead th{ border-color: #FFF; } 
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-pagination { 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(3vw + 2rem);
  column-gap: 8px;
}

.tl-pagination__link {
  display: flex; 
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E7E5E6;
  background: white;
  color: black;
  font-size: 14px;
  transition: border-color 300ms, color 300ms;
}
.tl-pagination__link .fas {
  font-size: 12px;
}

.tl-pagination__link:hover {
  color: var(--thermo-red); 
  border-color: var(--thermo-red); 
}

.tl-pagination__link.active {
  background: var(--thermo-red); 
  border: 1px solidvar(--thermo-red);
  color: white;
  pointer-events: none;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.category-slider__partial-container {
  padding: 0 1.5rem 0 1.5rem;
  background: #F8F7F7;
  overflow: hidden;
}
.tl-category-slider {
  min-height: 100px;
}
.tl-category-slider .flickity-viewport {
  overflow: visible !important;
}


.tl-category-slider__container {
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
}

.tl-category-slider__header {
  display: flex;
  column-gap: 1em;
  row-gap: 1em;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 2em;
}

.tl-category-slider__header-title {
  color: var(--thermo-blue);
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}


@media screen and (min-width: 375px) {
  .tl-category-slider__header-title {
    font-size: calc(25px + 10 * ((100vw - 375px) / 825));
  }
}
@media screen and (min-width: 1200px) {
  .tl-category-slider__header-title {
    font-size: 35px;
  }
}


.tl-category-slider__controls { 
  display: flex;
  align-self: flex-end;
  align-items: center;
  column-gap: 0.75em;
}

.tl-category-slider--1 .tl-category-slider__control,
.tl-category-slider--2 .tl-category-slider__control,
.tl-category-slider--3 .tl-category-slider__control {
  display: none;
}

.tl-category-slider__link,
.tl-category-slider__link:visited {
  display: block;
  padding: 0.75em 1em;
  color: var(--thermo-blue);
  transition: color 300ms;
  white-space: nowrap;
}

.tl-category-slider__link:hover,
.tl-category-slider__link:active,
.tl-category-slider__link:focus {
  color: var(--thermo-red);
}

.tl-category-slider__control {
  width: 38px;
  height: 38px;
  border: 1px solid var(--grey-2);
  background-color: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--thermo-blue);
  border-radius: 0;
}

.tl-category-slider__control:hover,
.tl-category-slider__control:active,
.tl-category-slider__control:focus {
  color: var(--thermo-red);
  background-color: white;
  border-color: var(--thermo-red);
}

.tl-category-slider__control.disabled {
  pointer-events: none;
  color: var(--grey-2);
}

.flickity-viewport {
  min-width: 100%;
  overflow: visible;
}
.tl-category-slider__flickity .flickity-slider,
.tl-category-slider__flickity {
  display: flex;
  column-gap: 2rem;
  min-width: 100%;
}



/* **************************************************************** */


.tl-cat-listing__list-item {
  box-sizing: border-box;
  flex-basis: 100%;
  background: white;
  border: 1px solid #eee;
  color: var(--thermo-blue);
  transition: color 300ms;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.tl-cat-listing__list-item:hover {
  color: var(--thermo-red);
  font-weight: bold;
}

.tl-category-slider__slide-image {
  background: white;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.tl-category-slider__slide-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain; 
}

.tl-category-slider__slide-title {
  display: flex;
  border-top: 1px solid #eee;
  border-bottom: 3px solid var(--thermo-red);
  flex-basis: 100%;
  padding: 1em;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  font-size: 16px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-basis: 100%;
  font-weight: 800;
  transition: color 300ms;
  flex-grow: 1;
}


@media screen and (min-width: 375px) {
  .tl-category-slider__slide-title  {
    font-size: calc(16px + 4 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-category-slider__slide-title  {
    font-size: 20px;
  }
}


.tl-cat-listing__list-item-title .fas {
  color: var(--thermo-red);
}

.tl-category-slider__slide:hover .tl-category-slider__slide-title {
  color: var(--thermo-red);
}



/* **************************************************************** */



.tl-category-slider__slide {
  flex-basis: calc(100vw - 4rem);
  flex-shrink: 0;
  background: white;
  display: flex; 
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  
  box-sizing: border-box;
  border: 1px solid #eee;
  color: var(--thermo-blue);
  transition: color 300ms;
  font-weight: bold;
  max-width: 393px;
  
}

.flickity-enabled .tl-category-slider__slide {
  width: calc(100vw - 4rem);
  margin-right: 2em;
}

.flickity-enabled .tl-category-slider__slide:last-child {
  margin-right: 0;
}



.tl-category-slider__slide-content-description {
  margin: 0;
  line-height: 1.5;
}


@media all and (min-width: 600px) {
  .tl-category-slider__header {
    flex-direction: row; 
  }
}


@media all and (min-width: 620px) {
  .tl-category-slider__slide {
    flex-basis: calc(50vw - 3rem);
  }
  .flickity-enabled .tl-category-slider__slide {
    width: calc(50vw - 3rem);
  }
}

@media all and (min-width: 920px) {
  .tl-category-slider__slide {
    flex-basis: calc(33.3333vw - 2.7rem);
  }
  .flickity-enabled .tl-category-slider__slide {
    width: calc(33.3333vw - 2.7rem);
  }
}

@media all and (min-width: 1024px) {
  .tl-category-slider--4 .tl-category-slider__slide {
    flex-basis: calc(25vw - 2.7rem);
    max-width: 284px;
  }
  .tl-category-slider--4 .flickity-enabled .tl-category-slider__slide {
    width: calc(25vw - 2.7rem);
    max-width: 284px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-product-header {
  padding: 0 1.5rem calc(3vw + 2rem) 1.5rem;
}

.tl-product-header__container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-width);
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: center;
}

.tl-product-header__gallery {
  width: 100%;
}

.tl-product-header__details {
  width: 100%;
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  row-gap: 2rem;
}

.tl-product-header__details-title {
  margin: 0;
  font-size: 25px;
  color: var(--thermo-blue);
}

.tl-product-header__details-sku {
  margin: 0;
  font-size: 19px;
  color: var(--grey-3);
  display: block;
}

@media screen and (min-width: 375px) {
  .tl-product-header__details-title {
    font-size: calc(25px + 10 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-product-header__details-title {
    font-size: 35px;
  }

}




.tl-product-carousel {
  margin-bottom: 12px;
}

.tl-product-carousel-main {
   border: 1px solid var(--grey-2);
}

#tl-product-carousel .flickity-prev-next-button {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  width: 40px;
  height: 140px;
  border: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#tl-product-carousel .flickity-prev-next-button.previous {
  left: -1px;
}
#tl-product-carousel .flickity-prev-next-button.next {
  right: -1px;
}

#tl-product-carousel .flickity-prev-next-button .flickity-button-icon {
  position: relative;
  top: initial;
  left: initial;
  width: 20px;
  height: 30px;
}
#tl-product-carousel .flickity-prev-next-button .flickity-button-icon  {
  transition: fill 300ms;
}
#tl-product-carousel .flickity-prev-next-button:hover .flickity-button-icon  {
  fill: var(--thermo-red);
}

.tl-product-carousel-nav .tl-product-carousel-cell {
  border: 1px solid var(--grey-2);
}

.tl-product-carousel-cell {
  width: 100%;
  height: 100vw;
  max-height: 525px;
  background: var(--grey-1);
  counter-increment: carousel-cell;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 300ms;
}

.tl-product-carousel-cell img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.tl-product-carousel-cell:last-child {
  margin-right: 0; 
}

/* cell number
.tl-product-carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(carousel-cell);
  line-height: 200px;
  font-size: 80px;
  color: var(--grey-2);
} */

.tl-product-carousel-nav .tl-product-carousel-cell {
  width: calc(25.05% - 18px);
  min-width: 100px;
  height: 100px;
  margin-right: 12px;
}

.tl-product-carousel-nav .tl-product-carousel-cell:before {
  font-size: 50px;
}

.tl-product-carousel-nav .tl-product-carousel-cell:hover {
  border-color: var(--thermo-red);
}

.tl-product-carousel-nav .tl-product-carousel-cell.is-nav-selected {
  border-color: var(--thermo-blue);
}



@media all and (min-width: 840px) {
 .tl-product-header__container {
  flex-direction: row;
 }
  .tl-product-header__gallery {
    width: 50%;
  }

  .tl-product-header__details {
    width: 50%;
  padding: 2rem;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-related-slider__partial-container {
  padding: calc(3vw + 2rem) 0 0 0;
  background: #F8F7F7;
  overflow: hidden;
}

.tl-related-slider__partial-container-2 {
  padding: calc(3vw + 2rem) 0;
  background: #F8F7F7;
  overflow: hidden;
}

.tl-related-slider__partial-padding {
  padding: 0 1.5rem;
}

.tl-related-slider {
  min-height: 100px;
}

.tl-related-slider .flickity-viewport {
  overflow: visible !important;
}

.tl-related-slider__container {
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
}

.tl-related-slider__header {
  display: flex;
  column-gap: 1em;
  row-gap: 1em;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 2em;
}

.tl-related-slider__header-title {
  color: var(--thermo-blue);
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

@media screen and (min-width: 375px) {
  .tl-related-slider__header-title {
    font-size: calc(25px + 10 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-related-slider__header-title {
    font-size: 35px;
  }
}

.tl-related-slider__slide-summary {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: black;
  margin-top: 1.5rem;
}

.tl-related-slider__controls { 
  display: flex;
  align-self: flex-end;
  align-items: center;
  column-gap: 0.75em;
}

.tl-related-slider--1 .tl-related-slider__control,
.tl-related-slider--2 .tl-related-slider__control,
.tl-related-slider--3 .tl-related-slider__control {
  display: none;
}

.tl-related-slider__link,
.tl-related-slider__link:visited {
  display: block;
  padding: 0.75em 1em;
  color: var(--thermo-blue);
  transition: color 300ms;
  white-space: nowrap;
}

.tl-related-slider__link:hover,
.tl-related-slider__link:active,
.tl-related-slider__link:focus {
  color: var(--thermo-red);
}

.tl-related-slider__control {
  width: 38px;
  height: 38px;
  border: 1px solid var(--grey-2);
  background-color: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--thermo-blue);
  border-radius: 0;
}

.tl-related-slider__control:hover,
.tl-related-slider__control:active,
.tl-related-slider__control:focus {
  color: var(--thermo-red);
  background-color: white;
  border-color: var(--thermo-red);
}

.tl-related-slider__control.disabled {
  pointer-events: none;
  color: var(--grey-2);
}

.flickity-viewport {
  min-width: 100%;
  overflow: visible;
}

.tl-related-slider__flickity .flickity-slider,
.tl-related-slider__flickity {
  display: flex;
  column-gap: 2rem;
  min-width: 100%;
}



/* **************************************************************** */


.tl-cat-listing__list-item {
  box-sizing: border-box;
  flex-basis: 100%;
  background: white;
  border: 1px solid #eee;
  color: var(--thermo-blue);
  transition: color 300ms;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.tl-cat-listing__list-item:hover {
  color: var(--thermo-red);
  font-weight: bold;
}

.tl-related-slider__slide-image {
  background: white;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.tl-related-slider__slide-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain; 
}
.tl-related-slider--blog .tl-related-slider__slide-img {
  object-fit: cover; 
}

.tl-related-slider__slide-title {
  display: flex;
  border-top: 1px solid #eee;
  border-bottom: 3px solid var(--thermo-red);
  flex-basis: 100%;
  padding: 1em;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  font-size: 16px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-basis: 100%;
  font-weight: 800;
  transition: color 300ms;
  flex-grow: 1;
}

.tl-related-slider--blog .tl-related-slider__slide-title {
 flex-direction: column; 
}


@media screen and (min-width: 375px) {
  .tl-related-slider__slide-title  {
    font-size: calc(16px + 4 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-related-slider__slide-title  {
    font-size: 20px;
  }
}


.tl-cat-listing__list-item-title .fas {
  color: var(--thermo-red);
}

.tl-related-slider__slide:hover .tl-related-slider__slide-title {
  color: var(--thermo-red);
}



/* **************************************************************** */



.tl-related-slider__slide {
  flex-basis: calc(100vw - 4rem);
  flex-shrink: 0;
  background: white;
  display: flex; 
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  
  box-sizing: border-box;
  border: 1px solid #eee;
  color: var(--thermo-blue);
  transition: color 300ms;
  font-weight: bold;
  max-width: 393px;
  
}

.flickity-enabled .tl-related-slider__slide {
  width: calc(100vw - 4rem);
  margin-right: 2em;
}

.flickity-enabled .tl-related-slider__slide:last-child {
  margin-right: 0;
}



.tl-related-slider__slide-content-description {
  margin: 0;
  line-height: 1.5;
}


@media all and (min-width: 600px) {
  .tl-related-slider__header {
    flex-direction: row; 
  }
}


@media all and (min-width: 620px) {
  .tl-related-slider__slide {
    flex-basis: calc(50vw - 3rem);
  }
  .flickity-enabled .tl-related-slider__slide {
    width: calc(50vw - 3rem);
  }
}

@media all and (min-width: 920px) {
  .tl-related-slider__slide {
    flex-basis: calc(33.3333vw - 2.7rem);
  }
  .flickity-enabled .tl-related-slider__slide {
    width: calc(33.3333vw - 2.7rem);
  }
}

@media all and (min-width: 1024px) {
  .tl-related-slider--4 .tl-related-slider__slide {
    flex-basis: calc(25vw - 2.7rem);
    max-width: 284px;
  }
  .tl-related-slider--4 .flickity-enabled .tl-related-slider__slide {
    width: calc(25vw - 2.7rem);
    max-width: 284px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-page-title {
  padding: 0.5rem 1.5rem 3rem 1.5rem;
  border-bottom: 1px solid var(--grey-2);
}

.tl-page-title--blog {
  border: none; 
}

.tl-page-title__container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
  align-items: center;
  justify-content: space-between;
  row-gap: 2rem;
}

.tl-page-title__heading {
  padding: 0;
  margin: 0;
  color: var(--thermo-blue);
}

.tl-page-title__image {
  overflow: hidden;
  flex-basis: calc(345px + 2rem);
  flex-shrink: 0;
  display: none;
}

.tl-page-title__share {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  position: relative;
    justify-content: center;
}

.tl-page-title__share-title {
  
}
.tl-page-title__share-links {
  display: flex;
  column-gap: 0.75rem;
}

.tl-page-title__share .fas {
  font-size: 29px;
  color: var(--thermo-blue);
  transition: color 300ms;
}

.tl-page-title__share a:hover .fas {
  color: var(--thermo-red);
}




.tl-page-title__img {
  width: 400px !important;
  height: 30px  !important;
}

@media all and (min-width: 900px) {
  .tl-page-title__image {
    display: flex;
  }
  
  .tl-page-title__container {
    flex-direction: row;
  }
  
  .tl-page-title__share {
    flex-basis: calc(345px + 2rem);
    justify-content: flex-end;
    align-items: flex-end;
  }
  
  
  .tl-page-title__share-links {
    justify-content: flex-end;
  }

}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.tl-blog-tags {
 border-bottom: 1px solid var(--grey-2); 
}

.tl-blog-tags__list {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  list-style-type: none;
  flex-direction: row;
  border-left: 1px solid var(--grey-2); 
}
.tl-blog-tags__list-item {
  padding: 0;
  margin: 0;
  border-right: 1px solid var(--grey-2); 
}

.tl-blog-tags__list-link {
  display: block;
  padding: 1.25rem 2rem;
  color: black;
  transition: color 300ms;
}
.tl-blog-tags__list-link:hover {
  color: var(--thermo-red);
}


/* Templates
Styles for Global Partials 
*/

.tl-dual-col {
  background: #F8F7F7;
  display: flex;
  justify-content: center;
}

.tl-dual-col .dnd-section {
  padding: 0; 
}

.tl-dual-col__container {
  display: flex;
  width: 100%;
  max-width: var(--container-width);
  align-items: stretch;
  flex-direction: column;
}

.tl-dual-col__main {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--grey-2);
  height: 100%;
}

.tl-dual-col__sidebar {
  padding: 2rem 1.5rem;
  flex-shrink: 0;
  height: 100%;
}


@media all and (min-width: 1024px) {
  .tl-dual-col {
    padding: 0 1.5rem;
  }
  
  .tl-dual-col__container {
    flex-direction: row;   
  }
  .tl-dual-col__main {
    border-right: 1px solid var(--grey-2);
    border-top: none;
    padding: 2rem 2rem 2rem 0;
    flex-basis: 100%;
  }
  
  .tl-dual-col__sidebar {
    padding: 2rem 0 2rem 2rem;
    flex-basis: calc(345px + 2rem);
  }
}