@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap);/*------------------------------------*\
    = FILE IMPORTS
\*------------------------------------*/
/*------------------------------------*\
    = VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    = MIXNS
\*------------------------------------*/
/*------------------------------------------------------------------------*\
    = Animations
\*------------------------------------------------------------------------*/
.flex {
  display: flex;
  flex-direction: column-reverse;
}

/*------------------------------------*\
    = VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    = MIXNS
\*------------------------------------*/
/*------------------------------------------------------------------------*\
    = Animations
\*------------------------------------------------------------------------*/
.flex {
  display: flex;
  flex-direction: column-reverse;
}

nav {
  position: relative;
}
nav .menu li {
  margin-left: 22px;
}
nav .menu li a {
  font-weight: 600;
  font-size: 14px;
  color: #005EB8;
  position: relative;
}
nav .menu li a.active {
  color: #FF671F;
}
nav .menu li a:hover {
  color: #05C3DE;
}

.logo {
  background: url("../images/pacifica.svg") no-repeat left 0 transparent;
  background-size: contain;
  width: 100%;
  height: 56px;
  max-width: 220px;
  display: inline-block;
}

.share {
  cursor: pointer;
  position: relative;
}
.share:hover .social-wrap {
  opacity: 1;
  display: flex;
  padding-right: 30px;
}
.share div {
  color: #4D5BA8;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 14px;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
}
.share .social-wrap {
  opacity: 0;
  position: absolute;
  top: 0;
  left: -173px;
}
.share .social-wrap li a {
  cursor: pointer;
}

