/* 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 {
  --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: 0px;
  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 1rem;
}

@media screen and (min-width: 1380px) {
  /* .content-wrapper {
    padding: 0;
  } */
}

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

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

@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;
}

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

/* Headings */

h1 {
  font-weight: 700 !important;
}

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

/* Lists */

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

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,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background: #ce0058;
  border: none;
  border-radius: 0;
  color: #fff;
/*   font-family: Poppins !important; */
  font-size: 14px;
  font-weight: 700;
  margin-top: 13px;
  padding: 13px 47px;
  text-transform: uppercase;
  width: fit-content;
}

button:disabled,
.button:disabled,
.hs-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;
}
/* Fields */

.hs-form-field {
  margin-bottom: 15px;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 16px;
  padding: 15px !important;
  width: 100%;
  color: #737272;
}

.hs-fieldtype-select select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

.hs-fieldtype-select > .input {
  position: relative;
}

.hs-fieldtype-select > .input:after {
  background: url(https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/ICONS/carat.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 11px;
  position: absolute;
  right: 7px;
  top: 50%;
  width: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}


.form-columns-1 .hs-fieldtype-select > .input:after {
  right: 17px;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

@media (min-width: 481px) {
  .form-columns-3 .hs-form-field {
    width: 33.3333% !important;
  }
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
  font-size: 12px !important;
}


.hs-form-field {
  position: relative;
}

.submitted-message {
  font-family: 'Poppins';
  text-transform: uppercase;
  max-width: 20ch;
}

.hs-form-field:not(.hs-fieldtype-booleancheckbox):not(.hs-fieldtype-checkbox) label:not(.hs-error-msg):not(.hs-form-radio-display) {
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.hs-fieldtype-booleancheckbox label span {
  font-size: 14px !important;
}

.hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
}

.hs-form-booleancheckbox-display input {
  position: relative; 
  top: 3px;
  border: none;
  outline: none;
  border-radius: 0px;
}

.form-columns-1 .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100% !important;
}

.hs_workplace_product_interest .hs-field-desc {
  color: #2e2e2e;
  font-size: 16px;
}

.hs-form-radio-display {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: grid; 
  grid-template-columns: 30px 1fr;
}

.hs-form-radio-display span {
  color: #2e2e2e;
  font-size: 16px;
  margin-left: 15px;
}

.hs-fieldtype-radio {
  margin-top: 20px;
}

/* .hs-input[type="radio"] {
  accent-color: #ce0058;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;  
  -ms-appearance: checkbox;  
} */

.hs-input[type="radio"]{
  appearance: none;
  background: #fff;
  width: 20px !important;
  height: 20px !important;
  content: none;
  outline: none;
  margin: 0;
}

.hs-input[type="radio"]:checked {
  appearance: none;
  outline: none;
  padding: 0;
  content: none;
  border: none;
  background: #ce0058;
}

.hs-input[type="radio"]:checked::before{
  position: absolute;
  color: #fff !important;
  content: "\00A0\2713\00A0" !important;
  font-weight: bolder;
  font-size: 20px;
  left: -5px;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: 'Poppins' !important;
  font-size: 15px !important;
  letter-spacing: 1px;
}

/* Checkboxes */

.hs_interested_in_educational_resources_.hs-interested_in_educational_resources_ {
    position: relative;
    top: -15px;
}

.hs-form-booleancheckbox-display .hs-input[type="checkbox"],
.hs-form-checkbox-display .hs-input[type="checkbox"] {
  position: absolute;
  accent-color: #ce0058;
  width: 20px !important;
  height: 20px !important;
  background-color: #fff;
  border: none !important;
  appearance: none;
}

.hs-form-booleancheckbox-display .hs-input[type="checkbox"]:checked,
.hs-form-checkbox-display .hs-input[type="checkbox"]:checked {
  outline: none;
  background: #ce0058;
}

.hs-form-booleancheckbox-display .hs-input[type="checkbox"]:checked::before,
.hs-form-checkbox-display .hs-input[type="checkbox"]:checked::before {
  position: absolute;
  color: #fff !important;
  content: "\00A0\2713\00A0" !important;
  font-weight: bolder;
  font-size: 20px;
  left: -5px;
}

label.hs-form-booleancheckbox-display span {
  margin-left: 15px;
}

.hs-form-booleancheckbox-display,
.hs-form-checkbox-display {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: grid; 
  grid-template-columns: 30px 1fr;
}

.hs-form-booleancheckbox-display:before,
.hs-form-checkbox-display:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: transparent;
}

