/*
                                                ,,            ,,                          ,,
 .M"""bgd mm                                    db          `7MM        mm         mm   `7MM                                    OO OO OO
,MI    "Y MM                                                  MM        MM         MM     MM                                    88 88 88
`MMb.   mmMMmm ,pW"Wq.`7MMpdMAo.     `7Mb,od8 `7MM  .P"Ybmmm  MMpMMMb.mmMMmm     mmMMmm   MMpMMMb.  .gP"Ya `7Mb,od8 .gP"Ya      || || ||
  `YMMNq. MM  6W'   `Wb MM   `Wb       MM' "'   MM :MI  I8    MM    MM  MM         MM     MM    MM ,M'   Yb  MM' "',M'   Yb     || || ||
.     `MM MM  8M     M8 MM    M8       MM       MM  WmmmP"    MM    MM  MM         MM     MM    MM 8M""""""  MM    8M""""""     `' `' `'
Mb     dM MM  YA.   ,A9 MM   ,AP       MM       MM 8M         MM    MM  MM         MM     MM    MM YM.    ,  MM    YM.    ,     ,, ,, ,,
P"Ybmmd"  `Mbmo`Ybmd9'  MMbmmd'      .JMML.   .JMML.YMMMMMb .JMML  JMML.`Mbmo      `Mbmo.JMML  JMML.`Mbmmd'.JMML.   `Mbmmd'     db db db
                        MM                         6'     dP
                      .JMML.                       Ybmmmd'

Pattern Lab doesn't have any CSS requirements, which means you can write your styles however you want. Hooray!
You can use Sass, Less, vanilla CSS, or some other crazy thing I haven't heard of yet.
So please don't use these styles. They're just here to put together the demo, and nothing more.
They're intentionally gray, boring, and crappy because you're supposed to do this stuff yourself.

Atomic design is philosophically complimentary with these CSS approaches:

* SMACSS by Jonathan Snook http://smacss.com/
* OOCSS by Nicole Sullivan http://oocss.org/
* BEM CSS Methology : http://bem.info/method/
* CSS Guidelines by Harry Roberts : https://github.com/csswizardry/CSS-Guidelines

So feel free to use any of these approaches. Or don't. It's totally up to you.

*/
/*------------------------------------*\
    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * ABSTRACTS..............Declarations of Sass variables and mixins
 * Mixins.................Mixin styles that are included in the site
 * Variables..............Variables for styles that are used in the site
 *
 * BASE...................Base/reset styles for certain elements
 * Animation..............Animation base styles
 * Forms..................Form field base styles
 * Global Classes.........Base styles used across the entirety of the site
 * Headings...............Base styles for headings (h1, h2, etc.)
 * Links..................Base styles for links
 * Lists..................Base styles lists
 * Main...................Base styles for main section
 * Media..................Base styles for various media (videos, iframes, etc.)
 * Reset..................Reset base styles (i.e. Display block on certain elements)
 * Tables.................Base styles for tables
 * Text...................Base styles for text elements
 *
 * COMPONENTS.............Styles for certain components
 * Accordion..............Styles for accordion components
 * Article................Styles for article components
 * Blocks.................Styles for block components
 * Buttons................Styles for button components
 * Carousels..............Styles for carousels
 * Comments...............Styles for comments component
 * Footer.................Styles for the footer component
 * Forms..................Styles for form components
 * Header.................Styles for header component
 * Icons..................Styles for icons
 * Lists..................Styles for types of lists
 * Main...................Styles for main section
 * Messaging..............Styles for alerts/messaging components
 * Nav....................Styles for navigation components
 * Sections...............Styles for section components
 * Tabs...................Styles for tabs
 * Text...................Styles for text components
 * Tooltip................Styles for tooltips

 *
 * LAYOUT.................Styles that affect the site's general layout
 * Layout.................Layout styles
 *
 * UTILITIES..............Styles that require a utility class
 *
 */
/*------------------------------------*\
    $FOUNDATION
\*------------------------------------*/
.row {
  max-width: rem-calc(1200);
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    max-width: none;
    margin-left: 0;
    margin-right: 0; }
    @media screen and (min-width: 40em) {
      .row .row {
        margin-left: 0;
        margin-right: 0; } }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0; }
  @media screen and (min-width: 40em) {
    .column, .columns {
      padding-left: 0;
      padding-right: 0; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }
  .row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

.small-1 {
  width: 8.3333333333%; }

.small-push-1 {
  position: relative;
  left: 8.3333333333%; }

.small-pull-1 {
  position: relative;
  left: -8.3333333333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.6666666667%; }

.small-push-2 {
  position: relative;
  left: 16.6666666667%; }

.small-pull-2 {
  position: relative;
  left: -16.6666666667%; }

.small-offset-1 {
  margin-left: 8.3333333333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.6666666667%; }

.small-4 {
  width: 33.3333333333%; }

.small-push-4 {
  position: relative;
  left: 33.3333333333%; }

.small-pull-4 {
  position: relative;
  left: -33.3333333333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.6666666667%; }

.small-push-5 {
  position: relative;
  left: 41.6666666667%; }

.small-pull-5 {
  position: relative;
  left: -41.6666666667%; }

.small-offset-4 {
  margin-left: 33.3333333333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.6666666667%; }

.small-7 {
  width: 58.3333333333%; }

.small-push-7 {
  position: relative;
  left: 58.3333333333%; }

.small-pull-7 {
  position: relative;
  left: -58.3333333333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.6666666667%; }

.small-push-8 {
  position: relative;
  left: 66.6666666667%; }

.small-pull-8 {
  position: relative;
  left: -66.6666666667%; }

.small-offset-7 {
  margin-left: 58.3333333333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.6666666667%; }

.small-10 {
  width: 83.3333333333%; }

.small-push-10 {
  position: relative;
  left: 83.3333333333%; }

.small-pull-10 {
  position: relative;
  left: -83.3333333333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.6666666667%; }

.small-push-11 {
  position: relative;
  left: 91.6666666667%; }

.small-pull-11 {
  position: relative;
  left: -91.6666666667%; }

.small-offset-10 {
  margin-left: 83.3333333333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.6666666667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.3333333333%;
  float: left; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.6666666667%;
  float: left; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.2857142857%;
  float: left; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-collapse .row,
.expanded.row .small-collapse.row {
  margin-left: 0;
  margin-right: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-centered {
  margin-left: auto;
  margin-right: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%; }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.6666666667%; }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .medium-offset-1 {
    margin-left: 8.3333333333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.6666666667%; }
  .medium-4 {
    width: 33.3333333333%; }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.6666666667%; }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .medium-offset-4 {
    margin-left: 33.3333333333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.6666666667%; }
  .medium-7 {
    width: 58.3333333333%; }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.6666666667%; }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .medium-offset-7 {
    margin-left: 58.3333333333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.6666666667%; }
  .medium-10 {
    width: 83.3333333333%; }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.6666666667%; }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .medium-offset-10 {
    margin-left: 83.3333333333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.6666666667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row,
  .expanded.row .medium-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-centered {
    margin-left: auto;
    margin-right: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%; }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.6666666667%; }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .large-offset-1 {
    margin-left: 8.3333333333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.6666666667%; }
  .large-4 {
    width: 33.3333333333%; }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.6666666667%; }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .large-offset-4 {
    margin-left: 33.3333333333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.6666666667%; }
  .large-7 {
    width: 58.3333333333%; }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.6666666667%; }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .large-offset-7 {
    margin-left: 58.3333333333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.6666666667%; }
  .large-10 {
    width: 83.3333333333%; }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.6666666667%; }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .large-offset-10 {
    margin-left: 83.3333333333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.6666666667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row,
  .expanded.row .large-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-centered {
    margin-left: auto;
    margin-right: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto; }

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

@media screen and (min-width: 40em) {
  .columns:nth-child(1) {
    padding-left: 0; }
  .columns:nth-child(2) {
    padding-right: 0; } }

/*------------------------------------*\
    $ABSTRACTS
\*------------------------------------*/
/*------------------------------------*\
     #VARIABLES
 \*------------------------------------*/
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/*
  * 1) Color variables involve a two-tier system to keep colors in sync. The
  *    first tier defines the brand and neutral colors, and the second tier
  *    defines the application of those colors.
  */
/*
  * Brand Colors
  * 1) Brand color variables use English names to define colors to make palettes easier to
  *    identify. Names are generated using this tool: http://chir.ag/projects/name-that-color/
  * 2) Brand color variables should typically not be used directly in Sass partials. Instead, use
  *    second-tier application colors.
  *
  */
/*
  * Neutral Colors
  * 1) Neutral color variables use a numbered system to define variables for better maintainability.
  *    "$color-gray-10" means "10% gray", which is a gray closer to white than to black. For more info
  *    read https://medium.com/eightshapes-llc/color-in-design-systems-a1c80f65fa3#.brevrq67p
  */
/**
  * Utility Colors
  * 1) Utility colors are colors used to provide feedback, such as alert messages,
  * form validation, etc.
  */
/*
   * Text Colors
   * 1) These are non-linked text colors, such as body copy.
   */
/*
  * Heading Colors
  * 1) These are non-linked heading colors, such as h2, h3, etc.
  */
/*
  * Text Link Colors
  * 1) These are for linked text, such as a link found within an article,
  *    navigation link, footer link, etc.
  */
/*
  * Border Colors
  * 1) Border colors are used as decoration or dividers, such as as a seperator
  *    for navigation items, block borders, etc.
  */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/*
 $font-size-small : 0.75rem;
 $font-size-small-2 : 0.875rem;
 $font-size-med : 1rem;
 $font-size-med-2: 1.0625rem;
 $font-size-large : 1.4375rem;
*/
/*------------------------------------*\
     #STYLEGUIDE SIZING ATTEMPT
 \*------------------------------------*/
/* font  */
/* 8px */
/* 12px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 28px */
/* 32px */
/* 36px */
/* 36px */
/* we use these easy names to call in code by converting to the variables we use,
ex:  font-size: font(x); */
/* stuff */
/* 16px */
/* 24px */
/* 32px */
/* 64px */
/* 8px  */
/* integrate these back in */
/* snazzy function to convert px to em/rem use as follows:
  font-size: convert-to-rem(40);
  Result in browsser window: font-size: 2.5em   */
/*------------------------------------*\
     #LAYOUT
 \*------------------------------------*/
/**
  * Spacing Defaults
  */
/*------------------------------------*\
     #BORDERS
 \*------------------------------------*/
/**
  * Border Width
  */
/**
  * Border Radius
  */
/*------------------------------------*\
     #ANIMATION
 \*------------------------------------*/
/**
  * Animation Duration
  */
/**
  * Animation Easing
  */
/*------------------------------------*\
     #BREAKPOINTS
 \*------------------------------------*/
/**
  * Breakpoints
  */
/*Colors*/
/* JG: Don't need these */
/*
 $color-gray--light: #dadada;
 $color-gray--medium: #CCCCCC;
 $color-gray--mediumer: #BBBBBB;
 $color-gray--dark: #767676;
 $color-gray--darker: #616161;
 $color-gray--even-darker: #333333;
 */
/* JG: Lets move these to the _variables.scss */
/* JG: comment each one of these */
/* JG: Research and follow up :) */
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
/** CSS Transition
 *	Usage: @include transition(width,0.3s,ease-out);
 */
/** Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
 *	Usage: @include font-size(1, large);
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/* @import "base/base"; not being used */
/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * Use border box on all elements
 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * Zero out margin and padding on most elements as base style
 */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

/**
 * Display block as base for these elements
 */
header, footer, nav, section, article, hgroup, figure {
  display: block; }

/*------------------------------------*\
    #BODY
\*------------------------------------*/
/**
 * Body base styles
 */
* {
  border: 0;
  margin: 0;
  padding: 0; }

body {
  font: normal 14px/20px Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #333333; }

.fullWidth {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: initial; }

.clearfix {
  clear: both; }

main {
  padding: 18px 9px 9px 9px; }
  @media screen and (min-width: 40em) {
    main {
      padding: 40px 4em 4em 280px;
      max-width: 960px;
      min-height: 360px;
      position: relative;
      display: inline-block; }
      main:before {
        content: url(../images/global/login.jpg);
        position: absolute;
        left: 0;
        top: 0px;
        z-index: 0; } }
  main a {
    font-weight: normal;
    text-decoration: underline; }

/*------------------------------------*\
    #MAIN
\*------------------------------------*/
/**
 * Main content area
 */
[role=main] {
  flex: 1; }

/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/**
 * Fade Animation
 */
.animate-fade {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  .animate-fade:hover {
    opacity: 0; }

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/**
 * Fieldset base styles
 */
fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

/**
 * Label base styles
 */
label {
  display: inline-block;
  padding-bottom: 0.2rem;
  font-weight: bold;
  color: #000;
  font-size: 14px; }

/**
 * Form button, input, select, and text area base styles
 * 1) Zero out margin and inherit font styles
 */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

/**
 * Input and text area base styles
 * 1) Width entire container, gray border, padding
 */
input, textarea {
  width: 100%;
  line-height: 44px;
  height: 44px;
  padding: 0 10px;
  overflow: hidden;
  border: 2px solid #bbb;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  -webkit-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
  box-shadow: none; }

input:disabled, textarea:disabled {
  background-color: #f2f2f2; }

textarea {
  height: auto;
  line-height: 20px;
  overflow: auto;
  padding: 6px 10px; }

/**
 * Input areas base styles
 * 1) Get rid of webkit appearance of these areas
 */
input[type=text], input[type=search], input[type=url], input[type=number], textarea {
  -webkit-appearance: none; }

/**
 * Button/Submit button base styles
 */
button, input[type="submit"] {
  padding: 0.5rem;
  background: #444444;
  border: 1px solid #8C8C8C;
  cursor: pointer; }

/**
 * Checkboxes/Radio button base styles
 */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.3em; }

/**
 * Search cancel button and search decoration webkit appearance none
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
select {
  @extend input;
    // Select reset
    text-indent: 0.01px;
    text-overflow: '';
    line-height: normal;
    @include appearance(none);
    // Select styling
    background: $color-gray-02 url(../images/caret.svg) 100% 50% no-repeat;
    background-size: 44px 44px;
    border-color: $color-gray-35;
    //@include transition(border-color ease-in-out .15s);
    // Hover state
    //&:hover, { border-color: $form-hover; }
    // Active state
    //&:active, &:focus { border-color: $form-active; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      background-image: none;
    }
}*/
/* added focus style for accessibility */
.add-focus:focus,
input[type="checkbox"].add-focus:focus + label:before,
input[type="radio"].add-focus:focus + label:before {
  outline: 3px solid #85bffd !important;
  outline-offset: -2px !important; }

input.add-focus:focus + .fake-input:before {
  box-shadow: 0 0 0 3px #85bffd !important;
  outline-offset: -2px; }

/*------------------------------------*\
    #GLOBAL CLASSES
\*------------------------------------*/
/**
 * Clearfix
 */
.cf {
  *zoom: 1; }

/**
 * Clearfix pseudo-elements
 */
.cf:before, .cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * Completely remove from the flow and screen readers.
 */
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/**
 * Completely remove from the flow but leave available to screen readers.
 */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/**
 * Text align right
 */
.align-right {
  text-align: right; }

/**
 * Text align center
 */
.align-center {
  text-align: center; }

/**
 * Text Align left
 */
.align-left {
  text-align: left; }

/**
 * Hide on small screens
 */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none; } }

/**
 * Hide on medium screens
 */
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none; } }

/**
 * Hide on large screens
 */
@media all and (min-width: 50em) {
  .hide-large {
    display: none; } }