/*------------------------------------------------------------------------*\
    = Nav
\*------------------------------------------------------------------------*/
.revealNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}
.revealNav .menu {
  float: right;
  margin-right: 30px;
  margin-top: 20%;
}
.revealNav .menu li {
  display: block;
  width: 100%;
  text-align: right;
}
.revealNav .menu li a {
  color: #343741;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-size: 20px;
  padding-bottom: 30px;
  display: block;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.revealNav .menu li a:hover {
  color: #FF671F;
}
.revealNav .social-wrap {
  float: left;
  margin-left: 30px;
  max-width: 30px;
  margin-top: 20%;
}
.revealNav .social-wrap li {
  margin-bottom: 30px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  margin-bottom: 10px;
  z-index: 50;
  position: relative;
}
.header__nav .menu {
  margin-left: -22%;
  margin-top: -5px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
 * Pills
 * A simple, responsive, and tiny CSS grid for humans who don't like memorising all those cryptic codes like col-*-6 or something.
 * https://github.com/rohitkrai03/pills
 * Copyright 2015, Rohit Rai
 */
html, body {
  margin: 0;
  padding: 0;
}

*, *:after, *:before {
  box-sizing: border-box;
}

.row {
  display: block;
  margin: 0 auto;
  max-width: 1202px;
  padding: 0 30px;
  overflow: hidden;
  *zoom: 1;
}

.row::before, .row::after {
  content: "";
  display: table;
  line-height: 0;
}

.row::after {
  clear: both;
}

.row .row {
  max-width: 100%;
  min-width: 100%;
}

.row .column,
.row .columns {
  float: left;
  width: 100%;
}

.column img,
.columns img {
  max-width: 100%;
}

.column .column:first-of-type,
.column .columns:first-of-type,
.columns .column:first-of-type,
.columns .columns:first-of-type {
  padding-left: 0;
}

.column .column:last-of-type,
.column .columns:last-of-type,
.columns .column:last-of-type,
.columns .columns:last-of-type {
  padding-right: 0;
}

.column .row:first-of-type > .column,
.column .row:first-of-type > .columns,
.columns .row:first-of-type > .column,
.columns .row:first-of-type > .columns {
  padding-top: 0;
}

.column .row:last-of-type > .column,
.column .row:last-of-type > .columns,
.columns .row:last-of-type > .column,
.columns .row:last-of-type > .columns {
  padding-bottom: 0;
}

.column.no-padding,
.columns.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.column.one,
.columns.one {
  width: 8.33333%;
}

.column.two,
.columns.two {
  width: 16.66667%;
}

.column.three,
.columns.three {
  width: 25%;
}

.column.four,
.columns.four {
  width: 33.33333%;
}

.column.five,
.columns.five {
  width: 41.66667%;
}

.column.six,
.columns.six {
  width: 50%;
}

.column.seven,
.columns.seven {
  width: 58.33333%;
}

.column.eight,
.columns.eight {
  width: 66.66667%;
}

.column.nine,
.columns.nine {
  width: 75%;
}

.column.ten,
.columns.ten {
  width: 83.33333%;
}

.column.eleven,
.columns.eleven {
  width: 91.66667%;
}

.column.twelve,
.columns.twelve {
  width: 100%;
}

.column.whole, .column.w-1-1,
.columns.whole,
.columns.w-1-1 {
  width: 100%;
}

.column.half, .column.w-1-2,
.columns.half,
.columns.w-1-2 {
  width: 50%;
}

.column.one-third, .column.w-1-3,
.columns.one-third,
.columns.w-1-3 {
  width: 33.33333%;
}

.column.two-thirds, .column.w-2-3,
.columns.two-thirds,
.columns.w-2-3 {
  width: 66.66667%;
}

.column.one-quarter, .column.one-fourth, .column.w-1-4,
.columns.one-quarter,
.columns.one-fourth,
.columns.w-1-4 {
  width: 25%;
}

.column.three-quarters, .column.three-fourths, .column.w-3-4,
.columns.three-quarters,
.columns.three-fourths,
.columns.w-3-4 {
  width: 75%;
}

.column.one-fifth, .column.w-1-5,
.columns.one-fifth,
.columns.w-1-5 {
  width: 20%;
}

.column.two-fifths, .column.w-2-5,
.columns.two-fifths,
.columns.w-2-5 {
  width: 40%;
}

.column.three-fifths, .column.w-3-5,
.columns.three-fifths,
.columns.w-3-5 {
  width: 60%;
}

.column.four-fifths, .column.w-4-5,
.columns.four-fifths,
.columns.w-4-5 {
  width: 80%;
}

.offset.by-one {
  margin-left: 8.33333%;
}

.offset.by-two {
  margin-left: 16.66667%;
}

.offset.by-three {
  margin-left: 25%;
}

.offset.by-four {
  margin-left: 33.33333%;
}

.offset.by-five {
  margin-left: 41.66667%;
}

.offset.by-six {
  margin-left: 50%;
}

.offset.by-seven {
  margin-left: 58.33333%;
}

.offset.by-eight {
  margin-left: 66.66667%;
}

.offset.by-nine {
  margin-left: 75%;
}

.offset.by-ten {
  margin-left: 83.33333%;
}

.offset.by-eleven {
  margin-left: 91.66667%;
}

.offset.by-half {
  margin-left: 50%;
}

.offset.by-one-third {
  margin-left: 33.33333%;
}

.offset.by-two-thirds {
  margin-left: 66.66667%;
}

.offset.by-one-quarter, .offset.by-one-fourth {
  margin-left: 25%;
}

.offset.by-three-quarters, .offset.by-three-fourths {
  margin-left: 75%;
}

.offset.by-one-fifth {
  margin-left: 20%;
}

.offset.by-two-fifths {
  margin-left: 40%;
}

.offset.by-three-fifths {
  margin-left: 60%;
}

.offset.by-four-fifths {
  margin-left: 80%;
}

.align-center {
  text-align: center;
}

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

.align-right {
  text-align: right;
}

.pull-left {
  float: left;
}

.only-on-mobiles {
  display: none !important;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 599px) {
  .row:not(.no-stacking-on-mobiles) > .column,
  .row:not(.no-stacking-on-mobiles) > .columns {
    width: 100% !important;
  }
  .column .row .column,
  .column .row .columns,
  .columns .row .column,
  .columns .row .columns {
    padding-left: 0px;
    padding-right: 0px;
  }
  .center-on-mobiles {
    text-align: center !important;
  }
  .hide-on-mobiles {
    display: none !important;
  }
  .only-on-mobiles {
    display: block !important;
  }
}
@media screen and (min-width: 1180px) {
  .wide .row,
  .row .wide {
    margin: 0 auto;
    max-width: 1180px;
  }
}
@media screen and (min-width: 1366px) {
  .wider .row,
  .row .wider {
    margin: 0 auto;
    max-width: 1366px;
  }
}
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
/*------------------------------------------------------------------------*\
    = Inner Pages
\*------------------------------------------------------------------------*/
.alt-page .share-btn span {
  color: #fff;
}
.alt-page .logo {
  background-image: url("https://www.pacifica-trial.com/images/ocs-wht.svg");
}
.alt-page h1 {
  color: #fff;
}
.alt-page .hero {
  background-image: url("https://www.pacifica-trial.com/images/top-scroll2.svg");
}
.alt-page .hero p {
  color: #fff;
}
.alt-page .hero a {
  color: #05C3DE;
  text-decoration: underline;
}
.alt-page .hero .mail {
  position: relative;
  color: #fff;
  display: inline-block;
  z-index: 1;
}
.alt-page .hero .mail:hover {
  text-decoration: none;
}
.alt-page .hero .mail:hover:before {
  width: 102%;
}
.alt-page .hero .mail:hover:after {
  right: -62px;
}
.alt-page .hero .mail:before {
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  content: "";
  position: absolute;
  top: 31px;
  left: -17px;
  background: #05C3DE;
  width: 74px;
  height: 60px;
  z-index: -1;
}
.alt-page .hero .mail:after {
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  content: "";
  background: url("../images/icon-arrow-wht.svg") no-repeat center 0 transparent;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 26px;
  right: -57px;
}
.alt-page .hero .wrap {
  max-width: 51%;
}
.alt-page .hero div:last-child {
  background-position: center 0;
  height: 695px;
  margin-top: 0;
  max-width: 48%;
}
.alt-page section:first-child {
  background: #4D5BA8;
}
.alt-page section:first-child + section {
  background: #4D5BA8;
}
.alt-page nav .menu li a {
  color: #fff;
  position: relative;
}
.alt-page nav .menu li a:after {
  background: #FFB81C;
}
.alt-page nav .menu li a:hover {
  color: #FFB81C;
}
.alt-page nav .menu li a.active {
  color: #FFB81C;
}
.alt-page .share {
  z-index: 1;
}
.alt-page .share a {
  color: #fff;
}
.alt-page .share a span {
  position: relative;
  z-index: 2;
}
.alt-page .btn.share-btn {
  background-image: url("../images/icon-arrow-wht.svg") !important;
}
.alt-page .btn.share-btn:hover {
  background-image: url("../images/icon-arrow-wht.svg") !important;
}
.alt-page .btn.action-btn:after {
  z-index: -1;
}
.alt-page .bg-dark .bg-bottom {
  background-color: #4D5BA8;
}
.alt-page .offset-bottom {
  margin-bottom: -90px;
}

/*------------------------------------------------------------------------*\
    = Responsive
\*------------------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
  body .header__nav .menu {
    margin-left: inherit;
    margin-right: 60px;
  }
  body .hero__img {
    margin-top: 0;
    max-width: 56%;
    background-size: contain;
    background-position: center 0;
  }
  body .hero {
    display: flex;
  }
  body .hero .w-500 {
    max-width: 57%;
  }
  body .hero .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  body .hero.h-440 {
    display: table;
  }
  body .hero.h-440 .wrap {
    display: table-cell;
    vertical-align: middle;
  }
}
@media screen and (min-width: 980px) {
  body .mobile-menu {
    display: none !important;
  }
}
@media screen and (max-width: 980px) {
  body .site__locations li {
    max-width: 100%;
  }
  body .offset-top-bottom .wrap__full.center {
    display: block;
  }
  body.is-safari .flex-full.w-1000 {
    display: block;
    width: 100%;
  }
  body.is-safari .flex-full.w-1000 div {
    display: block;
    width: 100%;
  }
  body.is-safari .highlight__blurb.flex-full div:last-child {
    padding: 0 30px;
  }
  body .wrap__full.center {
    display: flex;
    align-items: center;
  }
  body h3 {
    font-size: 26px;
  }
  body .btn {
    font-size: 17px;
  }
  body .btn-large {
    min-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  body .flex-full {
    flex-flow: column-reverse;
  }
  body .highlight__blurb-title {
    font-size: 32px;
  }
  body .highlight__blurb img {
    min-width: 100%;
    max-width: 100%;
  }
  body .highlight__blurb.pad {
    padding: 40px 25px;
  }
  body h1 {
    font-size: 35px;
  }
  body .header__nav .menu {
    margin-right: 0;
    display: none;
  }
  body .btn-email {
    display: none;
  }
  body .header__nav {
    margin-top: 14px;
  }
  body #nav-icon {
    display: inline-block;
  }
  body .logo {
    left: 20px;
    position: relative;
  }
}
@media screen and (max-width: 700px) {
  body .hero .sm-cap p {
    font-size: 14px;
  }
  body ul.criteria {
    display: block;
  }
  body ul.criteria > li {
    margin-bottom: 30px;
    padding-right: 0;
  }
  body ul.criteria li {
    max-width: 100%;
  }
  body .btn.btn-blue.btn-large {
    font-size: 18px;
  }
  body .hero.flex {
    padding-top: 30px;
  }
  body .trial__list li .list__items.flex-me li {
    width: 100%;
  }
  body .button__wrap.button__toggle {
    flex-flow: column;
  }
  body .button__wrap.button__toggle a.btn {
    margin-bottom: 10px;
    font-size: 20px;
  }
  body .h-640 {
    padding-bottom: 50px;
  }
  body .hero.h-640 {
    min-height: 400px;
  }
  body .blurb__wrap-title {
    font-size: 26px;
  }
  body h1 {
    font-size: 29px;
  }
  body .hero p {
    font-size: 18px;
  }
  body .hero {
    padding-top: 30px;
  }
  body div .btn-email-mobile {
    display: inline-block;
    margin-left: 30px;
    display: none;
  }
  body .credits {
    padding-left: 30px;
    flex-flow: column-reverse;
  }
  body .credits div:last-child .img-wrap {
    display: inherit;
  }
  body .credits .inline-block {
    margin-top: 20px;
  }
  body .credits .img-wrap {
    margin-bottom: 40px;
  }
  body .credits .inline-block li {
    display: block;
    margin-bottom: 7px;
    border-right: none !important;
  }
  body .credits .inline-block li a {
    margin: 0;
    font-weight: 700;
  }
  body .hero .button__wrap .btn {
    min-width: 113px;
    padding: 14px 15px;
  }
  body .hero.h-440 {
    min-height: 440px;
  }
  body .hero .hero__img {
    bottom: 0;
    top: 75%;
    height: 500px;
    max-width: 100%;
    background-size: contain;
    background-position: right -178px top 0;
  }
}
.show-mobile {
  display: none;
}

@media screen and (max-width: 599px) {
  body .show-mobile {
    display: block;
  }
  body .show-mobile + img {
    display: none;
  }
  body .hero .hero__img {
    top: 70%;
  }
  body .hero .hero__img {
    background-position: right -35px top 0;
  }
  body .hero .button__wrap {
    margin-top: 0;
  }
  body .blurb__wrap img {
    width: 100%;
  }
  body .highlight__blurb-title {
    font-size: 26px;
  }
  body .logo {
    left: 0;
  }
  body #nav-icon {
    right: 5px;
  }
  body .hero .w-500 {
    max-width: 100%;
  }
  body h1 {
    font-size: 21px;
  }
  body .hero {
    min-height: inherit;
  }
  body .hero p {
    font-size: 16px;
  }
  body .blurb__hero .btn,
  body .btn {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 500px) {
  body .location__title {
    font-size: 16px;
  }
  body .site__locations li p {
    font-size: 14px;
  }
  body .hero {
    padding-bottom: 40px;
  }
  body #nav-icon {
    transform: scale(0.7);
  }
  body .logo {
    max-width: 140px;
    height: 27px;
  }
  body .hero .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  body div .btn-email-mobile {
    margin-top: 140px;
  }
  body .row {
    padding-right: 10px;
    padding-left: 10px;
  }
  body div .btn-email-mobile {
    margin-left: 0;
  }
  body .credits {
    padding-left: 0;
  }
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
   http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* Welcome to Compass. Use this file to define print styles.
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
/*------------------------------------*\
    = GLOBAL
\*------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #343741;
  overflow-x: hidden;
  position: relative;
  font-size: 14px;
  border-top: 10px solid #003865;
  background: #F5F5F5;
}

a {
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}

.link {
  color: #FF671F;
  text-decoration: underline;
}

p {
  margin-bottom: 15px;
  font-size: 18px;
}

ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}

sup {
  font-size: 12px;
}

.overflow {
  overflow: visible;
}

.inline-block {
  display: inline-block;
}
.inline-block li {
  display: inline-block;
}

h1 {
  color: #003865;
  font-size: 51px;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
}

h3 {
  font-size: 41px;
  color: #003865;
  line-height: 1.2;
}

.center {
  text-align: center;
}

.bg-gry {
  background: #F5F5F5;
}
.bg-gry .ref {
  margin-bottom: 60px;
}
.bg-gry.pad-bottom {
  padding-bottom: 50px;
}

.bg-wht {
  background: #fff;
}

.pad-60 {
  padding-top: 60px;
}

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

/*------------------------------------------------------------------------*\
    = Mixins
\*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*\
    = Widths
\*------------------------------------------------------------------------*/
.w-500 {
  max-width: 510px;
}

.w-800 {
  max-width: 812px;
  margin: 0 auto;
}

.w-830 {
  max-width: 830px;
  margin: 0 auto;
}

.w-660 {
  max-width: 663px;
  margin: 0 auto;
}

.w-1000 {
  max-width: 1033px;
  margin: 0 auto;
}

/*------------------------------------------------------------------------*\
    = Highlight Blurb
\*------------------------------------------------------------------------*/
.highlight__blurb {
  margin-top: 30px;
  color: #fff;
  border-radius: 6px;
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
}
.highlight__blurb img {
  border-radius: 6px;
  max-width: 475px;
  min-width: 475px;
  margin-right: 75px;
}
.highlight__blurb.pad {
  padding: 70px 65px 20px;
}
.highlight__blurb p {
  font-size: 16px;
  line-height: 1.5;
}
.highlight__blurb .highlight__blurb-title {
  margin-top: -12px;
}

.highlight__blurb-title {
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 15px;
}

ul.list__items {
  margin-top: 15px;
}
ul.list__items li {
  margin-bottom: 15px;
  position: relative;
  font-size: 17px;
  padding-left: 22px;
  line-height: 1.5;
}
ul.list__items li:before {
  content: "";
  background: #FF671F;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 8px;
  left: 0;
}

.blurb__center.offset-top-bottom {
  margin-top: 85px;
  margin-bottom: 90px;
}
.blurb__center h3 {
  padding-bottom: 50px;
}
.blurb__center .has-dash {
  margin-bottom: 30px;
}

.border {
  background: url("../images/icon-border.svg") no-repeat center 0 transparent;
  width: 100%;
  height: 17px;
  background-size: cover;
}

/*------------------------------------------------------------------------*\
    = Trial List
\*------------------------------------------------------------------------*/
.trial__list {
  margin-bottom: 140px;
}
.trial__list li {
  position: relative;
  background: #F4F4F4;
  border-radius: 6px;
}
.trial__list li.warning {
  background: url("../images/icon-warning.svg") no-repeat 30px 25px #003865;
  background-size: 30px;
  padding: 27px 0 13px 80px;
  color: #fff;
}
.trial__list li.warning:before {
  display: none;
}
.trial__list li em {
  font-weight: 700;
  text-decoration: underline;
}
.trial__list li .large-font {
  color: #FF671F;
  font-size: 39px;
  font-weight: 700;
  text-transform: uppercase;
}
.trial__list li .offset-left {
  padding-left: 20px;
}
.trial__list li .list__items.flex-me li {
  width: 34%;
  display: inline-block;
}
.trial__list li .list__items.no-top {
  margin-top: 8px;
}
.trial__list li .list__items li {
  margin-bottom: 7px;
  background: none;
}
.trial__list li .list__items li:last-child {
  margin-bottom: 10px;
}
.trial__list li .list__items li:before {
  background: #05C3DE;
  width: 6px;
  height: 6px;
}
.trial__list > li {
  padding-left: 40px;
  padding-top: 15px;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.trial__list > li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  background: #EFEFEF;
  height: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/*------------------------------------------------------------------------*\
    = Homepage
\*------------------------------------------------------------------------*/
.hero {
  position: relative;
  background-size: cover;
  border-radius: 6px;
  min-height: 570px;
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 40px;
  padding-bottom: 24px;
}
.hero.h-622 {
  min-height: 622px;
}
.hero.h-640 {
  min-height: 640px;
}
.hero.h-330 {
  min-height: 334px;
  padding-top: 90px;
}
.hero .wrap {
  width: 100%;
  padding: 0 73px;
  position: relative;
  z-index: 10;
}
.hero .wrap__full {
  max-width: 100%;
}
.hero .pre {
  text-transform: uppercase;
  color: #05C3DE;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 50px;
  margin-bottom: 20px;
  display: block;
}
.hero div {
  display: inline-block;
  vertical-align: top;
}
.hero p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.hero div.inner {
  margin: 0 auto;
  display: inherit;
  float: none;
}
.hero .button__wrap {
  display: flex;
  margin-bottom: 30px;
}
.hero .button__wrap a {
  margin-right: 12px;
}
.hero .button__wrap .btn {
  padding: 23px 15px;
  border-radius: 6px;
}

.sm-cap p {
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero.flex {
  display: flex;
  align-items: center;
  flex-direction: initial;
  display: table;
}
.hero.flex .wrap {
  display: table-cell;
  vertical-align: middle;
}

.center {
  text-align: center;
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 710px;
  height: 710px;
  float: right;
  background-repeat: no-repeat;
  background-position: center -30px;
  margin-top: -58px;
  margin-right: -78px;
}

.has-dash {
  position: relative;
}
.has-dash.center:after {
  left: 50%;
  margin-left: -29px;
}
.has-dash:after {
  content: "";
  background: #003865;
  width: 58px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  bottom: 15px;
}

.btn-large {
  min-width: 342px;
}

.blurb__hero {
  margin-top: 10px;
}
.blurb__hero .btn {
  display: table;
  margin: 30px auto 0;
  padding: 23px 15px;
}

.toggle {
  position: relative;
  color: #FF671F;
  font-size: 46px;
  position: absolute;
  top: 10px;
  right: 22px;
  cursor: pointer;
  line-height: 0;
  height: 20px;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.toggle:after {
  content: "-";
  position: absolute;
  top: 0;
  right: 0;
}
.toggle.on:after {
  content: "+";
}
.toggle:hover {
  color: #E8602C;
}

.trial__list-wrap .is-visible {
  display: block;
}
.trial__list-wrap .is-visible + .trial__list {
  display: none;
}

.toggle-container {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
}
.toggle-container h4 {
  font-size: 3vw;
  color: #4D5BA8;
  line-height: 0.9;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.toggle-container li {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.toggle-container li div {
  background-repeat: no-repeat;
  background-position: right 0;
  width: 49%;
  display: inline-block;
  vertical-align: top;
  background-size: cover;
}
.toggle-container li .has-img {
  height: 386px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
  margin-top: 7px;
  max-width: 435px;
}
.toggle-container li .has-graphic {
  position: relative;
}
.toggle-container li .has-graphic:after {
  content: "";
  position: absolute;
  top: 60px;
  left: -24px;
  width: 394px;
  height: 972px;
  background: url("https://www.pacifica-trial.com/images/overexposure_happening.svg") no-repeat 0 0 transparent;
  z-index: -1;
}
.toggle-container .wrap {
  max-width: 442px;
  width: 100%;
  padding-left: 50px;
}
.toggle-container .inner {
  width: 100%;
}

.has-shadow {
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.blurb.w-485 {
  padding-left: 50px;
  padding-top: 45px;
}

.spacer {
  height: 300px;
  display: block;
  width: 100%;
  float: left;
}

.ref {
  margin-top: 25px;
  position: relative;
}
.ref .title {
  font-size: 24px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 60px;
  margin-bottom: 25px;
  position: relative;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.ref .title.bg-gry {
  padding: 33px 10px 33px 30px;
}
.ref .title.bg-gry + .toggle {
  top: 45px;
}
.ref .title.bg-gry:hover {
  background: #EBEBEB;
}
.ref ol {
  max-width: 854px;
  margin: 0 auto;
  padding-bottom: 80px;
  padding-right: 54px;
}
.ref ol li {
  margin-bottom: 9px;
  font-size: 14px;
}
.ref a {
  color: #343741;
}
.ref a:hover {
  color: #FF671F;
}

/*------------------------------------------------------------------------*\
    = Chart
\*------------------------------------------------------------------------*/
.blurb__chart {
  text-align: center;
  margin-top: 70px;
}

.blurb__chart-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
}

.blurb__chart-body {
  max-width: 890px;
  margin: 0 auto;
}
.blurb__chart-body img {
  width: 100%;
}

.blurb__chart-footer {
  text-align: left;
  max-width: 840px;
  margin: 20px auto 0;
}
.blurb__chart-footer .wrap {
  max-width: 400px;
}
.blurb__chart-footer p {
  font-size: 12px;
  margin-bottom: 0;
}

.bg-offset {
  background: rgb(244, 244, 244);
  background: linear-gradient(0deg, rgb(244, 244, 244) 57%, rgb(255, 255, 255) 57%);
}

.bg-offset-2 {
  background: rgb(244, 244, 244);
  background: linear-gradient(0deg, rgb(244, 244, 244) 30%, rgb(255, 255, 255) 30%);
}

.pab-b {
  padding-bottom: 100px;
}

/*------------------------------------------------------------------------*\
    = Mobile Menu
\*------------------------------------------------------------------------*/
.mobile-menu {
  display: none;
  width: 100%;
  background: #003865;
}
.mobile-menu.active {
  display: block !important;
}
.mobile-menu ul {
  display: block;
  width: 100%;
}
.mobile-menu ul li {
  display: block;
}
.mobile-menu ul li a {
  padding: 10px 20px;
  color: #fff;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu ul li a:hover {
  background: #05C3DE;
}

div .btn-email-mobile {
  float: left;
  display: none;
  margin-top: 40px;
}

/*------------------------------------------------------------------------*\
    = Button toggle
\*------------------------------------------------------------------------*/
.button__wrap.button__toggle {
  position: sticky;
  top: 0;
  z-index: 10;
  justify-content: center;
  margin-top: -40px;
}
.button__wrap.button__toggle .btn {
  min-width: 300px;
  margin: 0 6px;
  font-size: 31px;
}
.button__wrap.button__toggle .btn.btn-blue.slick-disabled:hover {
  background-color: #05C3DE;
}
.button__wrap.button__toggle .btn:first-child:after {
  background: #FF671F;
}
.button__wrap.button__toggle .btn:last-child:after {
  background: #05C3DE;
}
.slick-disabled:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  transform: rotate(45deg);
  left: 50%;
  margin-left: -10px;
  bottom: -6px;
}

.toggle-title {
  font-size: 41px;
  color: #FF671F;
  font-weight: 700;
  text-align: center;
  max-width: 395px;
  margin: 0 auto;
  line-height: 1.2;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
.toggle-title.has-dash:after {
  left: 50%;
  margin-left: -29px;
  margin-bottom: -30px;
}

/*------------------------------------------------------------------------*\
    = Main
\*------------------------------------------------------------------------*/
.bg-bottom {
  background: url("https://www.pacifica-trial.com/images/bottom-gry.svg") no-repeat center bottom transparent;
  width: 100%;
  height: 146px;
  background-size: cover;
  margin-bottom: -2px;
}

.bg-bottom-2 {
  background: url("https://www.pacifica-trial.com/images/bottom-gry-2.svg") no-repeat center -2px #fff;
  width: 100%;
  height: 124px;
  background-size: cover;
  margin-top: -150px;
}

.bg-overexposure {
  width: 100%;
  max-width: 573px;
  height: 508px;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-overexposure.has-graphic {
  position: relative;
}
.bg-overexposure.has-graphic:after {
  content: "";
  position: absolute;
  top: 170px;
  right: -41px;
  width: 565px;
  height: 418px;
  background: url("https://www.pacifica-trial.com/images/single-pattern2.svg") no-repeat 0 0 transparent;
  z-index: -1;
}

.flex-full {
  display: flex;
  width: 100%;
}

.blurb__wrap {
  align-items: center;
}

.blurb__wrap-title {
  font-size: 41px;
  color: #FF671F;
  margin-bottom: 10px;
}

.blurb__wrap-body p {
  font-size: 17px;
  line-height: 1.5;
}

.offset-top-120 {
  margin-top: 120px;
}

.offset-top-90 {
  margin-top: 90px;
}

.offset-top-80 {
  margin-top: 80px;
}

.offset-top-100 {
  margin-top: 100px;
}

.offset-top-50 {
  margin-top: 50px;
  margin-bottom: 40px;
}

.blurb p {
  font-size: 18px;
}

.bg-dark {
  background: #343741;
}
.bg-dark h2 {
  font-size: 43px;
  color: #fff;
  margin-bottom: 10px;
}
.bg-dark .blurb {
  max-width: 460px;
}
.bg-dark .blurb p {
  color: #fff;
}
.bg-dark p {
  color: #fff;
}

.bg-blue {
  background: #05C3DE;
  text-align: center;
  margin-top: 100px;
}
.bg-blue h3 {
  color: #4D5BA8;
  font-size: 35px;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 20px;
}
.bg-blue ul.callout-btns.download-btn li {
  margin: 0 auto 40px;
}
.bg-blue p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
}

.bg-default {
  background: #fff;
}
.bg-default p {
  color: #343741;
}

.bg-overexposed {
  width: 100%;
  height: 820px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -151px;
  margin-left: -100px;
}

.bg-asthma {
  width: 100%;
  height: 680px;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(80px);
  margin-bottom: 50px;
}

/*------------------------------------------------------------------------*\
    = Blurb Img
\*------------------------------------------------------------------------*/
.blurb-img {
  width: 100%;
  max-width: 50%;
  height: 598px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  top: 65px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------------*\
    = Buttons
\*------------------------------------------------------------------------*/
.btn {
  font-size: 24px;
  display: inline-block;
  position: relative;
  background: #ccc;
  border-radius: 6px;
  padding: 15px 15px;
  text-align: center;
  color: #fff;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.btn.btn-org {
  background: #FF671F;
}
.btn.btn-blue {
  background: #05C3DE;
  font-size: 34px;
  border-radius: 15px;
}
.btn:hover {
  background-color: #FF671F;
}

.mb-70 {
  margin-bottom: 70px;
}

.btn-email {
  font-size: 14px;
  background: #05C3DE;
  float: right;
  min-width: 182px;
}

.share {
  position: absolute;
  top: 56px;
  right: -5px;
}

.sub-title {
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
}
.sub-title.offset {
  width: 100%;
  margin-top: 90px;
}

.button__wrap {
  display: flex;
}
.button__wrap .btn {
  min-width: 144px;
}

.download-btn a.btn-org {
  background-image: url("../images/icon-arrow-down-wht.svg");
  background-size: 14px;
}
.download-btn a.txt-center {
  text-align: center;
}

.download-btn.download-btn-sm {
  margin-left: 0;
}
.download-btn.download-btn-sm li {
  display: inline-block;
}
.download-btn.download-btn-sm a.btn-org {
  background-size: 14px;
  background-image: url("../images/icon-arrow-down-wht.svg");
  padding: 0 40px;
  min-height: 50px;
  color: #fff;
  text-align: left;
  font-size: 24px;
  line-height: 45px;
}
.download-btn.download-btn-sm a.txt-center {
  text-align: center;
}

.callout-btns {
  display: flex;
  max-width: 860px;
  margin: 50px auto 40px;
}
.callout-btns li {
  margin: 0 7px;
  width: 50%;
}
.callout-btns li:first-child {
  margin-left: 0;
}
.callout-btns li:last-child {
  margin-right: 0;
}
.callout-btns li:last-child a {
  padding-top: 30px;
  font-size: 25px;
}
.callout-btns li a {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.w-780 {
  max-width: 780px;
  margin: 0 auto;
}
.w-780 p {
  font-size: 20px;
  margin-bottom: 20px;
}

/*------------------------------------------------------------------------*\
    = Cards
\*------------------------------------------------------------------------*/
.cards.stack-3 {
  display: flex;
  justify-content: space-between;
}
.cards.stack-3 li {
  margin-bottom: 23px;
}
.cards .icon {
  background-repeat: no-repeat;
  background-position: center 0;
  margin-bottom: 30px;
}
.cards li {
  min-height: 358px;
  background: #05C3DE;
  color: #fff;
  font-size: 20px;
  width: 100%;
  max-width: 325px;
  vertical-align: top;
  padding: 59px 33px 33px;
  text-align: center;
  margin-right: 23px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}
.cards li:last-child {
  margin-right: 0;
}
.cards li .icon {
  width: 100%;
  height: 124px;
}

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

/*------------------------------------------------------------------------*\
    = Block List
\*------------------------------------------------------------------------*/
.block-list {
  background: #F5F5F5;
  float: right;
  margin-right: 35px;
  padding: 30px 30px 17px;
}
.block-list .title {
  font-family: "Barlow Condensed", sans-serif;
  color: #4D5BA8;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.block-list ul li {
  display: block;
  text-align: center;
  font-size: 24px;
  border-bottom: 1px solid gold;
  padding: 8px 0 14px;
}
.block-list ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.block-list.lrg {
  width: 100%;
  max-width: 53%;
  position: relative;
  z-index: 2;
  margin-top: 140px;
  margin-right: 0;
  margin-bottom: 80px;
  padding: 60px 60px 40px;
}
.block-list.lrg h4 {
  font-size: 52px;
  color: #4D5BA8;
  line-height: 0.9;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.block-list.lrg ul {
  margin-top: 30px;
}
.block-list.lrg ul li {
  text-align: left;
  font-size: 20px;
  padding: 14px 0 18px;
}

.bg-pattern {
  position: relative;
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 620px;
  background-position: center 48%;
}

ul.list-3 {
  margin-bottom: 80px;
}
ul.list-3 li {
  width: 33%;
  vertical-align: top;
  border-right: 2px solid #FFB81C;
  display: table-cell;
  padding: 20px 25px;
  font-size: 18px;
}
ul.list-3 li:first-child {
  padding-left: 0;
}
ul.list-3 li:last-child {
  border-right: 0;
  padding-right: 0;
}

ul.risks-list {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  display: flex;
}
ul.risks-list:after {
  text-transform: uppercase;
  color: #fff;
  background: #4D5BA8;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Barlow Condensed", sans-serif;
  padding: 0 4px;
}
ul.risks-list.blue:after {
  content: "SHORT-TERM";
}
ul.risks-list.blue li {
  background: #05C3DE;
}
ul.risks-list.blue li:first-child .icon {
  transform: translateY(9px);
}
ul.risks-list.purp:after {
  content: "LONG-TERM";
  background: #05C3DE;
}
ul.risks-list.purp li {
  background: #4D5BA8;
}
ul.risks-list.purp li:first-child .icon {
  transform: translateY(9px);
}
ul.risks-list.purp li .wrap {
  padding-left: 20px;
  padding-right: 20px;
}
ul.risks-list li {
  padding: 18px 0;
  width: 100%;
  max-width: 169px;
  vertical-align: top;
  text-align: center;
  color: #fff;
}
ul.risks-list li:last-child .wrap {
  border-right: none;
}
ul.risks-list li .wrap {
  min-height: 170px;
  border-right: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.1;
}
ul.risks-list li .wrap span {
  font-size: 12px;
}
ul.risks-list li .icon {
  height: 74px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center 0;
  margin-bottom: 20px;
}

/*------------------------------------------------------------------------*\
    = Logos
\*------------------------------------------------------------------------*/
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f5f5f5;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-bottom: 10px;
  justify-content: center;
}
.partners-logos li {
  border-right: 1px solid #F5F5F5;
  padding: 55px 34px 30px;
}
.partners-logos li:last-child {
  border-right: none;
}
.partners-logos li div {
  width: 148px;
  height: 85px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}

/*------------------------------------------------------------------------*\
    = Mobile Menu
\*------------------------------------------------------------------------*/
#nav-icon {
  max-width: 32px;
  position: absolute;
  right: 20px;
  display: none;
}
#nav-icon span {
  width: 36px;
  height: 7px;
  background-color: #003865;
  display: block;
  margin-bottom: 3px;
  clear: both;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
#nav-icon:hover {
  cursor: pointer;
}
#nav-icon:hover span {
  background-color: #05C3DE;
}

/*------------------------------------------------------------------------*\
    = Footer
\*------------------------------------------------------------------------*/
.bg-footer {
  background: #4D5BA8;
  padding-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 15px;
}
.bg-footer li {
  margin-right: 24px;
}
.bg-footer a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.bg-footer a:hover {
  text-decoration: underline;
}
.bg-footer a.active {
  color: #FFB81C;
  text-decoration: underline;
}

.overflow {
  overflow: visible;
}

.credits {
  margin-top: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.credits.offset-top {
  margin-top: -50px;
}
.credits ul li:first-child {
  border-right: 1px solid #A5A5A5;
}
.credits ul li:first-child a {
  margin-left: 0;
}
.credits ul li:nth-child(2) {
  border-right: 1px solid #A5A5A5;
}
.credits ul li:nth-child(3) {
  border-right: 1px solid #A5A5A5;
}
.credits p {
  font-size: 12px;
  display: block;
  margin-top: 15px;
}
.credits a {
  color: #003865;
  margin: 0 10px;
}
.credits a:hover {
  text-decoration: underline;
}
.credits ul.disclaimer li {
  font-size: 12px;
  list-style: disc;
  margin-left: 15px;
}

.social-wrap {
  float: right;
}
.social-wrap li {
  margin-right: 20px;
}
.social-wrap li:last-child {
  margin-right: 0;
}
.social-wrap li a {
  display: inline-block;
  height: 22px;
}
.social-wrap li a:hover {
  opacity: 0.5;
}
.social-wrap li a.icon-fb {
  background: url("https://www.pacifica-trial.com/images/icon-social.svg") no-repeat 0 0 transparent;
  width: 11px;
  background-size: 154px;
}
.social-wrap li a.icon-tt {
  background: url("https://www.pacifica-trial.com/images/icon-social.svg") no-repeat -32px 0 transparent;
  width: 22px;
  background-size: 154px;
}
.social-wrap li a.icon-mail {
  background: url("https://www.pacifica-trial.com/images/icon-social.svg") no-repeat -73px 0 transparent;
  width: 27px;
  background-size: 154px;
}
.social-wrap li a.icon-code {
  background: url("https://www.pacifica-trial.com/images/icon-social.svg") no-repeat -121px 0 transparent;
  width: 34px;
  background-size: 154px;
}

/*------------------------------------------------------------------------*\
    = Video
\*------------------------------------------------------------------------*/
#video-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 55, 65, 0.5);
  display: none;
}
#video-section .close-vid {
  text-align: right;
  background: #4DC5D8;
  display: inline-block;
  cursor: pointer;
  margin-top: 20%;
  align-items: center;
  padding: 5px 5px 5px 9px;
}
#video-section .close-vid:hover span {
  color: #fff;
}
#video-section .close-vid span {
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  color: #4D5BA8;
  padding: 0px 15px;
  font-size: 35px;
  transform: rotate(45deg);
  display: inline-block;
}
#video-section iframe {
  border: 11px solid #fff;
  background: #fff;
}

.modal-exit {
  display: none;
  background: #ffffff;
  width: 100%;
  padding: 0 20px;
  max-width: 1000px;
  padding: 60px 60px 50px;
}
.modal-exit h4 {
  font-size: 30px;
  font-family: "Barlow Condensed", sans-serif;
  color: #4D5BA8;
}
.modal-exit input, .modal-exit textarea {
  background: #4D5BA8;
  border: none;
  outline: none;
  margin: 15px 0;
  padding: 20px;
  width: 100%;
  color: #fff;
}
.modal-exit .btn.action-btn {
  margin-top: 30px;
  width: 130px;
}

@media screen and (max-width: 960px) {
  body .modal-exit {
    padding: 30px 30px 40px;
  }
}
/*------------------------------------------------------------------------*\
    = Progress Bar
\*------------------------------------------------------------------------*/
#progressbar {
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
  background-color: red;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -webkit-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -moz-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -ms-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  -o-transition-: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  display: none;
}

/*------------------------------------------------------------------------*\
    = Mask
\*------------------------------------------------------------------------*/
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
}
#mask #bar {
  background: #1fbfd9;
  width: 0;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-page.alt-page #nav-icon span {
  background-color: #fff;
}

