/* 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; */
}

/**
 * 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 {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media(min-width:1280px){
  .content-wrapper {
    padding: 0 50px;
  }
}
.row {
  column-gap: var(--section_column-gap);
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 20px;
}

.row.block {
  display: block
}

.row.flex {
  display: flex;
  flex-wrap: wrap;
  gap: unset
}

@media (min-width: 0px) {
  .col-start-xs-1 {
    grid-column-start:1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .col-xs-1 {
    grid-column-end: span 1;
  }

  .col-xs-2 {
    grid-column-end: span 2;
  }

  .col-xs-3 {
    grid-column-end: span 3;
  }

  .col-xs-4 {
    grid-column-end: span 4;
  }

  .col-xs-5 {
    grid-column-end: span 5;
  }

  .col-xs-6 {
    grid-column-end: span 6;
  }

  .col-xs-7 {
    grid-column-end: span 7;
  }

  .col-xs-8 {
    grid-column-end: span 8;
  }

  .col-xs-9 {
    grid-column-end: span 9;
  }

  .col-xs-10 {
    grid-column-end: span 10;
  }

  .col-xs-11 {
    grid-column-end: span 11;
  }

  .col-xs-12 {
    grid-column-end: span 12;
  }
}

@media(min-width: 768px) {

  .col-start-sm-1 {
    grid-column-start:1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .col-sm-1 {
    grid-column-end: span 1;
  }

  .col-sm-2 {
    grid-column-end: span 2;
  }

  .col-sm-3 {
    grid-column-end: span 3;
  }

  .col-sm-4 {
    grid-column-end: span 4;
  }

  .col-sm-5 {
    grid-column-end: span 5;
  }

  .col-sm-6 {
    grid-column-end: span 6;
  }

  .col-sm-7 {
    grid-column-end: span 7;
  }

  .col-sm-8 {
    grid-column-end: span 8;
  }

  .col-sm-9 {
    grid-column-end: span 9;
  }

  .col-sm-10 {
    grid-column-end: span 10;
  }

  .col-sm-11 {
    grid-column-end: span 11;
  }

  .col-sm-12 {
    grid-column-end: span 12;
  }

}

@media (min-width: 1025px) {
  
  .row {
    gap: 28px;
  }

  .col-start-md-1 {
    grid-column-start:1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }

  .col-start-md-12 {
    grid-column-start: 12;
  }

  .col-md-1 {
    grid-column-end: span 1;
  }

  .col-md-2 {
    grid-column-end: span 2;
  }

  .col-md-3 {
    grid-column-end: span 3;
  }

  .col-md-4 {
    grid-column-end: span 4;
  }

  .col-md-5 {
    grid-column-end: span 5;
  }

  .col-md-6 {
    grid-column-end: span 6;
  }

  .col-md-7 {
    grid-column-end: span 7;
  }

  .col-md-8 {
    grid-column-end: span 8;
  }

  .col-md-9 {
    grid-column-end: span 9;
  }

  .col-md-10 {
    grid-column-end: span 10;
  }

  .col-md-11 {
    grid-column-end: span 11;
  }

  .col-md-12 {
    grid-column-end: span 12;
  }

}

@media (min-width: 1170px) {

  .col-start-lg-1 {
    grid-column-start:1;
  }

  .col-start-lg-2 {
    grid-column-start: 2;
  }

  .col-start-lg-3 {
    grid-column-start: 3;
  }

  .col-start-lg-4 {
    grid-column-start: 4;
  }

  .col-start-lg-5 {
    grid-column-start: 5;
  }

  .col-start-lg-6 {
    grid-column-start: 6;
  }

  .col-start-lg-7 {
    grid-column-start: 7;
  }

  .col-start-lg-8 {
    grid-column-start: 8;
  }

  .col-start-lg-9 {
    grid-column-start: 9;
  }

  .col-start-lg-10 {
    grid-column-start: 10;
  }

  .col-start-lg-11 {
    grid-column-start: 11;
  }

  .col-start-lg-12 {
    grid-column-start: 12;
  }

  .col-lg-1 {
    grid-column-end: span 1;
  }

  .col-lg-2 {
    grid-column-end: span 2;
  }

  .col-lg-3 {
    grid-column-end: span 3;
  }

  .col-lg-4 {
    grid-column-end: span 4;
  }

  .col-lg-5 {
    grid-column-end: span 5;
  }

  .col-lg-6 {
    grid-column-end: span 6;
  }

  .col-lg-7 {
    grid-column-end: span 7;
  }

  .col-lg-8 {
    grid-column-end: span 8;
  }

  .col-lg-9 {
    grid-column-end: span 9;
  }

  .col-lg-10 {
    grid-column-end: span 10;
  }

  .col-lg-11 {
    grid-column-end: span 11;
  }

  .col-lg-12 {
    grid-column-end: span 12;
  }

}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.3;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  margin: 0 0 20px;
}

/* Anchors */