/* @import "base/headings"; not being used */
a {
  color: #333333;
  text-decoration: underline; }
  a:hover, a:active, a:focus {
    cursor: pointer; }
  a:hover {
    color: #767676; }
  a:active {
    color: #A50000; }

p > a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word; }

.links--underline, .footer_content a {
  text-decoration: underline; }

.links--regular-weight, .footer_content a, .text-size-adjuster_content_options--default a {
  font-weight: normal; }
  .links--regular-weight__small {
    font-weight: normal;
    font-size: 0.875rem; }

.links--red {
  color: #CC0000; }

.links--horizontal-link-list {
  display: inline-block; }
  .links--horizontal-link-list:before {
    content: '|';
    margin-right: 4px;
    margin-left: 4px; }
  .links--horizontal-link-list:first-child:before {
    content: none; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Links
 */
a {
  color: #333333;
  text-decoration: underline;
  transition: all 0.2s ease; }
  a:hover, a:focus {
    color: #767676; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Ordered/Unordered list base styles
 */
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/**
 * Definition list base styles
 */
dl {
  overflow: hidden;
  margin: 0 0 1rem; }

/**
 * Terms/Names base styles
 */
dt {
  font-weight: bold; }

/**
 * Definition list description base styles
 */
dd {
  margin-left: 0; }

/*------------------------------------*\
    #MEDIA ELEMENTS
\*------------------------------------*/
/**
 * Make media elements responsive
 */
img, video, object {
  max-width: 100%;
  height: auto; }

/**
 * Iframe base styles
 */
iframe {
  margin-bottom: 1rem; }

/**
 * Figure base styles
 */
figure {
  margin-bottom: 1rem;
  /**
	 * Figure image base styles
	 */ }
  figure img {
    margin-bottom: 0.5rem; }

/**
 * Figure caption base styles
 */
figcaption {
  font-style: italic; }

/*------------------------------------*\
    #TABLE
\*------------------------------------*/
/**
 * Table base styles
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #8C8C8C;
  width: 100%; }

/**
 * Table header base styles
 */
th {
  text-align: left;
  border: 1px solid #8C8C8C;
  padding: 0.2em; }

/**
 * Table cell base styles
 */
td {
  border: 1px solid #8C8C8C;
  padding: 0.2em; }

/* @import "base/typography";  contains header classes we don't use, but will keep */
/* @import "base/text"; put this and the header styles into the atoms/text.scss file */
/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
/*
@import "components/blocks";
@import "components/buttons";
@import "components/carousels";
@import "components/footer";
@import "components/footer-nav";
@import "components/forms";
@import "components/fields";
@import "components/header";
@import "components/logo";
@import "components/icons";
@import "components/lists";
@import "components/messaging";
@import "components/primary-nav";
@import "components/nav";
@import "components/page-header";
@import "components/sections";
@import "components/text";

@import "components/box";
@import "components/feedback";

*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* @import "layout/layout";*/
.inline-alert, .inline-alert--error, .inline-alert--warn, .inline-alert--info, .inline-alert--success {
  display: block;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  margin: 0 0 1.25rem;
  border-left: 4px solid;
  clear: both; }
  .inline-alert h3, .inline-alert--error h3, .inline-alert--warn h3, .inline-alert--info h3, .inline-alert--success h3 {
    margin: 0 0 10px;
    font-size: 1rem; }
  .inline-alert p, .inline-alert--error p, .inline-alert--warn p, .inline-alert--info p, .inline-alert--success p {
    margin: 0;
    font-size: 0.875rem; }
  .inline-alert ul, .inline-alert--error ul, .inline-alert--warn ul, .inline-alert--info ul, .inline-alert--success ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0; }
    .inline-alert ul li, .inline-alert--error ul li, .inline-alert--warn ul li, .inline-alert--info ul li, .inline-alert--success ul li {
      display: inline; }
      .inline-alert ul li a, .inline-alert--error ul li a, .inline-alert--warn ul li a, .inline-alert--info ul li a, .inline-alert--success ul li a {
        text-decoration: none; }
  .inline-alert .alert-icon, .inline-alert--error .alert-icon, .inline-alert--warn .alert-icon, .inline-alert--info .alert-icon, .inline-alert--success .alert-icon {
    float: left;
    margin: 0 1rem 0 0; }
  .inline-alert .alert-icon + .alert-content, .inline-alert--error .alert-icon + .alert-content, .inline-alert--warn .alert-icon + .alert-content, .inline-alert--info .alert-icon + .alert-content, .inline-alert--success .alert-icon + .alert-content {
    margin-left: 40px; }
  .inline-alert--error {
    background-color: rgba(204, 0, 0, 0.1);
    border-color: #CC0000; }
    .inline-alert--error .alert-icon {
      background: url("../images/icons/icon-error.svg") no-repeat;
      display: inline-block;
      height: 25px;
      width: 25px; }
    .inline-alert--error .alert-content a {
      color: #CC0000; }
      .inline-alert--error .alert-content a:hover {
        color: #A50000; }
  .inline-alert--warn {
    background-color: rgba(255, 210, 22, 0.2);
    border-color: #FFD216; }
    .inline-alert--warn .alert-icon {
      background: url("../images/icons/icon-warning.svg") no-repeat;
      display: inline-block;
      height: 25px;
      width: 25px; }
  .inline-alert--info {
    background-color: rgba(184, 227, 235, 0.3);
    border-color: #B8E3EB; }
    .inline-alert--info .alert-icon {
      background: url("../images/icons/info-icon.svg") no-repeat;
      display: inline-block;
      height: 25px;
      width: 25px; }
  .inline-alert--success {
    background-color: rgba(167, 206, 57, 0.2);
    border-color: #A7CE39; }
    .inline-alert--success .alert-icon {
      background: url("../images/icons/check.svg") no-repeat;
      display: inline-block;
      height: 25px;
      width: 25px; }

/* flu banner block */
.banner-block {
  display: block;
  padding: 20px 20px 20px 16px;
  margin: 0 0 20px;
  clear: both;
  background-color: #B8E3EB; }

.banner-block .heading {
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 600;
  padding: 0 0 .25em;
  color: #000; }

.banner-block p {
  margin: 0;
  font-size: 16px; }

.banner-block a {
  font-size: 16px; }

.banner-block_text {
  margin-left: 60px; }

.banner-block:before {
  background-image: url(../images/icon-pharmacy-store--m.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  float: left;
  display: inline-block;
  height: 53px;
  width: 53px;
  margin-right: 1rem; }

.flu.banner-block:before {
  background-image: url(../images/icon-pharmacy-store--m.svg); }

.clipboard.banner-block:before {
  background-image: url(../images/icon-pharmacy-store--m.svg); }

.pillbottle.banner-block:before {
  background-image: url(../images/icon-pharmacy-store--m.svg); }

.needle.banner-block:before {
  background-image: url(../images/icon-pharmacy-store--m.svg); }

/**
 * Buttons
 */
.primary-btn {
  display: inline-block;
  background: #CC0000;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
  padding: 1rem 2rem;
  border: 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 2px solid #A50000;
  /**
     * Disabled button
     */ }
  @media screen and (max-width: 40em) {
    .primary-btn {
      width: 100%;
      display: block; } }
  .primary-btn:hover {
    color: #fff;
    background: #EB0000;
    text-decoration: none; }
  .primary-btn:active, .primary-btn:focus {
    color: #fff;
    background: #A50000; }
  .primary-btn.primary-button--disabled, .primary-btn[disabled] {
    background: #CCCCCC;
    color: #8C8C8C;
    border-bottom: 2px solid #bbb;
    cursor: default; }

/**
 * Small button
 */
.primary-btn--small {
  padding: 0.5rem; }

/**
 * Large button
 */
.primary-btn--large {
  padding: 0.5rem;
  text-transform: uppercase;
  background: #8C8C8C;
  font-size: 1.4rem;
  font-weight: normal; }

/**
 * Ghost Buttons
 */
.ghost-btn {
  display: inline-block;
  background: transparent;
  color: #CC0000;
  line-height: 1;
  font-weight: bold;
  padding: 1rem 2rem;
  border: 2px solid #CC0000;
  text-align: center;
  transition: background 0.2s ease;
  /**
     * Disabled button
     */
  /**
     * Disabled button
     */ }
  @media screen and (max-width: 40em) {
    .ghost-btn {
      width: 100%;
      display: block; } }
  .ghost-btn:hover {
    color: #EB0000;
    border: 2px solid #EB0000; }
  .ghost-btn:active, .ghost-btn:focus {
    color: #A50000;
    border: 2px solid #A50000; }
  .ghost-btn.ghost-btn--reversed {
    border: 2px solid #fff;
    color: #fff; }
    .ghost-btn.ghost-btn--reversed:hover {
      border: 2px solid #CCCCCC;
      color: #CCCCCC; }
    .ghost-btn.ghost-btn--reversed:active, .ghost-btn.ghost-btn--reversed:focus {
      border: 2px solid #8C8C8C;
      color: #8C8C8C; }
  .ghost-btn.ghost-btn--disabled, .ghost-btn[disabled] {
    background: #CCCCCC;
    color: #8C8C8C; }

/**
 * Buttons
 */
.secondary-btn {
  display: inline-block;
  background: #1E1E1E;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 1rem 2rem;
  border: 0;
  text-align: center;
  transition: background 0.2s ease;
  border-bottom: 2px solid #000;
  /**
     * Disabled button
     */ }
  .secondary-btn:hover {
    color: #fff;
    background: #444444; }
  .secondary-btn:active, .secondary-btn:focus {
    color: #fff;
    background: #767676; }
  .secondary-btn.secondary-btn--disabled, .secondary-btn[disabled] {
    background: #CCCCCC;
    color: #8C8C8C; }
  .secondary-btn.btn-print {
    padding-left: 54px; }

.btn-img, .btn-print, .btn-pdf, .btn-csv, .text-btn-email {
  position: relative;
  /*@media (min-width: $bp-small) {
    padding-left: 54px;
  }*/ }
  .btn-img:before, .btn-print:before, .btn-pdf:before, .btn-csv:before, .text-btn-email:before {
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 44px;
    height: 44px; }

.btn-print:before {
  background-image: url(../images/icons/icon-print.svg);
  background-color: transparent;
  width: 44px;
  height: 44px; }

.btn-print:hover:before {
  background-image: url(../images/icons/icon-print.svg);
  background-color: transparent; }

.btn-print:active:before, .btn-print:focus:before {
  background-color: transparent; }

.btn-pdf:before {
  background-image: url(../images/icons/icon-pdf-paper.svg);
  background-color: transparent;
  width: 44px;
  height: 44px; }

.btn-pdf:hover:before {
  background-image: url(../images/icons/icon-pdf-paper.svg);
  background-color: transparent; }

.btn-pdf:active:before, .btn-pdf:focus:before {
  background-color: transparent; }

.btn-csv:before {
  background-image: url(../images/icons/icon-csv.svg);
  background-color: transparent;
  width: 44px;
  height: 44px; }

.btn-csv:hover:before {
  background-image: url(../images/icons/icon-csv.svg);
  background-color: transparent; }

.btn-csv:active:before, .btn-csv:focus:before {
  background-color: transparent; }

.btn-print--ghost, .btn-pdf--ghost, .btn-csv--ghost, .btn-email--ghost, .btn-info--ghost {
  display: inline-block;
  background: #fff;
  color: #CC0000;
  border: 3px solid #fff;
  line-height: 1;
  font-weight: bold;
  padding: 1rem 2rem;
  text-align: center;
  transition: background 0.2s ease;
  padding-left: 34px;
  position: relative;
  /*@media (min-width: $bp-small) {
    padding-left: 54px;
  }*/
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out; }
  .btn-print--ghost:before, .btn-pdf--ghost:before, .btn-csv--ghost:before, .btn-email--ghost:before, .btn-info--ghost:before {
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 44px; }
  .btn-print--ghost:before, .btn-pdf--ghost:before, .btn-csv--ghost:before, .btn-email--ghost:before, .btn-info--ghost:before {
    background-image: url(../images/icons/icon-print-black.svg);
    background-color: transparent; }
  .btn-print--ghost:hover, .btn-pdf--ghost:hover, .btn-csv--ghost:hover, .btn-email--ghost:hover, .btn-info--ghost:hover {
    color: #EB0000; }
    .btn-print--ghost:hover:before, .btn-pdf--ghost:hover:before, .btn-csv--ghost:hover:before, .btn-email--ghost:hover:before, .btn-info--ghost:hover:before {
      background-image: url(../images/icons/icon-print-black.svg);
      background-color: transparent; }
  .btn-print--ghost:active:before, .btn-pdf--ghost:active:before, .btn-csv--ghost:active:before, .btn-email--ghost:active:before, .btn-info--ghost:active:before, .btn-print--ghost:focus:before, .btn-pdf--ghost:focus:before, .btn-csv--ghost:focus:before, .btn-email--ghost:focus:before, .btn-info--ghost:focus:before {
    background-color: transparent; }
  @media screen and (max-width: 40em) {
    .btn-print--ghost, .btn-pdf--ghost, .btn-csv--ghost, .btn-email--ghost, .btn-info--ghost {
      border: 3px solid #CC0000;
      width: 100%; }
      .btn-print--ghost:hover, .btn-pdf--ghost:hover, .btn-csv--ghost:hover, .btn-email--ghost:hover, .btn-info--ghost:hover {
        border: 3px solid #EB0000; }
      .btn-print--ghost:before, .btn-pdf--ghost:before, .btn-csv--ghost:before, .btn-email--ghost:before, .btn-info--ghost:before {
        left: 0.75rem; } }

.btn-pdf--ghost:before {
  background-image: url(../images/icons/icon-pdf-paper.svg); }

.btn-pdf--ghost:hover:before {
  background-image: url(../images/icons/icon-pdf-paper.svg); }

.btn-csv--ghost:before {
  background-image: url(../images/icons/icon-csv.svg); }

.btn-csv--ghost:hover:before {
  background-image: url(../images/icons/icon-csv.svg); }

.btn-email--ghost:before {
  background-image: url(../images/icons/icon-envelope.svg); }

.btn-email--ghost:hover:before {
  background-image: url(../images/icons/icon-envelope.svg); }

.btn-info--ghost {
  border: 0;
  line-height: 1;
  font-weight: bold;
  padding: 0 2rem 0 0;
  text-align: left;
  transition: background 0.2s ease;
  padding-left: 0;
  color: #000;
  text-decoration: underline;
  display: inline-block;
  min-height: 20px; }
  .btn-info--ghost:before {
    background-image: url(../images/icons/info-icon-red.svg);
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    position: absolute;
    top: 0;
    left: 50px;
    display: block;
    width: 20px;
    height: 20px; }
  .btn-info--ghost:hover {
    color: #000;
    border: 0; }
    .btn-info--ghost:hover:before {
      background-image: url(../images/icons/info-icon-red.svg); }

/**
 * Text Buttons
 */
.text-btn {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  color: #CC0000;
  font-weight: bold; }
  .text-btn:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .text-btn:active, .text-btn:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  @media screen and (max-width: 40em) {
    .text-btn {
      padding: 0.5rem 1.5rem 0.5rem 0; } }
  .text-btn:hover {
    color: #EB0000; }
    .text-btn:hover:after {
      right: 11px; }
  .text-btn:active, .text-btn:focus {
    color: #A50000; }
    .text-btn:active:after, .text-btn:focus:after {
      right: 11px; }
  .text-btn.text-btn-email {
    padding: 0 0 0 36px; }

/* Back Links */
.back-link {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  padding: 8px 0 8px 18px;
  position: relative; }
  .back-link:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .back-link:active, .back-link:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  .back-link:after, .back-link:before {
    border-right: 2px solid;
    content: '';
    display: block;
    height: 10px;
    margin-top: -6px;
    position: absolute;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 4px;
    top: 46%;
    width: 0; }
  .back-link:after {
    margin-top: 0;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }

/*Forward Links*/
.forward-link {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  padding: 8px 24px 8px 0;
  position: relative; }
  .forward-link:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .forward-link:active, .forward-link:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  .forward-link:after, .forward-link:before {
    border-right: 2px solid;
    content: '';
    display: inline-block;
    height: 13px;
    margin-top: -8px;
    position: absolute;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 14px;
    top: 44%;
    width: 0; }
  .forward-link:after {
    margin-top: 0;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .forward-link.text-btn:hover:after {
    right: 14px; }
  .forward-link:active:after, .forward-link:focus:after {
    right: 14px; }

.btn-link {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  padding: 0; }
  .btn-link:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .btn-link:active, .btn-link:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }

/* now we need to create an up/down caret we can add next to a txt-btn*/
.up-link {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  padding: 0 24px 0 0;
  line-height: 1rem;
  position: relative; }
  .up-link:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .up-link:active, .up-link:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  .up-link:after, .up-link:before {
    border-right: 2px solid;
    content: '';
    display: inline-block;
    height: 10px;
    margin-top: -4px;
    position: absolute;
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 11px;
    top: 46%;
    width: 0; }
  .up-link:after {
    margin-top: 0;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 4px;
    right: 5px; }
    @media screen and (min-width: 0\0) {
      .up-link:after {
        top: 3px;
        -ms-transform: rotate(136deg);
        -webkit-transform: rotate(136deg);
        transform: rotate(136deg); } }

.down-link {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  padding: 0 24px 0 0;
  line-height: 1rem;
  position: relative; }
  .down-link:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .down-link:active, .down-link:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  .down-link:after, .down-link:before {
    border-right: 2px solid;
    content: '';
    display: inline-block;
    height: 11px;
    margin-top: -4px;
    position: absolute;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 12px;
    top: 46%;
    width: 0; }
  .down-link:after {
    margin-top: 0;
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 4px;
    right: 5px; }
    @media screen and (min-width: 0\0) {
      .down-link:after {
        top: 3px;
        -ms-transform: rotate(222deg);
        -webkit-transform: rotate(222deg);
        transform: rotate(222deg); } }

/* add grey variation to the txt-btn class */
.text-btn--grey {
  color: #767676; }
  .text-btn--grey--sm {
    color: #767676;
    font-size: 0.75rem; }
  .text-btn--grey--left {
    color: #767676;
    padding: 0; }
  .text-btn--grey[disabled], .text-btn--grey.disabled, .text-btn--grey[disabled]:hover, .text-btn--grey[disabled]:focus, .text-btn--grey[disabled]:active {
    color: #8C8C8C;
    cursor: default; }

.btn-img, .btn-print, .btn-pdf, .btn-csv, .text-btn-email {
  position: relative;
  /*@media (min-width: $bp-small) {
    padding-left: 54px;
  }*/ }
  .btn-img:before, .btn-print:before, .btn-pdf:before, .btn-csv:before, .text-btn-email:before {
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 44px;
    height: 44px; }

.text-btn-email {
  width: auto; }
  .text-btn-email:before {
    background-image: url("../images/icons/icon-email.svg");
    background-color: transparent;
    width: 26px;
    height: 19px; }
  .text-btn-email:hover:before {
    background-image: url("../images/icons/icon-email.svg");
    background-color: transparent; }
  .text-btn-email:active:before, .text-btn-email:focus:before {
    background-color: transparent; }

.btn-form {
  width: 100%;
  max-width: 300px; }
  @media screen and (max-width: 40em) {
    .btn-form {
      max-width: none; } }

.input-file-link {
  width: auto;
  height: auto;
  line-height: 100%;
  display: inline-block;
  padding: 0;
  border: none;
  overflow: inherit;
  cursor: pointer; }

/**
 * Filter
 */
.pill-filter-unit {
  clear: both;
  display: inline-block; }

.pill-filter {
  display: inline-block;
  background: #fff;
  color: #767676;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border: 2px solid #CCCCCC;
  text-align: center;
  transition: background 0.2s ease;
  border-radius: 1rem;
  outline: 0;
  cursor: pointer;
  float: left;
  line-height: 16px;
  height: 33px; }
  .pill-filter .filter-value {
    font-weight: normal; }
  .pill-filter:hover, .pill-filter:active, .pill-filter:focus {
    color: #1E1E1E;
    border-color: #1E1E1E; }
  .pill-filter.filter-selected {
    background: #CC0000;
    color: #fff;
    border: 2px solid #CC0000; }
    .pill-filter.filter-selected:hover {
      background: #EB0000;
      border-color: #EB0000; }
    .pill-filter.filter-selected:active, .pill-filter.filter-selected:focus {
      background: #A50000;
      border-color: #A50000; }
    .pill-filter.filter-selected.filter-close + .pill-filter-close {
      background: #A50000;
      border: 2px solid #A50000;
      color: #fff; }
      .pill-filter.filter-selected.filter-close + .pill-filter-close:hover {
        background: #EB0000;
        border: 2px solid #EB0000; }
      .pill-filter.filter-selected.filter-close + .pill-filter-close:active, .pill-filter.filter-selected.filter-close + .pill-filter-close:focus {
        background: #A50000;
        border: 2px solid #A50000; }
  .pill-filter + .pill-filter-close {
    display: none; }
  .pill-filter.filter-close {
    border-radius: 1rem 0 0 1rem; }
    .pill-filter.filter-close + .pill-filter-close {
      background: #CCCCCC;
      border: 2px solid #CCCCCC;
      color: #1E1E1E;
      padding: 0 0.667rem 0 0.5rem;
      border-radius: 0 1rem 1rem 0;
      display: inline-block;
      cursor: pointer;
      font-size: 1px;
      line-height: 16px;
      height: 33px;
      overflow: hidden;
      float: left; }
      .pill-filter.filter-close + .pill-filter-close:before {
        content: '\00D7';
        display: block;
        font-size: 24px;
        font-weight: 600;
        line-height: 24px; }
      .pill-filter.filter-close + .pill-filter-close:hover, .pill-filter.filter-close + .pill-filter-close:active, .pill-filter.filter-close + .pill-filter-close:focus {
        color: #fff;
        background: #1E1E1E;
        border-color: #1E1E1E; }

/**
 * Filter Groups
 */
.filter-group .pill-filter-unit {
  margin: 0 4px 4px 4px; }

/**
 * Labels
 */
label:hover {
  cursor: pointer; }

label .check-radio-label {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-weight: normal;
  color: #1E1E1E; }

label.label-disabled {
  color: #767676; }

/**
 * Checkboxes
 */
.checkbox input {
  display: none; }

.checkbox label {
  font-weight: normal; }

.checkbox__info {
  display: block;
  clear: both;
  width: 100%;
  padding: 1rem 0 0 37px;
  font-weight: normal;
  color: #333333; }
  .checkbox__info .form_input-field .disclaimer, .checkbox__info .form_input-field .error-message {
    font-size: 0.875rem; }
  .checkbox__info .form_input-field input {
    display: block;
    background-color: white; }
    .checkbox__info .form_input-field input.input-validation-error {
      background-color: #fae6e6; }
    @media screen and (min-width: 40em) {
      .checkbox__info .form_input-field input {
        max-width: 265px; } }
  .checkbox__info .form_input-field.containerShowHide {
    /* un-commented 
      http://localhost:3000/?p=pages-profile-resRequest
      PBI #170333 uses the .containerShowHide class as part of
      <div class="form_input-container form_input-field containerShowHide">
      and it should not. Ideally remove containerShowHide as part of the 
      resRequest workflow. prefernce for not having floating SSN
      link over squishing the account info slightly
      */ }
    @media screen and (min-width: 40em) {
      .checkbox__info .form_input-field.containerShowHide {
        max-width: 265px; } }
    .checkbox__info .form_input-field.containerShowHide p {
      margin-bottom: 10px; }
    .checkbox__info .form_input-field.containerShowHide .inputShowHide {
      position: absolute;
      top: 0;
      right: 10px; }

.checkbox .fake-input {
  height: 28px;
  display: inline-block;
  float: left;
  padding-right: 8px; }

.checkbox .check-radio-label {
  line-height: 28px; }
  @media screen and (max-width: 40em) {
    .checkbox .check-radio-label.longLabel {
      display: inline-block;
      line-height: 16px; }
      .checkbox .check-radio-label.longLabel .longLabel--label {
        width: 75%;
        display: inline-block; } }

.checkbox input + .fake-input:before {
  display: inline-block;
  height: 24px;
  width: 24px;
  content: '';
  background-color: #fff;
  border: 2px solid #000;
  left: 0;
  top: 6px; }

.checkbox:hover .fake-input {
  cursor: pointer; }

.checkbox input:checked + .fake-input:before {
  border-color: #000;
  background: #000 url("../images/icons/icon-check-white.svg") center center no-repeat; }

.checkbox input[disabled]:checked + .fake-input:before {
  border-color: #bbb;
  background-color: #f2f2f2; }

.checkbox input[disabled] + .fake-input:before {
  border-color: #bbb;
  background-color: #f2f2f2; }

.checkbox input[disabled] + .fake-input {
  color: #767676;
  cursor: default; }

.checkbox-error input + .fake-input:before {
  border-color: #CC0000;
  background-color: #FCF2F2; }

/**
 * Radio Buttons
 */
.radio-button {
  position: relative;
  /*
    input:focus + .fake-input:before {
      box-shadow: 0 0 0 3px #85bffd;
      outline-offset: -2px;
    } */ }
  .radio-button input[type="radio"] {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .radio-button .fake-input {
    height: 28px;
    display: inline-block;
    float: left;
    padding-right: 12px; }
  .radio-button__info {
    display: block;
    clear: both;
    width: 100%;
    padding-left: 32px;
    font-weight: normal;
    color: #333333; }
    .radio-button__info .form_input-field .disclaimer, .radio-button__info .form_input-field .error-message {
      font-size: 0.875rem; }
    .radio-button__info .form_input-field input {
      display: block; }
      @media screen and (min-width: 40em) {
        .radio-button__info .form_input-field input {
          max-width: 265px; } }
    .radio-button__info .form_input-field.containerShowHide {
      /* un-commented 
          http://localhost:3000/?p=pages-profile-resRequest
          PBI #170333 uses the .containerShowHide class as part of
          <div class="form_input-container form_input-field containerShowHide">
          and it should not. Ideally remove containerShowHide as part of the 
          resRequest workflow. prefernce for not having floating SSN
          link over squishing the account info slightly
          */ }
      @media screen and (min-width: 40em) {
        .radio-button__info .form_input-field.containerShowHide {
          max-width: 265px; } }
      .radio-button__info .form_input-field.containerShowHide p {
        margin-bottom: 10px; }
      .radio-button__info .form_input-field.containerShowHide .inputShowHide {
        position: absolute;
        top: 0;
        right: 10px; }
  .radio-button .check-radio-label {
    line-height: 21px;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    width: 100%; }
  .radio-button input + .fake-input:before {
    left: 0px;
    top: 3px;
    display: inline-block;
    height: 16px;
    width: 16px;
    content: '';
    background-color: #fff;
    border: 2px solid #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    -moz-box-shadow: 0 0 0 2px #000;
    -webkit-box-shadow: 0 0 0 2px #000;
    box-shadow: 0 0 0 2px #000; }
  .radio-button:hover .fake-input:before,
  .radio-button input + .fake-input:hover:before {
    -webkit-transition: box-shadow 0.15s ease-in-out;
    -moz-transition: box-shadow 0.15s ease-in-out;
    -ms-transition: box-shadow 0.15s ease-in-out;
    -o-transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    -moz-box-shadow: 0 0 0 2px #8C8C8C;
    -webkit-box-shadow: 0 0 0 2px #8C8C8C;
    box-shadow: 0 0 0 2px #8C8C8C; }
  .radio-button:hover .fake-input {
    cursor: pointer; }
  .radio-button input:checked + .fake-input:before,
  .radio-button input[disabled]:checked + .fake-input:before {
    background-color: #000;
    -moz-box-shadow: 0 0 0 2px #000;
    -webkit-box-shadow: 0 0 0 2px #000;
    box-shadow: 0 0 0 2px #000; }
  .radio-button input[disabled] + .fake-input:before {
    -moz-box-shadow: 0 0 0 2px #bbb;
    -webkit-box-shadow: 0 0 0 2px #bbb;
    box-shadow: 0 0 0 2px #bbb;
    background-color: #f2f2f2; }
  .radio-button input[disabled] + .fake-input {
    cursor: default; }
  .radio-button.checkbox-error input + .fake-input:before {
    border-color: #FCF2F2;
    background-color: #FCF2F2;
    -moz-box-shadow: 0 0 0 2px #CC0000;
    -webkit-box-shadow: 0 0 0 2px #CC0000;
    box-shadow: 0 0 0 2px #CC0000; }

/* for when we want side by side radio optionss */
.radio-horizontal .check-radio-label {
  display: inline-block;
  width: auto;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 2rem 0 0; }

select, select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  overflow: hidden;
  border: 2px solid #bbb;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  -webkit-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  line-height: normal;
  background: #fff url(../images/icons/caret.svg) 100% 50% no-repeat;
  background-size: 44px; }

/**
 * Text Fields and Areas
 */
.text-field {
  outline: 0; }
  .text-field:active, .text-field:focus {
    border: 2px solid #000; }
  .text-field.error {
    color: black;
    border: 2px solid #CC0000;
    background-color: rgba(204, 0, 0, 0.05); }
    .text-field.error + .input-help {
      color: #CC0000; }

.input-help {
  line-height: 32px;
  color: #767676; }
  .input-help p {
    margin-top: -1rem;
    margin-bottom: 0px; }

.logo-omnicare {
  margin-top: 1rem;
  display: inline-block; }
  .logo-omnicare a {
    text-indent: 999%;
    white-space: nowrap;
    overflow: hidden;
    width: 150px;
    height: 40px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(../images/omnicare.svg);
    background-size: 150px 40px;
    display: inline-block;
    margin: 0 5px 0 0; }
    @media (max-width: 40em) {
      .logo-omnicare a {
        margin: 0; } }

.header_motto {
  font-size: 1.5rem;
  font-weight: bold;
  color: #CC0000;
  border-left: 1px solid #CCCCCC;
  padding-left: 10px;
  margin-top: 1rem;
  display: inline-block;
  vertical-align: top;
  height: 30px;
  margin-bottom: 0; }
  .header_motto p {
    margin-bottom: 0;
    line-height: 1.1;
    font-size: 1.5rem; }
    @media (max-width: 40em) {
      .header_motto p {
        font-size: 1rem;
        line-height: 2rem; } }
  @media (max-width: 40em) {
    .header_motto {
      padding-left: 4px; } }

.icon_envelope {
  background: url(../images/icons/icon-envelope.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 25px;
  width: 35px; }

.icon_perscriptions {
  background: url(../images/icons/icon-perscriptions.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 25px;
  width: 35px; }

.icon_clipboardCheck {
  background: url(../images/icons/icon-clipboardCheck.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 25px;
  width: 35px; }

.icon_attachment {
  background: url(../images/icons/icon-attachment.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 20px;
  width: 20px; }

.icon_alertmessage {
  background: url(../images/icons/icon-alertmessage.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 24px;
  width: 24px; }

.icon_alertmessage-tooltip {
  background: url(../images/icons/icon-alertmessage.svg) center center no-repeat;
  display: inline-block;
  float: left;
  height: 24px;
  width: 24px; }

.icon_trash {
  background: url(../images/icons/icon-trash.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 20px;
  width: 20px; }
  .icon_trash--button {
    background: url(../images/icons/icon-trash.svg) center center no-repeat;
    display: inline-block;
    float: left;
    height: 23px;
    width: 24px; }

.icon_flag {
  background: url(../images/icons/icon-flag.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 20px;
  width: 20px; }
  .icon_flag--button {
    background: url(../images/icons/icon-flag.svg) center center no-repeat;
    display: inline-block;
    float: left;
    height: 24px;
    width: 24px; }

.icon_errorTriangle {
  background: url(../images/icons/icon-errorTriangle.svg) center left no-repeat;
  display: inline-block;
  float: left;
  height: 32px;
  width: 44px; }

@media screen and (max-width: 40em) {
  .icon_push-mobile {
    width: 100%;
    margin-bottom: 12px; } }

/**
 * Nav Lists
 */
.nav-list-item {
  background: none;
  border: 0 none;
  color: #CC0000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 12px 10px;
  line-height: 1.25rem;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  margin: 0;
  padding-right: 25px;
  position: relative;
  color: #000; }
  .nav-list-item:hover {
    background-image: none;
    border: 0 none;
    text-decoration: none;
    color: #EB0000; }
  .nav-list-item:active, .nav-list-item:focus {
    background-image: none;
    border: 0 none;
    text-decoration: none; }
  .nav-list-item:hover {
    color: #767676; }
    .nav-list-item:hover:after {
      right: 11px; }
      @media screen and (max-width: 40em) {
        .nav-list-item:hover:after {
          right: 20px; } }
  .nav-list-item:active, .nav-list-item:focus {
    color: #A50000; }
    .nav-list-item:active:after, .nav-list-item:focus:after {
      right: 11px; }
      @media screen and (max-width: 40em) {
        .nav-list-item:active:after, .nav-list-item:focus:after {
          right: 20px; } }
  .nav-list-item:before, .nav-list-item:after {
    border-right: 2px solid;
    content: '';
    display: block;
    height: 10px;
    margin-top: -6px;
    position: absolute;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 11px;
    top: 46%;
    width: 0; }
    @media screen and (max-width: 40em) {
      .nav-list-item:before, .nav-list-item:after {
        right: 20px; } }
  .nav-list-item:after {
    margin-top: 0px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  @media screen and (max-width: 40em) {
    .nav-list-item {
      font-size: 16px;
      padding: 14px 16px; } }
  @media screen and (min-width: 40em) {
    .nav-list-item .date {
      float: left; }
    .nav-list-item .info {
      margin-left: 5rem; }
    .nav-list-item .accountnum {
      font-weight: normal; }
    .nav-list-item .resname {
      min-width: 5rem;
      padding-right: 1rem; } }
  .nav-list-item .warning {
    color: #CC0000; }

.nav-list-divided {
  border-top: 1px solid #CCCCCC; }
  .nav-list-divided ul {
    margin-bottom: 0px; }
  .nav-list-divided .nav-list-item {
    display: block;
    border-bottom: 1px solid #CCCCCC; }
    .nav-list-divided .nav-list-item:hover {
      color: #000;
      background: #f2f2f2; }
    .nav-list-divided .nav-list-item:active, .nav-list-divided .nav-list-item:focus {
      color: #A50000; }
      .nav-list-divided .nav-list-item:active:before, .nav-list-divided .nav-list-item:active:after, .nav-list-divided .nav-list-item:focus:before, .nav-list-divided .nav-list-item:focus:after {
        color: #000; }

/**
 * Stepper
 */
.stepper {
  width: 32px;
  height: 32px;
  background: #f2f2f2;
  color: #767676;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  z-index: 0;
  position: relative; }
  .stepper.active {
    background: #CC0000;
    color: #fff; }
  .stepper.large {
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 200%; }

.stepper-divider {
  width: 64px;
  height: 6px;
  margin: 0 -6px 6px -6px;
  z-index: -1;
  background: #f2f2f2;
  display: inline-block;
  position: relative; }
  .stepper-divider.active {
    background: #CC0000; }

.stepper-group .stepper {
  margin: 0 8px; }
  .stepper-group .stepper:first-of-type {
    margin-left: 0; }
  .stepper-group .stepper:last-of-type {
    margin-right: 0; }

/**
 * Tabs
 */
.tabbed-nav, .tabbed-nav--panel {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 4px 0 28px 0; }
  .tabbed-nav ul, .tabbed-nav--panel ul {
    display: table-row;
    margin: 0;
    padding: 0; }
  .tabbed-nav li, .tabbed-nav--panel li {
    list-style: none;
    padding: 0;
    display: table-cell;
    width: 18.4%;
    width: calc(100% / 5);
    box-sizing: border-box;
    text-align: center; }
    .tabbed-nav li:first-of-type, .tabbed-nav--panel li:first-of-type {
      width: 10%; }
      @media all and (min-width: 40rem) and (max-width: 50rem) {
        .tabbed-nav li:first-of-type, .tabbed-nav--panel li:first-of-type {
          width: 15%; } }
      @media all and (min-width: 50rem) and (max-width: 60rem) {
        .tabbed-nav li:first-of-type, .tabbed-nav--panel li:first-of-type {
          width: 12%; } }
    .tabbed-nav li .dialog, .tabbed-nav--panel li .dialog {
      text-align: left; }
  .tabbed-nav a, .tabbed-nav--panel a {
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #CCCCCC;
    border-top: 2px solid #fff;
    font-weight: bold;
    position: relative;
    width: 100%; }
    .tabbed-nav a.disabled, .tabbed-nav--panel a.disabled {
      color: #CCCCCC;
      cursor: default; }
      .tabbed-nav a.disabled:hover, .tabbed-nav--panel a.disabled:hover {
        background: #fff; }
      .tabbed-nav a.disabled:active, .tabbed-nav--panel a.disabled:active {
        color: #CCCCCC;
        border-bottom: 2px solid #CCCCCC; }
    .tabbed-nav a.tab-open, .tabbed-nav--panel a.tab-open {
      border-left: 2px solid #CCCCCC;
      border-right: 2px solid #CCCCCC; }
      .tabbed-nav a.tab-open:before, .tabbed-nav--panel a.tab-open:before {
        display: block;
        content: "";
        color: transparent;
        font-size: 0;
        border-top: 2px solid #000;
        width: 100%;
        position: absolute;
        top: -2px;
        padding: 0 2px;
        left: -2px;
        right: -2px; }
      .tabbed-nav a.tab-open:after, .tabbed-nav--panel a.tab-open:after {
        display: block;
        content: "";
        color: transparent;
        font-size: 0;
        border-top: 2px solid #fff;
        width: 100%;
        position: absolute;
        bottom: -2px;
        padding: 0;
        left: 0px;
        right: 0px; }
      .tabbed-nav a.tab-open:active, .tabbed-nav--panel a.tab-open:active {
        border-bottom: 2px solid #CCCCCC; }
        .tabbed-nav a.tab-open:active:after, .tabbed-nav--panel a.tab-open:active:after {
          border-top: 2px solid #A50000; }
    .tabbed-nav a:hover, .tabbed-nav--panel a:hover {
      background: #f2f2f2; }
    .tabbed-nav a:active, .tabbed-nav--panel a:active {
      background: #fff;
      color: #A50000;
      border-bottom: 2px solid #A50000; }
      .tabbed-nav a:active:after, .tabbed-nav--panel a:active:after {
        border-top: 2px solid #A50000; }
  .tabbed-nav.subnav a.tab-open, .subnav.tabbed-nav--panel a.tab-open {
    border-left: none;
    border-right: none;
    color: #CC0000; }
    .tabbed-nav.subnav a.tab-open:hover, .subnav.tabbed-nav--panel a.tab-open:hover {
      border-top: 2px solid #CCCCCC;
      color: #000; }
      .tabbed-nav.subnav a.tab-open:hover:after, .subnav.tabbed-nav--panel a.tab-open:hover:after {
        border-top: 2px solid #CCCCCC; }
    .tabbed-nav.subnav a.tab-open:before, .subnav.tabbed-nav--panel a.tab-open:before {
      display: block;
      content: "";
      color: transparent;
      font-size: 0;
      border-top: 2px solid #fff;
      width: 100%;
      position: absolute;
      top: -2px;
      padding: 0 2px;
      left: -2px;
      right: -2px; }
    .tabbed-nav.subnav a.tab-open:after, .subnav.tabbed-nav--panel a.tab-open:after {
      display: block;
      content: "";
      color: transparent;
      font-size: 0;
      border-top: 4px solid #CC0000;
      width: 100%;
      position: absolute;
      bottom: -2px;
      padding: 0;
      left: 0px;
      right: 0px; }
    .tabbed-nav.subnav a.tab-open:active, .subnav.tabbed-nav--panel a.tab-open:active {
      color: #A50000;
      border-bottom: 2px solid #CCCCCC; }
      .tabbed-nav.subnav a.tab-open:active:after, .subnav.tabbed-nav--panel a.tab-open:active:after {
        border-top: 2px solid #A50000; }
  .tabbed-nav.vertical ul, .vertical.tabbed-nav--panel ul {
    display: block; }
    .tabbed-nav.vertical ul li, .vertical.tabbed-nav--panel ul li {
      display: block; }
      .tabbed-nav.vertical ul li a, .vertical.tabbed-nav--panel ul li a {
        width: 100%; }
        .tabbed-nav.vertical ul li a:hover, .vertical.tabbed-nav--panel ul li a:hover {
          border-top: 2px solid #f2f2f2; }
        .tabbed-nav.vertical ul li a.tab-open:hover, .vertical.tabbed-nav--panel ul li a.tab-open:hover {
          border-top: 2px solid #f2f2f2; }
          .tabbed-nav.vertical ul li a.tab-open:hover:before, .vertical.tabbed-nav--panel ul li a.tab-open:hover:before {
            border-top: 0; }
        .tabbed-nav.vertical ul li a.tab-open:before, .vertical.tabbed-nav--panel ul li a.tab-open:before {
          display: block;
          border-left: 2px solid #CC0000;
          height: 100%;
          position: absolute;
          top: -2px;
          padding: 2px 0;
          left: 0;
          border-top: 0; }
          .tabbed-nav.vertical ul li a.tab-open:before:hover, .vertical.tabbed-nav--panel ul li a.tab-open:before:hover {
            border-top: 0; }
        .tabbed-nav.vertical ul li a.tab-open:after, .vertical.tabbed-nav--panel ul li a.tab-open:after {
          border-top: 2px solid #CCCCCC;
          bottom: -2px;
          padding: 0;
          left: 0;
          right: 0; }
        .tabbed-nav.vertical ul li a.tab-open:active:before, .vertical.tabbed-nav--panel ul li a.tab-open:active:before, .tabbed-nav.vertical ul li a.tab-open:active:after, .vertical.tabbed-nav--panel ul li a.tab-open:active:after {
          display: none; }
        .tabbed-nav.vertical ul li a.tab-open:active:hover, .vertical.tabbed-nav--panel ul li a.tab-open:active:hover {
          border-top: 2px solid #fff; }
        .tabbed-nav.vertical ul li a:active, .vertical.tabbed-nav--panel ul li a:active {
          border-top: 2px solid #fff;
          border-bottom: 2px solid #CCCCCC; }
        .tabbed-nav.vertical ul li a.disabled:hover, .vertical.tabbed-nav--panel ul li a.disabled:hover {
          border-top: 2px solid #fff; }

.tabbed-nav--panel {
  width: auto;
  margin: 0; }
  .tabbed-nav--panel li, .tabbed-nav--panel li:first-of-type {
    width: auto; }
  .tabbed-nav--panel a, .tabbed-nav--panel a:active, .tabbed-nav--panel a:focus, .tabbed-nav--panel a:hover, .tabbed-nav--panel a.tab-open:active {
    border-bottom: none; }

/**
 * Disclaimer
 */
.disclaimer, .input-details {
  display: block;
  color: #767676;
  line-height: 1.4;
  margin: 0;
  font-size: 0.875rem; }

.disclaimer-xs {
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #767676; }

.subtext {
  font-size: 0.875rem;
  color: #767676; }
  .subtext a {
    font-weight: normal;
    color: #000;
    text-decoration: underline; }

.small {
  font-size: 0.875rem; }

ul, ol, p {
  margin-bottom: 1em;
  line-height: 20px; }

p {
  font-size: 1rem; }

.bullet-list {
  font-size: 1rem;
  list-style-type: disc;
  padding-left: 1rem; }
  .bullet-list li {
    padding-bottom: 4px; }

.bullet-list-indent {
  font-size: 1rem;
  list-style-type: disc;
  padding-left: 2rem;
  list-style-position: outside; }
  .bullet-list-indent li {
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }

/**
 * Headings
 */
h1 {
  color: #000;
  font: bold 2.25rem "Helvetica", "Arial", sans-serif;
  line-height: 2.25rem;
  margin-bottom: 0.875rem; }

h2 {
  color: #000;
  font: bold 1.75rem "Helvetica", "Arial", sans-serif;
  margin-bottom: 1rem; }

h3 {
  color: #000;
  font: bold 1.375rem "Helvetica", "Arial", sans-serif;
  line-height: 1.5rem;
  margin-bottom: 1rem; }

h4 {
  color: #000;
  font: bold 1.125rem "Helvetica", "Arial", sans-serif;
  margin-bottom: 1rem; }

h5 {
  color: #000;
  font: bold 1rem "Helvetica", "Arial", sans-serif; }

h6 {
  color: #000;
  font: bold 0.75rem "Helvetica", "Arial", sans-serif; }

/**
 * Dividers
 */
hr {
  height: 1px;
  background: #CCCCCC; }
  hr.bold {
    height: 2px;
    background: #000; }

/**
 * Abbreviation base styles
 */
abbr {
  border-bottom: 1px dotted #8C8C8C;
  cursor: help; }

/**
 * Blockquote base styles
 */
blockquote {
  font-style: italic;
  border-left: 1px solid #8C8C8C;
  color: #8C8C8C;
  padding-left: 1rem;
  margin-bottom: 1rem; }

.tooltip__icon {
  position: relative;
  border-radius: 50%;
  border: none;
  float: none;
  box-shadow: none;
  -webkit-transition: box-shadow 0.1s ease-in-out;
  -moz-transition: box-shadow 0.1s ease-in-out;
  -ms-transition: box-shadow 0.1s ease-in-out;
  -o-transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out; }
  .tooltip__icon:hover {
    border-radius: 50%;
    box-shadow: 0 0 10px goldenrod; }

.tooltip__icon:focus > .tooltip__message, .tooltip__icon:hover > .tooltip__message {
  display: block;
  position: absolute; }

.tooltip__message {
  display: none;
  margin: 0;
  padding: 0.75rem 0.75rem 0 0.75rem;
  left: 46px;
  top: -28px;
  background: #fff;
  border: 2px solid #CCCCCC;
  z-index: 2;
  min-width: 300px;
  text-align: left; }
  .tooltip__message:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-right: 1.25rem solid #CCCCCC;
    left: -21px;
    top: 1.375rem; }
  .tooltip__message:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0.875rem solid transparent;
    border-bottom: 0.875rem solid transparent;
    border-right: 1.125rem solid #fff;
    left: -18px;
    top: 1.5rem;
    /*
    content: '\2715';
    position: absolute;
    top:10px;
    right:12px;
    color: $color-gray-65;
    cursor: pointer;
    */ }
  .tooltip__message table, .tooltip__message tr, .tooltip__message td {
    border: none;
    margin: 0.5rem 0;
    padding: 4px 0; }

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

#pleasewait {
  width: 100%;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8); }
  #pleasewait p {
    margin: 50vh 0 0;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    height: 300px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
    @media (min-width: 40em) {
      #pleasewait p {
        width: 700px; } }
    #pleasewait p:before {
      top: -80px;
      background-image: url(../images/please-wait.svg);
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      width: 62px;
      height: 62px;
      background-position: 0 0;
      background-size: 62px 62px;
      background-color: transparent;
      background-repeat: no-repeat;
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      animation: spin 1.5s linear infinite;
      animation-delay: 0s; }

ul.payment-breakdown-list li {
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  padding: 20px 50px 20px 34px; }
  ul.payment-breakdown-list li * {
    margin: 0; }
  ul.payment-breakdown-list li > * {
    font-size: 14px;
    font-weight: normal; }
  ul.payment-breakdown-list li > h3 {
    font-weight: bold;
    padding-bottom: 10px; }
  ul.payment-breakdown-list li > svg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 20px;
    left: 0; }
  ul.payment-breakdown-list li > svg + * {
    color: #767676; }
  ul.payment-breakdown-list li a {
    background: none;
    border: 0 none;
    color: #CC0000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: bold;
    display: inline-block;
    padding: 12px 10px;
    line-height: 1.25rem;
    -webkit-transition: color 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 0; }
    ul.payment-breakdown-list li a:hover {
      background-image: none;
      border: 0 none;
      text-decoration: none;
      color: #EB0000; }
    ul.payment-breakdown-list li a:active, ul.payment-breakdown-list li a:focus {
      background-image: none;
      border: 0 none;
      text-decoration: none; }
  @media (min-width: 768px) {
    ul.payment-breakdown-list li .edit-txt-link,
    ul.payment-breakdown-list li a {
      position: static; } }

ul.transaction-list li {
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0;
  color: #767676;
  line-height: 1.2; }
  ul.transaction-list li:after {
    content: "";
    display: table;
    clear: both; }
  ul.transaction-list li:first-child {
    padding-top: 0; }
  ul.transaction-list li strong {
    color: #1E1E1E;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6; }
    ul.transaction-list li strong:after {
      content: "";
      display: table;
      clear: both; }
  ul.transaction-list li strong, ul.transaction-list li span {
    display: block; }
  ul.transaction-list li span > span {
    display: inline; }
  ul.transaction-list li .txn-party, ul.transaction-list li .txn-date {
    float: left;
    width: 70%; }
  ul.transaction-list li .txn-cur, ul.transaction-list li .txn-bal {
    float: right;
    width: 30%;
    clear: right;
    text-align: right; }

/*
 * Accordion
 */
.icon-plus:before {
  content: "+"; }

.icon-minus:before {
  content: "-"; }

.icon-caret-up, .icon-caret-down {
  background-repeat: no-repeat;
  background-position: right center;
  width: 18px;
  height: 11px; }

.icon-caret-filled-right, .icon-caret-filled-down {
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-size: 8px 14px;
  width: 14px;
  height: 25px; }

.icon-caret-up {
  background-image: url(../images/icons/icon-small-caret-up.svg);
  display: inline-block; }

.icon-caret-down {
  background-image: url(../images/icons/icon-small-caret-down.svg); }

.icon-caret-filled-right {
  background-image: url(../images/icons/icon-caret-filled-right.svg);
  display: inline-block; }

.icon-caret-filled-down {
  background-image: url(../images/icons/icon-caret-filled.svg);
  background-size: 14px 8px; }

.icon-plus:before, .icon-minus:before {
  vertical-align: 6%;
  display: inline-block;
  width: 0.75rem; }

.accordion {
  border-bottom: 1px solid #ccc;
  /* Remove some borders for accordions within accordions */ }
  .accordion .item-title {
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: all 0 ease-in;
    transition: none;
    font-size: 1em;
    display: block;
    border-top: 1px solid #ccc;
    padding: .75em 0;
    line-height: 1.8;
    color: #CC0000; }
    .accordion .item-title [class^="icon-"],
    .accordion .item-title [class*=" icon-"] {
      color: #CC0000; }
    .accordion .item-title:hover, .accordion .item-title:focus, .accordion .item-title.active {
      text-decoration: none;
      color: #EB0000; }
      .accordion .item-title:hover .icon-caret-filled-right, .accordion .item-title:focus .icon-caret-filled-right, .accordion .item-title.active .icon-caret-filled-right {
        background-image: url(../images/icons/icon-caret-filled-right-red.svg); }
    .accordion .item-title .icon-minus {
      display: none; }
    .accordion .item-title.active .icon-plus, .accordion .item-title.active .icon-caret-up, .accordion .item-title.active .icon-caret-filled-right {
      display: none; }
    .accordion .item-title.active .icon-caret-filled-down {
      background-image: url(../images/icons/icon-caret-filled-red.svg); }
    .accordion .item-title.active .icon-minus, .accordion .item-title.active .icon-caret-down, .accordion .item-title.active .icon-caret-filled-down {
      display: inline-block; }
      .ie7 .accordion .item-title.active .icon-minus, .ie7 .accordion .item-title.active .icon-caret-down, .ie7 .accordion .item-title.active .icon-caret-filled-down {
        display: inline-block;
        zoom: 1;
        display: inline;
        vertical-align: middle; }
    .accordion .item-title.active.accordionDetailText span {
      display: none; }
    .accordion .item-title.active.accordionDetailText:before {
      content: "Hide Details"; }
    .touch .accordion .item-title:focus {
      background-color: transparent; }
    .no-touch .accordion .item-title:hover, .no-touch .accordion .item-title:focus {
      color: #CC0000;
      text-decoration: none;
      background-color: transparent;
      outline: 0; }
      .no-touch .accordion .item-title:hover [class^="icon-"],
      .no-touch .accordion .item-title:hover [class*=" icon-"], .no-touch .accordion .item-title:focus [class^="icon-"],
      .no-touch .accordion .item-title:focus [class*=" icon-"] {
        color: #CC0000; }
  .accordion .item-content {
    display: none;
    padding: 0 0 0 1rem;
    margin: 0 0 1rem;
    /* calculator*/ }
    .accordion .item-content .creatinine-calculator fieldset {
      padding-bottom: .5em;
      border-bottom: 1px solid #ccc;
      margin-bottom: 1em; }
    .accordion .item-content p {
      margin: 0;
      padding: 0; }
      .accordion .item-content p.profile--optin__consent--addntext {
        margin-top: 0;
        margin-left: 2.1rem;
        margin-bottom: 0.5rem; }
      .accordion .item-content p.subtext {
        margin: 1rem 0 0; }
      .accordion .item-content p.profile--optin__email--link {
        margin-bottom: 1rem; }
    .accordion .item-content .item-content__ul {
      list-style-type: disc;
      margin: 0.5rem 0.875rem;
      font-size: 1rem; }
      .accordion .item-content .item-content__ul li {
        margin: 0.5rem 0; }
    .accordion .item-content .whiteboard-video {
      margin: 1rem 0 0;
      position: relative;
      padding-bottom: 56.25%;
      padding-top: 25px;
      height: 0; }
      .accordion .item-content .whiteboard-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  .accordion .accordion {
    border-bottom: 0; }
    .accordion .accordion .item-title:first-child {
      border-top: 0; }

.accordion--link {
  border: none; }
  .accordion--link > a {
    font-weight: bold; }
  .accordion--link p {
    font-weight: normal; }
  .accordion--link .item-title {
    border-top: none;
    color: #000;
    text-decoration: none; }
  .accordion--link .item-content {
    padding: 0 0 0 1.5rem; }

.dialog[aria-hidden="true"] {
  display: none; }

.dialog-overlay {
  z-index: 562;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.dialog-content {
  background-color: white;
  z-index: 563;
  overflow-y: auto;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto; }

.dialog-content {
  max-width: 90%;
  width: 600px;
  padding: 2.5em; }
  @media screen and (max-width: 40em) {
    .dialog-content {
      max-width: 100%;
      width: 100%;
      position: fixed;
      top: 0;
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden; } }
  .dialog-content p:last-child button {
    margin-top: 16px; }
    .dialog-content p:last-child button.action-link {
      margin-left: .5rem;
      color: #CC0000;
      margin-top: 0px; }
      .dialog-content p:last-child button.action-link:hover {
        color: #A50000; }
  .dialog-content-wide {
    width: 80%; }
    @media screen and (max-width: 40em) {
      .dialog-content-wide {
        width: 100%; } }

.dialog-overlay {
  background-color: rgba(0, 0, 0, 0.8); }

.dialog h1 {
  margin: 0;
  font-size: 1.25em; }

.dialog-close {
  background-color: #fff;
  background-image: url("../images/icons/icon-close.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  width: 30px;
  border: none;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 2;
  outline: 0; }
  .dialog-close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer; }

.dialog-content button.btn-link {
  margin-left: 1rem; }
  @media screen and (max-width: 40em) {
    .dialog-content button.btn-link {
      margin-left: 0;
      margin-top: 1rem; } }

.dialog-content__btn-container {
  margin: 1rem 0 0 0;
  text-align: center; }

.welcome_signin {
  color: #fff;
  background: url("../images/welcome_bg-small.png");
  background-position: 50%;
  padding: 0;
  margin-top: 28px;
  width: 100%;
  height: 70vmin; }
  @media screen and (min-width: 320px) and (max-width: 40em) {
    .welcome_signin {
      height: 50vmin;
      background-size: 110%;
      background-position: 50% top;
      margin-left: -1rem;
      margin-top: -14px;
      width: calc(100% + 2rem); } }
  @media screen and (min-width: 40em) {
    .welcome_signin {
      background: url("../images/welcome_bg.png");
      background-position: 68% 20%;
      background-size: cover;
      padding: 32px 24px;
      height: auto; } }
  .welcome_signin:after {
    content: "";
    display: table;
    clear: both; }
  .welcome_signin .primary-btn {
    display: block; }

@media screen and (max-width: 40em) {
  .welcome_signin_text {
    margin-left: -1rem;
    width: calc(100% + 2rem); } }

.welcome_signin_text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px; }
  @media screen and (max-width: 40em) {
    .welcome_signin_text h2 {
      font-size: 22px;
      background-color: #222A35;
      padding: 0.5rem 1rem;
      margin-bottom: 0; } }

.welcome_signin_text p {
  color: #fff; }
  @media screen and (max-width: 40em) {
    .welcome_signin_text p {
      background-color: #222A35;
      padding: 0.5rem 1rem; } }

@media screen and (max-width: 40em) {
  .welcome_signin_text h2 {
    padding: 1rem 1rem 0; }
  .welcome_signin_text p {
    padding: 0.5rem 1rem 1rem; } }

.welcome_signin--signin_form {
  background: #fff;
  padding: 1rem 1rem 0;
  display: inline-block;
  width: 100%; }
  .welcome_signin--signin_form input.text-field {
    margin-bottom: 1rem; }
    .welcome_signin--signin_form input.text-field.input-validation-error {
      margin-bottom: 0; }
  .welcome_signin--signin_form a {
    font-weight: normal;
    text-decoration: underline; }
  .welcome_signin--signin_form button {
    margin: 1rem 0; }
  @media screen and (min-width: 40em) {
    .welcome_signin--signin_form {
      width: 100%;
      max-width: 324px; } }
  @media screen and (max-width: 40em) {
    .welcome_signin--signin_form {
      padding: 0 1rem; } }

@media screen and (min-width: 40em) {
  .welcome_signin--signin_form .form_input-container input,
  .welcome_signin--signin_form .form_input-container textarea {
    max-width: 100%; } }

.welcome_secondary {
  padding: 20px 1.5rem 0; }
  @media screen and (max-width: 40em) {
    .welcome_secondary {
      padding: 0.5rem 0; } }
  .welcome_secondary:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (max-width: 40em) {
    .welcome_secondary .myomniview_content-block {
      background: #f2f2f2;
      padding: 1rem;
      margin-bottom: 0.5rem;
      margin-left: -1rem;
      width: calc(100% + 2rem); } }

.dashboard_welcome {
  margin-bottom: 2rem; }

.whiteboard-video-box {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  padding-right: 6%;
  border: 1px solid #ccc; }
  .whiteboard-video-box .close-button {
    background-color: #fff;
    background-image: url(../images/icons/icon-close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 20px;
    width: 20px;
    border: none;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 0;
    padding: 0;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 2;
    outline: 0; }
  .whiteboard-video-box p.title-text {
    margin-bottom: 0;
    font-weight: 600;
    color: #000; }
  .whiteboard-video-box .whiteboard-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0; }
    .whiteboard-video-box .whiteboard-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.dashboard_primary-content {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc; }
  @media (max-width: 40em) {
    .dashboard_primary-content {
      margin-bottom: 0;
      border: none;
      padding-bottom: 0; } }
  .dashboard_primary-content:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (max-width: 40em) {
    .dashboard_primary-content .navlist {
      margin: 0 -16px; } }

.dashboard_payment-center {
  background: #f2f2f2;
  padding: 1.25rem;
  /*
  p {
    font-size: font(14);
  }
  

  h3 {
    @media screen and (max-width: 40em) {
      border-bottom: 2px solid #000;
      padding-bottom: space(8);
      margin: 0;
    }
  }

  .modal__content {
      h3 {
        border-bottom: 0;
      }
    }

  h5 {
    border-bottom: 2px solid #000;
    padding-bottom: space(8);
  }
  /*
  p {
    color: #767676;
  } 
  */ }
  .dashboard_payment-center table {
    border: 0;
    font-weight: bold;
    margin-bottom: 1rem; }
  .dashboard_payment-center tr {
    border-bottom: 1px solid #CCCCCC; }
  .dashboard_payment-center td {
    border: 0;
    font-weight: bold;
    padding: 0.25rem 0; }
    .dashboard_payment-center td:last-of-type {
      text-align: right; }
  .dashboard_payment-center th {
    display: none; }
  .dashboard_payment-center button.forward-link {
    margin-top: 1rem; }
    @media screen and (max-width: 40em) {
      .dashboard_payment-center button.forward-link {
        display: none; } }
  @media screen and (max-width: 40em) {
    .dashboard_payment-center button.primary-btn {
      margin-top: 1rem; } }
  @media screen and (max-width: 40em) {
    .dashboard_payment-center {
      padding: 1.25rem 1rem 0.5rem;
      margin: 0 -16px; } }

.dashboard_messages span.number {
  font-weight: bold; }

.dashboard_messages .nav-list-item {
  padding: 0.5rem 2rem 0.5rem 0; }
  .dashboard_messages .nav-list-item:after, .dashboard_messages .nav-list-item:before {
    color: #9b9b9b; }

.dashboard_messages .date {
  color: #9b9b9b;
  font-weight: normal; }
  @media screen and (max-width: 56.5em) {
    .dashboard_messages .date {
      display: block; } }

.dashboard_messages .warning {
  text-transform: uppercase;
  font-weight: normal;
  padding-right: 0.5rem;
  display: block; }

.dashboard_messages .counter {
  color: #CC0000; }

a.nav-list-item .counter {
  color: #CC0000;
  font-weight: normal; }

.myomniview_create-account-copy ul {
  margin-top: 0; }
  .myomniview_create-account-copy ul li {
    padding: 0 0 0.5rem 0.5rem;
    margin-left: 1rem;
    list-style: disc;
    font-size: 1rem; }

.messageItem, .messageItem--flag, .messageItem--bullet, .messageItem--none {
  margin-left: 1.5rem;
  margin-right: 0.5rem;
  position: relative;
  /* note there are classes to show/hide the different sections for the message,
      but I didn't choose to utilize them and instead use a true/false in the json.
      The classes however are left in just in case somebody needs them. */ }
  .messageItem__action, .messageItem--flag__action, .messageItem--bullet__action, .messageItem--none__action {
    text-transform: uppercase;
    color: #CC0000; }
  .messageItem__description, .messageItem--flag__description, .messageItem--bullet__description, .messageItem--none__description {
    font-weight: bold;
    font-size: 1rem; }
  .messageItem__datetime, .messageItem--flag__datetime, .messageItem--bullet__datetime, .messageItem--none__datetime {
    color: #767676; }
  .messageItem__message, .messageItem--flag__message, .messageItem--bullet__message, .messageItem--none__message {
    padding-top: 0.5rem; }
  .messageItem__showLink, .messageItem--flag__showLink, .messageItem--bullet__showLink, .messageItem--none__showLink {
    padding: 0.75rem 0 0; }
    @media (max-width: 25em) {
      .messageItem__showLink .hidden, .messageItem--flag__showLink .hidden, .messageItem--bullet__showLink .hidden, .messageItem--none__showLink .hidden {
        display: none; } }
  .messageItem__attachment, .messageItem--flag__attachment, .messageItem--bullet__attachment, .messageItem--none__attachment {
    margin: 0.5rem 0; }
    .messageItem__attachment a, .messageItem--flag__attachment a, .messageItem--bullet__attachment a, .messageItem--none__attachment a {
      font-weight: normal;
      text-decoration: underline; }
  .messageItem__invoice, .messageItem--flag__invoice, .messageItem--bullet__invoice, .messageItem--none__invoice {
    font-size: 1rem; }
    .messageItem__invoice-key, .messageItem--flag__invoice-key, .messageItem--bullet__invoice-key, .messageItem--none__invoice-key {
      display: inline-block;
      min-width: 100px; }
  .messageItem__message--hide, .messageItem__showLink--hide, .messageItem--flag__message--hide, .messageItem--flag__showLink--hide, .messageItem--bullet__message--hide, .messageItem--bullet__showLink--hide, .messageItem--none__message--hide, .messageItem--none__showLink--hide {
    display: none; }
  .messageItem--flag:before, .messageItem--flag--flag:before, .messageItem--bullet--flag:before, .messageItem--none--flag:before {
    content: "";
    background: url(../images/icons/icon-selected.svg) top center no-repeat;
    position: absolute;
    left: -21px;
    top: 3px;
    height: 20px;
    width: 20px; }
  .messageItem--bullet:before, .messageItem--flag--bullet:before, .messageItem--bullet--bullet:before, .messageItem--none--bullet:before {
    content: "\2022";
    font-size: 2.625rem;
    /*font-size: 42px;*/
    margin: 0 0 0 -20px;
    float: left;
    line-height: 20px; }
  .messageItem__list, .messageItem--flag__list, .messageItem--bullet__list, .messageItem--none__list {
    font-size: 1rem;
    line-height: 24px; }

@media screen and (max-width: 40em) {
  .messageCenter_content-block {
    margin: 0 -16px; } }

.messageCenter_blocktItem {
  margin: 1rem 0;
  border-bottom: 1px solid #CCCCCC; }
  @media (max-width: 40em) {
    .messageCenter_blocktItem {
      border-bottom: 3px solid #CCCCCC; } }

.messageCenter__footer {
  margin: 0.5rem;
  background-color: #f2f2f2;
  line-height: 2.5em;
  text-align: right; }
  .messageCenter__footer--hide {
    display: none; }
  .messageCenter__footer .text-btn--grey {
    color: #222222; }
    .messageCenter__footer .text-btn--grey--sm {
      color: #222222;
      font-size: 0.75rem; }

.messageCenter__footerItem {
  text-align: left; }

.messageCenter__footerItem--left, .messageCenter__footerItem--right {
  display: inline-block;
  padding: 0 1rem; }

.messageCenter__footerItem--left {
  float: left; }
  @media (max-width: 25em) {
    .messageCenter__footerItem--left .hidden {
      display: none; } }

.payment-center--patient-select, .payment-center--statement-select {
  margin-bottom: 2rem; }
  .payment-center--patient-select label, .payment-center--statement-select label {
    display: block; }

.payment-center--resident-data {
  padding: 1rem;
  margin-bottom: 4rem; }
  .payment-center--resident-data .accordion .item-content {
    padding: 0;
    margin: 0 0 2rem; }
    .payment-center--resident-data .accordion .item-content .payment-center--balance p.payment-center--title, .payment-center--resident-data .accordion .item-content .payment-center--resident p.payment-center--title {
      margin: 0 0 0 0; }
    .payment-center--resident-data .accordion .item-content p.payment-center--title {
      margin: 1.25rem 0 0 0; }
    .payment-center--resident-data .accordion .item-content h3.payment-center--current-balance {
      margin-bottom: 0; }
  .payment-center--resident-data .accordion .item-title.page-level {
    border-top: 0;
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    padding-left: 0.333rem; }
    .payment-center--resident-data .accordion .item-title.page-level .icon-caret-up {
      background-image: url("../images/icons/icon-caret-filled-right.svg");
      background-size: 40%;
      width: 19px;
      height: 12px; }
    .payment-center--resident-data .accordion .item-title.page-level .icon-caret-down {
      background-image: url("../images/icons/icon-caret-filled.svg");
      background-size: 75%;
      background-position: center;
      width: 19px;
      height: 12px; }
  @media screen and (min-width: 40em) {
    .payment-center--resident-data {
      background-color: #f2f2f2; } }
  @media screen and (max-width: 40em) {
    .payment-center--resident-data {
      padding: 0;
      margin-bottom: 0; }
      .payment-center--resident-data button {
        margin-top: 1rem; }
      .payment-center--resident-data .dialog-close {
        margin-top: 0; } }
  .payment-center--resident-data--account-due {
    background-color: #f2f2f2; }
    .payment-center--resident-data--account-due .myomniview_960-container {
      margin-top: 0; }
  .payment-center--resident-data--secondary {
    background-color: #f2f2f2;
    padding: 0.75rem;
    margin-bottom: 1rem; }
    @media screen and (max-width: 40em) {
      .payment-center--resident-data--secondary {
        background-color: #fff;
        border: 1px solid #CCCCCC;
        margin-top: 1rem; } }
    .payment-center--resident-data--secondary h3.payment-center--current-balance {
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0; }
  @media screen and (max-width: 40em) {
    .payment-center--resident-data p.subtext {
      padding-bottom: 1rem;
      border-bottom: 1px solid #CCCCCC; } }

.payment-center--resident-name {
  font-weight: normal; }
  @media screen and (max-width: 40em) {
    .payment-center--resident-name {
      font-size: 1.125rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #CCCCCC; } }

.payment-center--current-balance {
  margin-top: 0.5rem;
  font-size: 2.25rem; }
  @media screen and (max-width: 40em) {
    .payment-center--current-balance {
      font-size: 1.125rem;
      font-weight: normal;
      margin-top: 0; } }

.payment-center--balance-date p {
  text-align: right; }

.payment-center--title {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: bold; }

.payment-center--account-information {
  min-height: 270px;
  margin-bottom: 4rem; }
  .payment-center--account-information .accordion .item-content {
    padding: 0;
    margin: 0; }
    .payment-center--account-information .accordion .item-content .modal__content p {
      margin-bottom: 1rem;
      font-size: 0.875rem; }
  .payment-center--account-information .accordion .item-title.page-level {
    border-top: 0;
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    padding-left: 0.333rem; }
    .payment-center--account-information .accordion .item-title.page-level .icon-caret-up {
      background-image: url("../images/icons/icon-caret-filled-right.svg");
      background-size: 40%;
      width: 19px;
      height: 12px; }
    .payment-center--account-information .accordion .item-title.page-level .icon-caret-down {
      background-image: url("../images/icons/icon-caret-filled.svg");
      background-size: 75%;
      background-position: center;
      width: 19px;
      height: 12px; }
  .payment-center--account-information h5 {
    padding-bottom: 0.5rem; }
    @media screen and (max-width: 40em) {
      .payment-center--account-information h5 {
        padding: 0 1rem 0.5rem; } }
  .payment-center--account-information p.payment-center--selected-date {
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000; }
    @media screen and (max-width: 40em) {
      .payment-center--account-information p.payment-center--selected-date {
        padding: 0 1rem 0.5rem; } }
  .payment-center--account-information .secondary {
    padding-top: 1rem;
    background-color: #f2f2f2; }
    .payment-center--account-information .secondary .accordion {
      border-bottom: 0; }
    .payment-center--account-information .secondary table {
      margin-top: 0; }
      .payment-center--account-information .secondary table td {
        text-align: right; }

.payment-center--tables {
  margin-bottom: 3rem; }
  .payment-center--tables table {
    margin-top: 2rem;
    border: 0; }
  .payment-center--tables th {
    border: 0;
    padding: 0 0.5rem 0.5rem 0; }
    @media screen and (min-width: 40em) and (max-width: 45em) {
      .payment-center--tables th {
        font-size: 0.75rem; }
        .payment-center--tables th .btn-info--ghost:before {
          left: 40px; } }
    .payment-center--tables th a {
      font-weight: bold;
      color: #000; }
  .payment-center--tables td {
    border: 0;
    padding: 0.5rem 1.5rem 0.5rem 0; }
    @media screen and (min-width: 40em) and (max-width: 45em) {
      .payment-center--tables td {
        font-size: 0.75rem; } }
    .payment-center--tables td a {
      font-weight: normal;
      color: #CC0000; }
  .payment-center--tables tr {
    border-bottom: 1px solid #CCCCCC; }
  .payment-center--tables--NDC {
    white-space: nowrap; }

.payment-center--list table {
  margin-top: 1rem;
  border: 0; }

.payment-center--list tr {
  border-bottom: 0; }

.payment-center--list th {
  border: 0;
  font-weight: normal;
  color: #333333;
  padding: 0 0 0 1rem;
  vertical-align: baseline; }
  .payment-center--list th a {
    color: #000;
    font-weight: normal; }

.payment-center--list td {
  border: 0;
  color: #333333;
  padding: 0 1rem 0 0;
  width: 50%; }
  .payment-center--list td a {
    font-weight: normal;
    color: #CC0000; }
  .payment-center--list td.date {
    font-weight: bold; }

.payment-center--list .accordion {
  padding: 0 1rem;
  border-bottom: 2px solid #CCCCCC;
  font-size: 0.75rem; }
  .payment-center--list .accordion a,
  .payment-center--list .accordion a:active,
  .payment-center--list .accordion a:focus,
  .payment-center--list .accordion a:hover,
  .payment-center--list .accordion a:visited {
    color: #333333;
    text-decoration: none; }
  .payment-center--list .accordion .item-title {
    color: #333333;
    padding: 0;
    margin: 1rem 0;
    display: inline-block;
    text-decoration: none;
    font-size: 0.75rem;
    border: none; }
  .payment-center--list .accordion table {
    margin-top: 0;
    font-size: 0.875rem; }
    .payment-center--list .accordion table th {
      padding-left: 0; }
      .payment-center--list .accordion table th a,
      .payment-center--list .accordion table th a:hover {
        text-decoration: underline; }
    .payment-center--list .accordion table td {
      padding-right: 0; }
  .payment-center--list .accordion table.payment-center--total-due {
    margin-top: 0.5rem; }
    .payment-center--list .accordion table.payment-center--total-due td,
    .payment-center--list .accordion table.payment-center--total-due th {
      border-top: 1px solid #333333;
      color: #333333;
      font-weight: bold;
      padding-top: 0.5rem; }

.payment-center--secondary-button p.subtext {
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #f2f2f2;
  border-bottom: 2px solid #CCCCCC; }

.payment-center--statement-optionlist {
  display: inline-block; }
  .payment-center--statement-optionlist select {
    min-width: 250px; }

.payment-center--statement-pdf {
  display: inline-block;
  margin-left: 2rem; }
  .payment-center--statement-pdf a {
    text-decoration: none; }

.profile__form .check-radio-label,
.profile--optin__form .check-radio-label {
  margin-top: 1rem; }

.profile__form button + button,
.profile--optin__form button + button {
  margin-left: 2rem; }
  @media screen and (max-width: 40em) {
    .profile__form button + button,
    .profile--optin__form button + button {
      margin-left: 0;
      width: 100%;
      text-align: center;
      padding: 0.5rem 0; } }

.profile__consent, .profile__consent-notifications,
.profile--optin__consent,
.profile--optin__consent-notifications {
  border-top: 1px solid #CCCCCC;
  margin: 4rem 0 0 0;
  padding-top: 2rem; }
  .profile__consent .check-radio-label, .profile__consent--addntext, .profile__consent-notifications .check-radio-label, .profile__consent-notifications--addntext,
  .profile--optin__consent .check-radio-label,
  .profile--optin__consent--addntext,
  .profile--optin__consent-notifications .check-radio-label,
  .profile--optin__consent-notifications--addntext {
    color: #767676;
    font-weight: normal;
    line-height: 1.125rem;
    font-size: 0.875rem;
    margin-top: 0;
    margin-left: 2.1rem;
    margin-bottom: 0.5rem;
    position: relative; }
  .profile__consent .fake-input, .profile__consent-notifications .fake-input,
  .profile--optin__consent .fake-input,
  .profile--optin__consent-notifications .fake-input {
    position: absolute;
    top: 0;
    left: -2.3125rem; }

.profile__consent-notifications,
.profile--optin__consent-notifications {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
  margin-left: 40px; }

.profile__email,
.profile--optin__email {
  margin-left: 2.3125rem; }
  .profile__email--address,
  .profile--optin__email--address {
    font-size: 1rem;
    margin-bottom: 0; }
  .profile__email--link,
  .profile--optin__email--link {
    font-size: 0.75rem;
    color: #767676; }
    .profile__email--link a,
    .profile--optin__email--link a {
      font-weight: normal;
      text-decoration: underline; }

.profile__mobile--number, .profile__notifications,
.profile--optin__mobile--number,
.profile--optin__notifications {
  margin-left: 2.3125rem; }
  .profile__mobile--number label, .profile__notifications label,
  .profile--optin__mobile--number label,
  .profile--optin__notifications label {
    font-weight: bold; }
  .profile__mobile--number input, .profile__notifications input,
  .profile--optin__mobile--number input,
  .profile--optin__notifications input {
    display: block; }
    @media screen and (min-width: 40em) and (max-width: 45em) {
      .profile__mobile--number input, .profile__notifications input,
      .profile--optin__mobile--number input,
      .profile--optin__notifications input {
        max-width: 67%; } }
    @media screen and (min-width: 45em) and (max-width: 52em) {
      .profile__mobile--number input, .profile__notifications input,
      .profile--optin__mobile--number input,
      .profile--optin__notifications input {
        max-width: 55%; } }
    @media screen and (min-width: 52em) {
      .profile__mobile--number input, .profile__notifications input,
      .profile--optin__mobile--number input,
      .profile--optin__notifications input {
        max-width: 43%; } }

.profile__notifications,
.profile--optin__notifications {
  margin-top: -7px; }
  .profile__notifications .check-radio-label,
  .profile--optin__notifications .check-radio-label {
    font-weight: normal;
    margin: 0;
    padding: 0; }

.profile__submit,
.profile--optin__submit {
  padding-top: 2rem; }
  @media (max-width: 40em) {
    .profile__submit,
    .profile--optin__submit {
      margin-bottom: 1.25rem; } }

.profile__checkbox li,
.profile--optin__checkbox li {
  position: relative;
  margin-bottom: 32px; }

.profile__checkbox .checkbox__info,
.profile--optin__checkbox .checkbox__info {
  padding: 0 0 0 37px;
  margin-top: -7px; }

.profile__checkbox--divider,
.profile--optin__checkbox--divider {
  border-top: 1px dashed #ccc;
  padding-top: 24px; }
  .profile__checkbox--divider .checkbox__info,
  .profile--optin__checkbox--divider .checkbox__info {
    padding: 24px 0 0 37px; }

.profile__checkbox--longtext .check-radio-label,
.profile--optin__checkbox--longtext .check-radio-label {
  position: relative; }
  .profile__checkbox--longtext .check-radio-label .fake-input,
  .profile--optin__checkbox--longtext .check-radio-label .fake-input {
    position: absolute;
    top: 0;
    left: 0; }

.profile__checkbox--text,
.profile--optin__checkbox--text {
  line-height: 20px;
  font-weight: normal;
  display: inline-block;
  padding-left: 37px; }

.myomniview_content-block.content-block__profile {
  margin-bottom: 34px; }

@media (max-width: 40em) {
  .mobile-linkList {
    margin-bottom: 0px; }
    .mobile-linkList__li {
      border-top: 1px solid #CCCCCC;
      margin: 0 -18px;
      padding: 4px 1.125rem; }
      .mobile-linkList__li:last-child {
        border-bottom: 1px solid #CCCCCC; }
      .mobile-linkList__li .forward-link {
        width: 100%; }
      .mobile-linkList__li .text-btn {
        color: #000; } }

.myomniview-back-link {
  margin-bottom: 1rem; }
  @media (max-width: 40em) {
    .myomniview-back-link {
      display: none; } }

.myomniview-back-link__general {
  margin: 0 0 1rem; }

.myomniview-spacer__12 {
  margin: 0.75rem 0; }

.resident-info, .prescription-list {
  margin: 0 0 2rem; }
  .resident-info__table, .prescription-list__table {
    display: table;
    width: 100%;
    line-height: 1.5;
    margin-bottom: 0.5rem; }
  .resident-info__tr, .prescription-list__tr {
    display: table-row; }
  .resident-info__td, .resident-info__td--list, .prescription-list__td, .prescription-list__td--list {
    display: table-cell;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1rem; }
    .resident-info__td strong, .resident-info__td--list strong, .prescription-list__td strong, .prescription-list__td--list strong {
      font-size: 0.875rem; }
  .resident-info__td--list, .prescription-list__td--list {
    width: 100px; }
  .resident-info__selctResident, .prescription-list__selctResident {
    background-color: #f2f2f2;
    padding: 18px 24px 24px;
    margin: 0 0 20px; }
    .resident-info__selctResident select, .prescription-list__selctResident select {
      display: block; }
    @media (max-width: 40em) {
      .resident-info__selctResident, .prescription-list__selctResident {
        padding: 18px 1rem 4px 1rem; } }
  .resident-info__list--title, .prescription-list__list--title {
    background: #fff;
    margin: 0;
    padding: 1.25rem 1rem 0.5rem 0; }
    @media (max-width: 40em) {
      .resident-info__list--title, .prescription-list__list--title {
        margin: 0 -1rem;
        padding-left: 1rem; } }
  .resident-info__header, .prescription-list__header {
    display: table;
    width: 100%;
    border-bottom: 3px solid #767676; }
    .resident-info__header + .resident-info, .prescription-list__header + .resident-info {
      margin-top: 18px; }
    .resident-info__header--title, .resident-info__header--buttons, .prescription-list__header--title, .prescription-list__header--buttons {
      display: table-cell;
      vertical-align: middle; }
    .resident-info__header--pdf, .resident-info__header--export, .prescription-list__header--pdf, .prescription-list__header--export {
      text-align: right;
      float: right;
      margin-bottom: 1px; }
    .resident-info__header--pdf button, .prescription-list__header--pdf button {
      padding-right: 0; }
  @media (max-width: 40em) {
    .resident-info, .prescription-list {
      margin: 0 0 2rem 0;
      background-color: #f2f2f2;
      padding: 1.25rem 1.25rem 0 1.25rem; } }
  @media (max-width: 40em) and (max-width: 40em) {
    .resident-info, .prescription-list {
      margin: 0 -1rem 0.5rem; } }
  @media (max-width: 40em) {
      .resident-info__tr, .resident-info__tr--border, .prescription-list__tr, .prescription-list__tr--border {
        display: block; }
        .resident-info__tr:nth-last-child, .resident-info__tr--border:nth-last-child, .prescription-list__tr:nth-last-child, .prescription-list__tr--border:nth-last-child {
          border: 1px solid red; }
      .resident-info__tr--border, .prescription-list__tr--border {
        border-top: 1px solid #CCCCCC;
        margin-top: 12px;
        padding-top: 12px;
        width: 97%; }
      .resident-info__td, .resident-info__td--list, .prescription-list__td, .prescription-list__td--list {
        display: table-row;
        height: 1.5rem; }
      .resident-info__td li, .prescription-list__td li {
        display: table-cell;
        min-width: 150px; }
      .resident-info__selctResident, .prescription-list__selctResident {
        margin: 0; } }
    @media (max-width: 40em) and (max-width: 40em) {
      .resident-info__selctResident, .prescription-list__selctResident {
        margin: 0 -16px; } }
  @media (max-width: 40em) {
      .resident-info__header, .prescription-list__header {
        border: none; }
        .resident-info__header--pdf, .resident-info__header--export, .prescription-list__header--pdf, .prescription-list__header--export {
          display: none; } }
  .resident-info .accordion, .prescription-list .accordion {
    text-align: center;
    margin: 0;
    border-bottom: none; }
    .resident-info .accordion .item-title, .prescription-list .accordion .item-title {
      background: #fff;
      color: #333333;
      padding: 4px 1.25rem;
      margin: 0.75rem 0 0 0;
      display: inline-block;
      text-decoration: none;
      font-size: 0.75rem;
      border: none; }
    .resident-info .accordion .item-content, .prescription-list .accordion .item-content {
      text-align: left;
      padding: 0; }

.prescription-list {
  border-top: 3px solid black;
  padding-top: 0.875rem;
  margin: 0;
  min-height: 300px; }
  .prescription-list__table {
    margin-top: 0.5rem;
    border-bottom: 1px solid #CCCCCC; }
    @media (max-width: 40em) {
      .prescription-list__table {
        padding: 0 1rem; } }
  .prescription-list__label {
    color: #767676;
    font-size: 0.875rem; }
  .prescription-list__td {
    padding-right: 1.125rem; }
  .prescription-list__td--cateogry {
    display: table-cell;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    width: 26%;
    vertical-align: top; }
    .prescription-list__td--cateogry .btn-link {
      text-decoration: underline; }
  .prescription-list__td--cateogry > li,
  .prescription-list__link .btn-link {
    font-size: 18px; }
  .prescription-list__td--directions {
    display: table-cell;
    width: 34%;
    font-size: 1rem; }
  .prescription-list .accordion {
    text-align: left;
    border-bottom: none; }
    .prescription-list .accordion .item-title {
      background: #fff;
      color: #333333;
      padding: 4px 1.25rem;
      margin: 0;
      display: inline-block;
      text-decoration: none;
      border: none; }
      @media (max-width: 40em) {
        .prescription-list .accordion .item-title {
          padding-left: 0px; } }
    .prescription-list .accordion .item-content {
      text-align: left; }
    .prescription-list .accordion .prescription-list__table {
      margin: 0;
      padding: 1.25rem 1.25rem 0 1rem;
      border-bottom: none; }
      @media (max-width: 40em) {
        .prescription-list .accordion .prescription-list__table {
          margin: 0 -16px; } }
  @media (max-width: 40em) {
    .prescription-list {
      background-color: white;
      margin: 0;
      padding: 0; }
      .prescription-list__table {
        padding: 10px 1rem 0 1rem;
        margin: 0;
        border-bottom: 3px solid #CCCCCC; }
      .prescription-list__table:last-child {
        margin: 0 0 0.75rem; } }
  .prescription-list--empty {
    padding-top: 0.875rem;
    min-height: 300px; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 300px;
  height: 44px;
  padding: 0 40px 0 10px;
  overflow: hidden;
  border: 2px solid #bbb;
  border-radius: 0;
  color: #000;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
  box-shadow: none;
  line-height: normal;
  background: #fff;
  background-image: url(../images/icons/icon-caret.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 44px; }
  select::-ms-expand {
    display: none; }

.resident-learnmore__imgBox {
  border: 1px solid #333333;
  padding: 1rem; }

@media (max-width: 40em) {
  .resident-info__list {
    margin: 0 -1rem; } }

.resident-info__list--title {
  display: table;
  width: 100%;
  padding: .5rem 0; }
  @media (max-width: 40em) {
    .resident-info__list--title {
      padding: 1rem;
      margin: 0; } }

.resident-info__list--titleH {
  display: table-cell;
  vertical-align: middle; }
  @media (max-width: 40em) {
    .resident-info__list--titleH {
      display: block; } }

.resident-info__list--sort {
  display: table-cell;
  text-align: right;
  width: 50%; }
  @media (max-width: 40em) {
    .resident-info__list--sort {
      display: block;
      text-align: left;
      width: auto; } }

.resident-info__list--tabs {
  border-bottom: 2px solid #CCCCCC;
  padding: 1.25rem 0 0 0;
  background-color: #fff; }

.enrollment-landing {
  margin: 24px auto;
  max-width: 960px;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 1rem; }
  .enrollment-landing__section {
    padding-right: 2rem; }
    @media screen and (max-width: 40em) {
      .enrollment-landing__section {
        padding: 1rem; } }
  .enrollment-landing__nowrap {
    white-space: nowrap; }

.enrollment-hero {
  background: url("../images/enrollment_bg.jpeg") no-repeat top center;
  background-size: cover;
  padding: 20px 0;
  height: 718px; }
  .enrollment-hero__text {
    width: 418px;
    padding: 24px;
    background: rgba(0, 51, 75, 0.8);
    color: white; }
    @media screen and (max-width: 40em) {
      .enrollment-hero__text {
        width: 100%; } }
    .enrollment-hero__text h1, .enrollment-hero__text h2 {
      color: white; }

.enrollment__required {
  color: #CC0000; }

.required-indicator {
  color: #CC0000;
  font-weight: bold; }

.enrollment__header {
  display: table;
  width: 100%; }
  .enrollment__header--title {
    display: table-cell;
    text-align: left; }
  .enrollment__header--pdf {
    display: table-cell;
    text-align: right; }
    .enrollment__header--pdf button, .enrollment__header--pdf a {
      padding-right: 0;
      text-decoration: none; }
  @media screen and (max-width: 40em) {
    .enrollment__header {
      display: block;
      margin-bottom: 1.5rem; }
      .enrollment__header--title {
        display: block; }
      .enrollment__header--pdf {
        display: block; }
        .enrollment__header--pdf button, .enrollment__header--pdf a {
          padding-right: 2rem; } }

.enrollment__section {
  background-color: #f2f2f2;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  margin-bottom: 48px; }
  .enrollment__section--info {
    color: black;
    font-size: 14px;
    font-weight: bold; }
  .enrollment__section .radio-button.radio-button__longlabel .fake-input {
    display: table-cell;
    float: none;
    width: 28px; }
  .enrollment__section .radio-button.radio-button__longlabel .check-radio-label {
    display: table; }
  .enrollment__section .radio-button__longlabel--label {
    display: table-cell;
    vertical-align: top; }
  @media screen and (max-width: 40em) {
    .enrollment__section select {
      max-width: 100%; } }

.enrollment-sidebyside {
  display: table; }
  .enrollment-sidebyside__container {
    display: table-cell;
    padding-right: 24px; }
    .enrollment-sidebyside__container:first-last {
      margin: 0; }
    .enrollment-sidebyside__container input.zip, .enrollment-sidebyside__container input.respzip {
      width: 62px; }
    .enrollment-sidebyside__container select.billingstate, .enrollment-sidebyside__container select.respbillingstate {
      width: 215px; }
    .enrollment-sidebyside__container input.middleInitial {
      width: 46px; }
    .enrollment-sidebyside__container input.lastName {
      width: 230px; }
    @media screen and (max-width: 40em) {
      .enrollment-sidebyside__container {
        display: block;
        padding-right: 0; }
        .enrollment-sidebyside__container input.zip, .enrollment-sidebyside__container input.respzip,
        .enrollment-sidebyside__container select.billingstate, .enrollment-sidebyside__container select.respbillingstate,
        .enrollment-sidebyside__container input.middleInitial,
        .enrollment-sidebyside__container input.lastName {
          width: 100%; } }
  @media screen and (max-width: 40em) {
    .enrollment-sidebyside {
      display: block; } }

.enrollment__terms {
  display: inline; }
  .enrollment__terms .check-radio-label {
    position: relative; }
  .enrollment__terms--longtext {
    margin-left: 40px; }
  .enrollment__terms .fake-input {
    position: absolute;
    top: 2px; }

.enrollment__expand {
  padding-top: 2rem;
  display: none; }
  .enrollment__expand ul.checkbox {
    margin: 1.5rem 0; }
  .enrollment__expand .infoLink {
    padding-left: 1rem; }
    @media screen and (max-width: 40em) {
      .enrollment__expand .infoLink {
        float: right; } }
  .enrollment__expand--caregiver {
    border-bottom: 2px dashed #CCCCCC;
    margin-bottom: 2rem;
    padding-bottom: 2rem; }
    .enrollment__expand--caregiver .checkbox li {
      width: 33%;
      float: left;
      padding: 0 0 12px 40px;
      margin-bottom: 12px; }
      @media screen and (max-width: 40em) {
        .enrollment__expand--caregiver .checkbox li {
          width: 100%; } }
      .enrollment__expand--caregiver .checkbox li label {
        position: relative;
        line-height: 20px; }
      .enrollment__expand--caregiver .checkbox li span {
        margin-left: 0;
        text-indent: -40px; }
        .enrollment__expand--caregiver .checkbox li span .field-validation-error {
          text-indent: 0;
          font-weight: normal; }
      .enrollment__expand--caregiver .checkbox li span.other-input {
        text-indent: 0; }
        .enrollment__expand--caregiver .checkbox li span.other-input input {
          display: inline-block; }
      .enrollment__expand--caregiver .checkbox li .fake-input {
        position: absolute;
        left: 0;
        top: -4px; }
  .enrollment__expand .checkbox__info {
    display: none; }
  .enrollment__expand #removeCaregiver {
    display: none; }

.numbered-list {
  list-style: decimal outside;
  padding-left: 1rem; }
  .numbered-list li {
    padding-bottom: .5rem; }

.intake__info {
  padding: 0.75rem 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 1.125rem 0 1.5rem; }

.intake__info--label {
  font-weight: bold;
  min-width: 125px;
  display: inline-block; }

.intake__section {
  background-color: #f2f2f2;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  margin-bottom: 48px; }
  @media screen and (max-width: 40em) {
    .intake__section select {
      max-width: 100%; } }
  .intake__section select:disabled {
    background-color: #f2f2f2;
    border: 2px solid #CCCCCC; }
  .intake__section select.input-validation-error:disabled, .intake__section textarea.input-validation-error:disabled {
    border: 2px solid #CC0000;
    background-color: #fae6e6; }
  .intake__section .textarea__infoText {
    display: inline-block;
    width: 46%;
    vertical-align: top;
    padding-left: 12px; }
    .intake__section .textarea__infoText p {
      font-size: 0.875rem;
      margin-bottom: 0.5rem; }
    @media screen and (max-width: 60em) {
      .intake__section .textarea__infoText {
        width: 100%;
        padding-left: 0px; } }
    @media screen and (min-width: 42em) {
      .intake__section .textarea__infoText {
        width: 65%; } }
  .intake__section .form_input-container textarea {
    max-width: 300px; }

.intake-sidebyside {
  display: table; }
  .intake-sidebyside__container {
    display: table-cell;
    padding-right: 24px; }
    .intake-sidebyside__container:first-last {
      margin: 0; }
    .intake-sidebyside__container input.zip, .intake-sidebyside__container input.respzip {
      width: 62px; }
    .intake-sidebyside__container select.state {
      width: 215px; }
    .intake-sidebyside__container input.middleInitial {
      width: 46px; }
    .intake-sidebyside__container input.lastName {
      width: 230px; }
    @media screen and (max-width: 40em) {
      .intake-sidebyside__container {
        display: block;
        padding-right: 0; }
        .intake-sidebyside__container input.zip, .intake-sidebyside__container select.state {
          width: 100%; } }
  @media screen and (max-width: 40em) {
    .intake-sidebyside {
      display: block; } }

.intake__terms {
  display: inline; }
  .intake__terms .check-radio-label {
    position: relative; }
  .intake__terms--longtext {
    margin-left: 40px; }
  .intake__terms .fake-input {
    position: absolute;
    top: 2px; }

.intake__expand {
  padding-top: 2rem;
  display: none; }
  .intake__expand ul.checkbox {
    margin: 1.5rem 0; }
  .intake__expand .infoLink {
    padding-left: 1rem; }
    @media screen and (max-width: 40em) {
      .intake__expand .infoLink {
        float: right; } }
  .intake__expand--caregiver {
    border-bottom: 2px dashed #CCCCCC;
    margin-bottom: 2rem;
    padding-bottom: 2rem; }
    .intake__expand--caregiver .checkbox li {
      width: 33%;
      float: left;
      padding: 0 0 12px 40px;
      margin-bottom: 12px; }
      @media screen and (max-width: 40em) {
        .intake__expand--caregiver .checkbox li {
          width: 100%; } }
      .intake__expand--caregiver .checkbox li label {
        position: relative;
        line-height: 20px; }
      .intake__expand--caregiver .checkbox li span {
        margin-left: 0;
        text-indent: -40px; }
        .intake__expand--caregiver .checkbox li span .field-validation-error {
          text-indent: 0;
          font-weight: normal; }
      .intake__expand--caregiver .checkbox li span.other-input {
        text-indent: 0; }
        .intake__expand--caregiver .checkbox li span.other-input input {
          display: inline-block; }
      .intake__expand--caregiver .checkbox li .fake-input {
        position: absolute;
        left: 0;
        top: -4px; }
  .intake__expand .checkbox__info {
    display: none; }
  .intake__expand #removeCaregiver {
    display: none; }

#census-form, #surescripts-form, #vendor-form {
  display: none; }

.numbered-list {
  list-style: decimal outside;
  padding-left: 1rem; }
  .numbered-list li {
    padding-bottom: .5rem; }

.myomniview-login--banner {
  background-color: #00334b;
  padding: 1.125rem;
  color: #fff;
  margin-bottom: 14px; }
  .myomniview-login--banner h2 {
    color: #fff;
    margin-bottom: 0.5rem; }
  .myomniview-login--banner p {
    margin-bottom: 0;
    font-size: 0.875rem; }

.myomniview-login--create {
  background-color: #f2f2f2;
  padding: 1.5rem; }

.myomniview-login--signin {
  padding: 25px 1.5rem 1.5rem 48px; }
  .myomniview-login--signin h1 {
    margin-bottom: 2rem; }
  @media screen and (max-width: 40em) {
    .myomniview-login--signin {
      padding: 24px; } }
  .myomniview-login--signin-form {
    max-width: 300px; }
    @media screen and (max-width: 40em) {
      .myomniview-login--signin-form {
        max-width: 100%; } }
  .myomniview-login--signin .forgot-password {
    margin-bottom: 1.5rem;
    font-weight: normal; }

.myomniview-login h2 {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }

.myomniview-login h4 {
  margin-bottom: 0.75rem; }

.myomniview-login p.no-margin {
  margin: 0; }

.myomniview-login .primary-btn {
  display: inline-block;
  background-color: #CC0000;
  color: #fff;
  cursor: pointer;
  line-height: 48px;
  padding: 0 32px;
  border: 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  -moz-box-shadow: 0 -2px 0 0 #A50000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 -2px 0 0 #A50000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 0 0 #A50000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px; }
  .myomniview-login .primary-btn:hover, .myomniview-login .primary-btn:focus {
    background-color: #EB0000;
    -moz-box-shadow: 0 -2px 0 0 #CC0000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 -2px 0 0 #CC0000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 -2px 0 0 #CC0000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2); }
  .myomniview-login .primary-btn:active {
    background-color: #A50000;
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2); }

.myomniview-login .secondary-btn {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  cursor: pointer;
  line-height: 48px;
  padding: 0 32px;
  border: 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  -moz-box-shadow: 0 -2px 0 0 #000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 -2px 0 0 #000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 0 0 #000 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px; }
  .myomniview-login .secondary-btn:hover, .myomniview-login .secondary-btn:focus {
    background-color: #767676;
    -moz-box-shadow: 0 -2px 0 0 #333333 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 -2px 0 0 #333333 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 -2px 0 0 #333333 inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2); }
  .myomniview-login .secondary-btn:active {
    background-color: #CCCCCC;
    -moz-box-shadow: 0 2px 0 0 darkgray inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 0 0 darkgray inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 0 0 darkgray inset, 0 1px 3px 0 rgba(0, 0, 0, 0.2); }

.myomniview-login .primary-btn, .myomniview-login .secondary-btn {
  margin-bottom: 24px;
  width: 100%; }

@media screen and (max-width: 40em) {
  .myomniview_outer-container .header_mobile-menu_click-area_hamburger-menu {
    top: 0.75rem; } }

.myomniview_960-container {
  /* sign in --*/ }
  @media screen and (min-width: 40em) {
    .myomniview_960-container .header_login_nav_menu li:before, .myomniview_960-container .header_login_nav_menu a:before {
      padding-right: 8px; }
    .myomniview_960-container .header {
      box-shadow: none;
      background: #fff;
      font-size: 100%;
      min-height: 0; }
    .myomniview_960-container .header_mobile-menu_click-area_hamburger-menu {
      top: 8px; }
    .myomniview_960-container .header_mobile-menu_drawer {
      position: relative;
      top: auto;
      right: auto;
      height: 2.8125rem;
      background: none;
      width: 100%;
      border-bottom: 1px solid #bbb;
      margin-bottom: 0; }
      .myomniview_960-container .header_mobile-menu_drawer p {
        margin-bottom: 0; } }
  .myomniview_960-container .header_login_user p {
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 14px; }
  .myomniview_960-container .header_login_nav {
    float: right;
    margin-top: 14px; }
  @media screen and (min-width: 40em) {
    .myomniview_960-container .header_login_nav_menu li a {
      font-size: 0.75rem;
      font-weight: bold;
      text-decoration: underline; } }

.header_login_nav div a {
  display: flex;
  width: 100%;
  padding: 0.875rem;
  border-bottom: 1px solid #CCCCCC; }

.header_login_nav .header_login_nav_menu a {
  display: inline;
  padding: 0;
  border-bottom: none;
  font-size: 0.75rem; }
  @media screen and (max-width: 40em) {
    .header_login_nav .header_login_nav_menu a {
      font-size: 0.875rem;
      display: flex;
      width: 100%;
      padding: 0.875rem;
      border-bottom: 1px solid #CCCCCC; } }

.header_login_nav .header_login_nav_menu div {
  display: inline; }
  @media screen and (min-width: 40em) {
    .header_login_nav .header_login_nav_menu div::before {
      padding-right: 8px;
      content: "|";
      padding-left: 3px; }
    .header_login_nav .header_login_nav_menu div:first-child::before {
      padding-right: 0;
      content: "";
      padding-left: 0; } }
  @media screen and (max-width: 40em) {
    .header_login_nav .header_login_nav_menu div {
      display: block; }
      .header_login_nav .header_login_nav_menu div:last-child::before {
        display: none; } }

/* sign in end --*/
@media screen and (max-width: 40em) {
  .header-cvs {
    border-bottom: 1px solid #ccc; } }

.header-cvs.myomniview_960-container {
  margin-top: 0;
  padding-bottom: 0.5rem; }

.footer_cvs {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0.5rem;
  font-size: 0.75rem; }
  @media screen and (max-width: 40em) {
    .footer_cvs {
      padding: 0; } }
  .footer_cvs .footer_content {
    text-align: left; }
    @media screen and (max-width: 40em) {
      .footer_cvs .footer_content {
        text-align: center; } }
    .footer_cvs .footer_content p {
      margin-bottom: 0.75rem;
      font-size: 0.75rem; }
      .footer_cvs .footer_content p a {
        color: #CC0000; }
        .footer_cvs .footer_content p a.feedback {
          color: #000;
          text-decoration: none; }
          .footer_cvs .footer_content p a.feedback:hover {
            color: #767676; }
  .footer_cvs .footer {
    border-top: 1px solid #bbb;
    text-align: left;
    font-size: 12px;
    padding-top: 20px;
    margin: 20px auto 0;
    width: 100%; }
    @media screen and (max-width: 40em) {
      .footer_cvs .footer {
        margin: 0 auto 0; } }
    @media screen and (max-width: 40em) {
      .footer_cvs .footer nav {
        display: none; } }
    .footer_cvs .footer .tabbed-nav, .footer_cvs .footer .tabbed-nav--panel {
      margin-bottom: 1rem; }
      .footer_cvs .footer .tabbed-nav li, .footer_cvs .footer .tabbed-nav--panel li {
        width: auto; }
        .footer_cvs .footer .tabbed-nav li a, .footer_cvs .footer .tabbed-nav--panel li a {
          color: #CC0000;
          border-bottom: none;
          border-right: 1px solid #ccc;
          font-size: 0.75rem;
          padding: 0 16px;
          min-height: 0; }
        .footer_cvs .footer .tabbed-nav li:last-of-type a, .footer_cvs .footer .tabbed-nav--panel li:last-of-type a {
          border-right: 0; }
      .footer_cvs .footer .tabbed-nav .home a, .footer_cvs .footer .tabbed-nav--panel .home a {
        padding-left: 0; }

.footer_omnicare {
  margin: 4rem auto 0;
  max-width: 960px;
  color: #474747;
  padding: 0 1rem; }
  .footer_omnicare span {
    color: #474747; }
  .footer_omnicare .nav-footer {
    margin: 0 0 1rem; }
    .footer_omnicare .nav-footer li {
      display: inline-block;
      padding-left: 8px;
      padding-right: 8px;
      line-height: 1;
      border-right: 1px solid #668591; }
      .footer_omnicare .nav-footer li:last-child {
        border-right: 0; }
      .footer_omnicare .nav-footer li a {
        color: #003348;
        text-decoration: none;
        font-weight: normal;
        font-size: 14px; }

/* Used to live in myomniview-classes.scss */
.myomniview_960-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem; }
  @media screen and (max-width: 40em) {
    .myomniview_960-container {
      margin-top: 14px; } }

@media screen and (min-width: 40em) {
  .myomniview_inner-container {
    width: 100%;
    margin: 0 auto;
    line-height: 1.5; } }

@media screen and (max-width: 40em) {
  .myomniview_outer-container {
    position: relative;
    min-height: 100vh;
    padding-bottom: 180px; }
    .myomniview_outer-container .footer_cvs, .myomniview_outer-container .footer_omnicare {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; } }

/* header end --*/
.myomniview_content-block {
  margin-bottom: 40px; }
  .myomniview_content-block .forward-link {
    margin-top: -8px; }
    .myomniview_content-block .forward-link.nospace {
      margin-top: 0; }
  .myomniview_content-block--bar {
    border-bottom: 3px solid #000;
    padding-bottom: 0.75rem; }
    @media screen and (max-width: 40em) {
      .myomniview_content-block--bar {
        margin: 0 -16px; }
        .myomniview_content-block--bar .myomniview_inner-container {
          margin: 0 16px; }
          .myomniview_content-block--bar .myomniview_inner-container p {
            margin-bottom: 0; }
          .myomniview_content-block--bar .myomniview_inner-container .forward-link {
            padding-top: 0.25rem; }
            .myomniview_content-block--bar .myomniview_inner-container .forward-link:before {
              margin-top: -8px; }
            .myomniview_content-block--bar .myomniview_inner-container .forward-link:after {
              margin-top: -2px; } }
  .myomniview_content-block--dashed-divider {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 32px;
    padding-bottom: 16px; }
  .myomniview_content-block--spaceTop24 {
    margin: 1.5rem 0 0 0; }

.password-strength, .password-strength--success, .password-strength--error,
.email-strength, .email-strength--success, .email-strength--error {
  background-color: #eaf7f9;
  border-left: 4px solid #B8E3EB;
  display: none;
  padding: 10px 0 10px;
  font-size: 12px;
  box-sizing: border-box; }
  @media screen and (min-width: 40em) {
    .password-strength, .password-strength--success, .password-strength--error,
    .email-strength, .email-strength--success, .email-strength--error {
      max-width: 300px; } }
  .password-strength_showOnLoad, .password-strength--success_showOnLoad, .password-strength--error_showOnLoad,
  .email-strength_showOnLoad, .email-strength--success_showOnLoad, .email-strength--error_showOnLoad {
    display: block; }
  .password-strength_list, .password-strength--success_list, .password-strength--error_list,
  .email-strength_list, .email-strength--success_list, .email-strength--error_list {
    margin: 0;
    list-style-type: none; }
    .password-strength_list li, .password-strength--success_list li, .password-strength--error_list li,
    .email-strength_list li, .email-strength--success_list li, .email-strength--error_list li {
      text-indent: -17px;
      padding-left: 18px; }
    .password-strength_list_label, .password-strength--success_list_label, .password-strength--error_list_label,
    .email-strength_list_label, .email-strength--success_list_label, .email-strength--error_list_label {
      font-weight: bold;
      color: #333333; }
      .password-strength_list_label:before, .password-strength--success_list_label:before, .password-strength--error_list_label:before,
      .email-strength_list_label:before, .email-strength--success_list_label:before, .email-strength--error_list_label:before {
        width: 12px;
        height: 12px;
        display: inline-block;
        margin-right: 5px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        background-color: none;
        content: ''; }
      .password-strength_list_label.validation-passed:before, .password-strength--success_list_label.validation-passed:before, .password-strength--error_list_label.validation-passed:before,
      .email-strength_list_label.validation-passed:before, .email-strength--success_list_label.validation-passed:before, .email-strength--error_list_label.validation-passed:before {
        width: 12px;
        height: 12px;
        display: inline-block;
        margin-right: 5px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        background: none;
        content: "\2713";
        color: #000;
        font-size: 12px;
        line-height: 12px;
        text-align: center; }
      .password-strength_list_label.validation-passed:before, .password-strength--success_list_label.validation-passed:before, .password-strength--error_list_label.validation-passed:before,
      .email-strength_list_label.validation-passed:before, .email-strength--success_list_label.validation-passed:before, .email-strength--error_list_label.validation-passed:before {
        text-align: right; }
    .password-strength_list_sublist, .password-strength--success_list_sublist, .password-strength--error_list_sublist,
    .email-strength_list_sublist, .email-strength--success_list_sublist, .email-strength--error_list_sublist {
      list-style-type: none;
      margin-left: 20px; }
      .password-strength_list_sublist_item, .password-strength--success_list_sublist_item, .password-strength--error_list_sublist_item,
      .email-strength_list_sublist_item, .email-strength--success_list_sublist_item, .email-strength--error_list_sublist_item {
        color: #616161; }
        .password-strength_list_sublist_item:before, .password-strength--success_list_sublist_item:before, .password-strength--error_list_sublist_item:before,
        .email-strength_list_sublist_item:before, .email-strength--success_list_sublist_item:before, .email-strength--error_list_sublist_item:before {
          width: 12px;
          height: 12px;
          display: inline-block;
          margin-right: 5px;
          -webkit-border-radius: 12px;
          -moz-border-radius: 12px;
          -ms-border-radius: 12px;
          border-radius: 12px;
          background-color: none;
          content: ''; }
        .password-strength_list_sublist_item.validation-passed:before, .password-strength--success_list_sublist_item.validation-passed:before, .password-strength--error_list_sublist_item.validation-passed:before,
        .email-strength_list_sublist_item.validation-passed:before, .email-strength--success_list_sublist_item.validation-passed:before, .email-strength--error_list_sublist_item.validation-passed:before {
          width: 12px;
          height: 12px;
          display: inline-block;
          margin-right: 5px;
          -webkit-border-radius: 12px;
          -moz-border-radius: 12px;
          -ms-border-radius: 12px;
          border-radius: 12px;
          background: none;
          content: "\2713";
          color: #000;
          font-size: 12px;
          line-height: 12px;
          text-align: center; }
        .password-strength_list_sublist_item.validation-passed:before, .password-strength--success_list_sublist_item.validation-passed:before, .password-strength--error_list_sublist_item.validation-passed:before,
        .email-strength_list_sublist_item.validation-passed:before, .email-strength--success_list_sublist_item.validation-passed:before, .email-strength--error_list_sublist_item.validation-passed:before {
          text-align: right; }

.password-strength--success,
.email-strength--success {
  background-color: #edf5d7;
  border-left: 4px solid #A7CE39; }

.password-strength--error,
.email-strength--error {
  background-color: #fae6e6;
  border-left: 4px solid #CC0000; }

#SSNField::-ms-clear, #SSNField::-ms-reveal, #zip::-ms-clear, #zip::-ms-reveal, #respzip::-ms-clear, #respzip::-ms-reveal, .zip::-ms-clear, .zip::-ms-reveal, .comzip::-ms-clear, .comzip::-ms-reveal {
  display: none; }

#SSNField::-webkit-inner-spin-button, #SSNField::-webkit-outer-spin-button, #zip::-webkit-inner-spin-button, #zip::-webkit-outer-spin-button, #respzip::-webkit-inner-spin-button, #respzip::-webkit-outer-spin-button, .zip::-webkit-inner-spin-button, .zip::-webkit-outer-spin-button, .comzip::-webkit-inner-spin-button, .comzip::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

#SSNField::-webkit-contacts-auto-fill-button, #zip::-webkit-contacts-auto-fill-button, #respzip::-webkit-contacts-auto-fill-button, .zip::-webkit-contacts-auto-fill-button, .comzip::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0; }

.hideSSN, .hideChar {
  text-security: disc;
  -webkit-text-security: disc;
  -moz-text-security: disc; }

.showSSN, .showChar {
  text-security: none;
  -webkit-text-security: none;
  -moz-text-security: none; }

.black {
  color: blue; }

.normal {
  color: red; }

.form_input-container .error {
  border-color: red; }

#passwordcombined {
  line-height: 16px;
  padding-bottom: 8px; }

.error-message {
  color: #CC0000; }

.password-strength_list_sublist {
  margin-left: 0; }

.capsON {
  position: absolute;
  display: none;
  background-color: #FFF6D7;
  top: 0;
  right: 0;
  color: #333333;
  padding: 0 4px 0 2px; }
  .capsON:before {
    content: "\21EA";
    background-color: #FFF6D7;
    display: block;
    position: absolute;
    left: -18px;
    padding: 0 2px 0 4px; }

/*------------------------------------*\
     $REGISTRATION
 \*------------------------------------*/
/* JG: comment each one of these */
/* JG: Research and follow up :) */
.btn-container {
  border-top: 1px solid #CCCCCC;
  padding-top: 20px;
  margin-top: 10px; }

.btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  font-weight: bold;
  font-size: 14px;
  padding: 0.7em 27px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease; }
  @media screen and (min-width: 40em) {
    .btn {
      display: inline-block;
      width: auto; } }
  .btn[disabled], .btn.disabled, .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled]:active {
    background-color: #CCCCCC;
    color: #8C8C8C;
    border: 2px solid #CCCCCC;
    border-bottom-color: #8C8C8C;
    cursor: default; }

/* TODO: Need to review how arrows are being set (JG) */
.small--btn--primary {
  color: #fff;
  background-color: #CC0000;
  border: 2px solid #CC0000;
  border-bottom: 2px solid #A1050D;
  font-weight: bold;
  min-width: 163px;
  text-decoration: none; }
  .small--btn--primary:hover, .small--btn--primary:focus {
    background-color: #A1050D;
    color: #fff;
    border: 2px solid #A1050D;
    text-decoration: none; }
  .small--btn--primary:active {
    background-color: #EB0000;
    color: #fff;
    border-color: #EB0000;
    border-top: 2px solid #A1050D;
    text-decoration: none; }

.small--btn--secondary {
  color: #CC0000;
  background-color: #fff;
  border-bottom: 2px solid #fff;
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease; }

.small--btn--tertiary {
  color: #fff;
  background-color: #CC0000;
  border: 2px solid #CC0000;
  border-bottom: 2px solid #A1050D;
  font-weight: bold;
  min-width: 163px;
  text-decoration: none; }
  .small--btn--tertiary:hover, .small--btn--tertiary:focus {
    background-color: #A1050D;
    color: #fff;
    border: 2px solid #A1050D;
    text-decoration: none; }
  .small--btn--tertiary:active {
    background-color: #EB0000;
    color: #fff;
    border-color: #EB0000;
    border-top: 2px solid #A1050D;
    text-decoration: none; }

.small--btn--narrow {
  height: 35px;
  line-height: 10px; }

@media screen and (min-width: 40em) {
  .small--btn--align-left {
    padding-left: 0px;
    text-align: left; } }

@media screen and (min-width: 40em) {
  .small--btn--align-right {
    padding-left: 0px;
    text-align: right; } }

.small--btn--left-arr {
  color: #CC0000;
  font-size: inherit;
  background: #fff;
  border: none;
  width: auto;
  font-weight: bold;
  position: relative;
  margin-left: 20px; }
  .small--btn--left-arr:hover, .small--btn--left-arr:focus, .small--btn--left-arr:active {
    color: #A1050D;
    text-decoration: none;
    background-color: #fff;
    border: 0px; }
  .small--btn--left-arr:before {
    background-image: url("../images/icons/left-arrow.svg");
    background-color: transparent;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: -20px; }

.small--btn--right-arr {
  color: #CC0000;
  font-size: inherit;
  background: #fff;
  border: none;
  width: auto;
  font-weight: bold;
  position: relative; }
  .small--btn--right-arr:hover, .small--btn--right-arr:focus, .small--btn--right-arr:active {
    color: #A1050D;
    text-decoration: none;
    background-color: #fff;
    border: 0px; }
  .small--btn--right-arr:after {
    background-image: url("../images/icons/right-arrow.svg");
    background-color: transparent;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px; }

@media screen and (min-width: 40em) {
  .medium--btn--primary {
    color: #fff;
    background-color: #CC0000;
    border: 2px solid #CC0000;
    border-bottom: 2px solid #A1050D;
    font-weight: bold;
    min-width: 163px;
    text-decoration: none; }
    .medium--btn--primary:hover, .medium--btn--primary:focus {
      background-color: #A1050D;
      color: #fff;
      border: 2px solid #A1050D;
      text-decoration: none; }
    .medium--btn--primary:active {
      background-color: #EB0000;
      color: #fff;
      border-color: #EB0000;
      border-top: 2px solid #A1050D;
      text-decoration: none; }
  .medium--btn--secondary {
    color: #CC0000;
    background-color: #fff;
    border-bottom: 2px solid #fff;
    -webkit-transition: background-color 0.25s ease;
    -moz-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease; }
  .medium--btn--tertiary {
    color: #fff;
    background-color: #CC0000;
    border: 2px solid #CC0000;
    border-bottom: 2px solid #A1050D;
    font-weight: bold;
    min-width: 163px;
    text-decoration: none; }
    .medium--btn--tertiary:hover, .medium--btn--tertiary:focus {
      background-color: #A1050D;
      color: #fff;
      border: 2px solid #A1050D;
      text-decoration: none; }
    .medium--btn--tertiary:active {
      background-color: #EB0000;
      color: #fff;
      border-color: #EB0000;
      border-top: 2px solid #A1050D;
      text-decoration: none; }
  .medium--btn--narrow {
    height: 35px;
    line-height: 10px; } }

@media screen and (min-width: 40em) and (min-width: 40em) {
  .medium--btn--align-left {
    padding-left: 0px;
    text-align: left; } }

@media screen and (min-width: 40em) and (min-width: 40em) {
  .medium--btn--align-right {
    padding-left: 0px;
    text-align: right; } }

@media screen and (min-width: 40em) {
  .medium--btn--left-arr {
    color: #CC0000;
    font-size: inherit;
    background: #fff;
    border: none;
    width: auto;
    font-weight: bold;
    position: relative;
    margin-left: 20px; }
    .medium--btn--left-arr:hover, .medium--btn--left-arr:focus, .medium--btn--left-arr:active {
      color: #A1050D;
      text-decoration: none;
      background-color: #fff;
      border: 0px; }
    .medium--btn--left-arr:before {
      background-image: url("../images/icons/left-arrow.svg");
      background-color: transparent;
      content: "";
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 18px 18px;
      position: absolute;
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-left: -20px; }
  .medium--btn--right-arr {
    color: #CC0000;
    font-size: inherit;
    background: #fff;
    border: none;
    width: auto;
    font-weight: bold;
    position: relative; }
    .medium--btn--right-arr:hover, .medium--btn--right-arr:focus, .medium--btn--right-arr:active {
      color: #A1050D;
      text-decoration: none;
      background-color: #fff;
      border: 0px; }
    .medium--btn--right-arr:after {
      background-image: url("../images/icons/right-arrow.svg");
      background-color: transparent;
      content: "";
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 18px 18px;
      position: absolute;
      display: inline-block;
      width: 20px;
      height: 20px; } }

@media screen and (min-width: 64em) {
  .large--btn--primary {
    color: #fff;
    background-color: #CC0000;
    border: 2px solid #CC0000;
    border-bottom: 2px solid #A1050D;
    font-weight: bold;
    min-width: 163px;
    text-decoration: none; }
    .large--btn--primary:hover, .large--btn--primary:focus {
      background-color: #A1050D;
      color: #fff;
      border: 2px solid #A1050D;
      text-decoration: none; }
    .large--btn--primary:active {
      background-color: #EB0000;
      color: #fff;
      border-color: #EB0000;
      border-top: 2px solid #A1050D;
      text-decoration: none; }
  .large--btn--secondary {
    color: #CC0000;
    background-color: #fff;
    border-bottom: 2px solid #fff;
    -webkit-transition: background-color 0.25s ease;
    -moz-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease; }
  .large--btn--tertiary {
    color: #fff;
    background-color: #CC0000;
    border: 2px solid #CC0000;
    border-bottom: 2px solid #A1050D;
    font-weight: bold;
    min-width: 163px;
    text-decoration: none; }
    .large--btn--tertiary:hover, .large--btn--tertiary:focus {
      background-color: #A1050D;
      color: #fff;
      border: 2px solid #A1050D;
      text-decoration: none; }
    .large--btn--tertiary:active {
      background-color: #EB0000;
      color: #fff;
      border-color: #EB0000;
      border-top: 2px solid #A1050D;
      text-decoration: none; }
  .large--btn--narrow {
    height: 35px;
    line-height: 10px; } }

@media screen and (min-width: 64em) and (min-width: 40em) {
  .large--btn--align-left {
    padding-left: 0px;
    text-align: left; } }

@media screen and (min-width: 64em) and (min-width: 40em) {
  .large--btn--align-right {
    padding-left: 0px;
    text-align: right; } }

@media screen and (min-width: 64em) {
  .large--btn--left-arr {
    color: #CC0000;
    font-size: inherit;
    background: #fff;
    border: none;
    width: auto;
    font-weight: bold;
    position: relative;
    margin-left: 20px; }
    .large--btn--left-arr:hover, .large--btn--left-arr:focus, .large--btn--left-arr:active {
      color: #A1050D;
      text-decoration: none;
      background-color: #fff;
      border: 0px; }
    .large--btn--left-arr:before {
      background-image: url("../images/icons/left-arrow.svg");
      background-color: transparent;
      content: "";
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 18px 18px;
      position: absolute;
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-left: -20px; }
  .large--btn--right-arr {
    color: #CC0000;
    font-size: inherit;
    background: #fff;
    border: none;
    width: auto;
    font-weight: bold;
    position: relative; }
    .large--btn--right-arr:hover, .large--btn--right-arr:focus, .large--btn--right-arr:active {
      color: #A1050D;
      text-decoration: none;
      background-color: #fff;
      border: 0px; }
    .large--btn--right-arr:after {
      background-image: url("../images/icons/right-arrow.svg");
      background-color: transparent;
      content: "";
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 18px 18px;
      position: absolute;
      display: inline-block;
      width: 20px;
      height: 20px; } }

.btn--primary {
  color: #fff;
  background-color: #CC0000;
  border: 2px solid #CC0000;
  border-bottom: 2px solid #A1050D;
  font-weight: bold;
  min-width: 163px;
  text-decoration: none; }
  .btn--primary:hover, .btn--primary:focus {
    background-color: #A1050D;
    color: #fff;
    border: 2px solid #A1050D;
    text-decoration: none; }
  .btn--primary:active {
    background-color: #EB0000;
    color: #fff;
    border-color: #EB0000;
    border-top: 2px solid #A1050D;
    text-decoration: none; }

.btn--secondary {
  color: #CC0000;
  background-color: #fff;
  border-bottom: 2px solid #fff;
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease; }

.btn--tertiary {
  color: #CC0000;
  background-color: #fff;
  border: 2px solid #CC0000;
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease; }

.btn--narrow {
  height: 35px;
  line-height: 10px; }

@media screen and (min-width: 40em) {
  .btn--align-left {
    padding-left: 0px;
    text-align: left; } }

@media screen and (min-width: 40em) {
  .btn--align-right {
    padding-left: 0px;
    text-align: right; } }

.btn--left-arr {
  color: #CC0000;
  font-size: inherit;
  background: #fff;
  border: none;
  width: auto;
  font-weight: bold;
  position: relative;
  margin-left: 20px; }
  .btn--left-arr:hover, .btn--left-arr:focus, .btn--left-arr:active {
    color: #A1050D;
    text-decoration: none;
    background-color: #fff;
    border: 0px; }
  .btn--left-arr:before {
    background-image: url("../images/icons/left-arrow.svg");
    background-color: transparent;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: -20px; }

.btn--right-arr {
  color: #CC0000;
  font-size: inherit;
  background: #fff;
  border: none;
  width: auto;
  font-weight: bold;
  position: relative; }
  .btn--right-arr:hover, .btn--right-arr:focus, .btn--right-arr:active {
    color: #A1050D;
    text-decoration: none;
    background-color: #fff;
    border: 0px; }
  .btn--right-arr:after {
    background-image: url("../images/icons/right-arrow.svg");
    background-color: transparent;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px; }

.form_checkbox input {
  display: none; }

.form_checkbox input + label {
  display: inline-block;
  font-weight: normal;
  font-size: 17px; }
  .form_checkbox input + label:before {
    text-align: center;
    content: '\2713';
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid #CCCCCC;
    margin-right: 10px;
    position: relative;
    color: #fff;
    -webkit-transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out; }

.form_checkbox input:checked + label:before {
  color: #000; }

.form_checkbox input:checked + label:hover {
  cursor: pointer; }

.form_checkbox:hover label, .form_checkbox:hover label:before, .form_checkbox:active label, .form_checkbox:active label:before, .form_checkbox:focus label, .form_checkbox:focus label:before {
  cursor: pointer; }

.form_checkbox:hover label:before, .form_checkbox:active label:before, .form_checkbox:focus label:before {
  border-color: #767676; }

.form_radio-group input {
  display: none; }

.form_radio-group input + label {
  display: inline-block;
  font-weight: normal;
  position: relative;
  font-size: 17px; }
  .form_radio-group input + label:before {
    content: '';
    width: 22px;
    height: 22px;
    display: inline-block;
    border: 2px solid #CCCCCC;
    margin-right: 10px;
    position: relative;
    top: 6px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
    -webkit-transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out; }

.form_radio-group input:checked + label:after {
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  padding: 2px;
  background-color: #000;
  margin-right: 10px;
  border-radius: 14px;
  position: absolute;
  left: 5px;
  top: 11px; }

.form_radio-group:hover label, .form_radio-group:hover label:before, .form_radio-group:active label, .form_radio-group:active label:before, .form_radio-group:focus label, .form_radio-group:focus label:before {
  cursor: pointer; }

.form_radio-group:hover label:before, .form_radio-group:active label:before, .form_radio-group:focus label:before {
  border-color: #767676; }

.form_input-container {
  margin-bottom: 18px; }
  .form_input-container label, .form_input-container legend {
    display: block;
    font-weight: bold;
    font-size: 14px; }
  .form_input-container input, .form_input-container textarea {
    padding: 5px;
    border: 2px solid #CCCCCC;
    font-size: 17px;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out; }
    .form_input-container input:hover, .form_input-container textarea:hover {
      border-color: #767676; }
    .form_input-container input:focus, .form_input-container input:active, .form_input-container textarea:focus, .form_input-container textarea:active {
      border-color: #000; }
    @media screen and (min-width: 40em) {
      .form_input-container input, .form_input-container textarea {
        max-width: 300px; } }
    .form_input-container input.select-zip, .form_input-container textarea.select-zip {
      width: auto; }
  .form_input-container textarea {
    line-height: 21px;
    min-height: 100px;
    max-width: 100%; }
    .form_input-container textarea.textarea__big {
      min-height: 200px;
      overflow: auto;
      font-size: 1rem; }
  .form_input-container.form--error input {
    background-color: #f7d9d9;
    border-color: #CC0000; }
  .form_input-container.containerShowHide {
    position: relative; }
    .form_input-container.containerShowHide .inputShowHide {
      font-size: 14px;
      border: none;
      cursor: pointer;
      color: #000;
      width: 50px;
      margin-left: -60px;
      min-height: auto;
      height: 42px;
      padding: 0; }
      @media (max-width: 40em) {
        .form_input-container.containerShowHide .inputShowHide {
          position: absolute;
          margin-left: 0;
          width: auto;
          right: 10px;
          top: 28px; } }
      @media (max-width: 22em) {
        .form_input-container.containerShowHide .inputShowHide.longLabel {
          top: 48px; } }
    .form_input-container.containerShowHide .inputShowHidePassword {
      font-size: 14px;
      border: none;
      cursor: pointer;
      color: #000;
      height: 38px;
      width: 60px;
      position: absolute;
      height: 40px;
      top: 26px;
      right: 2px;
      min-height: auto;
      padding: 0 8px; }

#header_mobile-menu_click-area {
  display: block; }
  @media screen and (min-width: 40em) {
    #header_mobile-menu_click-area {
      display: none; } }

#header_mobile-menu_toggle {
  position: absolute;
  opacity: 0;
  display: none; }
  #header_mobile-menu_toggle:checked ~ .myomniview_inner-container {
    height: 100%;
    background: rgba(255, 255, 255, 0.8); }
    @media screen and (min-width: 40em) {
      #header_mobile-menu_toggle:checked ~ .myomniview_inner-container {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        background: none;
        width: auto; } }
    #header_mobile-menu_toggle:checked ~ .myomniview_inner-container .header_mobile-menu_drawer {
      -webkit-transition: 0.2s ease-in-out;
      -moz-transition: 0.2s ease-in-out;
      -o-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
      right: 0; }
      @media screen and (min-width: 40em) {
        #header_mobile-menu_toggle:checked ~ .myomniview_inner-container .header_mobile-menu_drawer {
          position: relative;
          top: auto;
          right: auto;
          height: auto;
          background: none;
          width: auto; } }
  #header_mobile-menu_toggle:checked ~ #header_mobile-menu_click-area .header_mobile-menu_click-area_overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 20;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: all; }
  #header_mobile-menu_toggle:checked ~ #header_mobile-menu_click-area .header_mobile-menu_click-area_hamburger-menu {
    position: fixed; }
    #header_mobile-menu_toggle:checked ~ #header_mobile-menu_click-area .header_mobile-menu_click-area_hamburger-menu span:nth-child(1) {
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 12px;
      left: 4px; }
    #header_mobile-menu_toggle:checked ~ #header_mobile-menu_click-area .header_mobile-menu_click-area_hamburger-menu span:nth-child(2) {
      width: 0%;
      opacity: 0; }
    #header_mobile-menu_toggle:checked ~ #header_mobile-menu_click-area .header_mobile-menu_click-area_hamburger-menu span:nth-child(3) {
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 33px;
      left: 4px; }

.header {
  font-size: 90%;
  position: relative;
  padding: 0.4em;
  min-height: 44px;
  border-bottom: 1px solid #CCCCCC; }
  @media screen and (min-width: 40em) {
    .header {
      box-shadow: 0px 0px 20px #666;
      min-height: 134px;
      background: url(../images/global/header-bg.gif) repeat-x #fce49a;
      font-size: 83%;
      border-bottom: 0;
      padding: 0;
      z-index: 20; } }
  .header .row {
    max-width: 99%; }
  .header:before {
    content: url(../images/global/mobilelogo.svg);
    width: 120px;
    z-index: 0;
    display: block;
    position: absolute;
    box-sizing: border-box; }
    @media screen and (min-width: 40em) {
      .header:before {
        content: '';
        background-size: auto;
        background: url(../images/global/header.gif) no-repeat;
        height: 120px;
        width: 100%;
        margin: 0;
        min-height: auto; } }
  .header_logo {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden; }
  .header_content {
    padding-top: 6.9em;
    text-align: right;
    padding-right: 0.25em; }
    @media screen and (min-width: 40em) {
      .header_content {
        text-align: left;
        padding: 0.25em 0.25em 0 0; } }
  .header_skip-to-main_link {
    display: block;
    overflow: hidden;
    margin: 0 10px;
    height: 0px;
    height: 0px;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out; }
  .header_skip-to-main_link:focus {
    display: inline-block;
    margin: 10px;
    padding: 6px;
    height: auto; }
  .header_login {
    text-align: center;
    padding-top: 40px;
    position: relative;
    z-index: 40;
    line-height: 1.5em;
    display: block; }
    @media screen and (min-width: 40em) {
      .header_login {
        text-align: right;
        padding: 0; }
        .header_login > * {
          display: inline-block; } }
    .header_login_message {
      margin-bottom: 1em;
      text-align: left;
      padding: 0px 14px; }
      .header_login_message--heading {
        font: bold 18px Helvetica, Arial, sans-serif;
        display: block;
        margin-top: -20px;
        margin-bottom: 10px; }
        @media screen and (min-width: 40em) {
          .header_login_message--heading {
            font-weight: normal;
            font-size: inherit;
            display: inline;
            margin: 0; } }
      @media screen and (min-width: 40em) {
        .header_login_message {
          margin-bottom: 0;
          padding: 0px; }
          .header_login_message:after {
            content: '|';
            margin-left: 4px; } }
    .header_login_nav {
      display: block;
      width: 100%;
      text-align: left; }
      @media screen and (min-width: 40em) {
        .header_login_nav {
          display: inline-block;
          width: auto;
          text-align: right; } }
    .header_login_nav_menu {
      list-style-type: none;
      margin-bottom: 0; }
      .header_login_nav_menu li {
        display: block; }
        @media screen and (min-width: 40em) {
          .header_login_nav_menu li {
            display: inline-block; }
            .header_login_nav_menu li:before {
              content: '|';
              padding-right: 3px;
              padding-left: 3px; }
            .header_login_nav_menu li:first-child:before {
              content: ''; } }
        .header_login_nav_menu li:first-child a {
          border-top: 1px solid #CCCCCC; }
          @media screen and (min-width: 40em) {
            .header_login_nav_menu li:first-child a {
              border-top: 0px; } }
        .header_login_nav_menu li a {
          display: block;
          width: 100%;
          background-color: #fff;
          color: #333333;
          padding: 14px;
          font-size: 14px;
          border-bottom: 1px solid #CCCCCC; }
          @media screen and (min-width: 40em) {
            .header_login_nav_menu li a {
              background: none;
              padding: 0;
              border: 0;
              display: inline; } }
  .header_main-nav {
    position: relative;
    z-index: 40;
    padding-top: 0px;
    text-align: left; }
    @media screen and (min-width: 40em) {
      .header_main-nav {
        display: block;
        padding-top: 3em;
        padding-bottom: 1em;
        text-align: right; } }
    .header_main-nav_menu {
      list-style-type: none;
      margin-bottom: 0; }
      @media screen and (min-width: 40em) {
        .header_main-nav_menu {
          padding-top: 0;
          display: inline-block; } }
      .header_main-nav_menu li {
        display: block; }
        .header_main-nav_menu li:first-child a {
          border-top: 1px solid #CCCCCC; }
          @media screen and (min-width: 40em) {
            .header_main-nav_menu li:first-child a {
              border-top: 0px; } }
        .header_main-nav_menu li a {
          display: block;
          width: 100%;
          background-color: #fff;
          color: #333333;
          padding: 14px;
          font-size: 14px;
          border-bottom: 1px solid #CCCCCC; }
          @media screen and (min-width: 40em) {
            .header_main-nav_menu li a {
              background: none;
              padding: 0;
              border: 0;
              display: inline; } }
        @media screen and (min-width: 40em) {
          .header_main-nav_menu li {
            display: inline-block; }
            .header_main-nav_menu li:before {
              content: '|';
              margin-right: 4px;
              margin-left: 4px; }
            .header_main-nav_menu li:first-child:before {
              content: none; } }

.header_mobile-menu_click-area {
  position: relative; }

.header_mobile-menu_click-area_hamburger-menu {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  right: 0px;
  top: -3px;
  height: 40px;
  width: 40px;
  display: block;
  position: absolute;
  z-index: 500;
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, white));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  /* ie10+ */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
  /* ie6-9 */ }
  .header_mobile-menu_click-area_hamburger-menu:hover, .header_mobile-menu_click-area_hamburger-menu:active, .header_mobile-menu_click-area_hamburger-menu:focus {
    cursor: pointer; }
  .header_mobile-menu_click-area_hamburger-menu > span {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: #000;
    opacity: 1;
    left: 4px; }
    .header_mobile-menu_click-area_hamburger-menu > span:nth-child(1) {
      top: 15px; }
    .header_mobile-menu_click-area_hamburger-menu > span:nth-child(2) {
      top: 24px; }
    .header_mobile-menu_click-area_hamburger-menu > span:nth-child(3) {
      top: 33px; }

.header_mobile-menu_click-area_overlay {
  position: fixed;
  top: 0;
  left: 0vh;
  width: 100vh;
  height: 100vh;
  z-index: 40;
  pointer-events: none;
  background: none;
  -webkit-transition: background 0.25s ease-out;
  -moz-transition: background 0.25s ease-out;
  -o-transition: background 0.25s ease-out;
  transition: background 0.25s ease-out; }

.header_mobile-menu_drawer {
  position: fixed;
  top: 0;
  right: -80%;
  height: 100%;
  width: 80%;
  background: #fff;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0px;
  z-index: 60;
  -webkit-transition: right 0.35s ease-in-out;
  -moz-transition: right 0.35s ease-in-out;
  -o-transition: right 0.35s ease-in-out;
  transition: right 0.35s ease-in-out; }
  @media screen and (min-width: 40em) {
    .header_mobile-menu_drawer {
      position: relative;
      top: auto;
      right: auto;
      height: auto;
      background: none;
      /*width: auto;*/ } }

.footer {
  font-size: 12px; }
  @media screen and (min-width: 40em) {
    .footer {
      border-top: 2px solid #fce49a;
      text-align: center;
      padding-top: 20px;
      margin-top: 30px; } }
  .footer_nav {
    padding-bottom: 1em;
    list-style-type: none; }
    .footer_nav li:first-child a {
      border-top: 1px solid #CCCCCC; }
      @media screen and (min-width: 40em) {
        .footer_nav li:first-child a {
          border-top: 0px; } }
    .footer_nav li {
      display: block; }
      .footer_nav li a {
        display: block;
        width: 100%;
        background-color: #fff;
        color: #333333;
        padding: 14px;
        font-size: 14px;
        border-bottom: 1px solid #CCCCCC; }
        @media screen and (min-width: 40em) {
          .footer_nav li a {
            background: none;
            padding: 0;
            border: 0;
            display: inline; } }
      @media screen and (min-width: 40em) {
        .footer_nav li {
          display: inline-block; }
          .footer_nav li:before {
            content: '|';
            margin-right: 4px;
            margin-left: 4px; }
          .footer_nav li:first-child:before {
            content: none; } }
  .footer_content {
    text-align: center;
    padding-bottom: 1em; }
    .footer_content p {
      margin-bottom: 0;
      line-height: 16px; }
    .footer_content_version {
      font-size: 10px; }

.text-size-adjuster {
  text-align: right;
  position: relative;
  z-index: 40;
  padding-top: 0.5em;
  font-size: 14px; }
  .text-size-adjuster_content {
    display: inline-block;
    text-align: left; }
    .text-size-adjuster_content_label {
      margin-bottom: 0;
      font-weight: bold;
      line-height: 1em; }
    .text-size-adjuster_content_options {
      list-style-type: none;
      margin-left: 0; }
      .text-size-adjuster_content_options li {
        display: inline-block;
        padding-right: 5px;
        position: relative; }
      .text-size-adjuster_content_options--smaller a:before {
        content: 'A';
        font-size: 100%;
        font-weight: bold; }
      .text-size-adjuster_content_options--larger a:before {
        content: 'A';
        font-size: 120%;
        font-weight: bold; }
      .text-size-adjuster_content_options span {
        width: .5em;
        visibility: hidden;
        position: absolute; }

.info-block_content {
  margin-bottom: 20px; }
  .info-block_content_group_header {
    color: #767676;
    font-size: 12px;
    display: inline-block;
    width: 90px;
    font-weight: normal; }
  .info-block_content_group_value {
    color: #000;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0px; }

input.input-validation-error, textarea.input-validation-error, select.input-validation-error {
  border: 2px solid #CC0000;
  background-color: #fae6e6; }

.field-validation-error {
  display: block;
  color: #CC0000; }

.text-field.error {
  margin-bottom: 0em; }