.org {
  color: #FF671F;
}
.org h3 {
  color: #FF671F;
}

.site__locations {
  margin: auto;
  max-width: 918px;
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: baseline;
  flex-flow: wrap;
}
.site__locations li {
  flex: auto;
  background: #fff;
  padding: 20px 35px 20px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 17px;
  max-width: 47%;
}
.site__locations li p {
  margin-bottom: 0;
}

.locations__asterisk {
  margin: auto;
  max-width: 918px;
}
.locations__asterisk > p {
  max-width: 895px;
  font-size: 12px;
}

ul.criteria {
  display: flex;
  justify-content: space-between;
}
ul.criteria .title {
  color: #005EB8;
  font-size: 22px;
}
ul.criteria ul.list__items {
  margin-top: 10px;
}
ul.criteria ul.list__items li {
  margin-bottom: 10px;
}
ul.criteria > li {
  padding-right: 20px;
}
ul.criteria li {
  text-align: left;
  font-size: 15px;
  max-width: 400px;
}
ul.criteria p {
  margin-bottom: 10px;
}

.location__heading {
  font-size: 25px;
  color: #FF671F;
  font-weight: 700;
}

.location__title {
  font-weight: 700;
  font-size: 23px;
  line-height: normal;
  margin-bottom: 10px;
}

