* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html, body {
    color: #4c4c4c;
    font-size: 14px;
    background: #fff;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    line-height: 16px;
    font-family: soleil, sans-serif;
    font-weight: 400;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

h1 {
    font-size: 32px;
    line-height: 32px;
    color: #4c4c4c;
    font-family: soleil, sans-serif;
    font-weight: 500;
}

h2 {
    font-size: 26px;
    line-height: 26px;
    color: #4c4c4c;
    font-family: soleil, sans-serif;
    font-weight: 500;
    margin: 0 0 25px 0;
}

h3 {
    font-size: 22px;
    line-height: 22px;
    color: #4c4c4c;
    font-family: soleil, sans-serif;
    font-weight: 500;
}

h4 {
    font-size: 19px;
    line-height: 19px;
    color: #4c4c4c;
    font-family: soleil, sans-serif;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    line-height: 16px;
    color: #4c4c4c;
    font-style: italic;
    font-family: soleil, sans-serif;
    font-weight: 500;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
}

h6 {
    font-size: 13px;
    line-height: 13px;
    color: #4c4c4c;
    text-transform: uppercase;
    font-family: soleil, sans-serif;
    font-weight: 500;
}

a, p, input, textarea, select, button, label {
    font-family: soleil, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

button, input[type="button"], input[type="submit"], .n-btn {
    border-radius: 5px;
    outline: none;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

textarea {
    min-height: 200px;
}

textarea, input[type="text"], input[type="email"], input[type="number"], input[type="tel"], select {
    border-radius: 5px;
    outline: none;
    padding: 10px 15px;
    border: none;
    background: #f5f5f5;
}

label {
    font-weight: 500;
}

a {
    color: #0391bf;
}

p {
    margin: 0 0 10px 0;
    line-height: 20px;
}

strong,
strong * {
    font-weight: 600;
}

.fluid {
 display: block;
}


ul li {
    margin-bottom: 8px;
}

main {
    padding: 30px 0;
}

.n-btn--primary {
    background: #0391bf;
    color: #fff;
}

.n-btn--primary:hover {
    background: #026b8d;
}

.n-btn--secondary {
    background: #d51181;
    color: #fff;
}

.n-btn--secondary:hover {
    background: #a60d64;
}

.n-btn--tertiary {
    background: #4c4c4c;
    color: #fff;
}

.n-btn--tertiary:hover {
    background: #333;
}

.n-btn--icon {
    position: relative;
}

.n-btn--icon img {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}

.n-head {
    background: #f5f5f5;
    height: 135px;
    border-bottom: 3px solid #e6e6e6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 13px 0;
}

.n-head__tagline {
    font-weight: 500;
    margin: 0;
}

.n-head__content h1 {
    margin: 0;
    font-size: 32px;
}

.n-head__content a {
    text-decoration: none !important;
}

.n-head__content img {
    max-height: calc(135px - 75px);
    float: right;
    position: relative;
    top: -10px;
}

.n-footer {
    background: #f5f5f5;
    min-height: 100px;
    border-top: 3px solid #e6e6e6;
    padding: 30px 0;
}

.n-footer ul, .n-footer li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.n-footer ul a, .n-footer li a {
    text-decoration: none !important;
    margin-bottom: 10px;
    display: inline-block;
    color: #4c4c4c !important;
    font-size: 14px;
    position: relative;
}

.n-footer li:hover a:after {
    content: '';
    height: 1px;
    background: #4c4c4c;
    position: absolute;
    display: block;
    width: 100%;
    top: 110%;
}

.n-footer img {
    float: right;
    max-height: 100px;
    width: 85px;
}

.n-input__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.n-input__action input[type="text"] {
    border-radius: 4px 0 0 4px;
    display: inline;
}

.n-input__action button {
    border-radius: 0 4px 4px 0;
    display: inline;
}

.n-input__action--primary input[type="text"] {
    background: #c8e7f1;
}

.n-input__action--primary input[type="text"]::-webkit-input-placeholder {
    color: #0391bf;
}

.n-input__action--primary input[type="text"]:-ms-input-placeholder {
    color: #0391bf;
}

.n-input__action--primary input[type="text"]::-moz-placeholder {
    color: #0391bf;
}

.n-input__action--primary input[type="text"]::-ms-input-placeholder {
    color: #0391bf;
}

.n-input__action--primary input[type="text"]::placeholder {
    color: #0391bf;
}

.n-input__action--secondary input[type="text"] {
    background: #f5e9f0;
}

.n-input__action--secondary input[type="text"]::-webkit-input-placeholder {
    color: #d51181;
}

.n-input__action--secondary input[type="text"]:-ms-input-placeholder {
    color: #d51181;
}

.n-input__action--secondary input[type="text"]::-moz-placeholder {
    color: #d51181;
}

.n-input__action--secondary input[type="text"]::-ms-input-placeholder {
    color: #d51181;
}

.n-input__action--secondary input[type="text"]::placeholder {
    color: #d51181;
}

.n-input__action--tertiary input[type="text"] {
    background: #e6e6e6;
}

.n-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n-nav ul li {
    margin-bottom: 3px;
    border-radius: 3px;
}

.n-nav ul li a {
    margin-bottom: 3px;
    border-radius: 3px;
    background: #c8e7f1;
    padding: 10px 20px;
}

.n-nav ul > li > a {
    height: auto !important;
    line-height: 20px;
}

.n-nav > ul li:hover > a,
.n-nav > ul > li:hover > a {
    background: #9fd5e7;
}

.n-nav ul li a {
    height: 100%;
    display: block;
    color: #0391bf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.n-nav > ul > li.active > a {
    background: #0391bf;
}

.n-nav > ul > li ul {
    display: none;
}

.n-nav li.active > ul {
    display: block;
    transition: all 2s linear;
}

.n-nav li.active > il {
     transition: all 2s linear;
}

.n-nav ul li.active a {
    color: #fff;
}

.n-nav ul ul {
    background: #c8e7f1;
}

.n-nav .is-open > a {
    background: #9fd5e7;
}

.n-nav ul ul,
.n-nav ul ul > li,
.n-nav ul ul > li > a {
    border-radius: 3px;
}

.n-nav ul ul ul > li {
    padding-left: 20px;
}

.n-nav ul ul ul a {
    font-size: 14px;
    font-weight: normal;
}


.n-nav ul ul ul > li.active a {
    color: white !important;
    background: #0391bf;
    font-weight: normal;
}


.n-nav ul ul ul > li.active {
    background: #0391bf;
    border-radius: 0;
}

.n-nav ul ul a {
    color: #4c4c4c !important;

}

.n-nav-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}

.n-nav-content__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px;
}

.n-nav-content__item:first-child {
    margin-left: 0;
}

.n-nav-content__item:last-child {
    margin-right: 0;
}

.n-nav-content__item input[type='text'] {
    width: 100%;
}

/* Mobile Nav */

.m-nav__toggle {
    position: absolute;
    right: 0;
    top: 10px;
}

.n-nav__mobile .n-head__content img  {
   top: unset;
    float: left;
}

.m-nav__dropdown {
    position: absolute;
    top: -3015px;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    padding: 30px;
    height: 100vh;
    overflow: scroll;
    border-bottom: 3px solid #e6e6e6;
}


.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: black;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    outline: none !important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after {
    width: 35px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
}

.hamburger-inner::before,.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
    -webkit-transition-duration: 0.075s;
         -o-transition-duration: 0.075s;
            transition-duration: 0.075s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
         -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 0.12s;
         -o-transition-delay: 0.12s;
            transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Mobile Nav */

.n-container {
    padding: 40px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 30px;
}

.n-container__heading__icon {
    padding-right: 40px;
    position: relative;
}

.n-container__heading__icon img {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 0;
    top: -5px;
}

.n-container__section {
    margin-bottom: 35px;
}

.n-container__section:first-child > h1:first-child, .n-container__section:first-child > h2:first-child, .n-container__section:first-child > h3:first-child, .n-container__section:first-child > h4:first-child, .n-container__section:first-child > h5:first-child, .n-container__section:first-child > h6:first-child {
    margin-top: 0;
}

.n-container__section:last-child {
    margin-bottom: 0;
}

.n-container--highlight {
    background: #ffeb50;
}

.n-container--highlight h1, .n-container--highlight h2, .n-container--highlight h3, .n-container--highlight h4, .n-container--highlight h5, .n-container--highlight h6 {
    color: #fc1d33;
}

.n-container__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n-container__list li {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 0;
}

.n-container__list li:hover {
    background: #e6e6e6;
}

.n-container__list li:last-child {
    border: none;
}

.n-container__list a {
    text-decoration: none;
    padding: 0 10px;
}

.n-article {
    border-top: 1px solid #e6e6e6;
    padding-bottom: 30px;
}

.n-article h3 a {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600 !important;
    text-decoration: none;
}

.n-article h3 a:hover {
    color: #4c4c4c;
}

.n-article__attributes {
    margin: 20px 0;
}

.n-article__attributes a {
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 12px;
}

.n-article__attributes > p {
    margin: 0;
    font-size: 12px;
}

.n-article__content {
    margin-bottom: 30px;
    line-height: 18px;
}

.n-article__cta {
    font-weight: 600 !important;
    text-decoration: none;
}

.n-pagination > div:last-child {
    margin-top: 10px;
}

.n-pagination a {
    text-decoration: none;
    font-weight: 500;
}

.n-pagination a.disabled {
    cursor: not-allowed;
    color: #6e6e6e;
}

.n-pagination__stat .next, .n-pagination__stat .prev {
    width: 25px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    padding: 0 3px;
}

.n-pagination__stat .next {
   background: url("../imgs/arrow-blue-right.png") no-repeat;
}

.n-pagination__stat .prev {
    background: url("../imgs/arrow-blue-left.png") no-repeat;
}

.n-pagination a.disabled .prev {
    background: url("../imgs/arrow-grey-left.png") no-repeat;
}

.n-pagination a.disabled .next {
    background: url("../imgs/arrow-grey-right.png") no-repeat;
}

table,
.n-table {
    width: 100%;
    border-collapse: collapse;
}

table tr,
.n-table tr {
    border: 1px solid #d2d2d2;
}

table a,
.n-table a {
    text-decoration: none;
    font-weight: 600;
}

table thead,
.n-table thead {
    background: #e6e6e6
}

table thead td,
.n-table thead th {
    text-align: left;
    padding: 40px 15px 20px 15px;
    font-weight: 600;
    border-right: 1px solid #d2d2d2
}

table thead th:last-child,
.n-table thead th:last-child {
    border-right: none;
}

table tbody,
.n-table tbody {
    background: #f5f5f5;
}

table tbody tr td,
.n-table tbody tr td {
    padding: 15px;
    border-right: 1px solid #d2d2d2;
}

table tbody tr td:last-child,
.n-table tbody tr td:last-child {
    border-right: none;
}

table tbody tr.n-table__row__header,
.n-table tbody tr.n-table__row__header {
    background: #fff;
    font-weight: 600;
}

.n-sidebar__item {
    margin-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
}

.n-sidebar__item__cta {
    margin-bottom: 15px;
    border: none;
}

.n-sidebar__item__cta .n-btn {
    display: block;
}

.n-sidebar__item__title {
    font-weight: 600;
    margin-bottom: 20px;
}

.n-sidebar__item__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n-sidebar__item__list li {
    padding-bottom: 10px;
}

.n-sidebar__item__list a {
    font-weight: 600;
    text-decoration: none;
}

.n-article a:hover,
.n-sidebar__item__list a:hover {
    color: #4c4c4c;
}

.n-form {
    padding: 30px 0;
}

.n-form .n-form__row {
    margin-bottom: 15px;
}

.n-form .n-form__row input,
.n-form .n-form__row textarea {
    width: 100%;
    background: white;
    border-radius: 3px !important;
}

.n-form .n-form__row__split {
    margin-top: 50px;
    margin-bottom: 0;
}

.n-form .n-form__row__split::after {
    content: "";
    clear: both;
    display: table;
}

.n-form .n-form__row .n-form__submit {
    float: right;
}

.n-form .n-form__row .n-form__recaptcha {
    float: left;
}

.n-drug .n-drug__parent {
    font-size: 20px;
    border-radius: 40px;
    margin-bottom: 30px;
    background: #e6e6e6;
    padding: 10px 20px;
    line-height: 24px;
    margin-left: -20px;
    display: inline-block;
}

.n-drug > h1, .n-drug > h2, .n-drug > h3, .n-drug > h4 {
   margin: 10px 0 20px 0;
}


.n-drug__block__title {
    background: #d2d2d2;
    padding: 10px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 10px;
}

.n-drug__list__item {
    padding-top: 30px;
}

.n-drug__block {
    margin: 25px 0;
}

.n-drug__block__content {
    padding-left: 60px;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    background: #e6e6e6;
    border-radius: 3px;
    padding-right: 30px;
}

.n-drug__block__icon {
    top: 23px;
    position: absolute;
    left: 15px;
}

.n-drug__block__icon img {
    width: 30px;
    height: 30px;
}

.n-drug__block__content .n-drug__title {
    color: #d51181;
    font-weight: 800;
    font-size: 23px;
    line-height: 36px;
    margin-bottom: 10px;
}

.n-drug__block__content .n-drug__title span {
    font-size: 18px;
    font-weight: 500;
}

.n-drug__block__content * {
    overflow-wrap: break-word;
}

.n-key {
    text-align: right;
    line-height: 30px;
    margin-bottom: 10px;
}

.n-key span {
    width: 30px;
    height: 30px;
    margin-right: -1px;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

.n-key img {
    width: 30px;
    height: 30px;
}

.n-key span:last-child {
    margin-right: 0;
}

@media (max-width: 992px) {
    .n-head {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    .n-nav-content {
        display: block;
    }
    
    .n-nav-content__item {
        margin:0;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .n-head {
        height: auto;
        padding: 30px 0;
        display: block;
    }


    .n-footer img {
        margin-top: 20px;
    }
}

.formulation {
    text-transform: lowercase;
    color: #e075a7;
    font-size: 85%;
    font-weight: bold;
}


.n-drug__block__content {
   
    margin-bottom: 10px;
}


.search-phrase {
    color: #d51181;
}

.easy-autocomplete {

    width: 100%;
}

.field-validation-error {
    color: red;
    padding: 10px;
}