.hs-form-booleancheckbox-display span,
.hs-form-checkbox-display span {
  user-select: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

#main-content {
  padding-top: 120px;
}

#main-content, .footer {
  position: relative;
  top: 0px;
}

/* Header Links */

.header #hs_cos_wrapper_site_logo {
  padding-bottom: 0px !important;
  width: 192px;
  height: 55px;
}

.header .menu--desktop {
  padding-top: 0px;
}

.header .menu__item--depth-1 {
  padding: 0 !important;
}

.header a.menu__link,
.header span.menu__link,
.header button.menu__link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins' !important;
  letter-spacing: 1.5px;
  padding: 14px;
  background: transparent;
  border: none;
}

.header .menu__link.narcan_buy_now,
.header .menu__link.narcan_buy_now:hover {
  background-color: #ce0058;
  color: #fff!important;
  font-family: Poppins!important;
  letter-spacing: 1.5px;
  padding: 12px 46px;
  border-radius: 0px;
  margin-left: 15px;
  pointer-events: all;
}
/* 
.header .menu__link.narcan_buy_now.link_active {
  background-color: #e70b65;
} */

#buy-now-button-on-scroll {
  display: none;
}

@media screen and (max-width: 1220px) {
  .header #hs_cos_wrapper_site_logo {
    height: 40px;
    width: 110px;
  }
  
  #buy-now-button-on-scroll {
    box-shadow: 0 2px 8px 1px rgba(0,0,0,.25);
    display: block;
    font-weight: 400;
    height: 41px;
    left: 0;
    opacity: 1;
    padding: 2px;
    position: absolute;
    text-align: center;
    text-transform: none;
    top: 58px;
    transition: top .45s ease,opacity .3s linear;
    width: 100%;
    z-index: 0;
    letter-spacing: 0.5px;
  }
  
  #buy-now-button-on-scroll svg {
    position: relative;
    top: 3px;
    margin-right: 13px;
  }
  
  .header__container.content-wrapper {
    position: relative;
    flex-direction: row;
    height: 58px !important;
  }
  
  .header__container.content-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
  }
  
  .header__container.content-wrapper > * {
    position: relative;
    z-index: 2;
  }
  
  #main-content {
    padding-top: 159px;
  }
 
}

.header .menu__item--depth-1 > .menu__link--active-link:after {
    background-color: #ce0058!important;
    bottom: 0px;
    content: "";
    height: 5px;
    left: 14px;
    position: absolute;
    width: calc(100% - 28px);
}

.healthcare-professionals_banner {
  display: block;
  margin: 0;
  text-align: right;
  padding: 7px 0px;
  background-color: black;
  color: #fff;
  position: relative;
  top: -1px;
  z-index: 10;
}

.healthcare-professionals_banner .content-wrapper {
  padding: 0 30px;
}

.healthcare-professionals_banner p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Poppins' !important;
  font-weight: 400;
  color: #828282;
  opacity: 1;
  transition: opacity .35s ease;
  user-select: none;
  position: relative;
}

.healthcare-professionals_banner p .divider {
  opacity: .7;
}

.healthcare-professionals_banner p a,
.healthcare-professionals_banner p button {
  background: transparent;
  border: none;
  color: #fff;
  font-family: Work Sans!important;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 1px;
  outline: none;
  padding: 0 34px 0 0;
  position: relative;
  text-transform: uppercase;
  user-select: none;
  margin-top: 0;
}