.location__wrap {
  line-height: 1.7;
}

.row .row {
  padding: 0;
}

.w-420 {
  width: 100%;
  max-width: 420px;
  display: block;
  clear: both;
}

.w-600 {
  width: 100%;
  max-width: 600px;
  display: block;
  clear: both;
}

.w-570 {
  width: 100%;
  max-width: 570px;
  margin: auto;
  display: block;
  clear: both;
}

.fz-24 {
  font-size: 24px;
}
.fz-24 a {
  color: #FF671F;
  text-decoration: underline;
}
.fz-24 a:hover {
  text-decoration: none;
}

small {
  font-size: 12px;
}

/*------------------------------ COOKIE BANNER ------------------------------*/
.banner-alert-section {
  position: fixed;
  z-index: 999998;
  bottom: 20px;
  right: 20px;
  width: 100%;
  background: #000001;
  max-width: 400px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  display: none;
}
@media screen and (max-width: 767px) {
  .banner-alert-section {
    margin: 0 auto;
    max-width: 300px;
    right: 0;
    left: 0;
  }
}
.banner-alert-section .container {
  width: 100%;
  max-width: 100%;
}
.banner-alert-section .banner-content-row {
  padding: 40px 34px;
}
@media screen and (max-width: 980px) {
  .banner-alert-section .banner-content-row {
    padding: 20px 30px;
  }
}
.banner-alert-section .banner-content-row .banner-content-col {
  float: left;
  min-height: 35px;
  display: table;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .banner-alert-section .banner-content-row .banner-content-col {
    width: 100% !important;
    min-height: 40px;
  }
}
.banner-alert-section .banner-content-row .banner-content-col.desc-col {
  width: 70%;
}
.banner-alert-section .banner-content-row .banner-content-col.desc-col p {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.14px;
}
.banner-alert-section .banner-content-row .banner-content-col.desc-col a {
  color: #fff !important;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .banner-alert-section .banner-content-row .banner-content-col.desc-col {
    text-align: center;
  }
}
.banner-alert-section .banner-content-row .banner-content-col > * {
  display: table-cell !important;
  vertical-align: middle;
}
.banner-alert-section .banner-content-row .banner-content-col.button-col {
  width: 30%;
}
.banner-alert-section .banner-content-row .banner-content-col.button-col .button-wrapper {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .banner-alert-section .banner-content-row .banner-content-col.button-col .button-wrapper {
    text-align: center;
  }
}
.banner-alert-section .banner-content-row .banner-content-col.button-col a.et_pb_button {
  display: inline-block;
  font-family: navigo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.92px;
  background: 0 0 !important;
  border: none !important;
  border-bottom: 2px solid #fff !important;
  padding: 0 0 3px !important;
  min-width: auto;
  border-radius: 0;
  text-transform: uppercase;
  color: #FFFFFF;
}
.banner-alert-section .banner-content-row .banner-content-col.button-col a.et_pb_button:hover {
  color: #FF671F;
  border-bottom-color: #FF671F !important;
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-close-btn-container .banner-close-button {
  background: transparent;
  position: relative;
  margin-bottom: 0px;
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-close-btn-container .banner-close-button:before, #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-close-btn-container .banner-close-button:after {
  content: "";
  width: 2px;
  height: 15px;
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-close-btn-container .banner-close-button:after {
  transform: rotate(-45deg);
}

#onetrust-consent-sdk #ot-sdk-btn-floating.ot-floating-button {
  left: unset !important;
  right: 20px;
  bottom: 83px;
  animation: CookieBtnFloat 800ms ease 0ms 1 forwards;
  width: 45px;
  height: 45px;
}

#onetrust-consent-sdk #ot-sdk-btn-floating.ot-floating-button:before {
  transform: translate(-3.26em, -50%) scale(1);
  border-right: 0;
  border-left: 5px solid #333;
}