a {
  cursor: pointer;
  color: inherit;
  text-underline-position: under;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:hover{
  color: var(--tertiary-color);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  line-height: 1.3;
}

/* Lists */

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

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: 3px solid;
  margin: 0 0 20px;
  padding-left: 20px;
}

@media(min-width:768px){
  blockquote {
    margin-left:25px;
    padding-left: 25px;
  }
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
  max-width:100%;
  vertical-align:middle;
  height:auto;
}

svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

mark {
  color: var(--tertiary-color);
  background: transparent;
}

.light {
  color: #ffffff;
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6{
  color:inherit;
}

.top-line{
  padding-top: 25px;
  position: relative;
}

.top-line:before {
  position: absolute;
  content: "";
  height: 7px;
  width: 100%;
  max-width: 100px;
  background: var(--senary-color);
  top: 0;
  border-radius: 11px;
}

.light .top-line:before {
  background: #ffffff;
}

svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.detail-content>:last-child,
.hs_cos_wrapper_type_rich_text>:last-child {
  margin-bottom: 0 !important
}

.detail-content ul ul,
.hs_cos_wrapper_type_rich_text ul ul {
  margin-top: 20px
}

.detail-content ol,
.hs_cos_wrapper_type_rich_text ol {
  padding-left: 20px
}

.detail-content ul,
.hs_cos_wrapper_type_rich_text ul {
  list-style: inherit !important;
  padding-left: 20px
}

.detail-content li:not(:last-child),
.hs_cos_wrapper_type_rich_text li:not(:last-child) {
  margin-bottom: 8px;
}

.detail-content.tc ol,
.detail-content.tc ul,
.tc .detail-content ol,
.tc .detail-content ul,
.tc .hs_cos_wrapper_type_rich_text ol,
.tc .hs_cos_wrapper_type_rich_text ul {
  text-align: left
}

.detail-content a:not(.button),
.hs_cos_wrapper_type_rich_text a:not(.button){
  color: var(--primary-color);
}

.detail-content a:not(.button):hover,
.hs_cos_wrapper_type_rich_text a:not(.button):hover{
  color: var(--tertiary-color);
}

.detail-content.light a,
.light .detail-content a{
  color: inherit;
}

.detail-content.light a:hover,
.light .detail-content a:hover{
  color: var(--tertiary-color);
}

.p-lg{
  font-size: 22px;
}

.p-sm{
  font-size: var(--p-size-sm);
}

strong {
  font-weight: 700
}

.dis-flex {
  display: flex;
  flex-wrap: wrap
}

.vmiddle {
  align-items: center
}

.vbottom {
  align-items: flex-end
}

.hcenter {
  justify-content: center
}

.hspace {
  justify-content: space-between;
}

.hright {
  justify-content: right
}

.tc {
  text-align: center
}

.tr {
  text-align: right
}

.tl {
  text-align: left
}

.dis-flex>.row-fluid-wrapper>.row-fluid:after,
.dis-flex>.row-fluid-wrapper>.row-fluid:before {
  display: none
}

.bg{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-grey{
  background-color:var(--background-grey);
}

.bg-blue{
  background-color: var(--background-blue);
}

.bg-light-blue{
  background-color: var(--background-light-blue);
}

.overlay {
  position: relative;
  z-index: 1
}

.overlay:before {
  background: #1f1f1f;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: .8;
}

.common-button {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

.common-button.tc,
.tc .common-button{
  justify-content: center;
}

.common-header { 
  margin-bottom: 50px;
}

@media (min-width:768px){

}


@media(min-width:1025px){

  .top-line{
    padding-top: 30px;
  }

  .top-line:before {
    height: 9px;
    max-width: 129px;
  }

  .common-header { margin-bottom: 50px; }
}

@media(min-width:1171px){
  html{
    overflow-x: hidden;
  }
}

@media(min-width:1441px){

  .common-button {
    column-gap: 30px;
  }

  .common-header { margin-bottom: 70px; }

}

@media(max-width:1440px){
  .p-lg{
    font-size: 20px;
  }
}  

@media(max-width:1024px){
  .p-lg{
    font-size: 18px;
  }
}

@media(max-width:767px){

}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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


.link {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}


.link:hover {
  color: var(--quaternary-color);
}

/* 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;
}
input::-ms-clear,select::-ms-expand {display: none}
input:-webkit-autofill,select:-webkit-autofill,textarea:-webkit-autofill { -webkit-text-fill-color: #252525; -webkit-box-shadow: inset 0 0 0 100px #fff; -moz-box-shadow: inset 0 0 0 100px #fff; box-shadow: inset 0 0 0 100px #fff; color: #252525 }
input,select,textarea { border-radius: 0 }
button,html input[type=button],input[type=reset],textarea { -webkit-appearance: none; border-radius: 0;}
button,input,option,select,textarea { font-family: inherit; font-size: 100%; margin: 0; vertical-align: baseline }
input[type=email],input[type=tel],input[type=text] { -webkit-appearance: none!important }
textarea { height: 150px; overflow: auto; resize: none; vertical-align: top }
form ul { list-style: none; margin: 0; padding: 0 }
form div.hs-form-field .input>ul>li>label { cursor: pointer }
form ul.inputs-list.hs-error-msgs,form ._error-inner { color: red; font-size: 14px; padding:5px 0 0; }
form ul.inputs-list.hs-error-msgs label { color: inherit }
form .hs-form-required { display: inline; }
form .hs_error_rollup { display: none; }
form .legal-consent-container .hs-error-msgs label { color: #FF0000 !important }
form fieldset { max-width: 100%!important }
form div.hs-form-field,form ._form_element { display: inline-block; float: none!important; margin-bottom: 35px; vertical-align: top; width: 100%!important }
form ._form_element:has([type="hidden"]){ margin:0; display:none; }
form ul.inputs-list { padding-top: 8px }
form .input { margin-right: 0!important }
form .hs-form-field>label,form ._form-label { display: block; font-weight: 600; margin-bottom: 10px;  }
form input[type=date],form input[type=datetime-local],form input[type=datetime],form input[type=email],form input[type=file],form input[type=month],form input[type=number],form input[type=password],form input[type=search],form input[type=tel],form input[type=text],form input[type=time],form input[type=url],form input[type=week],form select,form textarea { display: inline-block;padding:10px 12px; width: 100%!important; }
form select { -moz-appearance: none; -webkit-appearance: none; background-image: url(https://21302886.fs1.hubspotusercontent-na1.net/hubfs/21302886/raw_assets/public/Patagonia%20Health/images/icon_down-arrow.png); background-position: right 24px center; background-repeat: no-repeat; background-size: 16px auto; cursor: pointer; padding-right: 45px; }
form .input ul.inputs-list li label input[type=radio]:checked+span:before { box-shadow: inset 0 0 0 3px #fff }
form .input ul.inputs-list li label input[type=radio] { display: none!important; opacity: 0 }
form .input ul.inputs-list li label input[type=radio]+span:before { border-radius: 50%; content: ""; height: 20px; left: 0; position: absolute; text-align: center; top: 1px; width: 20px; border: 2px solid; }
form .input ul.inputs-list li label input[type=radio]+span,form input[type=checkbox]+span { display: flex; padding-left: 30px; position: relative; margin-left:0; }
form .input ul.inputs-list li label input[type=radio]:checked+span:before { background-color:var(--primary-color); }
form input[type=checkbox] { display: none!important; opacity: 0 }
form input[type=checkbox]+span:before { border-style: solid; border-width: 2px; content: ""; height: 20px; left: 0; position: absolute; text-align: center; top: 1px; width: 20px; background-repeat: no-repeat; background-position: center; background-size: 12px; }
form input[type=checkbox]:checked+span:before { background-image: url(https://21302886.fs1.hubspotusercontent-na1.net/hubfs/21302886/raw_assets/public/Patagonia%20Health/images/black-right.png); }
form div.hs-form-field .input>ul>li:not(:last-child) { margin: 0 0 10px }
form .legal-consent-container .hs-form-booleancheckbox-display>span { margin-left: 0 }
form .legal-consent-container .field.hs-form-field { margin-bottom: 0 }
form .legal-consent-container { margin-bottom: 30px; font-style: italic; font-weight: 300; }
form .hs-richtext { margin: 0 0 10px; }
form .legal-consent-container ul.inputs-list li label input[type=checkbox]+span:before{ top:2px;}
form .legal-consent-container ul.inputs-list li{ padding:0; }
.submitted-message > *:last-child { margin-bottom: 0; }
form .hs-button { min-width: 180px; padding-left: 20px; padding-right: 20px; }
form ._form_element:has(title) {
    display: none;
}


@media(min-width: 900px) {
  textarea { height: 226px;}
  form fieldset.form-columns-2>div.hs-form-field,.subscribe-form-section form div._form_element:nth-child(2),.subscribe-form-section form div._form_element:nth-child(3)  { margin-right:34px; width: calc(50% - 17px)!important }
  form fieldset.form-columns-2>div.hs-form-field:last-child,form fieldset.form-columns-3>div.hs-form-field:last-child,.subscribe-form-section form div._form_element:nth-child(3){ margin-right: 0 }
  form fieldset.form-columns-3>div.hs-form-field { margin-right: 34px; width: calc(33.33% - 68px/3)!important }
}
/* Table */

table {
  border-collapse: inherit !important;
  border: 0 !important;
  border-spacing: unset;
  font-weight: 700;
  line-height: 1.2;
  height: auto !important;
  table-layout: inherit !important;
  border-top: 0 !important;
}

table em {
  font-weight: 400;
  font-size: 80%;
  display: block;
  font-style: normal;
}

/* Table cells */

td,
th {
  vertical-align: middle;
}

tr {
  height: auto !important;
}

tr:first-child {
  text-align: center;
}

tr:first-child td {
  background: #D8DAE3;
  border-bottom: 0 !important;
  border-color: #ffffff !important;
}

tr:first-child td:first-child {
  background: var(--secondary-color);
  color: #ffffff;
  border-top-left-radius: 25px;
  border-left: 0 !important;
}

tr td:first-child {
  width: 60% !important;
}

tr td {
  padding: 8px 15px !important;
  height: 65px !important;
  border-left: 3px solid var(--primary-color) !important;
}

tr td:not(:first-child) {
  text-align: center;
}

tr:first-child td:last-child {
  border-right: 0 !important;
  background: var(--tertiary-color);
  color: #ffffff;
  border-top-right-radius: 25px;
}

tr td:last-child {
  border-right: 3px solid var(--primary-color) !important;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 25px;
}

tr:not(:first-child) td {
  border-bottom: 3px solid var(--primary-color);
}

tr:last-child td:last-child {
  border-bottom-right-radius: 25px;
}


@media(min-width: 1441px){
  table {
    font-size: var(--h3-size);
  }

  tr td {
    padding: 8px 20px !important;
  }
}

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

/*Latest Blog Module */
.latest-blog-section {
  display: none;
}

.latest-blog-section:has(.blog-list-item) {
  display: block;
}

.latest-blog-section .blog-list-flex {
  column-gap: 20px;
  row-gap: 35px;
}

.latest-blog-section .blog-list-item {
  position: relative;
}

.latest-blog-section .blog-list-item h3 {
  margin-bottom: 0;
}

.latest-blog-section .blog-list-item h4 {
  margin-bottom: 10px;
}

.latest-blog-section .blog-list-item .post-type-blog{
  color: var(--quaternary-color);
}

.latest-blog-section .blog-list-item .post-type-case-study{
  color: #71AA42;
}

.latest-blog-section .blog-list-img {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  border-radius: 48px;
}

.latest-blog-section .blog-list-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 119 / 97;
}

.latest-blog-section .blog-list-content {
  padding: 20px 0 0px;
}

.latest-blog-section .blog-list-item .link-wrap {
  margin-top: 17px;
}

@media(min-width:641px) {

  .latest-blog-section .blog-list-flex {
    column-gap: 20px;
  }

  .latest-blog-section .blog-list-item {
    width: calc(50% - 10px);
  }

}

@media(min-width:900px) {

  .latest-blog-section .blog-list-item {
    width: calc(33.33% - 13.33px);
  }

}

@media(min-width:1025px) {

  .latest-blog-section .blog-list-flex {
    column-gap: 30px;
  }


  .latest-blog-section .blog-list-item {
    width: calc(33.33% - 20px);
  }


}

@media(min-width:1441px) {

  .latest-blog-section .blog-list-item {
    width: 28.5%;
  }

  .latest-blog-section .blog-list-flex {
    column-gap: 7.25%;
  }

  .latest-blog-section .blog-list-content {
    padding-top: 37px;
  }

  .latest-blog-section .common-button {
    margin-top: 65px;
  }


}

@media(max-width:640px) {

  .latest-blog-section .blog-list-item {
    width: 100%;
  }

}

/* Subscribe Form Module */
.subscribe-form-section {
  background-color: var(--secondary-color);
  padding: 45px 20px;
  position: relative;
  width: 100%;
  border-radius: 23px;
}

.subscribe-form-section .subscribe-form-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.subscribe-form-section .subscribe-top { 
  margin-bottom: 25px;
}

.subscribe-form-section.light form label,
.subscribe-form-section.light form legend {
  color: inherit;
}

.subscribe-form-section .hs-submit {
  text-align: center;
}

.subscribe-form-section h3 {
  font-size: 28px;
  text-transform: none;
  font-family: var(--secondary-font);
}

.subscribe-form-section form input[type=email], 
.subscribe-form-section form input[type=file], 
.subscribe-form-section form input[type=number], 
.subscribe-form-section form input[type=password], 
.subscribe-form-section form input[type=search], 
.subscribe-form-section form input[type=tel], 
.subscribe-form-section form input[type=text], 
.subscribe-form-section form select, 
.subscribe-form-section form textarea{
  border:0;
  font-size: var(--p-size-sm);
  padding: 9px 12px;
  border-radius: 5px;
}

.subscribe-form-section form select{
  background-position: right 14px center;
  padding-right: 35px;
}

.subscribe-form-section form .hs-form-field > label,
.subscribe-form-section form ._form_element > label {
  display: block;
  font-weight: 400;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
}

.subscribe-form-section form div.hs-form-field,
.subscribe-form-section form div._form_element{
  position: relative;
  padding-bottom: 30px;
}

.subscribe-form-section .submitted-message,.subscribe-form-section ._form-thank-you {
  text-align: center;
}

.subscribe-form-section ._form-content {
  display: flex;
  flex-wrap: wrap;
}

.subscribe-form-section ._button-wrapper {
    width: 100%;
    text-align: center;
}

@media(min-width: 1170px){
  .subscribe-form-section {
    margin: 50px 0;
  }
}

/* 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;
  }
}