.healthcare-professionals_banner p a:after,
.healthcare-professionals_banner p button:after {
  background-image: url('https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/ICONS/arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  height: 14px;
  position: absolute;
  right: 0px;
  top: 0;
  width: 22px;
}

@media screen and (max-width: 1220px) {
  .healthcare-professionals_banner {
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .healthcare-professionals_banner .content-wrapper {
    width: 100%;
  }
  
  .healthcare-professionals_banner p {
    font-size: 10px;
    padding: 0;
    margin-top: 25px;
    text-align: left;
  }
  
  .healthcare-professionals_banner a button,
  .healthcare-professionals_banner p button {
    font-size: 10px;
    padding: 0 22px 0 0;
  }
  
  .healthcare-professionals_banner p a,
  .healthcare-professionals_banner p button {
    letter-spacing: 0px;
    margin-right: 0px;
  }
  
  .healthcare-professionals_banner p a:after,
  .healthcare-professionals_banner p button:after {
    top: 0px;
    width: 16px;
    height: 12px;
  }
}

/* Header DND sections */

header.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  background: transparent !important;
}

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

.header .header_content {
  position: relative;
  transition: top .5s ease;
  top: 0;
}

.header .header_content:before {
  background-color: #000;
  bottom: -2px;
  content: "";
  filter: blur(7px);
  height: 7px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .2s ease;
  width: 100%;
  z-index: -1;
}

.header_content .wh_bg {
  background-color: #fff;
  top: 0px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.header.scrollHover .header_content:before {
  opacity: 1;
}

.header .header_content .healthcare-professionals_banner {
  height: 36px;
  transition: height .5s ease, padding .45s ease;
}

.header.scrollHover.scrolled_after_first_section .header_content .healthcare-professionals_banner {
  height: 0px;
  padding: 0;
}

.header.scrolled_after_first_section .header_content .healthcare-professionals_banner p {
  opacity: 0;
  pointer-events: none;
}


/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  padding: 0 30px !important;
  height: 83px !important;
  align-items: center;
  width: 100%;
}

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

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

@media (max-width: 1220px) {
  .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;
  }
  
  .header .menu__item--depth-1 > .menu__link--active-link {
    color: #2E2E2E;
    background-color: rgba(224, 221, 215, 0.50);
  }
  
  .header .menu__item--depth-1 > .menu__link--active-link:after {
    display: none;
  }
  
  .menu__link.narcan_buy_now {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 1220px) {
  .header .header_content .healthcare-professionals_banner {
    height: 60px;
  }
}

/* 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: 1220px) {
  .header__logo {
    margin: 0 auto 0 0px;
    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: 0px;
}

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

.header #hs_cos_wrapper_site_logo img {
  height: 100% !important;
  object-fit: contain;
  width: 100% !important;
  object-position: left center;
}

@media (min-width: 1220px) {
  .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: 1220px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

@media screen and (min-width: 1220px) {
  .header__navigation {
    display: flex;
    align-items: center;
    margin-top: 0px;
  }
  
  .header__navigation .narcan_buy_now {
    position: relative;
  }
}

/* Mobile toggles */

@media (max-width: 1220px) {
  
  .menu--desktop {
    display: none !important;
  }
  
  .menu--mobile {
    display: block !important;
  }
  
  .header__navigation.open {
    animation: mobileNavIn .3s ease;
  }
  
  .menu--mobile .menu__item {
    display: block;
    width: 100% !important;
  }
  
  .mobile__behind_navigation {
    display: none;
    background-color: transparent;
    position: fixed;
    height: calc(100% - 250px);
    bottom: 0;
    left: 0;
    width: 100%;
  }
  
  .mobile__behind_navigation.show {
    display: block;
  }
  
  .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;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 2;
  }
  
  .header__navigation.open {
    background-color: rgba(0,0,0,.7);
/*     pointer-events: none; */
    width: 100vw;
    position: fixed;
    left: 0;
    top: 94px;
    transition: top .5s ease;
  }
  
  .header__navigation .narcan_buy_now {
    text-align: center;
  }
  
  .scrolled_after_first_section .header__navigation.open {
    top: 58px;
  }

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

  .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.open {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNC4xMjEiIGhlaWdodD0iMzQuMTIxIiB2aWV3Qm94PSIwIDAgMzQuMTIxIDM0LjEyMSI+CiAgPGcgaWQ9Ikdyb3VwXzIiIGRhdGEtbmFtZT0iR3JvdXAgMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI4LjQzOSAtMzMuNDM5KSI+CiAgICA8bGluZSBpZD0iTGluZV80IiBkYXRhLW5hbWU9IkxpbmUgNCIgeDI9IjMyIiB5Mj0iMzIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5LjUgMzQuNSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIzIi8+CiAgICA8bGluZSBpZD0iTGluZV81IiBkYXRhLW5hbWU9IkxpbmUgNSIgeDE9IjMyIiB5Mj0iMzIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5LjUgMzQuNSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIzIi8+CiAgPC9nPgo8L3N2Zz4K);
    animation: xSpinIn .2s ease-out forwards;
  }

  .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,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MiIgaGVpZ2h0PSIzMyIgdmlld0JveD0iMCAwIDQyIDMzIj4KICA8ZyBpZD0iR3JvdXBfMSIgZGF0YS1uYW1lPSJHcm91cCAxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjkgLTMzLjUpIj4KICAgIDxsaW5lIGlkPSJMaW5lXzEiIGRhdGEtbmFtZT0iTGluZSAxIiB4Mj0iNDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5IDUwKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjMiLz4KICAgIDxsaW5lIGlkPSJMaW5lXzIiIGRhdGEtbmFtZT0iTGluZSAyIiB4Mj0iNDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5IDM1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjMiLz4KICAgIDxsaW5lIGlkPSJMaW5lXzMiIGRhdGEtbmFtZT0iTGluZSAzIiB4Mj0iNDIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5IDY1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjMiLz4KICA8L2c+Cjwvc3ZnPgo=);
    background-size: contain;
    height: 26px;
    width: 26px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -14px;
    margin-right: 0;
    right: 0px;
  }

  .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__item--depth-1 {
    background-color: #fff;
    text-align: center;
    pointer-events: all;
    user-select: none;
    cursor: pointer;
    position: relative;
  }
  
  .menu__item--depth-1 {
    border-style: none !important;
    border-top: none !important;
    padding: 0 !important;
  }
  
  .menu__item--depth-1:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background-color: #cccccc;
    left: 0;
    top: 0;
    opacity: 0;
    animation: fadeIn .5s ease forwards;
    animation-delay: .2s;
  }
  
  .menu__item--depth-1 > span.menu__link,
  .menu__item--depth-1 > a.menu__link {
    padding-top: 15px;
    padding-bottom: 12px;
  }
  
  .menu__link.narcan_buy_now {
    border-radius: 0px;
    display: block;
  }
  
  .narcan_buy_now > img {
    padding: 6px 5px 0 0;
  } 
  
  .menu__item--depth-1 > .menu__link,
  .narcan_buy_now .menu__link.narcan_buy_now {
    padding: 9px 0 6px !important;
    display: block;
  }
  
}