#onetrust-consent-sdk #ot-sdk-btn-floating.ot-floating-button:after {
  transform: translate(-13.5em, -50%) scale(1);
}

#onetrust-consent-sdk #ot-sdk-btn-floating .ot-floating-button__front {
  background-image: url(https://www.pacifica-trial.com/images/CTI_Cookie_Icon_003865.svg);
  background-color: #000;
}

#onetrust-consent-sdk #ot-sdk-btn-floating .ot-floating-button__back {
  background-color: #000;
}

#onetrust-consent-sdk #ot-sdk-btn-floating .ot-floating-button__back svg {
  margin-top: 2px;
}

@keyframes CookieBtnFloat {
  0% {
    opacity: 0;
    right: -75px;
  }
  100% {
    opacity: 1;
    right: 20px;
  }
}
#onetrust-pc-sdk .ot-cat-grp {
  padding-bottom: 20px;
}

#onetrust-pc-sdk .ot-cat-grp h4.ot-cat-header {
  top: 2px !important;
  position: relative;
}

#onetrust-pc-sdk .ot-pc-logo {
  justify-content: flex-start !important;
}

#onetrust-pc-sdk .ot-pc-footer-logo img {
  width: 96px !important;
  height: 10px !important;
}

@media (min-width: 981px) {
  #onetrust-consent-sdk #onetrust-banner-sdk {
    right: 80px;
  }
}
.footnote li {
  font-size: 12px !important;
  margin-left: 10px;
}
.footnote li:first-child {
  margin-left: 0;
}