@media screen and (max-width: 1220px) {
  .header:not(.scrolled_after_first_section) .header__navigation.open { 
    top: 118px !important;
  }
}


/* LANGUAGE */

.language_container {
  float: left;
  height: 35px;
  max-width: 240px;
  position: absolute;
  width: 100%;
  top: 0px;
  transform: translateY(0);
  transition: transform .3s ease, opacity .3s ease;
  z-index: 1;
}

.select_language,
.select_language:hover,
.select_language:focus,
.select_language:active {
  background: #000;
  font-family: Poppins !important;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  letter-spacing: 1px;
  margin: 0;
  padding: 10px 0px 0px;
  position: absolute;
  text-align: left;
  text-decoration: underline;
  top: 0;
  width: 100%;
  z-index: 1;
}

.language_options_container {
  position: absolute;
  left: -16px;
  top: calc(100% - 5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  transform: translateY(-100%);
  background: #000;
  max-height: min(285px, calc(100vh - 30px));
  overflow-y: auto;
}

.scrolled_after_first_section .language_container {
  transform: translateY(-100%);
  opacity: 0;
}


.scrolled_after_first_section.header .header_content {
  position: relative;
  transition: top .5s ease;
/*   top: -15px; */
}

/* width */
.language_options_container::-webkit-scrollbar {
  width: 6px;
  position: relative;
  left: -4px;
}

/* Track */
.language_options_container::-webkit-scrollbar-track {
  background: #333;
}

/* Handle */
.language_options_container::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 3px;
}

/* Handle on hover */
.language_options_container::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.language_options_container.active {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: all;
}

.language_options_container .languages_list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 10px 0 0;
  margin: 0 0 17px;
  min-width: 250px;
}

.language_options_container .languages_list .language_option {
  margin: 0;
  text-align: left;
  padding: 5px 0;
}

.languages_list .language_option .language_link {
  background: transparent;
  color: #fff;
  margin: 0;
  padding: 0 20px;
  text-decoration: none;
  font-size: 14px;
  font-family: Poppins !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  display: block;
}

.languages_list .language_option .language_link.active {
  position: relative;
}

.languages_list .language_option .language_link.active:after {
  background: transparent;
  color: #fff;
  content: "\00A0\2713\00A0" !important;
  height: 20px;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  display: inline;
  font-size: 13px;
}



@media screen and (max-width: 1220px) {
  .healthcare-professionals_banner .content-wrapper {
    
  }
}

@media screen and (max-width: 480px) { 
  .healthcare-professionals_banner p a,
  .healthcare-professionals_banner p button {
    font-size: 9px;
    letter-spacing: 0px;
  }
  
    .healthcare-professionals_banner p {
    font-size: 9.5px;
    letter-spacing: 0px;
    margin-top: 20px;
  }
  
  .healthcare-professionals_banner p a {
    padding-right: 0px;
  }
  
  .healthcare-professionals_banner p a:after {
    opacity: 0;
  }
}

@media screen and (max-width: 420px) {
  .healthcare-professionals_banner p {
    white-space: nowrap;
    line-height: 1.8;
  }
  
  .healthcare-professionals_banner .content-wrapper {
    padding: 0 20px;
  }
  
  .healthcare-professionals_banner p a,
  .healthcare-professionals_banner p button {
    display: block;
  }
  
  .healthcare-professionals_banner p .divider {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  /* .healthcare-professionals_banner p {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin: 0px;
  } */
  
  .healthcare-professionals_banner p,
  .healthcare-professionals_banner p a,
  .healthcare-professionals_banner p button {
    font-size: 8px;
  }
}

/* SPANISH CSS */
body.es-us a.menu__link, 
body.es-us span.menu__link {
  font-size: 11px;
  letter-spacing: .5px;
}


@media screen and (max-width: 340px) {
  #buy-now-button-on-scroll {
    font-size: 12px;
  }
}

@keyframes xSpinIn {
  0% {
    transform: rotate(-45deg) scale(.7);
    opacity: .2;
  }
  100% {
    transform: rotate(0deg) scale(.9);
    opacity: 1;
  }
}

@keyframes mobileNavIn {
  0% {
    transform: translateY(-10px);
    opacity: .3;
  }
  
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
/* 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;
  }
}
html, body {
  scroll-behavior: smooth !important;
}

/* #main-content, .footer {
  position: relative;
  top: 120px;
}
 */
.lazy_fade {
  opacity: 0;
}

/* .disable_lazy_fade {
  opacity: 1;
} */

.fade_in {
/*   animation: fadeIn .8s ease forwards; */
  opacity: 1;
  transition: .5s ease opacity;
}

/* .fade_in.disable_lazy_fade {
  animation: none;
} */

h1 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
} 

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif !important;
}

.body-container-wrapper th, 
.body-container-wrapper td {
  font-size: 14px;
}

.body-container-wrapper h1 {
  font-size: 45px;
  line-height: 55px;
}

.body-container-wrapper h2 {
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 133.333% */
  text-transform: uppercase;
  letter-spacing: .3px;
}

@media(max-width: 1220px) {
  #main-content h2 {
    font-size: 24px;
  }
}

.body-container-wrapper h3 {
  font-size: 24px;
  line-height: 35px;
}

.body-container-wrapper h4 {
  font-size: 20px;
  line-height: 28px;
}

.body-container-wrapper h5 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
}

.body-container-wrapper p {
  font-size: 16px;
  line-height: 22px;
}

a.hs-button,
a.hs-button:hover {
  border-radius: 0px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  border: none !important;
  outline: none !important;
}

li, a, p, span {
  font-family: 'Work Sans', sans-serif !important;
}

.body-container-wrapper li {
  font-size: 16px;
}

.content-wrapper {
  max-width: 1260px !important;
}

.logo_spinner_inline {
  height: 50px;
  margin-right: 0px;
  position: relative;
  top: 36px;
  width: 50px;
  display: block;
  left: -68px;
}

.logo_spinner_inline:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/nrcn_spinner.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hs-button:hover {
  border-color: transparent;
}

.narcan-references {
  text-align: left;
}

.narcan-references ol {
  padding-left: 20px;
  
}

.narcan-references a,
.narcan-references button,
.narcan-references a:hover,
.narcan-references button:hover,
.narcan-references button:hover {
  background: transparent!important;
  border: none !important;
  color: #ce0058 !important;
  display: contents;
  font-size: 14px !important;
  font-weight: 400!important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none;
  text-transform: none !important;
  line-height: 15px !important;
}

.narcan-references li {
  font-weight: 400 !important;
  color: #2E2E2E;
  font-size: 14px !important;
}

.section-starter {
  position: relative;
}

.section-starter > * {
  position: relative;
  z-index: 1;
}

.section-starter:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #E0DDD7;
  position: absolute;
  left: 0;
  bottom: 0;
}

ul.pink_diamond_ul {
  padding-left: 0;
}

.pink_diamond_ul > li {
  list-style-type: none;
  margin: 0 0 25px;
/*   max-width: 45ch; */
  padding-left: 40px;
  position: relative;
}

.pink_diamond_ul > li:before {
  color: #e10058;
  content: "⬥";
  left: 0;
  position: absolute;
  top: 0;
}

.pink_diamond_ul > li::marker {
  content: none;
}

@media screen and (max-width: 500px) {
  #main-content h1 {
    font-size: 39px !important;
    line-height: 45px !important;
    word-wrap: normal;
  }
}

/* SHARING */

.narcan_share_button_desktop,
.narcan_share_button_desktop:hover,
.narcan_share_button_desktop:focus,
.narcan_share_button_mob,
.narcan_share_button_mob:hover,
.narcan_share_button_mob:focus {
  width: 41px;
  height: 41px;
  border: none;
  border-radius: 50% !important;
  padding: 9px !important;
  z-index: 100;
}

.narcan_share_button_desktop svg,
.narcan_share_button_mob svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  left: -1.5px;
  pointer-events: none;
}

.narcan_share_button_mob {
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1250px) {
  .narcan_share_button_mob {
    display: block;
  }
  .narcan_share_button_desktop {
    display: none;
  }
}

@media screen and (min-width: 1251px) {
  .narcan_share_button_mob {
    display: none;
  }
  .narcan_share_button_desktop {
    display: block;
  }
}

/* POPUP STYLES */

.video_popup,
.exit_popup,
.share_popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.6);
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  justify-content: center;
}

.share_popup {
  justify-content: flex-end !important;
}

.video_popup.open,
.exit_popup.open,
.share_popup.open {
  display: flex;
  flex-direction: column;
  animation: fadeIn .3s ease;
}

.video_popup video {
  width: 100%;
  height: auto;
  max-width: 850px;
  border-color: transparent;
}

.popup_contents {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px;
}

@media screen and (min-width: 951px) {
  .popup_contents {
    padding: 0 200px;
  }
}

.popup_video_header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  
}

.popup_contents .hs-video-widget {
  pointer-events: none;
  width: 100%;
/*   height: 220px; */
}

.popup_image_preview {
  width: 100%;
  height: 100%;
}

.modal_box {
    background-color: #fff;
    padding: 100px;
    text-align: center;
}

.modal_links .continue_link {
  background: #CE0058;
  padding: 13px 47px;
  border: 2px solid #ce0058;
  color: #fff;
  text-align: center;
  font-family: "Poppins" !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 13px;
}

.modal_links .cancel_button {
  border: solid 2px #CE0058;
  background: transparent;
  padding: 13px 47px;
  color: #CE0058;
  text-align: center;
  font-family: "Poppins" !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0px;
  display: inline-block;
  margin-top: 13px;
}

.modal_links {
  display: flex;
  justify-content: center;
  gap: 33px;
}

.exit_popup h4 {
  font-weight: 700;
}

.exit_popup .modal_box {
  background-color: #fff;
  padding: 100px 120px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.exit_popup .modal_box > * {
  position: relative; 
  z-index: 2;
}

.exit_popup .modal_box:after {
  background: url(https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/nrcn_spinner.png);
  background-size: contain;
  bottom: -67px;
  content: "";
  height: 200px;
  position: absolute;
  right: -51px;
  width: 200px;
  opacity: .9;
}

.modal_box p {
  font-family: Work Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; 
  max-width: 55ch;
  margin: 0 auto 50px;
}

.modal_box.otc_modal_box p {
  max-width: 55ch;
  margin: 0 auto 50px;
}

.modal_box.hcp_modal_box p {
  max-width: 65ch;
  margin: 0 auto 50px;
}

.modal_box.ext_modal_box p {
  max-width: 73ch;
  margin: 0 auto 50px;
}

button.modal_button[data-link] > * {
  pointer-events: none;
  user-select: none;
}

.sharing_modal_title {
  text-transform: uppercase;
}

.share_popup {
  display: none;
}

.share_popup.active {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  place-items: center;
  justify-content: center;
  animation: fadeIn .3s ease;
}

#bg-close {
  z-index: 0;
  background-color: rgba(0,0,0,.6);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.share_popup_contents {
  background: #F0EEEB;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  max-width: 995px;
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
  flex-direction: column;
  position: relative;
}

.share_popup_header h2 {
  color: #333;
  text-align: center;
  font-family: 'Poppins';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
}

.share_popup_buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 55px;
  place-items: center;
  margin-bottom: 20px;
}

.share_popup_buttons button,
.share_popup_buttons button:hover,
.share_popup_buttons button:active,
.share_popup_buttons button:visited,
.share_popup_buttons button:focus {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.share_popup_link_container {
  align-items: center;
  display: flex;
  max-width: 920px;
  width: 100%;
  background-color: #fff;
  padding: 15px 18px;
  margin: 20px 30px;
  justify-content: space-between;
}

#share-link {
    color: #333;
    font-family: 'Work Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 65ch;
    overflow: hidden;
}

.share_popup_copy_link,
.share_popup_copy_link:hover,
.share_popup_copy_link:active,
.share_popup_copy_link:visited,
.share_popup_copy_link:focus {
  color: #FFF;
  text-align: center;
  font-family: 'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0px;
  display: flex;
  width: fit-content;
  padding: 13px 47px;
  place-items: center;
  gap: 12px;
  white-space: nowrap;
  border: none;
}

.share_popup_copy_link.link_copied {
  background-color: transparent;
  color: #CE0058;
  outline: solid 1px #CE0058;
}

.close_popup {
  position: absolute;
  width: 26px;
  height: 26px;
  background: url('https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/ICONS/close.svg');
  background-size: contain;
  background-repeat: no-repeat;
  top: 26px;
  right: 26px;
  cursor: pointer;
}

@media screen and (max-width: 950px) {
  .exit_popup .popup_contents {
    padding: 0px 20px;
  }
  
  .exit_popup .modal_box {
    padding: 40px 20px 160px;
  }
  
  .exit_popup .modal_links {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 1050px) {
  
  .share_popup.open,
  .share_popup.active {
    justify-content: flex-end !important;
    padding-bottom: 0px !important;
    place-items: flex-end !important;
  }
  
  .share_popup_contents {
    margin: 0 50px;
    width: calc(100% - 100px);
    height: 70%;    
  }  
  
  #share-link {
    display: none;
  }
  
  .share_popup_link_container {
    width: fit-content;
    padding: 0;
  }
  
  .share_popup_buttons {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    row-gap: 40px;
  } 
  
  .share_popup_buttons a {
    flex-basis: calc(25% - 10px);
    text-align: center;
  }

  .share_popup_header h2 {
    max-width: 20ch;
  }
}

@media screen and (max-width: 1220px) {
  #main-content.hcp-wrapper, .hcp-body .footer {
    overflow: hidden;
  }
  
/*   #main-content.consumers-wrapper, .consumers-body .footer {
    top: 136px;
  }
  
  #main-content.hcp-wrapper, .hcp-body .footer {
    top: 96px;
  } */
}

@media screen and (max-width: 400px) {
  .share_popup_contents {
    margin: 0 20px;
    padding: 80px 10px 20px;
    width: calc(100% - 40px);
  }

}

.nrcn_cta_text_link {
  font-size: 14px !important;
}

button,
.hs-button,
button:hover,
.hs-button:hover {
  border-radius: 0px !important;
  background-color: #CE0058;
  outline: none;
}

.narcan_sitemap_links p {
  margin-bottom: 0;
}

.narcan_sitemap_links a,
.narcan_sitemap_links button,
.narcan_sitemap_links a:hover,
.narcan_sitemap_links button:hover,
.narcan_sitemap_links a:active,
.narcan_sitemap_links button:active,
.narcan_sitemap_links button:focus {
  color: #ce0058;
  background: transparent;
  padding: 0;
  border: 0;
  text-transform: none;
  font-family: Work Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;  
}

.popup_video_header h2 {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-right: 75px;
  position: relative;
  user-select: none;
  pointer-events: none;
  font-size: 30px;
}

.popup_video_header h2:after {
  background: url(https://20797746.fs1.hubspotusercontent-na1.net/hubfs/20797746/NRCN-2023_Website-Theme-Assets/ICONS/close-x.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 21px;
  position: absolute;
  right: 0;
  top: 9px;
  width: 21px;
}

.video_popup .hs-video-widget {
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
}

.video_popup .hs-video-widget img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* COOKIE BANNER */

#hs-eu-decline-button {
  display: none !important;
}

#hs-eu-cookie-confirmation #hs-eu-confirmation-button-group {
  width: 100%;
  flex-direction: column !important;
}

body #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-save-settings {
  padding: 0 15px !important;
  white-space: nowrap;
}

#hs-eu-cookie-confirmation #hs-eu-cookie-settings-button {
  white-space: nowrap;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom {
  width: 100%;
  bottom: 0 !important;
  border-radius: 0px;
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 750px) {
  div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
    gap: 15px;
  }
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording {
  width: fit-content;
  float: left;
  padding-top: 9px;
  margin: 0 auto !important;
  text-align: center;
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording p {
  text-align: center !important;
  max-width: 84ch; 
  margin: 0 auto;
}

#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a {
  color: #ce0058 !important;
  text-decoration: none !important;
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-cookie-confirmation-buttons-area {
  margin: 0px !important;
}

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button {
  margin: 20px 0!important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0px !important;
  font-family: 'Poppins' !important;
  padding: 0 15px !important;
}

#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a, 
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
  font-size: 16px !important;
  line-height: 22px !important;
  margin-bottom: 0px !important;
}




/* ANIMATIONS */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}